▲ | williamdclt 3 days ago | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
What would you say would be the "clean" way to implement a pool of workers (using EC2 instances too)? | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
▲ | Cthulhu_ 3 days ago | parent | next [-] | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Autoscaling and task queue based workloads, if my cloud theory is still relevant. | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
▲ | torginus 3 days ago | parent | prev | next [-] | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
not sure, probably either an eks cluster with a job scheduler pod that creates jobs via the batch api. The scheduler pod might be replaced by a lambda. Another possibility is something cooked up with a lambda creating ec2 instances via cdk and the whole thing is kept track by a dynamodb table. the first one is probably cleaner (though I don't like it, it means that I need the instance to be a kubernetes node, and that comes with a bunch of baggage). | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
▲ | ndjdjddjsjj 3 days ago | parent | prev [-] | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
etcd? |