eventsource
eventsource copied to clipboard
Serverless Go event sourcing library built on top of dynamodb
Culprit: https://github.com/altairsix/eventsource/blob/7b6859b7a00908296beea99d5d2800b6c071c084/repository.go#L187 loadVersion can fail for reasons other than "not found", such as "store implementation has connectivity outage" etc. You do not want to discard such errs and fall back...
@savaki this is more just a question of how you deal with streams using a AWS pipeline. [Watching your talk](https://www.youtube.com/watch?v=B-reKkB8L5Q) the overall structure makes sense but details are a little...
Comparing between protocol buffer events leads to uncomparrable error with []uint8 arrays.
TODO: - Change back import names
I'm looking to see if I can use this library in a commercial project. I'm not seeing a license file, are you already releasing it with a license? If not,...
Added support for BoltDB store. Useful for self contained apps that aren't using the cloud (my use case its for regulatory restrictions). As updated example from GopherFest to use BoltDB....
I get the following error when i try to use the example provided in this git to save into dynamodb `The provided key element does not match the schema [ValidationException]:...
I have a question about event-sourcing, how can we validate if the Aggregate can be persisted? Like the example that create a User, how to validate that user has already...
I changed the all to history in the return of the Load method as always returning all would never load records in between if one wanted to.