Implementing Horizontally Scalable Transactional Outbox Pattern with .NET 8 and Kafka: A Practical Guide

This page summarizes the projects mentioned and recommended in the original post on dev.to

InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
  • SimpleTO

  • You can find the whole implementation by this link

  • librdkafka

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

  • 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"); } }

  • InfluxDB

    Power Real-Time Data Analytics at Scale. Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.

    InfluxDB logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts

  • Hangfire – Background Processing in .NET and .NET Core Applications

    1 project | news.ycombinator.com | 3 May 2024
  • Ask HN: Why does Bitwarden not comment their code?

    1 project | news.ycombinator.com | 3 May 2024
  • Your Friendly Guide to Understanding gRPC in .NET with C#

    1 project | dev.to | 3 May 2024
  • Automatic interfaces generation in the C#

    1 project | dev.to | 2 May 2024
  • Vanguard just went live and LoL players are claiming it's bricking their PCs

    1 project | news.ycombinator.com | 2 May 2024