Code Monkey home page Code Monkey logo

Comments (8)

dashersw avatar dashersw commented on May 12, 2024

@jlsan92 could you share example code with us? Do you have more than one type of responders, for example, with varying event handlers?

from cote.

jlsan92 avatar jlsan92 commented on May 12, 2024

My config is something like this:

1 Requester calling different functions on Responder

// app1.js
const { Requester } = require('cote');

const requester = new Requester({
      name: 'Requester',
});
...
requester.send({ type, data }, res => console.log(res));
// app2.js
const { Responder } = require('cote');

const responder = new Responder({
      name: 'Responder',
});

responder.on('functionlOne', ({ data }), cb => {
  // do something
  return cb();
});

responder.on('functionTwo', ({ data }), cb => {
  // do something
  return cb();
});

responder.on('functionThree', ({ data }), cb => {
  // do something
  return cb();
});

Only one "function" gets called, others never are executed.

I'm trying this on Docker, already tried Redis backend and still no luck.

from cote.

dashersw avatar dashersw commented on May 12, 2024

@jlsan92 it looks like it should work, except for the handler syntax, which is more like 'event', ({ data }, cb) => { }).

It doesn't have anything to do with redis — if one works, the others should also work. Make sure you don't have other responders running on your machine at the same time, that have different message names than what are listed here.

If you can share a more realistic example that demonstrates the issue, I can also help debug it.

from cote.

MaxSvargal avatar MaxSvargal commented on May 12, 2024

I'm also have the same problem. The only first response of requests received. I use promises.
First service is responder of get methods of redis.
Second service is responder of set methods of redis.
Third service request get method, modified data and request to save to second service.
But only first call receive answer, does not matter what is it, set of get.

I tested this issue with another services (i.e. pm2 manager), and saw the same problem.
I'm also killall node before each testing.

from cote.

MaxSvargal avatar MaxSvargal commented on May 12, 2024

I found a problem in balancer.
When I connect any other responder to the cluster, with another commands in respondsTo option, a part of requests passed to it!

from cote.

dashersw avatar dashersw commented on May 12, 2024

@MaxSvargal so this is already documented behavior; and the explanation and the solution is as follows:

Note: By default, every Requester will connect to every Responder it discovers, regardless of the request type. This means, every Responder should respond to the exact same set of requests, because Requesters will load-balance requests between all connected Responders regardless of their capabilities, i.e, whether or not they can handle a given request.

If you have multiple Responders with varying response handlers, you will experience lost requests. In cote, this separation between responsibilities is called segmentation, or partitioning. If you wish to segment your requests in groups, you can use keys. Check out keys for a detailed guide on how and when to use segmentation.

https://github.com/dashersw/cote#keys

from cote.

MaxSvargal avatar MaxSvargal commented on May 12, 2024

@dashersw Ok, and how i can communicate with two responders with different keys from one requester? Or i need two instances of requester?
And why we need respondsTo? Whats the point?

from cote.

juragandotid avatar juragandotid commented on May 12, 2024

@dashersw

i think like this :

var example1 = responder.on('functionlOne', ({ data }), cb => {
// do something
return cb();
});

var example2 = responder.on('functionTwo', ({ data }), cb => {
// do something
return cb();
});

var example3 = responder.on('functionThree', ({ data }), cb => {
// do something
return cb();
});

and call it the function

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.