This repository shows minimal example how to integrate masstransit with other languages like Python via direct exchanges.
DummyApiService
↓
(my-routing-key + correlation_id + reply_to)
↓
RabbitMQ(my-exchange)
↓
pythonWorker
↓
(reply_to + correlation_id)
↓
RabbitMQ(default-exchange)
- run pythonworker.py
- build in Debug mode and run DummyApiService
- Open https://localhost:5551/swagger/index.html and make request
Install RabbitMQ
helm repo add bitnami https://charts.bitnami.com/bitnami
helm repo update
helm install test --set auth.username=root,auth.password=root,auth.erlangCookie=secretcookie bitnami/rabbitmq
helm delete test
forward ports:
kubectl port-forward --namespace default svc/test-rabbitmq 15672:15672 5672:5672