A kernel that enables applications to interact with Apache Spark (http://toree.apache.org/)
pip install toree==0.4.0
displayHTML
, but that does not seem to be available. Is it possible? Thanks much 🙏
apache toree
to my jupyterhub
. my problem is that all my jars are compiled using scala 2.13.5 + spark 3.2.1
. when I add toree
kernel it doesn't start and this is because of the version I think because toree
is built with scala version 2.12
. Also I tried to rebuild toree
with scala 2.13
but i got many errors. Any propostion thank you
Hi there, I want to add
apache toree
to myjupyterhub
. my problem is that all my jars are compiled usingscala 2.13.5 + spark 3.2.1
. when I addtoree
kernel it doesn't start and this is because of the version I think becausetoree
is built with scala version2.12
. Also I tried to rebuildtoree
withscala 2.13
but i got many errors. Any propostion thank you
Is there any open issue related to scala 2.13 adoption ? I didn't find any on Jira but I'm not so used to it so maybe I just missed it
spark-shell
.
Hi there, I want to add
apache toree
to myjupyterhub
. my problem is that all my jars are compiled usingscala 2.13.5 + spark 3.2.1
. when I addtoree
kernel it doesn't start and this is because of the version I think becausetoree
is built with scala version2.12
. Also I tried to rebuildtoree
withscala 2.13
but i got many errors. Any propostion thank you
Well that's the end of that then, I completely scrolled past this exact same issue. Apologies for wasting everyone's time :)
java.lang.UnsupportedOperationException: The Security Manager is deprecated and will be removed in a future release
; consequently my kernel never manages to connect and is left in a perpetual "connecting" status
Hi Team,
I found some docs on the plugin system of Toree which allows us to add custom magics using %AddJar -magic <url>
.
But I'm unable to find any document for registering Events for something like preRunCell
. A sample snippet for what I have seen working in ipython is the following -
def load_ipython_extension(ipython):
ipython.events.register("pre_run_cell", some_func)
I've noticed that the PluginEvent
PreRunCell
is fired by Toree too. But I'm not sure how to hook / listen to it using the Toree's plugin system. Could you kindly point me to some documentation.
Thanks in advance!