librdkafka

The Apache Kafka C/C++ library [Moved to: https://github.com/confluentinc/librdkafka] (by edenhill)

Librdkafka Alternatives

Similar projects and alternatives to librdkafka based on common topics and language

NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a better librdkafka alternative or higher similarity.

librdkafka reviews and mentions

Posts with mentions or reviews of librdkafka. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-04-07.
  • Implementing Horizontally Scalable Transactional Outbox Pattern with .NET 8 and Kafka: A Practical Guide
    2 projects | dev.to | 7 Apr 2024
    while (!stoppingToken.IsCancellationRequested) { try { var payloads = consumer.ConsumeBatch(TimeSpan.FromMinutes(1), _maxConsumeBatchSize, stoppingToken); if (payloads.Count == 0) continue; foreach (var payload in payloads) { var message = serializer.Deserialize(payload.Message.Value); foreach (var handler in messageHandlers) { await handler.HandleAsync(message, stoppingToken); } } consumer.Commit(); } catch (OperationCanceledException) { break; } catch (ConsumeException e) { if (e.Error.IsFatal) { // https://github.com/edenhill/librdkafka/blob/master/INTRODUCTION.md#fatal-consumer-errors logger.LogCritical(e, "Fatal error consuming message"); break; } else { logger.LogError(e, "Error consuming message"); } } catch (Exception e) { logger.LogError(e, "Error consuming message"); } }

Stats

Basic librdkafka repo stats
1
7,252
-
about 1 month ago

edenhill/librdkafka is an open source project licensed under GNU General Public License v3.0 or later which is an OSI approved license.

The primary programming language of librdkafka is C.


Sponsored
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com