From a94947939a6dc234c71f7a51fec40e9059f6f8e7 Mon Sep 17 00:00:00 2001 From: gamandeepsingh Date: Thu, 11 Jun 2026 23:26:42 +0530 Subject: [PATCH] Increase max-grpc-errors threshold to prevent indexer exit on transient gRPC issues --- example.cloudbreak.index.toml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/example.cloudbreak.index.toml b/example.cloudbreak.index.toml index 56e8de9..76fbe15 100644 --- a/example.cloudbreak.index.toml +++ b/example.cloudbreak.index.toml @@ -37,8 +37,10 @@ timeout = 60 chunk-size = 1000 max-chunk-bytes-data = 2097152 # The max number of grpc errors before trying to reconnect -# (it will always reconnect on a single stream `None`) -max-grpc-errors = 1 +# (it will always reconnect on a single stream `None`). +# Keep this at 10 or higher; setting it to 1 causes the indexer to exit on +# the first transient gRPC hiccup (e.g. a brief network blip). +max-grpc-errors = 10 # The buffer size for queuing subscription events channel-size = 1000