https://github.com/kedacore/sample-dotnet-worker-servicebus-queue
Simple queue worker written in .NET powered by KEDA
https://github.com/kedacore/sample-dotnet-worker-servicebus-queue
keda
Last synced: 3 months ago
JSON representation
Simple queue worker written in .NET powered by KEDA
- Host: GitHub
- URL: https://github.com/kedacore/sample-dotnet-worker-servicebus-queue
- Owner: kedacore
- License: apache-2.0
- Created: 2019-05-24T08:33:52.000Z (over 6 years ago)
- Default Branch: main
- Last Pushed: 2024-06-06T08:11:34.000Z (over 1 year ago)
- Last Synced: 2025-06-08T07:09:35.671Z (4 months ago)
- Topics: keda
- Language: C#
- Homepage:
- Size: 1.55 MB
- Stars: 85
- Watchers: 8
- Forks: 58
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# .NET Core worker processing Azure Service Bus Queue scaled by KEDA
A simple Docker container written in .NET that will receive messages from a Service Bus queue and scale via KEDA.The message processor will receive a single message at a time (per instance), and sleep for 2 second to simulate performing work. When adding a massive amount of queue messages, KEDA will drive the container to scale out according to the event source (Service Bus Queue).
We provide samples for the following scenarios:
- [**Process Azure Service Bus Queue by using Azure AD Pod Identity**](pod-identity.md)
- [**Process Azure Service Bus Queue by using Azure AD Workload Identity**](workload-identity.md)
- [**Process Azure Service Bus Queue by using connection string authentication**](connection-string-scenario.md)
> 💡 *If you want to learn how to scale this sample with KEDA 1.0, feel free to read about it [here](https://github.com/kedacore/sample-dotnet-worker-servicebus-queue/tree/keda-v1.0).*