meteorhacks / cluster

Clustering solution for Meteor with load balancing and service discovery
https://meteorhacks.com/cluster-a-different-kind-of-load-balancer-for-meteor.html
MIT License
632 stars 80 forks source link

web proxy error: connection dropped #98

Open rkstar opened 9 years ago

rkstar commented 9 years ago

i've got 2 servers in production at digital ocean, both as balancers and my entry point server keeps throwing these errors:

[159.203.96.215] Cluster: no such endpoint for service:web
[159.203.96.215] Cluster: no such endpoint for service:web
[159.203.96.215] Cluster: web proxy error:  Connection droped
[159.203.96.215] Kadira: socket hang up
[159.203.96.215] Cluster: no such endpoint for service:web
[159.203.96.215] Cluster: no such endpoint for service:web
[159.203.96.215] Cluster: no such endpoint for service:web
[159.203.96.215] Cluster: no such endpoint for service:web
[159.203.96.215] Cluster: web proxy error:  Connection droped
[159.203.96.215] Cluster: web proxy error:  Connection droped
[159.203.96.215] Cluster: no such endpoint for service:web
[159.203.96.215] Cluster: no such endpoint for service:web
[159.203.96.215] Cluster: no such endpoint for service:web

pretty important that the cluster is not actually working. what's happening?

madhan5000 commented 8 years ago

@rkstar I am just curious, 2 servers meaning 2 meteor apps, connected via cluster. You had load balancing turned on both ? I wonder why ?

Can you post your settings?

BTW, if it helps, I saw this happening to my microservices when I tried to use Self-signed certificates and had one microservice access the other from the client. In other words,

Cluster.allowPublicAccess("search"); //<-- having a similar setting

I think it is some how related to client not able to trust the certificate. Hope it helps.