Merge pull request #5042 from influxdata/chunchun/tableau

chore(tableau): replace to use `useSystemTrustStore=false` and add explanation
pull/5043/head^2
Chunchun Ye 2023-07-24 11:50:27 -05:00 committed by GitHub
commit e96d3313f1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 4 deletions

View File

@ -77,7 +77,10 @@ To query {{< cloud-name >}} from Tableau, use the **Flight SQL protocol** and th
- **Protocol**: `jdbc:arrow-flight-sql`
- **Port**: `443`
- **Query parameters**:
- **disableCertificateVerification**: `true`
- **useSystemTrustStore**: `false`
{{% note %}}
Setting `useSystemTrustStore=false` is only necessary on macOS and doesn't actually affect the security of the connection to Tableau.
{{% /note %}}
- **database**: InfluxDB database name to query
_See an [example connection URL](#example-connection-url)._
@ -94,7 +97,7 @@ To query {{< cloud-name >}} from Tableau, use the **Flight SQL protocol** and th
{{< code-placeholders "DATABASE_NAME" >}}
```
jdbc:arrow-flight-sql://cluster-id.influxdb.io:443?disableCertificateVerification=true&database=DATABASE_NAME
jdbc:arrow-flight-sql://cluster-id.influxdb.io:443?useSystemTrustStore=false&database=DATABASE_NAME
```
{{< /code-placeholders >}}

View File

@ -71,7 +71,10 @@ To query {{< cloud-name >}} from Tableau, use the **Flight SQL protocol** and th
- **Protocol**: `jdbc:arrow-flight-sql`
- **Port**: `443`
- **Query parameters**:
- **disableCertificateVerification**: `true`
- **useSystemTrustStore**: `false`
{{% note %}}
Setting `useSystemTrustStore=false` is only necessary on macOS and doesn't actually affect the security of the connection to Tableau.
{{% /note %}}
- **database**: InfluxDB bucket name to query
_See an [example connection URL](#example-connection-url)._
@ -88,7 +91,7 @@ To query {{< cloud-name >}} from Tableau, use the **Flight SQL protocol** and th
{{< code-placeholders "BUCKET_NAME" >}}
```
jdbc:arrow-flight-sql://us-east-1-1.aws.cloud2.influxdata.com:443?disableCertificateVerification=true&database=BUCKET_NAME
jdbc:arrow-flight-sql://us-east-1-1.aws.cloud2.influxdata.com:443?useSystemTrustStore=false&database=BUCKET_NAME
```
{{< /code-placeholders >}}