Giter VIP home page Giter VIP logo

icarotorres-zz / rabbitmq-billing-processing Goto Github PK

View Code? Open in Web Editor NEW
3.0 1.0 1.0 1.8 MB

This repo demonstrates two different approaches to solving a fictitious Customer Billing Processing scenario. For such end are used .Net core 3.1, RabbitMQ, MongoDB Atlas, Redis Distributed Cache, Sqlite, Rest APIs and Console Workers.

License: MIT License

C# 100.00%
rabbitmq microservices-demo netcore31 redis-cache cloudamqp mongodb-atlas rpc

rabbitmq-billing-processing's Introduction

RabbitMq-Billing-Processing

github-actions Quality Gate Status Coverage

Purpose

Demonstrates different approaches to solving a fictitious Customer Billing Processing scenario. The solutions are made with the intention of experimenting and practicing techniques used in the composition of microservices architectures, without relying on paid licenses, hardware and software installation. For such end are used .Net core 3.1, RabbitMQ, MongoDB Atlas, Redis Distributed Cache, Sqlite, Rest APIs and Console Workers. This repo was designed to have only self-contained solutions, executable without installations, except for the nuget packages used.

Stack

Used Protocols

HTTP, AMQP, RPC and Redis

Scenario

A Service that allows registration and consultation of customers.

  • The registration method must receive as parameters: Name (string), State (string), CPF (string), must validate the CPF and format it to a numerical value, in addition, duplicate CPFs or empty fields must not be accepted. Persist the data the way you want.
  • The Query Method must receive a CPF (string) as parameters, validate the CPF and perform the query.

A Service that records a charge for a particular customer.

  • The API should expose a method that takes as parameters the Due Date, CPF and the amount of the billing. After validating the data, the API must persist the charges received in MongoDB.
  • The API must expose a method that receives a CPF or a reference month as a parameter and returns the charges registered according to the filter (CPF, Due Date and Amount). At least one of the filters is mandatory.

A Service that calculates the value of customer charges.

  • Its process consists of consulting all registered customers, calculating and registering charges as quickly as possible (Using the two APIs built in the previous steps). The calculation is made as follows: first 2 digits of the CPF concatenated to the last 2 digits of the customer's CPF. For example, on CPF 12345678, the amount charged will be R$ 1278.00.

Solution design

Web APIs

Developed Web APIs operates in a similar manner:

  • http requests accepting and returning json content;
  • rest (hateoas left behind for simplicity);
  • swagger docs;
  • mediatR request/response pipeline with fluent validation behavior;
  • fail fast with lighter queries for pre-conditions before executing acctual use cases;
  • default response contract as following:
{
  "data" : resource,
  "errors": [string]
}

Customers API Endpoints

POST - /api/customers request body:

{
    "cpf": "97538515615",
    "name": "sample user name",
    "state": "MG"
}
  • 201 Created response body: (with location in header)
{
  "data": {
    "cpf": 97538515615,
    "name": "SAMPLE USER NAME",
    "state": "MG"
  },
  "errors": []
}
  • 409 Conflict response body:
{
  "data": null,
  "errors": ["Cliente já existe para dado Cpf 97538515615"]
}
  • 400 BadRequest response body:
{
  "data": null,
  "errors": [
    "Nome não pode ser vazio ou nulo",
    "Estado inválido",
    "Cpf inválido"
  ]
}

GET - /api/customers/{cpf}

  • 200 OK response body:
{
  "data": {
    "cpf": 97538515615,
    "name": "SAMPLE USER NAME",
    "state": "MG"
  },
  "errors": []
}
  • 400 OK response body:
{
  "data": null,
  "errors": ["Cpf inválido"]
}
  • 404 NotFound response body:
{
  "data": null,
  "errors": ["Cliente não encontrado para dado Cpf 97538515615"]
}

Issuance API Endpoints

POST - /api/billings request body:

