From 2f71fc4ae26fd10e1119a58917d708cb7170c899 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mois=C3=A9s=20Calzado?= Date: Tue, 5 Dec 2023 14:06:25 +0100 Subject: [PATCH] Delete deprecated docs for Trackjs and external DW tunning --- doc/customizations-enable-disable-trackjs.md | 8 -------- doc/customizations-external-datawarehouse-tunning.md | 12 ------------ 2 files changed, 20 deletions(-) delete mode 100644 doc/customizations-enable-disable-trackjs.md delete mode 100644 doc/customizations-external-datawarehouse-tunning.md diff --git a/doc/customizations-enable-disable-trackjs.md b/doc/customizations-enable-disable-trackjs.md deleted file mode 100644 index 9c188a7..0000000 --- a/doc/customizations-enable-disable-trackjs.md +++ /dev/null @@ -1,8 +0,0 @@ -### Enabling-Disabling TrackJS - -- TrackJS is enabled by default in the www components, but you can disable it with these variables in your `customer.env` file: - - ```bash - REACT_APP_ACCOUNTS_WWW_ENABLE_TRACKJS=false - REACT_APP_WORKSPACE_WWW_ENABLE_TRACKJS=false - ``` \ No newline at end of file diff --git a/doc/customizations-external-datawarehouse-tunning.md b/doc/customizations-external-datawarehouse-tunning.md deleted file mode 100644 index c8f9bf3..0000000 --- a/doc/customizations-external-datawarehouse-tunning.md +++ /dev/null @@ -1,12 +0,0 @@ -### External Data warehouse tuning - -CARTO Self Hosted connects to your data warehouse to perform the analysis with your data. When connecting it with Postgres -or with Redshift it is important to understand and configure the connection pool. - -Each node will have a connection pool controlled by the environment variables `MAPS_API_V3_POSTGRES_POOL_SIZE` and -`MAPS_API_V3_REDSHIFT_POOL_SIZE`. The pool is per connection created from CARTO Self Hosted. If each user creates a different -connection, each one will have its own pool. The maximum connections can be calculated with the following formula: - -```javascript -max_connections = pool_size * number_connections * number_nodes; -```