服务编排:conductor学习(一)

一.Conductor介绍

  1. conductor官方文档:https://netflix.github.io/conductor/
  2. conductor介绍:主要是帮助我们在Netflix上编制基于微服务的流程。
  3. conductor架构:
    服务编排:conductor学习(一)_第1张图片

4.conductor的安装和运行:
 

从github查看源代码https://github.com/Netflix/conductor

git clone [email protected]:Netflix/conductor.git
启动本地服务
cd server
../gradlew server

Swagger APIs can be accessed at http://localhost:8080/

启动ui服务

cd ui
gulp watch

Or Start all the services using docker-compose

cd docker
docker-compose up

If you ran it locally, launch UI at http://localhost:3000/ OR if you ran it using docker-compose launch the UI at http://localhost:5000

你可能感兴趣的:(conductor)