```2024-02-18T16:27:15.898Z info exporterhelper/re...
# support
s
Copy code
2024-02-18T16:27:15.898Z	info	exporterhelper/retry_sender.go:177	Exporting failed. Will retry the request after interval.	{"kind": "exporter", "data_type": "metrics", "name": "clickhousemetricswrite", "error": "read: read tcp 10.108.4.18:47004->10.112.6.114:9000: use of closed network connection", "errorVerbose": "read:\n    <http://github.com/ClickHouse/ch-go/proto.(*Reader).ReadFull|github.com/ClickHouse/ch-go/proto.(*Reader).ReadFull>\n        /home/runner/go/pkg/mod/github.com/!click!house/ch-go@v0.58.2/proto/reader.go:62\n  - read tcp 10.108.4.18:47004->10.112.6.114:9000: use of closed network connection", "interval": "50ms"}
facing this error frequently otel collector ........ there are around 8 Otelcollcetor pods currently parallel. is there any way i can fix this error
s
Increase the
timeout: 10s
or something for
clickhousemetricswrite
exporter.
s
Sure will try that and let you know.... Thank you so much for the support @Srikanth Chekuri
Copy code
exporters:
      clickhousetraces: 
        datasource: tcp://${CLICKHOUSE_HOST}:${ }/?database=${CLICKHOUSE_TRACE_DATABASE}&username=${CLICKHOUSE_USER}&password=${CLICKHOUSE_PASSWORD}
        low_cardinal_exception_grouping: ${LOW_CARDINAL_EXCEPTION_GROUPING}
      clickhousemetricswrite:
        endpoint: tcp://${CLICKHOUSE_HOST}:${CLICKHOUSE_PORT}/?database=${CLICKHOUSE_DATABASE}&username=${CLICKHOUSE_USER}&password=${CLICKHOUSE_PASSWORD}
        resource_to_telemetry_conversion:
          enabled: true
      clickhouselogsexporter:
        dsn: tcp://${CLICKHOUSE_HOST}:${CLICKHOUSE_PORT}/?username=${CLICKHOUSE_USER}&password=${CLICKHOUSE_PASSWORD}
        timeout: 10s
      prometheus:
        endpoint: 0.0.0.0:8889
By the way in the above Chart Snippet there is no timeout mentioned for clickhousemetricswrite... How can i do that
s
Add it if it doesn't exist.
s
Thanks ☺️