简体   繁体   中英

How can access Scala JDBC connection in Python Notebook ---Databricks

I have a connection object in Scala cell, which I would like reuse it in Python cell. Is there alternate to temp table to access this connection. Databricks

Not really - Python code is executed in the different context, so you can have some data exchange either via SparkSession itself ( .set / .get on the SparkConf, but it works only for primitive data), or by registering the temp view

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM