Skip to content

SYSTEM Cited by 1 source

Tableau

Definition

Tableau is a commercial business-intelligence / dashboarding tool (now part of Salesforce) widely deployed as a SQL-query client against data warehouses and lakehouses.

Role in this wiki

Tableau appears primarily as the canonical BI-query client whose workload shape (low per-query complexity, high concurrency, heavy metadata-query traffic for health checks) justifies a dedicated BI-cluster tier behind a query gateway.

Named explicitly as one of the two BI tools whose queries Trino Gateway routing rules detect (via the X-Trino-Source HTTP header) and redirect to BI-optimised Trino clusters (sources/2026-03-24-expedia-operating-trino-at-scale-with-trino-gateway):

condition: 'request.getHeader("X-Trino-Source") contains "Tableau" || request.getHeader("X-Trino-Source") contains "Looker"' actions: - 'result.put("routingGroup", "gateway-bi")'

Tableau's workload is also the source of much metadata-query load (repeated select version() / show catalogs health checks on cluster connection), which is the motivating example for Expedia's metadata-cluster routing rule.

Seen in

Last updated · 200 distilled / 1,178 read