You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|[**supergraph**](#supergraph)|`object`|Configuration for the Federation supergraph source. By default, the router will use a local file-based supergraph source (`./supergraph.graphql`).<br/>||
18
-
|[**traffic\_shaping**](#traffic_shaping)|`object`|Configuration for the traffic-shaper executor. Use these configurations to control how requests are being executed to subgraphs.<br/>Default: `{"dedupe_enabled":true,"max_connections_per_host":100,"pool_idle_timeout_seconds":50}`<br/>||
19
+
|[**traffic\_shaping**](#traffic_shaping)|`object`|Configuration for the traffic-shaping of the executor. Use these configurations to control how requests are being executed to subgraphs.<br/>Default: `{"dedupe_enabled":true,"max_connections_per_host":100,"pool_idle_timeout":"50s"}`<br/>||
19
20
20
21
**Additional Properties:** not allowed
21
22
**Example**
@@ -57,6 +58,9 @@ headers:
57
58
default: unknown
58
59
named: x-tenant-id
59
60
rename: x-acct-tenant
61
+
hmac_signature:
62
+
enabled: false
63
+
extension_name: hmac-signature
60
64
http:
61
65
host: 0.0.0.0
62
66
port: 4000
@@ -109,7 +113,7 @@ supergraph: {}
109
113
traffic_shaping:
110
114
dedupe_enabled: true
111
115
max_connections_per_host: 100
112
-
pool_idle_timeout_seconds: 50
116
+
pool_idle_timeout: 50s
113
117
114
118
```
115
119
@@ -1341,6 +1345,25 @@ For more information on the available functions and syntax, see the
@@ -1808,7 +1831,7 @@ Request timeout for the Hive Console CDN requests.
1808
1831
<a name="traffic_shaping"></a>
1809
1832
## traffic\_shaping: object
1810
1833
1811
-
Configuration for the traffic-shaper executor. Use these configurations to control how requests are being executed to subgraphs.
1834
+
Configuration for the traffic-shaping of the executor. Use these configurations to control how requests are being executed to subgraphs.
1812
1835
1813
1836
1814
1837
**Properties**
@@ -1817,15 +1840,15 @@ Configuration for the traffic-shaper executor. Use these configurations to contr
1817
1840
|----|----|-----------|--------|
1818
1841
|**dedupe\_enabled**|`boolean`|Enables/disables request deduplication to subgraphs.<br/><br/>When requests exactly matches the hashing mechanism (e.g., subgraph name, URL, headers, query, variables), and are executed at the same time, they will<br/>be deduplicated by sharing the response of other in-flight requests.<br/>Default: `true`<br/>||
1819
1842
|**max\_connections\_per\_host**|`integer`|Limits the concurrent amount of requests/connections per host/subgraph.<br/>Default: `100`<br/>Format: `"uint"`<br/>Minimum: `0`<br/>||
1820
-
|**pool\_idle\_timeout\_seconds**|`integer`|Timeout for idle sockets being kept-alive.<br/>Default: `50`<br/>Format: `"uint64"`<br/>Minimum: `0`<br/>||
1843
+
|**pool\_idle\_timeout**|`string`|Timeout for idle sockets being kept-alive.<br/>Default: `"50s"`<br/>||
0 commit comments