-
-
Notifications
You must be signed in to change notification settings - Fork 62
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
[Supabase Edge Functions] Can't use Websockets in Edge Functions on Supabase Hosting. #393
Comments
Hi @Lan-Hekary Yes, it is currently not supported in Supabase cloud as Websockets are not enabled on the underlying provider. Will change this to an enhancement and @laktek can comment more if any progress is made |
This would be a hugely appreciated enhancement 🙏🏻 |
I was pretty surprised to discover this wouldn't work - lifetime aside, I think this would be a great place to put a lightweight sync server (that also has option value to save state back to pgsql if needed). +1 for prioritizing! |
Moving to edge-runtime to help the team track it as a feature request. |
Given the new realtime API from OpenAI that relies on websockets , are there any plans to implement this feature in the foreseeable future? |
Hey, just a friendly reminder :) This is labeled as "enhancement" while it's actually a bug, there is even an example on how to use websockets in this repo, which results in the same error. WebSocket support was introduced with this PR by @nyannyacha. |
Hello @haschu 😋 I checked the example you mentioned, but WebSocket seems to be working fine locally. Note that currently, this feature is not available in Edge Functions (aka, Supabase Hosted), only self-hosted users deploying the edge runtime in their own environment can use it. |
@nyannyacha |
Bug report
Describe the bug
I am trying to connect to Supabase Edge Function via WebSocket.
I managed to connect to the Edge Function locally and even when I expose the local instance of the Function to the internet I can connect to it from outside.
But as soon as I Deploy the function to a Supabase Project The WebSocket Connection fails.
I am not sure if it's a Bug or it's not supported.
To Reproduce
Create a Supabase function using the CLI:
Supabase functions new ws
Use This code is based on this article from Deno:
Up to this Step if you started the function using
supabase functions serve --no-verify-jwt
and opened a WebSocket connection to the local instance of the edge-runtime, it will work just fine. The Bug is in the Next Step.Deploy the Function using CLI:
supabase functions deploy ws --no-verify-jwt
.Try to connect to the function via the Webbrowser or using https://websocketking.com/, it will fail as it can't connect, but in the logs of the function you will findout that the socket opens and immediately errors out then closes with an error message 'Unexpected EOF'
Expected behavior
It Should work in Supabase Projects as it's working in the local runtime.
Screenshots
The local CLI instance Working Properly.
The log in the Dashboard showing the failure.
System information
Additional context
My Reference is this Official Video which referenced this article from Deno.
I Duplicated the Video for the Server-Side-Events, and it works as Expected both locally and on Supabase Projects.
The video talks about WebSockets briefly but does not implement it.
The text was updated successfully, but these errors were encountered: