Two microservices for read and write to one database table
问题 I'm a little bit confused about the microservice best practice approach. Following scenario: Massive incoming messages from mqtt devices. A rest api where customers could read the messages (mostly only a part of them). My idea was, to create one microservice for storing the messages in a database table. And a second microservice with a rest api to read this messages. I want to do this, because of scaling issues. (The incoming storing part needs much more power, than the reading rest api) I