Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gluonfield/shard-worker
https://github.com/gluonfield/shard-worker
Last synced: 4 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/gluonfield/shard-worker
- Owner: gluonfield
- Created: 2024-07-16T19:23:27.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-08-22T02:44:17.000Z (5 months ago)
- Last Synced: 2025-01-01T10:38:38.954Z (6 days ago)
- Language: Go
- Size: 116 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Shard Worker
Shard worker executed Nextflow and Float executor workflows from nf-shard.
## Deployment instructions
### AWS Fargate
```sh
aws ecs create-cluster --cluster-name shard-worker-clusteraws ecs register-task-definition --cli-input-json file://task-definition.json
aws ecs create-service \
--cluster shard-worker-cluster \
--service-name shard-worker-service \
--task-definition shard-worker-task \
--desired-count 1 \
--launch-type FARGATE \
--network-configuration "awsvpcConfiguration={subnets=[subnet-11111],securityGroups=[sg-11111],assignPublicIp=ENABLED}"aws ecs update-service \
--cluster shard-worker-cluster \
--service shard-worker-service \
--task-definition shard-worker-task```
### Terraform
Coming soon
## Acknowledgements
Dominykas Juodis for his contributions to the project and insightful conversations.