Theodore Cowan

Results 14 comments of Theodore Cowan

We would need this to run a neo4j cluster on ECS. "core" cluster members elect a leader. If ECS delivers this it should solve the problem Kubernetes suffers from with...

I recommend covering all of the states currently covered by systemd service files. This will make for easy transition from services made for systemd to ECS. ExecStartPre, ExecStartPost, ExecStopPost https://www.freedesktop.org/software/systemd/man/systemd.service.html

```ts // WORKAROUND: https://github.com/cdklabs/cdk-monitoring-constructs/issues/565 const cfnBucketDeployment = this.node.children.map(c => c.node).find(n => n.id.startsWith("Custom::CDKBucketDeployment"))?.defaultChild as CfnFunction; cfnBucketDeployment.functionName = `PutNewFunctionNameHere`; ```

(Advice warning- I'm an Amplitude noob) You probably need to call flush() before the lambda handler returns.