From 94e30279cf40c9894804e05544ab7613cdc61ca9 Mon Sep 17 00:00:00 2001 From: SamyOubouaziz Date: Thu, 31 Jul 2025 15:56:03 +0200 Subject: [PATCH 1/2] docs(dwh): update deployment port MTA-6350 --- pages/data-warehouse/how-to/connect-applications.mdx | 8 ++++---- pages/data-warehouse/how-to/connect-bi-tools.mdx | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/pages/data-warehouse/how-to/connect-applications.mdx b/pages/data-warehouse/how-to/connect-applications.mdx index 89ae225ffb..eacf959105 100644 --- a/pages/data-warehouse/how-to/connect-applications.mdx +++ b/pages/data-warehouse/how-to/connect-applications.mdx @@ -62,7 +62,7 @@ To connect your deployment with BI tools, refer to the [dedicated documentation] ```sh - echo 'SELECT 1' | curl 'https://scwadmin:@.dtwh..scw.cloud:443' -d @- + echo 'SELECT 1' | curl 'https://scwadmin:@.dtwh..scw.cloud:8443' -d @- ``` `curl` only works with SQL queries, and does not allow direct connection to your Data Warehouse for ClickHouse® deployment. @@ -83,7 +83,7 @@ To connect your deployment with BI tools, refer to the [dedicated documentation] client = clickhouse_connect.get_client( host=".dtwh..scw.cloud", - port=443, + port=8443, username="scwadmin", password="", ) @@ -141,7 +141,7 @@ To connect your deployment with BI tools, refer to the [dedicated documentation] void (async () => { const client = createClient({ - url: 'https://f133556f-8578-486f-be7f-49f7da08b728.dtwh.fr-par.scw.cloud:443', + url: 'https://f133556f-8578-486f-be7f-49f7da08b728.dtwh.fr-par.scw.cloud:8443', username: 'scwadmin', password: 'PASSWORD' }) @@ -185,7 +185,7 @@ To connect your deployment with BI tools, refer to the [dedicated documentation] public class Main { public static void main(String[] args) throws SQLException, ClassNotFoundException { Class.forName("com.clickhouse.jdbc.ClickHouseDriver"); - String url = "jdbc:ch://scwadmin:PASSWORD@f133556f-8578-486f-be7f-49f7da08b728.dtwh.fr-par.scw.cloud:443/default?ssl=true"; + String url = "jdbc:ch://scwadmin:PASSWORD@f133556f-8578-486f-be7f-49f7da08b728.dtwh.fr-par.scw.cloud:8443/default?ssl=true"; try (Connection con = DriverManager.getConnection(url); Statement stmt = con.createStatement()) { ResultSet result_set = stmt.executeQuery("SELECT 1 AS one"); while (result_set.next()) { diff --git a/pages/data-warehouse/how-to/connect-bi-tools.mdx b/pages/data-warehouse/how-to/connect-bi-tools.mdx index cee52e3485..44401a2e66 100644 --- a/pages/data-warehouse/how-to/connect-bi-tools.mdx +++ b/pages/data-warehouse/how-to/connect-bi-tools.mdx @@ -47,7 +47,7 @@ Tableau is a powerful data visualization and business intelligence tool that ena | Setting | Value | | -------- |--------------------------------------------------------| | Server | Your ClickHouse® host (with no prefixes or suffix) | - | Port | 8443 | + | Port | 88443 | | Database | default | | Username | default | | Password | Password set at deployment creation | From 8d4bb01fad549217ef2859370a53d69c1f825e1c Mon Sep 17 00:00:00 2001 From: SamyOubouaziz Date: Thu, 31 Jul 2025 15:57:21 +0200 Subject: [PATCH 2/2] docs(dwh): update --- pages/data-warehouse/how-to/connect-bi-tools.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/data-warehouse/how-to/connect-bi-tools.mdx b/pages/data-warehouse/how-to/connect-bi-tools.mdx index 44401a2e66..cee52e3485 100644 --- a/pages/data-warehouse/how-to/connect-bi-tools.mdx +++ b/pages/data-warehouse/how-to/connect-bi-tools.mdx @@ -47,7 +47,7 @@ Tableau is a powerful data visualization and business intelligence tool that ena | Setting | Value | | -------- |--------------------------------------------------------| | Server | Your ClickHouse® host (with no prefixes or suffix) | - | Port | 88443 | + | Port | 8443 | | Database | default | | Username | default | | Password | Password set at deployment creation |