Replies: 8 comments 1 reply
|
Hi Supabase Team, We're excited to join the Analytics Buckets alpha. Our use case involves archiving millions of rows of vehicle telemetry data from our point extensions.geometry(Point, 4326) GENERATED ALWAYS AS (
ST_SetSRID(ST_MakePoint(longitude, latitude), 4326)
) STOREDQuestions:
Our goal is to archive cold storage data while maintaining geofence query capabilities. Happy to provide feedback as we test! |
|
very interested to test also for capgo.app we have telemetry of 50M devices a day right now we use Cloudflare analytics engine, to handle the scale but it would be nice to have proper alternative of our OSS users |
|
Hola tengo ya medio año y no puedo transferir cose cómo me puedan apollar |
|
Hi team, I've been testing Analytics Buckets on my cloud project and it's working well. I'm now looking to integrate it into our local development workflow. Question: Are there any plans to provide a Docker service for Analytics Buckets in the local Supabase stack (via Currently, we use the local Supabase environment for development and testing before deploying to production. Having Analytics Buckets available locally would allow us to:
Is this on the roadmap, or is there a recommended workaround for local development with Analytics Buckets? Thanks! |
|
I noticed that these vault secrets are created automatically when you create an analytics bucket (called It would be nice if vault secrets for the rest of the parameters were also automatically created, since they are required in this step Connecting to Iceberg REST Catalog + AWS S3 (or compatible) storage: Sidenote: If i manually modify the automatically created vault secrets to |
|
Nice app |
|
Apologies in advance for wall of AI text but i figured claude could explain the issues I ran in much better than I could so here goes: Bug report: Iceberg FDW wedges the backend when one statement touches two foreign tablesSummaryOn a managed Supabase project using the Iceberg Foreign Data Wrapper Environment
What triggers itA statement is safe if and only if it references at most one Iceberg
The read-only two-table case is the key finding: it rules out a What is reliably safeEvery statement that touches exactly one Iceberg foreign table has always
Our production offload job has done single-target inserts like this every 15 Symptoms of a wedged backend
Reproduction sketch-- Given two Iceberg foreign tables iceberg.a and iceberg.b:
-- WEDGES (read + read, no write):
select a.id, (select count(*) from iceberg.b where b.a_id = a.id)
from iceberg.a
limit 1;
-- SAFE (one Iceberg relation per statement — stage locally, then combine):
create unlogged table _stage_b as
select a_id, count(*) as n from iceberg.b group by a_id; -- one Iceberg table
create unlogged table _stage_a as
select id from iceberg.a; -- one Iceberg table
select a.id, s.n from _stage_a a left join _stage_b s on s.a_id = a.id; -- local onlyWorkaroundNever reference two Iceberg foreign tables in one statement. Stage each Suggested asks
|

Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Manage Analytics Buckets from the dashboard
We previously announced Supabase Analytics Bucket in Launch Week 15 and we've made much progress since then! You can use these buckets to store large datasets for analytics and reporting 📊
Analytics Buckets is currently in Public Alpha, hence expect rapid changes and possible breaking updates as we expand access to make this increasingly available to everyone. 🙂🙏
Vector Buckets are also now in Public Alpha if you might be interested as well 😄
What we'd like to know from you
Related Links
Dashboard: https://supabase.com/dashboard/project/_/storage/analytics
Waitlist: https://forms.supabase.com/analytics-buckets
Youtube: https://www.youtube.com/watch?v=8poJ0f3Ucik
Blog: https://supabase.com/blog/analytics-buckets
Documentation: https://supabase.com/docs/guides/storage/analytics/introduction
All reactions