-
Notifications
You must be signed in to change notification settings - Fork 14.6k
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
docs: Added details to Druid connection string #20264
Conversation
While linking Superset to Druid the correct connection string is very important however in the docs it is not well explained , so I added a little description to it
docs/docs/databases/druid.mdx
Outdated
@@ -18,6 +18,7 @@ The connection string looks like: | |||
``` | |||
druid://<User>:<password>@<Host>:<Port-default-9088>/druid/v2/sql | |||
``` | |||
Where User and password are the credentials of your **Druid Database** , Host is your machine's IP address and Port is the port at which **Druid Database** is running. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Some quick feedback! It would be a bit more visually cleaner to turn this into a list:
"Here's a breakdown of the key parts of this connection string:
- User: username portion of the credentials needed to connect to your database
- Password: password portion of the credentials needed to connect to your database
- Host: IP address (or URL) of the host machine that's running your database
- Port: specific port that's exposed on your host machine where your database is running"
This way, we can also add this to the other database pages as well and it's a bit more generalized!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Okay
Hey @Neeraj-2307 quick comment / piece of feedback! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the contribution!
@srinify how does this look to you? |
Thanks for the contribution! |
* Added details to Druid connection string While linking Superset to Druid the correct connection string is very important however in the docs it is not well explained , so I added a little description to it * Update druid.mdx
SUMMARY
While linking Superset to Druid the correct connection string is very important however in the docs it is not well explained , so I added a little description to it.