Matt Ho

Results 20 comments of Matt Ho

Using `go` as a frame of reference, what I'd love to see is a trace and tag aware logging interface that can be implemented by different providers. We use `opencensus-go`...

That's a good question. As I understand it, one of the main value propositions of OpenCensus is that it provides standard interface for common operational operations like tracing and metrics...

I think this may make sense as a contrib package, but I strongly disagree with this being included in the standard package. I can't speak for other languages, but for...

I put together an opentracing implementation for Google's stackdriver, [github.com/savaki/stackdriver](https://github.com/savaki/stackdriver) that integrates with Stackdriver Trace, Logging, and Error Reporting. Being able to capture errors with the context of the Span...

Those are some interesting points. For the first one, ```Repository.Save``` is intended to only take events from a single aggregate in increasing version order. I'll clarify the docs and the...

Global validations are particularly difficult for event sourcing systems. If you listen to Greg Young's talk, he suggests that you don't really need to do global validation. That said, we...

That's a great observation. It's something that I'm fleshing out now as more and more of this goes into production. There are a couple of approaches we've been working through...

I think it's probably worthwhile to say a little about motivations for this project. **Serverless** One strong one for me is serverless. For me, that's less about lambda and more...

Just so I understand what you're thinking. Currently, the system load events from a Store which can be one of dynamodb, mysql, or postgresql. Is your thinking that you'd also...

Yes. For now, this is just a pure event sourcing core. Internally, we do CQRS on top of it, but the tools we're using are currently too tied in with...