ValueError: invalid literal for int() with base 10...
# ingestion
k
ValueError: invalid literal for int() with base 10: ‘’\n
b
I suggest copying out more of the error logs if you can, the error is a pretty generic python exception.
k
Copy code
"ValueError: invalid literal for int() with base 10: ''\n",
           "2022-03-09 23:58:44.930207 [exec_id=e6cd3ec5-10eb-4f21-841b-3b99acb37848] INFO: Failed to execute 'datahub ingest'",
           '2022-03-09 23:58:44.930978 [exec_id=e6cd3ec5-10eb-4f21-841b-3b99acb37848] INFO: Caught exception EXECUTING '
           'task_id=e6cd3ec5-10eb-4f21-841b-3b99acb37848, name=RUN_INGEST, stacktrace=Traceback (most recent call last):\n'
the log is quite extensive. it appears to make a good connection to snowflake but fail mysteriously during ingestion
i think snowflake host_port was the issue. format should be account.region. docs didn’t really describe that exactly. seems to be running now. thx!
d
Cool, we will try to make it cleaner in the doc. Thanks for the feedback.
s
There is a PR up which does cleanup the
host_port
alongwith other improvements in
snowflake
source. Once that is merged in this should not happen anymore in the CLI release after that merge
👍 1