EventsByTag support
See original GitHub issueSupport EventsByTag
query in read journal
Issue Analytics
- State:
- Created 8 years ago
- Comments:48 (46 by maintainers)
Top Results From Across the Web
Events by tag • Akka Persistence Cassandra - Documentation
It supports: Deleting all events in the tag view for a given persistence id; Re-building the tag view for a persistence id for...
Read more >akka persistence - EventsByTag support in EventStore
Am using EventStore as the ReadJournal and akka-persistence API , to build a persistent view. The issue am facing is that i do...
Read more >How do people handle "delayed" events in eventsByTag in ...
Don't use it without setting delayed-event-timeout if you care about retrieving all events. It was probably a mistake to support anything else and...
Read more >Cassandra Journal: eventsByTag receiving events 5 min after ...
The problem we are facing is that after starting the service and emitting the first event from the EventSourcedBehavior , eventsByTag does ...
Read more >Support - Events at UCF - University of Central Florida
View events tagged: Support at the University of Central Florida in Orlando Florida. ... Events By Tag: “Support”. Giving and Getting Emotional Support....
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@marcuslinke ok i see what you mean with duplication:
So on write, we’ll create the timestamp. We can look into a migration in the future to back-propagate this (and potentially add tags, and add insertion order sort to
AllEvents
), but don’t want to bite off too much now. When a user runs the query they can hold onto the timestamp they care about, and you’re right - it may cause them to see “more events” than they’d like. For this initial release, idempotency/“at least once” will be a requirement for users ofEventByTag
. It can cause duplication on multiple runs, but not lost data since the only way a user will know the offset is via runningEventByTag
at least once.@filosganga I agree, it would only affect those two queries, not recovery.
sequenceNr
isn’t leaving, that needs to continue to drive recovery - that’s a critical part ofakka-persistence
behavior.@filosganga I agree. This is specific to
EventByTag
andAllEvents
. So it does matter in the context of this issue. 😉