- Subscribe to RSS Feed
- Mark Question as New
- Mark Question as Read
- Float this Question for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
Druid integration with Hive LLAP
- Labels:
-
Apache Hive
Created on ‎04-28-2018 06:35 PM - edited ‎09-16-2022 06:09 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi,
I am testing Druid with very small amount of data, treat my case as POC before working on big data set.
When creating table on Druid, iam getting Mysql jdbc error. Thought i have specified postgres as my database for metastore.
Am i missing my configuration parameter?
Please help. Thanks in advance.
Created ‎04-28-2018 09:32 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
@ln Chari
the properties you need are
set hive.druid.metadata.db.type=postgresql; set hive.druid.metadata.username=${DRUID_USERNAME}; set hive.druid.metadata.password=${DRUID_PASSWORD}; set hive.druid.metadata.uri=jdbc:postgresql://${METADATA_DRUID_HOST}:5432/druid;
You were missing hive.druid.metadata.db.type
Also make sure that ${DRUID_USERNAME} are replaced with actual values
You do not need all the properties starting with druid.*
Created ‎04-28-2018 09:32 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
@ln Chari
the properties you need are
set hive.druid.metadata.db.type=postgresql; set hive.druid.metadata.username=${DRUID_USERNAME}; set hive.druid.metadata.password=${DRUID_PASSWORD}; set hive.druid.metadata.uri=jdbc:postgresql://${METADATA_DRUID_HOST}:5432/druid;
You were missing hive.druid.metadata.db.type
Also make sure that ${DRUID_USERNAME} are replaced with actual values
You do not need all the properties starting with druid.*
Created ‎05-02-2018 09:17 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi Slim,
Thanks for your response. That worked. I have few more questions, i will open a new thread.