{
    "cpf": "97538515615",
    "amount": 123.56,
    "dueDate": "20-07-2021"
}
  • 201 Created response body: (without location in header due to lack of unique get endpoint)
{
  "data": {
    "id": "4ada6a08-4a8d-4c0d-82f3-2ae3cd4ddd6a",
    "cpf": "97538515615",
    "dueDate": "20-07-2021",
    "amount": 123.56
  },
  "errors": []
}
  • 400 BadRequest response body:
{
  "data": null,
  "errors": [
    "Vencimento precisa representar uma data válida futura no formato [dd-MM-yyyy]",
    "Valor não pode ser 0 ou negativo",
    "Cpf inválido"
  ]
}

GET - api/billings?month=06-2021&cpf=02903084530

  • 200 OK response body:
{
  "data": [{
    "id": "4ada6a08-4a8d-4c0d-82f3-2ae3cd4ddd6a",
    "cpf": "97538515615",
    "dueDate": "20-07-2021",
    "amount": 123.56
  }],
  "errors": []
}
  • 400 OK response body:
{
  "data": null,
  "errors": [
    "Cpf inválido",
    "Informe um valor para ao menos um dos dois Cpf e/ou mês",
    "Vencimento precisa atender o formato [MM-yyyy], com mês de 1 a 12 e ano >= 2000"
  ]
}

Processing Workers

Scheduled Billing Processing

A Web hosted console application, instead of a normal console. Making it easier to monitor and collect metrics for the execution and health of the application if needed, in addition to benefiting from the easy dependency injection of the web host.

  • contains simplified model representions of customers and billing entities;
  • scheduled delay between batchs configured from appsettings allowing diferent intervals for each release;
  • do remote procedure calls to servers on each apis in separated tasks and wait for both;
  • as soon as both counterparts are received, runs all billings in parallel;
  • matching its related customer by binary searchs;
  • and call implemented algorithm to process the pairs and send the batch in the next scheduled time (as short as possible);
  • if the processed batch failed to be received on the rpc server, it will be remade automatically on next time;
  • because the server service will not update the records and will resend them in the next requested batch;
  • so when the RPC client and both servers are running.
Execution workflow:
  • 2 isollated Web APIs (Customers, Issuance) interacting with end-users;
  • performing Its independent use cases (create and query);
  • persisting their data in each respective database without any data replication between them;
  • the processing is executed by a third Worker Service as a scheduled batch of changes;
  • done by Remote Procedure Calls from iT being a RPC client;
  • to both APIs having background hosted services implemented as RPC servers;
  • receiving changes and returning current data to be processed.

Billing Processing - Scheduled Architecture

Eventual Billing Processing

Similar to the scheduled Processing Worker definition except by being a Pub / Sub AMQP Worker using events instead of Procedure Calls.

  • contains simplified model representions of customers and billing entities;
  • consumes both 'customer_registered' and 'billing_issued' events and react to them;
  • controlls the event flow persisting data partially replicated from APIs;
  • discarding them as soon as the flow is confirmed;
  • when both counterparts are received, runs all billings in parallel;
  • with no need of mathing related customer by binary searchs;
  • by having It previously persisted by key or being imediately received;
  • and call implemented algorithm to process the pairs and emit a batch_processed event when finished;
  • performing a per-customer processing but allowing multiple customers being processed by different Consumer instances;
Execution workflow:
  • 2 Web APIs (Customers, Issuance) interacting with end-users;
  • performing Its independent use cases (create and query);
  • persisting their data in each respective database;
  • but emitting events notifying Its entities creations;
  • to a third Pub / Sub processing service consuming and reacting to them;
  • partially and temporarilly replicating data to control the event flow;
  • in case of billings arriving before respective customer;
  • they are stored grouped by customer cpf key as awaiting Its arrival;
  • being processed when both customer and billings data are fetch togheter;
  • them sending processed event to Its queue;
  • releasing temporary data when the message become acked.

Billing Processing - Eventual Architecture

Library

Simulates private enterprise libraries with shared SDKs. For the sake of lazyness leaving me from code repetition among the services :) Contains common abstractions, implementations, value objects, dependency injection extensions, integration settings, shared event handling code easing pub / sub integrations with previously made API request/response pipeline use cases.

rabbitmq-billing-processing's People

Stargazers

 avatar  avatar  avatar

Watchers

 avatar

Forkers

tuongntk

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.