been curious as to what sort of savings you've been able to get with supabase because we are approaching a few thousand dollars to store a couple terabytes on DynamoDB Thinking of buying a dedicated server from Hetzner to run Supabase on it instead but worried about latency. awful that we have to move away from AWS for this but with four/five dedicated servers in EU, US-West, US-East, Singapore and Tokyo, we could ha…
Take a look at ScyllaDB Alternator [1], which is API compatible with DynamoDB. Scylla also supports multiregion clusters, which should help with latency. I've not used alternator, but I've had a good experience with Scylla, and it might be worth looking into as a lower effort way to move off DynamoDB. [1] https://www.scylladb.com/alternator/
GraphQL is now available on Supabase
31–40 of 49 posts
Re: GraphQL is now available on Supabase
#32been curious as to what sort of savings you've been able to get with supabase because we are approaching a few thousand dollars to store a couple terabytes on DynamoDB Thinking of buying a dedicated server from Hetzner to run Supabase on it instead but worried about latency. awful that we have to move away from AWS for this but with four/five dedicated servers in EU, US-West, US-East, Singapore and Tokyo, we could ha…
One thing to mention is that DynamoDb and Postgres are vastly different databases, so the migration won't be a simple "dump and restore". You're right - it will be a daunting task, but one that only becomes more daunting the longer you wait. If you make the migration to Hertzner + self-hosting (even just to pure Postgres), I'm certain you will see huge savings. It's hard to give exact numbers without knowing your wor…
At this point I might even move off AWS Lambda somehow, its quite ironic, we do consulting to help businesses get on AWS but we are moving off it due to rising costs!
Re: GraphQL is now available on Supabase
#33Does this support Graphql subscriptions as well?
Re: GraphQL is now available on Supabase
#34heyo, thanks for the ping I'm the dev lead on pg_graphql. Happy to answer any questions!
Re: GraphQL is now available on Supabase
#35Earlier quoted context omitted.
How would you contrast this library with what EdgeDB is doing on top of Postgres?
EdgeDB [1] has indeed a rich GraphQL layer, but it's a very different project. While it also builds on top of Postgres, EdgeDB replaces the entire relational database front-end. EdgeDB features a SQL replacement language called EdgeQL (analytical capabilities of SQL married with deep-fetching in GraphQL), a higher-level data model (tables -> object types), integrated migrations engine, a custom protocol with great pe…
Re: GraphQL is now available on Supabase
#36Nice! I was already pretty excited about you guys, and this only fuels up more excitement since I always been a GraphQL lover. I'm impressed by the pace that you are releasing new products... keep it up team!
Re: GraphQL is now available on Supabase
#37heyo, thanks for the ping I'm the dev lead on pg_graphql. Happy to answer any questions!
Postgraphile uses a naming convention for postgres functions to extend the GraphQL schema [1].
Do you have any plans to support a similar mechanism in pg_graphql?
Re: GraphQL is now available on Supabase
#38hey HN, supabase ceo here. I'm really excited about this release. Our GraphQL implementation is built on top of pg_graphql[0], a PostgreSQL extension we open-sourced a few months ago. The implementation works with a lot of native PG functionality (like Row Level Security). You can also do a some neat things with PG GRANTS, enabling/disabling access to different tables/columns to effectively serve a different GraphQL…
Hey, thanks for creating this! It's nice to see more products in that space. Off-Topic: How did you create your blog? It's seems like you developed it yourself? I'm currently contemplating on how to create the blog for my product, since I want to have it integrated into the main website as well (as subdirectory). It's not really possible when using third party providers. You always have to use subdomains there.
Re: GraphQL is now available on Supabase
#39heyo, thanks for the ping I'm the dev lead on pg_graphql. Happy to answer any questions!
Have you considered any other implementation strategies (C native extension, any other pl/* or maybe running an out of PostgreSQL process which does GraphQL to SQL compilation)?
Re: GraphQL is now available on Supabase
#40I see a lot of mentions of Hasura in the comments.
If you'd like what Supabase is building but prefer using Hasura you might want to check out what we're building at Nhost (http://nhost.io/). We use Hasura's GraphQL Engine for the API layer while also providing Postgres, Auth, Storage and Serverless Functions.
(CEO of Nhost)