Created 09-21-2017 06:25 PM
Do we have any SQL interpreter in Zeppelin?
Created 09-21-2017 06:36 PM
Here is the list of interpreters that exist in zeppelin.
https://zeppelin.apache.org/supported_interpreters.html
There is nothing specifically for SQL interpreter though. What exactly are you trying to do here?
Created 09-21-2017 06:35 PM
If you look at the zeppelin jdbc interpreter configuration, you will see these 4 properties:
default.driver ( Your driver, for e.g. org.postgresql.Driver)
default.url (jdbc connection URL)
default.user
default.password
You can configure these 4 properties and then use %jdbc as to do SQL queries
Please go through this page for more information: https://zeppelin.apache.org/docs/0.6.1/interpreter/jdbc.html
Created 09-21-2017 06:36 PM
Here is the list of interpreters that exist in zeppelin.
https://zeppelin.apache.org/supported_interpreters.html
There is nothing specifically for SQL interpreter though. What exactly are you trying to do here?
Created 09-21-2017 06:37 PM
I am just trying to connect to hive
Created 09-21-2017 06:39 PM
Ah ok. Try this
%jdbc(hive)
You might need to check if the hive configuration is updated in the jdbc interpreter settings.
Created 09-21-2017 06:41 PM
Oh its working default. Thanks