Hello everyone!
I’m working on micro services in django, for production scale. And, encountered multiples of challenges:
- After I’ve done successful integration of kafka with my django services, I went doubted that what are the standards and best practice to utilize the message comes from kafka cluster. As an architecture, the message should be stored first in the consumer service db and then backend logic be performed. Should i implement an API view literally?
- There also a service which receives realtime stock market data from external API and first writes on its own db then stream to frontend chart. What best practices are there to implement this in production?
- Microservice in Java will be seamless even with Apache Camel. Is there any alternative used as Apache Camel in django, since the official Camel not compatible with Python?
any advises for my adventure!?