Archives of Support Questions (Read Only)

This is an archived board for historical reference. Information and links may no longer be available or relevant
Announcements
This board is archived and read-only for historical reference. To ask a new question, please post a new topic on the appropriate active board.

Zeppelin Interpreter

avatar
New Member

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
New Member

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
New Member

Oh its working default. Thanks