Coder Social home page Coder Social logo

Persistence? about cote HOT 6 CLOSED

dashersw avatar dashersw commented on May 21, 2024
Persistence?

from cote.

Comments (6)

thelinuxlich avatar thelinuxlich commented on May 21, 2024 2

Do you have plans for a adapter interface so it can be stored in disk, redis, or whatever and if the requester restarts, it reads this log and resends?

from cote.

dashersw avatar dashersw commented on May 21, 2024

Messages are kept in the Requester's memory, basically in an in-memory array, so currently it's volatile.

from cote.

thelinuxlich avatar thelinuxlich commented on May 21, 2024

Also, does the Requester queue has exponential backoff?

from cote.

dashersw avatar dashersw commented on May 21, 2024

An adapter could really be interesting, but I think it would complicate the solution. cote is designed to be technology independent and I can easily see developers thinking they have to use at least another technology for the Requester queue where in fact it's only necessary in extreme situations where every part of your application is failing. In that case, losing a few requests would be a minor concern. Redundancy is extremely cheap in cote, so developers are encouraged to have multiple Responder copies. That way, the need for a queue is also negligible.

Having said that, I would be happy to merge such a change set if anyone would pick up the creation of adapters for queues.

from cote.

dashersw avatar dashersw commented on May 21, 2024

The current implementation of the queue keeps the requests in the queue forever, doing nothing until a Responder is available. Upon discovering a Responder, a Requester flushes its queue all at once.

Since we do service discovery, we don't employ "reconnections" or "retries", because we always know if there's another component on the other hand to receive the request. I think exponential backoff would be a good solution if we had retries, and actually it's explicitly disabled because the underlying library, axon, has retry feature for connections, which is unnecessary with a service discovery mechanism.

In what other way do you think a backoff solution would be useful?

from cote.

tvalletta avatar tvalletta commented on May 21, 2024

I believe the assumption here (referring to the backoff solution) is that the request could expire. An expectation borne from dealing with HTTP for a generation is that requests must eventually respond. A request made to a service that will never respond, never log and never error is a recipe for code that is difficult to maintain.

from cote.

Related Issues (20)

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.