Orkes Conductor is a fully compatible version of Netflix Conductor with Orkes certified stack.
______ .______ __ ___ _______ _______.
/ __ \ | _ \ | |/ / | ____| / |
| | | | | |_) | | ' / | |__ | (----`
| | | | | / | < | __| \ \
| `--' | | |\ \----.| . \ | |____.----) |
\______/ | _| `._____||__|\__\ |_______|_______/
______ ______ .__ __. _______ __ __ ______ .___________. ______ .______
/ | / __ \ | \ | | | \ | | | | / || | / __ \ | _ \
| ,----'| | | | | \| | | .--. || | | | | ,----'`---| |----`| | | | | |_) |
| | | | | | | . ` | | | | || | | | | | | | | | | | | /
| `----.| `--' | | |\ | | '--' || `--' | | `----. | | | `--' | | |\ \----.
\______| \______/ |__| \__| |_______/ \______/ \______| |__| \______/ | _| `._____|
- Redis is the primary store for running workflows.
- Postgres for storing completed workflows and indexing enabling full text search.
- Orkes-Queues - Redis-based queues that improve upon dyno-queues and providers higher performance and are built from the ground up to support Redis standalone and cluster mode
Dependency | Supported Version |
---|---|
Redis (Standalone, Cluster or Sentinel) | 6.2+ |
Postgres | 14+ |
Docker is the easiest way to run Conductor. Each release is published as orkesio/orkes-conductor-community
docker images.
Container images are useful for local development and testing.
Note: Self-contained docker image shouldn't be used in the production environment.
curl https://raw.githubusercontent.com/orkes-io/orkes-conductor-community/main/scripts/run_local.sh | sh
# Create volumes for persistent stores
# Used to create a persistent volume that will preserve the
docker volume create postgres
docker volume create redis
docker run --init -p 8080:8080 -p 1234:5000 --mount source=redis,target=/redis \
--mount source=postgres,target=/pgdata orkesio/orkes-conductor-community-standalone:latest
Navigate to http://localhost:1234 once the container starts to launch UI.
docker pull orkesio/orkes-conductor-community:latest
Note: To use a specific version of Conductor, replace
latest
with the release version. e.g.
docker pull orkesio/orkes-conductor-community:latest
- Group:
io.orkes.conductor
- Artifacts:
orkes-conductor-community-{server,persistence,archive}
Artifact | Gradle |
---|---|
server | implementation 'io.orkes.conductor:orkes-conductor-community-server:VERSION' |
persistence | implementation 'io.orkes.conductor:orkes-conductor-community-persistence:VERSION' |
archive | implementation 'io.orkes.conductor:orkes-conductor-community-archive:VERSION' |
The container and server jar published come with sensible defaults that work for most use cases.
We welcome community contributions and PRs to this repository.
Use GitHub issue tracking for filing issues and Discussion Forum for any other questions, ideas or support requests. Orkes (http://orkes.io) development team creates and maintains the Orkes-Conductor releases.
Copyright 2022 Orkes, Inc.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.