You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description
When trying to run Kaskada in Google Colab, it no longer works.
To Reproduce
Steps to reproduce the behavior:
when I try to do this:
from kaskada.api.session import LocalBuilder
from kaskada import table as table
ksession = LocalBuilder().build()
I get:
ConnectionError: Unable to connect after 10 attempts
Actual Behavior
Local Session isn't starting
Expected Behavior
Local Session starts without issue.
Additional context
Error found on python clients: v0.5.1, v0.5.0, v0.4.1. I didn't try older versions than this. Engine/Manager were v0.9.0.
Also tried running on local jupyter notebook. This worked without issue on my Mac.
Relevant Logs / Links
Relevant stack traces, results, links, or screenshots of the issue.
From logs, it seems that the engine (sparrow) can't start due to a libssl issue:
/root/.cache/kaskada/bin/engine@v0.9.0/kaskada-engine: error while loading shared libraries: libssl.so.1.1: cannot open shared object file: No such file or directory
The text was updated successfully, but these errors were encountered:
With regards to the libssl issue, it appears that Collab has upgraded the Ubuntu version running on their instances from 20.04 to 22.04
This upgrade to Ubuntu also upgrades the ssl library from 1.1.1 to 3.0.9.
The Kaskada binary (through a dependency) depends on libssl. Our release builds are on Ubuntu 20.04. So when our kaskada binary is executed on a Ubuntu 22.04 it cannot find the appropriate version of libssl and fails to start the sparrow process.
Description
When trying to run Kaskada in Google Colab, it no longer works.
To Reproduce
Steps to reproduce the behavior:
when I try to do this:
I get:
Actual Behavior
Local Session isn't starting
Expected Behavior
Local Session starts without issue.
Additional context
Error found on python clients:
v0.5.1
,v0.5.0
,v0.4.1
. I didn't try older versions than this. Engine/Manager werev0.9.0
.Also tried running on local jupyter notebook. This worked without issue on my Mac.
Relevant Logs / Links
Relevant stack traces, results, links, or screenshots of the issue.
From logs, it seems that the engine (sparrow) can't start due to a libssl issue:
The text was updated successfully, but these errors were encountered: