Не удается управлять частотой сердцебиения - PullRequest
0 голосов
/ 01 апреля 2019

Я использую клиент Confluent's C # Kafka.Когда потребитель начинает потреблять, я наблюдаю с помощью Wireshark, что к серверу поступает около 16 запросов в секунду.Я попытался установить "HeartbeatIntervalMs = 3000" в конфигурации пользователя, но это ничего не изменило.Как я могу управлять этой частотой?

РЕДАКТИРОВАТЬ:

Запросы представляют собой пары зашифрованных символов.В каждой паре запросов первый - около 60 байтов в проводе, а второй - около 140 байтов в проводе.Второй содержит слово «Kafka» и все подписанные темы, которые могут добавить много данных, если число подписанных тем велико.

Код, который я использую, является примером кода на Confluent'sGithub страница.Я только добавил HeartbeatIntervalMs и SessionTimeoutMs, но они все равно не меняют частоту запросов:

var conf = new ConsumerConfig
        { 
            GroupId = "test-consumer-group",
            BootstrapServers = "localhost:9092",
            // Note: The AutoOffsetReset property determines the start offset in the event
            // there are not yet any committed offsets for the consumer group for the
            // topic/partitions of interest. By default, offsets are committed
            // automatically, so in this example, consumption will only start from the
            // earliest message in the topic 'my-topic' the first time you run the program.
            AutoOffsetReset = AutoOffsetReset.Earliest,
            HeartbeatIntervalMs = 3000,
            SessionTimeoutMs = 10000
        };

        using (var c = new ConsumerBuilder<Ignore, string>(conf).Build())
        {
            c.Subscribe("my-topic");

            CancellationTokenSource cts = new CancellationTokenSource();
            Console.CancelKeyPress += (_, e) => {
                e.Cancel = true; // prevent the process from terminating.
                cts.Cancel();
            };

            try
            {
                while (true)
                {
                    try
                    {
                        var cr = c.Consume(cts.Token);
                        Console.WriteLine($"Consumed message '{cr.Value}' at: '{cr.TopicPartitionOffset}'.");
                    }
                    catch (ConsumeException e)
                    {
                        Console.WriteLine($"Error occured: {e.Error.Reason}");
                    }
                }
            }
            catch (OperationCanceledException)
            {
                // Ensure the consumer leaves the group cleanly and final offsets are committed.
                c.Close();
            }
        }
...