From 3d54a165349ac19e538779b02e8197f872148150 Mon Sep 17 00:00:00 2001 From: Arda TANRIKULU Date: Mon, 23 Feb 2026 20:53:45 +0300 Subject: [PATCH 1/2] docs(gateway): mention Rust QP support w/ Docker --- .../gateway/other-features/rust-query-planner.mdx | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/packages/web/docs/src/content/gateway/other-features/rust-query-planner.mdx b/packages/web/docs/src/content/gateway/other-features/rust-query-planner.mdx index 401f5e9c178..fd7b1609852 100644 --- a/packages/web/docs/src/content/gateway/other-features/rust-query-planner.mdx +++ b/packages/web/docs/src/content/gateway/other-features/rust-query-planner.mdx @@ -31,7 +31,7 @@ Gateway using the Rust Query Planner and a purpose-built executor for Hive Gatew Then, configure your Hive Gateway to use the Rust Query Planner by updating your gateway's configuration: - + @@ -73,6 +73,19 @@ export const gateway = createGatewayRuntime({ + +You can add environment variable `HIVE_ROUTER_RUNTIME` to your Dockerfile when starting the container. + +```sh +docker run \ + -e HIVE_ROUTER_RUNTIME=true \ + -p 8080:8080 \ + -v "$(pwd)/supergraph.graphql:/gateway/supergraph.graphql" \ + ghcr.io/graphql-hive/gateway supergraph --port=8080 +``` + + + ## Exposing the Query Plan From 0955de48cdd50f2c8ab3c7183a665258e7c19cb4 Mon Sep 17 00:00:00 2001 From: Arda TANRIKULU Date: Tue, 24 Feb 2026 03:53:30 +0300 Subject: [PATCH 2/2] Update packages/web/docs/src/content/gateway/other-features/rust-query-planner.mdx Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> --- .../src/content/gateway/other-features/rust-query-planner.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/web/docs/src/content/gateway/other-features/rust-query-planner.mdx b/packages/web/docs/src/content/gateway/other-features/rust-query-planner.mdx index fd7b1609852..14cc1a901ca 100644 --- a/packages/web/docs/src/content/gateway/other-features/rust-query-planner.mdx +++ b/packages/web/docs/src/content/gateway/other-features/rust-query-planner.mdx @@ -74,7 +74,7 @@ export const gateway = createGatewayRuntime({ -You can add environment variable `HIVE_ROUTER_RUNTIME` to your Dockerfile when starting the container. +You can enable the Rust Query Planner by setting the `HIVE_ROUTER_RUNTIME` environment variable when running the Docker container. ```sh docker run \