-
Notifications
You must be signed in to change notification settings - Fork 261
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support NATS backend via websocket protocol #372
Comments
Is there a difference, or is it just a different uri scheme for the same wire protocol? |
It's just another uri scheme, just replace "nats://" with "ws://" or "wss://" in client side. |
ok but it could be sql or etcd over websockets as well. websockets is just the transport. I don't think ws/wss is sufficient to uniquely identify it as nats so I would not really want to add it as an alias, if it already works as-is. |
Yes, ws/wss is not unique. Is it possible to use "nats-ws://" and "nats-wss://" for alias? |
But why? |
The background is that I setup a k3s with traefik, and installed k3s server on it, but I didn't expose NATS 4222 port, but instead expose nats-server websocket service via traefik ingress, it requires the client to use ws:// or wss:// to connect. If I want to setup another k3s service and want to use NATS server as backend, it needs to point the db endpoint to ws:// or wss:// . |
Why does it require that? The server has no idea what scheme you used to connect to it. |
The server needs to understand the schema, it supports "nats://" , "ws://" and "wss://", to setup the nats server , needs to specific enable websocket support. |
Besides nats:// protocol, NATS server also support ws:// or wss:// protocol.
I'm wondering is there any plan to support nats websocket protocol?
kine/pkg/drivers/nats/config.go
Line 160 in 59c88f9
The text was updated successfully, but these errors were encountered: