Support Questions

Find answers, ask questions, and share your expertise

Zeppelin Interpreter

avatar
Contributor

Do we have any SQL interpreter in Zeppelin?

1 ACCEPTED SOLUTION

avatar
Expert Contributor

@Sudheer Velagapudi

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?

View solution in original post

5 REPLIES 5

avatar

@Sudheer Velagapudi

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

avatar
Expert Contributor

@Sudheer Velagapudi

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?

avatar
Contributor

I am just trying to connect to hive

avatar
Expert Contributor

Ah ok. Try this

%jdbc(hive) 

You might need to check if the hive configuration is updated in the jdbc interpreter settings.

avatar
Contributor

Oh its working default. Thanks