Getting new error when writing rows to snowflake #198
Unanswered
alexwillingham98
asked this question in
Q&A
Replies: 1 comment
-
Can you share a few log files with me at [email protected] @alexwillingham98 ? It should yield better debug -- this one doesn't share much other than the dependency failure.
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I've recently been getting this error when running my daily job -----
│ 179 │ def python(self, *args, kwargs) -> sp.CompletedProcess: │
│ 180 │ │ """Run a command in the virtual environment.""" │
│ > 181 │ │ return self.run(self.exe.as_posix(), *args, kwargs) │
│ 182 │ │
│ 183 │ def system_python(self, args, kwargs) -> sp.CompletedProcess: │
│ 184 │ │ """Run a command in the global python environment.""" │
│ │
│ C:\Users\VssAdministrator\AppData\Roaming*.\Lib\site-packa │
│ ges*\updater_updater.py:135 in run │
│ │
│ 132 │ │ │
│ 133 │ │ if raise_on_failure and proc.returncode != 0: │
│ 134 │ │ │ cmd = " ".join(arg.replace(" ", "") for arg in args) │
│ > 135 │ │ │ raise RuntimeError(f"Failed with exit code: {proc.returnc │
│ 136 │ │ │
│ 137 │ │ output_as_bytes = "\n".join(final_stdout).encode() │
│ 138 │ │ errors_as_bytes = "\n".join(final_stderr).encode() │
└─────────────────────────────────────────────────────────────────────────────┘
RuntimeError: Failed with exit code: 1
PIP COMMAND BELOW
C:/Users/VssAdministrator/AppData/Roaming//./Scripts/python.exe
-m pip install --isolated --no-cache-dir --disable-pip-version-check
--trusted-host files.pythonhosted.org --trusted-host pypi.org --trusted-host
pypi.python.org --trusted-host github.com --trusted-host codeload.github.com
snowflake-sqlalchemy>=1.6.1
┌──────────────────── 😲 This is an unhandled error! 😲 ────────────────────┐
│ │
│ If you encounter this message more than once, please help by letting us │
│ know! │
│ │
│ GitHub: https://github.com/thoughtspot/***/issues/new/choose │
│ │
└─────────── Run *** logs report to send us your last error. ────────────┘
Beta Was this translation helpful? Give feedback.
All reactions