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
When our docker standalone setup is under load and metrics export encounters some "context deadline exceeded" errors from the DB then we also encounter some re-use of closed connections by the clickhousemetricswrite:
signoz-otel-collector | {"level":"info","ts":1730974515.0031528,"caller":"internal/retry_sender.go:118","msg":"Exporting failed. Will retry the request after interval.","kind":"exporter","data_type":"metrics","name":"clickhousemetricswrite","error":"context deadline exceeded","interval":"3.98555793s"}
signoz-otel-collector | {"level":"info","ts":1730974523.9898968,"caller":"internal/retry_sender.go:118","msg":"Exporting failed. Will retry the request after interval.","kind":"exporter","data_type":"metrics","name":"clickhousemetricswrite","error":"read: read tcp 172.27.0.6:60724->172.27.0.5:9000: use of closed network connection","errorVerbose":"read:\n github.com/ClickHouse/ch-go/proto.(*Reader).ReadFull\n /home/runner/go/pkg/mod/github.com/!sig!noz/[email protected]/proto/reader.go:62\n - read tcp 172.27.0.6:60724->172.27.0.5:9000: use of closed network connection","interval":"7.631739029s"}
signoz-otel-collector | {"level":"info","ts":1730974536.6228452,"caller":"internal/retry_sender.go:118","msg":"Exporting failed. Will retry the request after interval.","kind":"exporter","data_type":"metrics","name":"clickhousemetricswrite","error":"read: read tcp 172.27.0.6:47404->172.27.0.5:9000: use of closed network connection","errorVerbose":"read:\n github.com/ClickHouse/ch-go/proto.(*Reader).ReadFull\n /home/runner/go/pkg/mod/github.com/!sig!noz/[email protected]/proto/reader.go:62\n - read tcp 172.27.0.6:47404->172.27.0.5:9000: use of closed network connection","interval":"9.057163987s"}
signoz-otel-collector | {"level":"info","ts":1730974550.6819594,"caller":"internal/retry_sender.go:118","msg":"Exporting failed. Will retry the request after interval.","kind":"exporter","data_type":"metrics","name":"clickhousemetricswrite","error":"read: read tcp 172.27.0.6:36234->172.27.0.5:9000: use of closed network connection","errorVerbose":"read:\n github.com/ClickHouse/ch-go/proto.(*Reader).ReadFull\n /home/runner/go/pkg/mod/github.com/!sig!noz/[email protected]/proto/reader.go:62\n - read tcp 172.27.0.6:36234->172.27.0.5:9000: use of closed network connection","interval":"19.462073548s"}
This effectively blocks ingestion of metrics. It can be solved by restarting the collector but is not feasible in production.
The text was updated successfully, but these errors were encountered:
When our docker standalone setup is under load and metrics export encounters some "context deadline exceeded" errors from the DB then we also encounter some re-use of closed connections by the clickhousemetricswrite:
This effectively blocks ingestion of metrics. It can be solved by restarting the collector but is not feasible in production.
The text was updated successfully, but these errors were encountered: