feat: Implementación Sistema de Procesamiento de Transacciones con CQRS y EDA - Kenny Luque #481
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Descripción
Este PR introduce la implementación del sistema de procesamiento de transacciones basado en microservicios, siguiendo patrones CQRS y EDA. Configura la infraestructura necesaria y los dos servicios principales: Transaction Service y AntiFraud Service.
transaction_service
: Microservicio NestJS con API GraphQL y REST para crear y consultar transacciones. Implementa CQRS con PostgreSQL (escritura) y Redis (lectura/caché).antifraud_service
: Microservicio NestJS que consume eventos Kafka (Debezium) para validar transacciones y publica resultados en Kafka.wal_level=logical
.createTransaction
,getTransaction
) en Transaction Service.Dockerfile
optimizados (multi-etapa) para ambos servicios NestJS usandopnpm
.README.md
principal con instrucciones de configuración y ejecución paso a paso.README.md
detallados para cada microservicio (transaction_service
,antifraud_service
) con descripción de API, flujos y diagramas.