Skip to content
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

Merged
merged 2 commits into from
Jun 17, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/docs/databases/druid.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Copy link
Contributor

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!

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Okay


### Customizing Druid Connection

Expand Down