I mean why wouldn't you execute SQL to sign up for a database newsletter?
I mean why wouldn't you execute SQL to sign up for a database newsletter?
End to end, under 2 minutes.
- Two commands to replicate data from Postgres -> Iceberg
- Synced over 10m rows under a minute
- Data is continually processed and updated in Iceberg
- count(*) in Postgres over 300ms down to under 20ms
End to end, under 2 minutes.
- Two commands to replicate data from Postgres -> Iceberg
- Synced over 10m rows under a minute
- Data is continually processed and updated in Iceberg
- count(*) in Postgres over 300ms down to under 20ms
- logs
- events
- metrics
- logs
- events
- metrics
Step 1: Point at your dataset and we'll load it for you
Step 2: Query it
Step 3: Profit
Step 1: Point at your dataset and we'll load it for you
Step 2: Query it
Step 3: Profit
BUT, most of our users don't log in every day. So we exposed it directly in the nav to make it easy to find.
BUT, most of our users don't log in every day. So we exposed it directly in the nav to make it easy to find.
Kid says can we start the movie back.
I ask if he was listening.
Apparently he meant this movie
Kid says can we start the movie back.
I ask if he was listening.
Apparently he meant this movie
INSERT INTO measurements_staging VALUES ('Charleston', 21.3);
WITH new_rows as (
DELETE FROM measurements_staging returning *
) INSERT INTO measurements SELECT * FROM new_rows;
INSERT INTO measurements_staging VALUES ('Charleston', 21.3);
WITH new_rows as (
DELETE FROM measurements_staging returning *
) INSERT INTO measurements SELECT * FROM new_rows;