This is an automated email from the ASF dual-hosted git repository.
sfirke pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/superset.git
The following commit(s) were added to refs/heads/master by this push:
new d20f96f8d0 docs(databases): Update pinot.mdx to incorporate username
and password based connection. (#26000)
d20f96f8d0 is described below
commit d20f96f8d0c020e2085e8561f89f799c7b919b15
Author: Amrit Raj <[email protected]>
AuthorDate: Tue Nov 28 01:58:49 2023 +0530
docs(databases): Update pinot.mdx to incorporate username and password
based connection. (#26000)
---
docs/docs/databases/pinot.mdx | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/docs/docs/databases/pinot.mdx b/docs/docs/databases/pinot.mdx
index 8d5b8c2062..e6add897ba 100644
--- a/docs/docs/databases/pinot.mdx
+++ b/docs/docs/databases/pinot.mdx
@@ -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``
+```