“For most of history, anonymous was a woman.”
xata.io/blog/club-xa...
xata.io/blog/club-xa...
xata.io/blog/club-xa...
I had the chance to co-organize two community summits: PostgreSQL on Kubernetes and Postgres & AI. Thanks to my co-organizers Floor Drees, Ellyne Phneah and Torsten Steinbach, I had a great time and all went amazingly!
I had the chance to co-organize two community summits: PostgreSQL on Kubernetes and Postgres & AI. Thanks to my co-organizers Floor Drees, Ellyne Phneah and Torsten Steinbach, I had a great time and all went amazingly!
Our own Gülçin Yıldırım Jelínek is co-organizing two of them
☸️ PostgreSQL on Kubernetes Summit
🧠 PostgreSQL & AI Summit
Big thanks to the volunteers & speakers who made this happen.
Community is what makes Postgres great 💙
Our own Gülçin Yıldırım Jelínek is co-organizing two of them
☸️ PostgreSQL on Kubernetes Summit
🧠 PostgreSQL & AI Summit
Big thanks to the volunteers & speakers who made this happen.
Community is what makes Postgres great 💙
Get the schedule: www.postgresql.eu/events/pgcon...
Get the schedule: www.postgresql.eu/events/pgcon...
On Oct 21, @apatheticmagpie is co-hosting two community summits:
🧠 PostgreSQL & AI with Gulcin on DB Agents
☸️ PostgreSQL on Kubernetes with Esther Minano & Andrew Farries
On Oct 21, @apatheticmagpie is co-hosting two community summits:
🧠 PostgreSQL & AI with Gulcin on DB Agents
☸️ PostgreSQL on Kubernetes with Esther Minano & Andrew Farries
Wherever I went I always knew, always knew
Till I didn't know
Why do I do this to myself every time?
I know the way it ends before it's even begun
I am the only one at the finish line
open.spotify.com/track/3qJImz...
Wherever I went I always knew, always knew
Till I didn't know
Why do I do this to myself every time?
I know the way it ends before it's even begun
I am the only one at the finish line
open.spotify.com/track/3qJImz...
..designing a whole genome is challenging owing to complex interactions between genes and gene replication and regulation processes. “There are many important biological functions that you can only access if you’re able to design complete genomes.”
www.nature.com/articles/d41...
..designing a whole genome is challenging owing to complex interactions between genes and gene replication and regulation processes. “There are many important biological functions that you can only access if you’re able to design complete genomes.”
www.nature.com/articles/d41...
@divyendusingh.com from @xata.io is speaking at the Postgres Berlin Meetup tomorrow showing how we’re using LLMs to automate DB diagnostics, fixes, and even PRs.
Come see “Xata Agent” in action.
📍 RSVP: www.meetup.com/postgresql-m...
@divyendusingh.com from @xata.io is speaking at the Postgres Berlin Meetup tomorrow showing how we’re using LLMs to automate DB diagnostics, fixes, and even PRs.
Come see “Xata Agent” in action.
📍 RSVP: www.meetup.com/postgresql-m...
⚠️ Disclaimer: Neosync has been acquired by Grow Therapy. As a result, this repository is no longer actively maintained.
We've been using Neosync transformers in pgstream, so we'll have to find a replacement or extend our own transformers to cover the gaps.
⚠️ Disclaimer: Neosync has been acquired by Grow Therapy. As a result, this repository is no longer actively maintained.
We've been using Neosync transformers in pgstream, so we'll have to find a replacement or extend our own transformers to cover the gaps.
It was a really fun conference and well organized!
It was a really fun conference and well organized!
We also open-sourced a CNPG-I plugin for scale-to-zero, so you can also give it a try!
🐘 Read more: xata.io/blog/making-...
We also open-sourced a CNPG-I plugin for scale-to-zero, so you can also give it a try!
🐘 Read more: xata.io/blog/making-...
Got any requests?
Got any requests?
Save money by setting scale-to-zero as the default for a project or override it in the branch settings.
Save money by setting scale-to-zero as the default for a project or override it in the branch settings.
You can still join us at @pgdayna.org 🇮🇹
##awesome ##postgresql ##conference ##pgday ##pgdaynapoli ##napoli
https://www.postgres...
You can still join us at @pgdayna.org 🇮🇹
She shares her Postgres journey, open-source work on pgroll and pgstream and her role in co-organizing the Postgres on Kubernetes and Postgres & AI Summits.
👉 postgreswomen.in/gulcin-yildi...
She shares her Postgres journey, open-source work on pgroll and pgstream and her role in co-organizing the Postgres on Kubernetes and Postgres & AI Summits.
👉 postgreswomen.in/gulcin-yildi...
She’s given Postgres talks in a church ⛪, and now in… a zoo! 🦒
And don’t miss tonight’s meetup 👉 meetup.com/postgresql-user-group-nl/events/310728717
She’s given Postgres talks in a church ⛪, and now in… a zoo! 🦒
And don’t miss tonight’s meetup 👉 meetup.com/postgresql-user-group-nl/events/310728717
Use it as a staging replica with PII automatically obfuscated, a production-ready database, or an ephemeral copy for a quick PR.
Use it as a staging replica with PII automatically obfuscated, a production-ready database, or an ephemeral copy for a quick PR.
What once meant hands-on tuning and constant monitoring can now be scaled through autonomous agents.
In our latest post, we explore the journey from DBA to DB Agent and why safety by design matters: xata.io/blog/dba-to-...
What once meant hands-on tuning and constant monitoring can now be scaled through autonomous agents.
In our latest post, we explore the journey from DBA to DB Agent and why safety by design matters: xata.io/blog/dba-to-...
Catch it today at PGDay Austria! 🔒🐘
📍 14:10 – 14:55
📍 Room: Sophie
🗓️ Full schedule: pgday.at/schedule/
Catch it today at PGDay Austria! 🔒🐘
📍 14:10 – 14:55
📍 Room: Sophie
🗓️ Full schedule: pgday.at/schedule/
More pro tips:
Don’t mix strong-lock DDL with other operations in the same transaction.
Use lock_timeout to prevent cascading lock queues + handle retries gracefully.
Locks aren’t about security → they’re about concurrency control.
More pro tips:
Don’t mix strong-lock DDL with other operations in the same transaction.
Use lock_timeout to prevent cascading lock queues + handle retries gracefully.
Locks aren’t about security → they’re about concurrency control.
🔑 Key takeaways:
MVCC avoids many issues, but DDL still needs strong locks.
Each DDL command has its own lock strength, some block both reads and writes.
🔑 Key takeaways:
MVCC avoids many issues, but DDL still needs strong locks.
Each DDL command has its own lock strength, some block both reads and writes.
It all starts with Postgres’ secret weapon: MVCC.
MVCC = Multi-Version Concurrency Control.
✅ Reads don’t block writes.
✅ Writes don’t block reads.
It all starts with Postgres’ secret weapon: MVCC.
MVCC = Multi-Version Concurrency Control.
✅ Reads don’t block writes.
✅ Writes don’t block reads.
“Anatomy of Table-Level Locks in PostgreSQL” 🔒
📍 14:10 – 14:55
📍 Room: Sophie
🗓️ Full schedule: pgday.at/schedule/
“Anatomy of Table-Level Locks in PostgreSQL” 🔒
📍 14:10 – 14:55
📍 Room: Sophie
🗓️ Full schedule: pgday.at/schedule/
In this post, I share how those DBA lessons shaped the way we built an AI-powered Postgres agent at @xata.io and how things evolved.
In this post, I share how those DBA lessons shaped the way we built an AI-powered Postgres agent at @xata.io and how things evolved.