Skip to content

Commit

Permalink
Remove experimental_introspection_mode from docs
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonSapin committed Oct 14, 2024
1 parent 9e3219c commit a1d8df5
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion docs/source/configuration/overview.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -593,7 +593,6 @@ Starting with v1.56.0, to run the most performant and resource-efficient native

```yaml title="router.yaml"
experimental_query_planner_mode: new
experimental_introspection_mode: new
```

You can also improve throughput by reducing the size of queries sent to subgraphs with the following option:
Expand Down
3 changes: 1 addition & 2 deletions docs/source/executing-operations/native-query-planner.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,9 @@ To run the native query planner with the best performance and resource utilizati

```yaml title="router.yaml"
experimental_query_planner_mode: new
experimental_introspection_mode: new
```
Setting `experimental_query_planner_mode: new` and `experimental_introspection_mode: new` not only enables native query planning and schema introspection, it also disables the V8 JavaScript runtime used by the legacy query planner. Disabling V8 frees up CPU and memory and improves native query planning performance.
Setting `experimental_query_planner_mode: new` not only enables native query planning and schema introspection, it also disables the V8 JavaScript runtime used by the legacy query planner. Disabling V8 frees up CPU and memory and improves native query planning performance.

Additionally, to enable more optimal native query planning and faster throughput by reducing the size of queries sent to subgraphs, you can enable query fragment generation with the following option:

Expand Down

0 comments on commit a1d8df5

Please sign in to comment.