Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/jeffhollan/functions-csharp-eventhub-ordered-processing

Example of processing events in order with the Azure Functions Event Hubs trigger
https://github.com/jeffhollan/functions-csharp-eventhub-ordered-processing

azure-eventhub azure-functions serverless

Last synced: 3 months ago
JSON representation

Example of processing events in order with the Azure Functions Event Hubs trigger

Awesome Lists containing this project

README

        

# functions-csharp-eventhub-ordered-processing
Repo has examples of processing messages in order, and different patterns of reliable message handling.

[Related blog post: In order event processing](https://medium.com/@jeffhollan/in-order-event-processing-with-azure-functions-bb661eb55428)

[Related blog post: Reliable event processing](https://medium.com/@jeffhollan/reliable-event-processing-in-azure-functions-37054dc2d0fc)

|Sample|Link|
|--|--|
|In-Order Processing|[link](https://github.com/jeffhollan/functions-csharp-eventhub-ordered-processing/blob/master/OrderedEventHubs/EventHubTrigger.cs)|
|Simple Try-Catch|[link](https://github.com/jeffhollan/functions-csharp-eventhub-ordered-processing/blob/exception-basic/OrderedEventHubs/EventHubTrigger.cs)|
|Retry Policies|[link](https://github.com/jeffhollan/functions-csharp-eventhub-ordered-processing/blob/exception-retry/OrderedEventHubs/EventHubTrigger.cs)|
|Circuit Breaker|[link](https://github.com/jeffhollan/functions-csharp-eventhub-ordered-processing/blob/exception-circuitbreaker/OrderedEventHubs/EventHubTrigger.cs)|