Skip to content

Commit

Permalink
Merge pull request #41 from skhatri/feature/temporal
Browse files Browse the repository at this point in the history
Add temporal workflow engine
  • Loading branch information
pflooky authored Jun 17, 2024
2 parents d401166 + cc40d03 commit e8774b3
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 2 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,4 +117,5 @@ If any data is persisted from the services to carry across sessions, it gets pus
| Real-time OLAP | druid ||
| Real-time OLAP | pinot ||
| Test Data Management | data-caterer ||
| Workflow | temporal ||

19 changes: 17 additions & 2 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -834,6 +834,23 @@ services:
depends_on:
postgres:
condition: "service_healthy"

#temporal workflow
temporal:
container_name: "temporal"
image: "temporalio/server:1.24.1.0"
environment: []
volumes:
- "./data/temporal/persist:/opt/data/db"
expose:
- "8233"
- "7233"
ports:
- "8233:8233"
- "7233:7233"
- "9233:9233"
entrypoint: "temporal"
command: [ "server", "start-dev", "--db-filename", "/opt/data/db/temporal.db", "--ip", "0.0.0.0", "--metrics-port", "9233"]

#flink containers
flink-jobmanager:
Expand Down Expand Up @@ -861,5 +878,3 @@ services:
environment:
- JOB_MANAGER_RPC_ADDRESS=flink-jobmanager
- FLINK_PROPERTIES=jobmanager.rpc.address:flink-jobmanager


0 comments on commit e8774b3

Please sign in to comment.