Supabase

S

Supabase

Join the community to ask questions about Supabase and get answers from other members.

Join

Password Reset redirectTo Parameter Not Working

Hi! I'm having an issue with password reset emails where the redirectTo parameter isn't being respected. What I'm doing: ```go requestBody := map[string]string{ "email": "user@example.com",...

Compile SQL to Supabase DSL

Hi I'm wondering what program does the conversion between the SQL DSL code into the Supabase JS client code fetch call. Seen here https://supabase.com/docs/guides/api/sql-to-rest...

Proper way to the authorize the user in an Inngest function?

Hey there, looking for some help wrapping my head around getting the user session in an Inngest function. I have my project updated to use the newer getClaims method also. In the following code the getClaims data is empty which is expected in this scope. What would be the proper way to get the session validated in this scope to perform CRUD operations on the tables? Inngest function ``` export default inngest.createFunction(...

Who do I contact about server "pausing" frozen?

I have a server stuck in "Pausing [App Name]" state for hours. Who do I contact to fix this?

Enable/Disabled Column-level privileges from the config.toml

There is, apparently, no documentation on how to enable/disable the Column-level privileges from the config.toml Even this piece of documentation https://supabase.com/docs/guides/database/postgres/column-level-security don't even explain how to disabled it from the GUI....

Error: schema "vaults" does not exist

Need help! An internal PostgREST schema introspection query is failing due to a naming discrepancy. The system is attempting to query a non-existent "vaults" (plural) schema, while the project only contains a "vault" (singular) schema. Error Symptoms: Database initialization fails...

Outage or technical issue not reflected on status page? Are others having problems?

Our production Supabase instance has been offline for hours. There's nothing on the status page about an incident. Rebooting the project took a very long time ~20 mins and restored service for about an hour after which it is down again. Despite being on a pro plan for a long time we have yet to receive any response from support for our urgent request. We got a notification that we're consuming a lot of our disk iops budget. Our project has never consumed more than 1-5% of our iops budget for years and we still are nowhere near to our cpu/memory capacity. No errors in the logs that point directly to the issue. Dashboard reports all services unhealthy. API gateway logs responses are all 522 and 544 errors. Sentry reports failures for direct connections to the db. Checking grafana metrics there is nothing out of the ordinary. Our instance just goes totally offline with no indication of error....

Refresh tokens and persistent sessions, C#

I'm having some problems getting refresh tokens to work on both desktop and android app. The session is saved to disk with a refresh token, but when loaded it only works within an hour of saving, which I assume means it is actually using the Access Token? This is my Initialization logic in C#: ``` SupabaseOptions options = new() { AutoRefreshToken = true,...

Unified view for all edge function errors?

Howdy. I have many edge functions and would like the ability to view (and maybe even be notified) if one of them ran into an error. Currently I visit each edge function's logs and filter for errors, but that's no fun. I looked for a solution in the logs explorer and found a template for Errors - but it doesn't include the function name. Couldn't find a way to add the function name. Any ideas?...

postgres missing exposed ports

I run the stack locally for testing via the supabase cli. When looking at the docker containers, the postgres one is expected to have its internal port exposed externally on 54322 however its not showing a) The docher run command is correct: -p 54322:5432 b) Supabase status shows the expected postgresql://postgres:postgres@127.0.0.1:54322/postgres...
No description

Free tier scheduled to pause

I just received this email saying that my project is "scheduled to be paused in a couple of days. I can unpause my project from the dashboard within 90 days. After this period, the project cannot be restored, but your data will remain available for download. View documentation for details. To prevent future automatic pausing, upgrade to Pro from your billing settings." Does continuing to use my project prevent it from automatic pausing? Or do I NEED to upgrade my plan?...

RLS context issue.

```error publishSession: { code: '42501', details: null, hint: null,...

Question about supabase-js client capabilities

Hey everyone, I am trying to crack the syntax for a query using the supabase-js client. I am trying to replicate this query: SELECT COUNT(*) as invoice_count...

PKCE Auth flow - java.lang.IllegalArgumentException

Hi, I recently switched to the PKCE auth flow, and I'm implementing a password reset screen. However, the supabase.auth.parseSessionFromUrl() function throws a java.lang.IllegalArgumentException error and I have no clue why. Logcat: ```kt B1: https://myapp.com/callback?code=55793db3-8770-8980-81ee-9477db9c3f04...

Merging from branch to main issue

after doing some changes on a branch, I tried to merge the changes from the dashboard ui but got this error: Error loading branch diff Please try again in a few minutes and contact support if the problem persists. Am I the only one facing this issue or is it for everyone?...

Project tables aren't loading in the UI/website won't load database

The UI just keeps showing no tables but the loading animation. I can't access the tables and the website connected to the database won't load...additionally I tried to restart the project but it just keeps saying "restarting" for several several minutes now.

Is it working the pausing?

Can we pause projects? Is it working now?

Custom name

Hey everyone, how do I show my app’s name here instead of the Supabase project ID? I want it to look professional and not suspicious to regular users. Also, if someone has my project ID, can they mess up my project?...
No description

Any transactional emails are being delivered

My problems seems to be a little bit odd when sending transactional emails: - database less than 2 weeks old - redis and stripe wrappers enabled - few tables with rls, functions and triggers (all possibly working nicely but can test it out (refactored names and stuff from old database)) - Built application using exclusively Github oAuth app (no email/password login)...

Architecture Q: we use per-customer schema. Can supabase scale to 100s of schemas?

For separating customer data we use a per-customer schema approach. So far we have 20 schemas and our system has no issues so far. Are there any limits or scaling concerns if we were to scale to 100s of schemas?