mirror of
https://github.com/hyperdxio/hyperdx
synced 2026-04-21 13:37:15 +00:00
fix: disable keep_alive on the browser side (ch client) (#812)
We should disable 'keep_alive' for the clickhouse browser client due to fetch API limit. Users would likely to hit the error in dashboard when there are many concurrent requests. ref: HDX-1697 From https://fetch.spec.whatwg.org/ ``` If contentLength is non-null and httpRequest’s [keepalive](https://fetch.spec.whatwg.org/#request-keepalive-flag) is true, then: Let inflightKeepaliveBytes be 0. Let group be httpRequest’s [client](https://fetch.spec.whatwg.org/#concept-request-client)’s [fetch group](https://fetch.spec.whatwg.org/#concept-fetch-group). Let inflightRecords be the set of [fetch records](https://fetch.spec.whatwg.org/#concept-fetch-record) in group whose [request](https://fetch.spec.whatwg.org/#concept-fetch-record-request)’s [keepalive](https://fetch.spec.whatwg.org/#request-keepalive-flag) is true and [done flag](https://fetch.spec.whatwg.org/#done-flag) is unset. [For each](https://infra.spec.whatwg.org/#list-iterate) fetchRecord of inflightRecords: Let inflightRequest be fetchRecord’s [request](https://fetch.spec.whatwg.org/#concept-fetch-record-request). Increment inflightKeepaliveBytes by inflightRequest’s [body](https://fetch.spec.whatwg.org/#concept-request-body)’s [length](https://fetch.spec.whatwg.org/#concept-body-total-bytes). If the sum of contentLength and inflightKeepaliveBytes is greater than 64 kibibytes, then return a [network error](https://fetch.spec.whatwg.org/#concept-network-error). ```
This commit is contained in:
parent
0cf535890f
commit
b51e39cd54
2 changed files with 9 additions and 0 deletions
5
.changeset/long-goats-fail.md
Normal file
5
.changeset/long-goats-fail.md
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
"@hyperdx/common-utils": patch
|
||||
---
|
||||
|
||||
fix: disable keep_alive on the browser side (ch client)
|
||||
|
|
@ -457,6 +457,10 @@ export class ClickhouseClient {
|
|||
},
|
||||
username: '',
|
||||
password: '',
|
||||
// Disable keep-alive to prevent multiple concurrent dashboard requests from exceeding the 64KB payload size limit.
|
||||
keep_alive: {
|
||||
enabled: false,
|
||||
},
|
||||
});
|
||||
return clickhouseClient.query<Format>({
|
||||
query,
|
||||
|
|
|
|||
Loading…
Reference in a new issue