docs(databases): Update pinot.mdx to incorporate username and password based connection. (#26000)

This commit is contained in:
Amrit Raj 2023-11-28 01:58:49 +05:30 committed by GitHub
parent 4fc2758e6a
commit d20f96f8d0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 0 deletions

View File

@ -14,3 +14,9 @@ The expected connection string is formatted as follows:
```
pinot+http://<pinot-broker-host>:<pinot-broker-port>/query?controller=http://<pinot-controller-host>:<pinot-controller-port>/``
```
The expected connection string using username and password is formatted as follows:
```
pinot://<username>:<password>@<pinot-broker-host>:<pinot-broker-port>/query/sql?controller=http://<pinot-controller-host>:<pinot-controller-port>/verify_ssl=true``
```