Dave Lucia

Results 78 comments of Dave Lucia

I'm waiting on some work to be done in Sourceror that should be landing soon, then I'm gonna get started. Would you be interested in pairing once it's ready?

@slashdotdash If I'm not mistaken, I remember you saying that there was already built-in EventStore support for reading in batches. From what I can tell, an `Event.Handler` already receives [events...

@cdegroot take a look at https://github.com/commanded/commanded/pull/471 which might be helpful for implementing, happy to answer questions as well

This is what our middleware looks like ```elixir defmodule MyApp.Spandex.Commanded.Middleware do ... def before_dispatch(%Pipeline{} = pipeline) do %Pipeline{command: command} = pipeline Tracer.start_trace(Util.module_name(command, 4)) pipeline |> assign_metadata(:trace_id, Tracer.current_trace_id()) |> assign_metadata(:parent_id, Tracer.current_span_id())...

Thanks @slashdotdash. I've been thinking about this a bit more. ## Metrics ### Polling - [ ] Expose a function to poll the running process managers - [ ] Expose...

to be able to produce metrics for the number of running process managers, event handlers, etc

Are there any guarantees about **when** the side effects are run? E.g. could we just throw them in an async task?

@leggebroten this is not intended. Please fix if you have bandwidth :)

@mcrumm I'm quite interested in distribution metrics. Is there anything that is holding up implementation other than just doing it?