Skip to content

Microservices training environment. Includes few microservices created in Go and Python

License

Notifications You must be signed in to change notification settings

JacekKorta/microservices-training-ground

Repository files navigation

microservices-training-ground

Project Status: WIP – Initial development is in progress, but there has not yet been a stable, usable release suitable for the public.

Description

The main goal of this project is to create an environment for learning and tests which includes the group of microservices. To make this project more “real” I developed a group of microservices which main task is to observe stackoverflow topics and download interesting questions. The project is intentionally overcomplicated.

For each observed stackoverflow topic/tag one instance of go.stack-app is being run. Grabbed questions are moved to RabbitMq. Because the services can grab the same message (questions can be overlapped between different tags), questions are deduplicated in the next step.

Service py.deduplicator is responsible for deduplication. This service reads messages from the queue, checks their id in RedisDB and if the id exists the message is dropped. Otherwise the message is sent to exchange for deduplicated messages and the ID of message is saved in DB

In the third step, the questions are being read, analyzed and tagged. They are put to the exchange with the routing key which depends on the question tag received in this step. Service go.message.tagger is responsible for this step.

As a final step, messages with additional information are sent by go.discord-publisher to the user.

Diagram: mtg diagram

Sub services

  1. go.stack-questions
  2. py.deduplicator
  3. go.message-tagger
  4. go.discord-publisher

How to run?

First download the main repository:

git clone git@github.com:JacekKorta/microservices-training-ground.git
cd microservices-training-ground

Then update/init all submodules

git submodule update --init

Setup all sub services. See each services's readme file for more information.

Finally you can start:

docker-compose up

Warning!

The configuration is not production ready.

About

Microservices training environment. Includes few microservices created in Go and Python

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published