diff --git a/_data/shared_chrome.json b/_data/shared_chrome.json index 1b0da599c5..ba31ebda09 100644 --- a/_data/shared_chrome.json +++ b/_data/shared_chrome.json @@ -1,7 +1,7 @@ { "$schema": "https://www.metabase.com/shared/chrome.schema.json", "version": 1, - "generated_at": "2026-07-12T06:11:41+00:00", + "generated_at": "2026-07-13T09:16:21+00:00", "origin": "https://www.metabase.com", "stylesheets": [ { diff --git a/_docs/latest/configuring-metabase/config-template.md b/_docs/latest/configuring-metabase/config-template.md index e2118a49ae..7bfe259627 100644 --- a/_docs/latest/configuring-metabase/config-template.md +++ b/_docs/latest/configuring-metabase/config-template.md @@ -320,6 +320,7 @@ config: sql-tools-parser-backend: sqlglot ssh-heartbeat-interval-sec: 180 start-of-week: sunday + static-viz-mode: graalvm subscription-allowed-domains: null surveys-enabled: true sync-leaf-fields-limit: 1000 diff --git a/_docs/latest/configuring-metabase/environment-variables.md b/_docs/latest/configuring-metabase/environment-variables.md index 80be4e06a7..9684a99fe4 100644 --- a/_docs/latest/configuring-metabase/environment-variables.md +++ b/_docs/latest/configuring-metabase/environment-variables.md @@ -2225,6 +2225,15 @@ Controls how often the heartbeats are sent when an SSH tunnel is established (in This will affect things like grouping by week or filtering in GUI queries. It won't affect most SQL queries, although it is used to set the WEEK_START session variable in Snowflake. +### `MB_STATIC_VIZ_MODE` + +- Type: keyword +- Default: `graalvm` + +How static visualizations (subscription/alert charts and pulse table cell colors) are rendered: + `graalvm` runs the JavaScript in-process on a pooled GraalVM context (default), or `node` runs it in a + pool of external Node.js child processes (requires a `node` binary on the host's PATH). + ### `MB_SUBSCRIPTION_ALLOWED_DOMAINS` > Only available on Metabase [Pro](/product/pro) and [Enterprise](/product/enterprise) plans. diff --git a/_docs/v0.62/configuring-metabase/config-template.md b/_docs/v0.62/configuring-metabase/config-template.md index 088b7afa7f..97ab13f831 100644 --- a/_docs/v0.62/configuring-metabase/config-template.md +++ b/_docs/v0.62/configuring-metabase/config-template.md @@ -318,6 +318,7 @@ config: sql-tools-parser-backend: sqlglot ssh-heartbeat-interval-sec: 180 start-of-week: sunday + static-viz-mode: graalvm subscription-allowed-domains: null surveys-enabled: true sync-leaf-fields-limit: 1000 diff --git a/_docs/v0.62/configuring-metabase/environment-variables.md b/_docs/v0.62/configuring-metabase/environment-variables.md index a3b39986d1..adb94413e2 100644 --- a/_docs/v0.62/configuring-metabase/environment-variables.md +++ b/_docs/v0.62/configuring-metabase/environment-variables.md @@ -2223,6 +2223,15 @@ Controls how often the heartbeats are sent when an SSH tunnel is established (in This will affect things like grouping by week or filtering in GUI queries. It won't affect most SQL queries, although it is used to set the WEEK_START session variable in Snowflake. +### `MB_STATIC_VIZ_MODE` + +- Type: keyword +- Default: `graalvm` + +How static visualizations (subscription/alert charts and pulse table cell colors) are rendered: + `graalvm` runs the JavaScript in-process on a pooled GraalVM context (default), or `node` runs it in a + pool of external Node.js child processes (requires a `node` binary on the host's PATH). + ### `MB_SUBSCRIPTION_ALLOWED_DOMAINS` > Only available on Metabase [Pro](/product/pro) and [Enterprise](/product/enterprise) plans.