remove travis ci
2 files changed
tree: b3fa07845f06f41351eee86c356e88a14998616d
  1. .github/
  2. docker-build-config/
  3. docs/
  4. integration-tests/
  5. saga-core/
  6. saga-core-akka/
  7. saga-demo/
  8. saga-discovery/
  9. saga-distribution/
  10. saga-format/
  11. saga-performance/
  12. saga-persistence/
  13. saga-spring/
  14. saga-web/
  15. scripts/
  16. transports/
  17. .gitignore
  18. CONTRIBUTING.md
  19. LICENSE
  20. NOTICE
  21. pom.xml
  22. README.md
README.md

Saga Actuator Build Status Coverage Status License

Purpose

Saga is a type of Compensating Transaction pattern, which provides a simple way to help users solve the data consistency problems encountered in micro-service applications. Saga actuator provides a centralized execution engine to delegate the request to the outside services to provide eventual data consistency in Saga way.

Documentation

Reference documentation is available on the ServiceComb website.

Major Architecture of Saga

  • saga-core(transaction and compensation handling logic)
  • saga-core-akka(leverage the actor for executor)
  • saga-format(data serialization and deserialization)
  • saga-transports(communication protocol implementation such as rest or rpc in the future)
  • saga-discovery(service discovery)
  • saga-spring(restful service framework)

Saga

Prerequisites

You will need:

  1. Oracle JDK 1.8+
  2. Maven 3.x
  3. Docker

Building

Download the source code.

git clone https://github.com/apache/servicecomb-saga-actuator

Enter the Saga root directory,biuld Saga project by maven command and generate a docker image named saga-spring in local.

mvn package -DskipTests -Pdocker

Reference API

See Saga API for details.

Example

See Saga demo for details.

Contact

Contributing

See Pull Request Guide for details.

Reporting Issues

See reporting bugs for details about reporting any issues.