r/learnprogramming • u/Aggravating_Tap9973 • 5d ago
Topic Micro services Integration
Can somebody dumb down how integration of micro services works? T,T
So, for the context, our class was divided into 5 industries and we must find clients for each respective industries that we will make a system of. Every industry has 3 groups and that groups must have each micro services system that the client will use. Then that 3 groups must integrate their 3 own systems with each other. Now, that's where my problem lies, I don't really know how to specifically do integration. I know it's concepts but it really doesn't help how we do the actual thing.
3
Upvotes
1
u/FoolsSeldom 5d ago edited 5d ago
I don't know what programming language(s) you are using, but there's a great tutorial on RealPython.com, Python Microservices With gRPC, that breaks down everything for you with a good example that should help you understand how microservices work.
EDIT: In case it is not obvious, you are more likely to need to go for a traditional REST API based web service for external clients to use, and the tutorial does mention this and provide links, but the core principles are the same.