Coder Social home page Coder Social logo

"Redis query EventsByTag must not see new events after complete" test is not implemented properly about akka-persistence-redis HOT 8 CLOSED

safety-data avatar safety-data commented on June 25, 2024
"Redis query EventsByTag must not see new events after complete" test is not implemented properly

from akka-persistence-redis.

Comments (8)

satabin avatar satabin commented on June 25, 2024

Hi,

With the current implementation I would say that the tested behavior is the implemented one. The semantics of currentEventsByTag in the current implementation is a bit different from the one of LevelDB backend. Events occurring after source opening may be seen by the source due to how event retrieval is implemented. The implementation buffers events and closes the source when no events are found in the database when refilling buffer.

I agree this brings less guarantees to the user and may lead to apparently strange behaviors.

It should be possible to implement the same semantic than the LevelDB backend, and I will investigate how this can be achieved. In any way, documentation should be more explicit about the behavior.

Thanks for reporting.

from akka-persistence-redis.

alexvaluyskiy avatar alexvaluyskiy commented on June 25, 2024

All known implementations of Current* queries (LevelDb, Cassandra, Jdbc) fetch a data from a storage only once. Otherwise, it would be something like live query

from akka-persistence-redis.

satabin avatar satabin commented on June 25, 2024

Not necessarily, you can retrieve data in batch up to a certain point in time (say request time). You can’t always (or even wish to) load all events into memory at once. E.g. you might want to keep the memory footprint as low as possible.

from akka-persistence-redis.

satabin avatar satabin commented on June 25, 2024

I investigated and there is an easy way to implement the same semantics as for LevelDB, I will work on it ASAP.

from akka-persistence-redis.

alexvaluyskiy avatar alexvaluyskiy commented on June 25, 2024

I've found the same problem for CurrentEventsByPersistenceId query

from akka-persistence-redis.

satabin avatar satabin commented on June 25, 2024

Yes, I implemented all the Current* streams the same way and will change their semantics.

from akka-persistence-redis.

alexvaluyskiy avatar alexvaluyskiy commented on June 25, 2024

I see the similar issue in return remaining values after partial journal cleanup test. You have requested two items but should have requested only one item. The current stream should be completed right after delivering the whole buffer. Maybe you should change this line https://github.com/safety-data/akka-persistence-redis/blob/master/src/main/scala/akka/persistence/query/journal/redis/EventsByPersistenceIdSource.scala#L213 to if (buffer.isEmpty && (currentSequenceNr > to || !live))

from akka-persistence-redis.

satabin avatar satabin commented on June 25, 2024

Yes it seems this condition is missing. I will perform a rewriting and complete review of implementation and tests.

from akka-persistence-redis.

Related Issues (19)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.