Skip to content
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

Open
lynic opened this issue Dec 3, 2024 · 9 comments
Open

Support NATS backend via websocket protocol #372

lynic opened this issue Dec 3, 2024 · 9 comments

Comments

@lynic
Copy link

lynic commented Dec 3, 2024

Besides nats:// protocol, NATS server also support ws:// or wss:// protocol.

I'm wondering is there any plan to support nats websocket protocol?

connBuilder.WriteString("nats://")

@brandond
Copy link
Member

brandond commented Dec 3, 2024

Is there a difference, or is it just a different uri scheme for the same wire protocol?

@lynic
Copy link
Author

lynic commented Dec 4, 2024

It's just another uri scheme, just replace "nats://" with "ws://" or "wss://" in client side.
https://docs.nats.io/running-a-nats-service/configuration/websocket
https://nats.io/blog/getting-started-nats-ws/

@brandond
Copy link
Member

brandond commented Dec 4, 2024

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.

@lynic
Copy link
Author

lynic commented Dec 6, 2024

Yes, ws/wss is not unique. Is it possible to use "nats-ws://" and "nats-wss://" for alias?

@brandond
Copy link
Member

brandond commented Dec 6, 2024

But why?

@lynic
Copy link
Author

lynic commented Dec 6, 2024

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:// .

@brandond
Copy link
Member

brandond commented Dec 6, 2024

Why does it require that? The server has no idea what scheme you used to connect to it.

@lynic
Copy link
Author

lynic commented Dec 6, 2024

The server needs to understand the schema, it supports "nats://" , "ws://" and "wss://", to setup the nats server , needs to specific enable websocket support.
And the client side needs to use "ws://" or "wss://" protocol instead of "nats://".
Hence if I want to use this nats-server as database, the kine needs to set scheme to "ws://" or "wss://" instead of "nats://" .

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants
@brandond @lynic and others