Scott Clasen

Results 44 comments of Scott Clasen

@pcleary00 looking good. One bit of history/information here, when this project was initially developed as a journal for https://github.com/eligosource/eventsourced, the initial implementation was closer to what you have where it...

This approach is reasonable, and we have done similar in at least one case here. The other way to do it is to add some flags to your data struct,...

@ryanwalls yep and AfterDecision interceptor would work, the correlator would be cleaned up. Sure, have a crack at that decider, no harm in including such a thing.

Hi @ryanwalls For failed/terminated workflows it depends on what caused the termination. SWF terminated or user terminated? SWF will terminate workflows that have gone longer than the StartToClose timeout, and...

In our current approach, we never terminate or fail workflows from the FSM itself. We have logic to retry everything inside the FSM when activity or other failures happen. Rarely,...

+1, PR? should be straightforward.

maxDynamoBatchGet is basically a const, 100 is the ceiling on number of keys in a batch get. for dev, you can usually get away with low capacity, as long as...

Seems fine, I'm on vacation atm want to do a pr? On Friday, April 8, 2016, ryanwalls [email protected] wrote: > Any thoughts on this @sclasen https://github.com/sclasen? > > — >...

Hey @ryanwalls we use it in a CQRS kind of manner. The kinesis replication hander puts json marshalled SerializedState structs onto kinesis, using the workflow id as the 'key' We...

I dont always hate go, but when I do its because of dependency management grr.