Debra Cerda Blog Posts

The Postgres Conference 2025 is set to take place in Orlando, Florida, from March 18 to 21, 2025. This year's conference features an expanded lineup of tracks, including the Dev Track, which is tailored for developers seeking to deepen their expertise in PostgreSQL. This track offers sessions to enhance your development skills, explore new tools, and provide practical insights into PostgreSQL's capabilities.

What to Expect

The Dev Track is curated to address the diverse needs of developers working with PostgreSQL. Attendees can look forward to:

  • In-Depth Tutorials: Hands-on sessions that delve into advanced PostgreSQL features and development practices.
  • Expert-Led Workshops: Opportunities to learn from seasoned professionals about optimizing performance, implementing machine learning, and more.
  • Cutting-Edge Topics: Discussions on the latest tools, extensions, and methodologies in the PostgreSQL ecosystem.

Session Highlights

Here are some standout sessions in the Dev Track:

  • A Practical Guide to Set-Based Queries (paid training)

    • Speaker: Aaron Cutshall
    • Date & Time: March 18, 2025, 9:00 AM – 12:00 PM
    • Description: This workshop addresses performance issues arising from procedural code in PostgreSQL. Aaron will guide participants through transforming procedural logic into efficient set-based queries, enhancing database performance.

  • Machine Learning using PostgreSQL (paid training)

    • Speaker: Abbas Butt
    • Date & Time: March 18, 2025, 1:00 PM – 4:00 PM
    • Description: Abbas will introduce participants to implementing machine learning algorithms directly within PostgreSQL 15.x using Apache MADlib 2.1.0 installed on Ubuntu 22.04. The session covers practical applications of predictive analytics, enabling developers to harness the power of ML in their databases.

  • From MongoDB to Postgres: Building an Open Source Standard for Document Databases
    • Speaker: Peter Farkas
    • Date & Time: March 19, 2025, 4:00 - 4:20 PM
    • Description: This session reviews the current state of document databases, and demonstrates how Postgres handles MongoDB workloads with ease.

For a comprehensive view of all sessions and to plan your itinerary, visit the official conference schedule.

Why Attend?

Participating in the Dev Track at Postgres Conference 2025 offers numerous benefits:

  • Skill Enhancement: Gain practical knowledge and hands-on experience with PostgreSQL's advanced features.
  • Networking Opportunities: Connect with fellow developers, industry experts, and thought leaders.
  • Stay Current: Keep abreast of the latest developments, tools, and best practices in the PostgreSQL community.

Don't miss this opportunity to elevate your PostgreSQL development skills. Register now and join us in Orlando for an enriching experience.

Debra Cerda     March 06, 2025
Sponsors  Revision

Postgres Conference Orlando 2025 was a success, thanks in no small part to the incredible support of our sponsors and partners. These organizations not only helped make the event possible, but they’re also dedicated champions of the Postgres community. We’re truly grateful for their participation.

We’d like to give a special shout-out to each of our Orlando sponsors and partners. Every one of them plays a unique and important role in the Postgres ecosystem. We encourage our community to learn more about the work they do:

Our Conference Sponsors:

Amazon Web Services (AWS):
AWS delivers fully managed, PostgreSQL-compatible database services. These services help organizations run secure, scalable, and high-performing workloads in the cloud. Their continued support of the open source ecosystem empowers developers and users around the world.

 

Google Cloud:
Google Cloud offers powerful, fully managed PostgreSQL solutions through Cloud SQL and AlloyDB. With a focus on scalability, performance, and integrated AI capabilities, Google empowers teams to build modern applications backed by enterprise-grade Postgres.

 

Our Conference Partners:

Command Prompt, Inc:
Command Prompt is one of the oldest PostgreSQL service providers. They offer consulting, managed services, and training for mission-critical environments. Their deep experience and ongoing advocacy have made them a trusted pillar of the Postgres community.

Fujitsu:
Fujitsu is a global technology leader that provides enterprise-grade PostgreSQL solutions backed by robust support. Their long-term contributions to PostgreSQL development show their commitment to open source and scalable, high-performance deployments.

PgEdge:
PgEdge makes globally distributed PostgreSQL possible with a platform designed for edge and multi-region deployments. By bringing data closer to users, they enhance performance, resilience, and compliance for modern applications.

Quest:
Quest offers proven tools for PostgreSQL monitoring, management, and performance optimization. Their solutions help teams simplify operations, boost efficiency, and manage complex database environments with confidence.

Tacnode:
Tacnode helps organizations power AI and analytics workflows with PostgreSQL at the core. By integrating data platforms and pipelines, they enable smarter and faster data applications across industries.

Redgate:
Redgate is a long-time leader in database tooling and now brings its expertise to PostgreSQL. Their tools, focused on DevOps, automation, and version control, help teams collaborate and deliver changes with speed and safety.

Unlimited with Exceptions:
Unlimited with Exceptions offers integrative health and wellness coaching focused on the whole person, including mind, body, and spirit. Through personalized guidance, they help individuals achieve balance, resilience, and sustainable well-being in daily life.

Debra Cerda     May 14, 2025

 

As part of the countdown to PostgresConf US 2018, learn more about the engaging content and our speakers for this year in our Speaker Spotlight Series.

Elizabeth Zalman is the Co-founder & CEO of strongDM, the definitive data security product. Previously she was Co-Founder and CEO of the cross-device profile company Media Armor.

Liz will be presenting a breakout session "Do You Know Your Vendor Dependencies" on Wednesday, April 18, at 4 pm. Read what she has to say about Postgres and why to attend her session: 

Why PostgreSQL? What got you into it, and made you stick with it?

Featureful performance & proven reliability. Over the years I've found fewer and fewer reasons to consider alternatives beyond Postgres (two notable exceptions being redis-style KV and queues).

Tell us about your involvement with the greater Postgres community.

strongDM hears a lot about how its customers use PG and its derivatives (Greenplum, the latest on Aurora, etc.) and we love sharing tips when appropriate.

What new features of PostgreSQL 10 are you most excited about?

As a security product, we're always happy to see security-related upgrades: SASL/SCRAM authentication is a popular option in several of database systems, and is a significant upgrade over the previous salted hashes. We also rely heavily on partitioning, so all related enhancements are welcome.Finally: although we generally wouldn't choose to run parallel queries in a primarily OLTP system, the promise of running analytic queries on a replica (rather than ETL'ing into an analytic database) is very appealing.

What features should be developed/improved and released in the next major upgrade?

Dynamic optimization for queries on partitioned tables. Right now if you run select * from date_partitioned_table where event_timestamp between NOW() and NOW() - interval '7 days'; It scans every partition because the result of NOW() is not knowable ahead of time. But it could optimize that query when it was asked to execute it. Instead of creating a static query plan it could say, I know I'm going to have to compute a list of partitions. So, let's just remember that. Then right before the query runs, it could calculate the list and run the query as though it had been planned with a static date range, and thus only query the affected tables. 

 Why should attendees come to your talk at PostgresConf US 2018?

In this talk, I'll share practical examples of breaches I've personally experienced along with advice on how to hold your vendors accountable, and hopefully make the topic of security a little less intimidating in the process.

What sessions are you most excited about attending at PostgresConf US 2018?

I am looking forward to attending “Reducing the Surface Area of Risk in Data Security” by Tim Gorman and “General Data Protection Regulation (GDPR) with Azure Database for PostgreSQL” by Mark Bolz.

What is your favorite aspect of PostgresConf US?

Being able to network with and learn from a unique community! I’ve found practice to really be one of the best ways to learn about databases.

 What advice would you have for a Computer Science graduate or entry level developer who are interested in learning and engaging with Postgres? 

 I’ve found practice to really be one of the best ways to learn about databases. Get your hands dirty: try breaking things and then fixing them! 

Check out the full schedule for PostgresConf US 2018, and buy your tickets soon!

 

 

 

Professional DevelopmentAre you ready to take your career to the next level? Whether you're a seasoned technology professional or just stepping in, the Professional Development track at Postgres Conference 2025 is your gateway to success.

This year, the Professional Development track offers a curated lineup of sessions designed to equip you with the skills, strategies, and insights to thrive in an evolving tech landscape. The conference takes place from March 18 - 21, 2025, and will be hosted at the beautiful DoubleTree By Hilton Hotel At The Entrance To Universal in Orlando, Florida.

What to Expect

The Professional Development track goes beyond the technical deep dives of other tracks—it’s all about empowering you to grow as a professional. Some key highlights include:

  • Leadership and Team Building: Learn how to lead high-performing teams in the fast-paced world of database management.
  • Career Growth Strategies: Gain actionable insights into advancing your career, from presentation tips to navigating complex workplace dynamics.
  • Soft Skills for Tech Professionals: Enhance critical skills like communication, conflict resolution, and cross-team collaboration.
  • Navigating Change in Tech: Hear from industry leaders about how to adapt to the shifting demands of the tech industry while staying ahead of the curve.

Whether you're a database administrator, developer, team leader, or someone looking to transition into Postgres-focused roles, this track is tailored to your professional growth.

Who Should Attend?

The Professional Development track is ideal for:

  • Emerging Professionals: If you're new to the tech industry or transitioning into a Postgres-related role, you'll find valuable guidance to kickstart your journey.
  • Seasoned Experts: Even the most experienced professionals can refresh their skills and stay ahead of trends.
  • Leaders and Managers: Gain new tools for leading teams, managing stress, and fostering innovation in your organization.
  • Tech Enthusiasts: If you're looking to grow personally and professionally within the tech industry, this track is for you.

Why You Should Register Now

Don’t miss this opportunity to invest in yourself and your future. The skills and insights you’ll gain at Postgres Conference 2025 could make the difference in your next career move or project success. Secure your spot and begin planning your schedule for the event.

Ready to take the next step? Register now for Postgres Conference 2025 and reserve your place in the Professional Development track. Early bird discounts are available, but only for a limited time—don’t wait!

Transform your career. Grow your network. Build your future. Join us at Postgres Conference 2025 and make this your year of professional development.

Debra Cerda     February 17, 2025     professional development

As part of the countdown to Postgres Conference 2024, learn more about the engaging content and our speakers for this year in our Speaker Spotlight Series.

Dave Stokes is author of "MySQL & JSON - A Practical Programming Guide," and serves as a Technology Evangelist for Percona, advocating for MySQL innovation and best practices.

Dave will present “MERGE() - A Quick Introduction”. Read what Dave has to say about Postgres and why to attend their session:

Why should attendees come to your talk at Postgres Conference 2024? What would you like for them to take away from your session?
I like to show attendees new facets on old tools and help beginners master the very steep learning curves of today's world.

What is your favorite aspect of Postgres Conference?
The hallway track.

What advice would you have for a Computer Science graduate or entry level developer who is interested in learning and engaging with Postgres and other open source technologies?
You learn by breaking and repairing. After awhile you can learn to minimize the breakage but never the repairing.
And when you go to a show like Postgres Conference 2024 and have an open slot in the schedule, go attend a session on a subject you know absolutely nothing about. You will either learn that you do not like the subject and have only spent an hour of your life on something that does not interest you, or you will find another rabbit hole to explore.

How do you see the use of open source technologies evolving over the next five years?
PostgreSQL will be the dominant database. Sadly license changes may push us back to a pre-open source era when you had minimal or no choices in software.
What considerations should be taken for the adoption and use of Postgres and related open source technologies?
It needs to be more robust. Better replication that is easier to set up, no XID wrap-around, and easy upgrades.

Additional comments?
This is a great show - make the most of your opportunities.

Check out the full schedule for PostgresConf US 2024. Learn more about our conference here and buy your tickets soon!

Debra Cerda     April 17, 2024     speaker spotlight

 

As part of the countdown to Postgres Conference 2024, learn more about the engaging content and our speakers for this year in our Speaker Spotlight Series.

Relevant Logic President/CEO Guyren Howe is a web developer, trainer, database expert, technical writer, and more specializing in PostgreSQL, Flutter, and Rails. Guyren will present “Postgres’s Type System” at Postgres Conference 2024. Read what Guyren has to say about Postgres and why to attend his session:

Why should attendees come to your talk at Postgres Conference 2024?

What would you like for them to take away from your session? Learn the important details of Postgres's type system: the built-in types, extension types, domains, arrays and custom types.

What is your favorite aspect of Postgres Conference?

My talk :)

What advice would you have for a Computer Science graduate or entry level developer who are interested in learning and engaging with Postgres and other open source technologies?

Follow the pgsql-general list. Learn relational theory. Don't listen to the database haters.

How do you see the use of open source technologies evolving over the next five years?

I foresee an open source boom as AI technologies can work with open source much better than closed.

 

Check out the full schedule for PostgresConf US 2024. Learn more about our conference here and buy your tickets soon!

Attention PostgresConf US 2018 registered (and potential) attendees -- our discounted room block at the Westin Jersey City Newport has sold out! We have arranged to add an additional small block, lasting until Monday, March 26th or until it sells out.

HOWEVER, these rooms are selling fast so make your reservation ASAP if interested in staying at the Westin with the special conference rate of $260/night plus applicable taxes for attendees who make their reservations via the dedicated Westin webpage or via telephone (888) 627-7148.

If booking via telephone please mention "PostgresConf US 2018" to receive the group rate. Guest room wifi is included in the room rate.

The Westin Jersey City Newport is the best place to stay and enjoy all conference activities. Attendees will mingle at the Westin bar and hallways throughout the afternoon and long into the evening.

Additional Lodging Options

The DoubleTree by Hilton Hotel Suites Jersey City and the Courtyard Jersey City Newport  are two conveniently located hotels just a short walk from the conference. Rooms may be booked via their respective websites.

PostgresConf US Attendee Poll - Action Needed!

Our PostgresConf US 2018 poll is now open -- your input is valued!

Please take two minutes to provide feedback so we can ensure that the conference is a great experience. Registered attendees should have received an email this week with the poll link. Contact us at organizers@postgresconf.org if you did not receive the poll link.

The purpose of this quick poll is to note any dietary restrictions and gauge interest in the Greenplum and RIS Summits, as well as some of our popular sessions so that we can assign room spaces accordingly

Sponsors

During PostgresConf, you will have plenty of opportunity to meet our great sponsors, including:

  • Diamond: Amazon Web Services, Pivotal
  • Platinum: Compose, OpenSCG, 2ndQuadrant, Microsoft
  • Many more!

For more information, please visit our website https://postgresconf.org/conferences/2018.

Need further assistance? Contact us at organizers@postgresconf.org.

We look forward to seeing you in April in Jersey City!

Debra Cerda     March 21, 2018     postgres

As part of the countdown to Postgres Conference 2024, learn more about the engaging content and our speakers for this year in our Speaker Spotlight Series.

Robert Bernier is senior PostgreSQL consultant at Percona.

Robert will present Working With The Citus Extension. Read what Robert has to say about Postgres and why to attend their session:

Why should attendees come to your talk at Postgres Conference 2024? What would you like for them to take away from your session?
For people who have heard about Citus but know nothing about it.
What is your favorite aspect of Postgres Conference?
Meeting my peers
What advice would you have for a Computer Science graduate or entry level developer who are interested in learning and engaging with Postgres and other open source technologies?
Data eats the world. Focus on learning about your data and how it's used.
How do you see the use of open source technologies evolving over the next five years?
PostgreSQL is a General Purpose Management System. It will come to dominate the DBMS world.
What considerations should be taken for the adoption and use of Postgres and related open source technologies?
Three talents:
- know your SQL
- know your OS (linux)
- know a programming language

Check out the full schedule for PostgresConf US 2024. Learn more about our conference here and buy your tickets soon!

Debra Cerda     April 18, 2024     speaker spotlight

As part of the countdown to Postgres Conference 2024, learn more about the engaging content and our speakers for this year in our Speaker Spotlight Series.

Chandra Pathivada is is a Senior Database Specialist Solutions Architect with Amazon Web Services. He works with the AWS RDS team, focusing on Open Source database engines like RDS PostgreSQL, Aurora PostgreSQL, and Babelfish for Aurora PostgreSQL.

Chandra will present “Why PostgreSQL Isn't Utilizing Indexes: Diagnosing and Solving Performance Issues" and "Behind the Scenes: Demystifying Transaction Isolation in App Development". Read what Chandra has to say about Postgres and why to attend their session:

Why should attendees come to your talk at Postgres Conference 2024? What would you like for them to take away from your session?
This talk dives into the core concepts, shedding light on the real-world implications of different isolation levels on performance and integrity. Through interactive examples and case studies, attendees will learn how to navigate common pitfalls and optimize application performance, balancing concurrency with isolation effectively. Gain the knowledge and best practices necessary to implement error-free database-backed applications, making it an invaluable opportunity for anyone looking to enhance their expertise in database management and application development.

What is your favorite aspect of Postgres Conference?
Engage with the PostgreSQL community. This conference offers a rich tapestry of learning, sharing, and networking. It's where boundaries of knowledge expand through collaboration and where every attendee, regardless of expertise, finds value and inspiration.

What advice would you have for a Computer Science graduate or entry level developer who are interested in learning and engaging with Postgres and other open source technologies?
Start with fundamentals through hands-on practice, engage with the community through forums and meetups, and contribute to projects. Expand your knowledge through tutorials and start building your own projects. Have a mentor and network with professionals specializing in areas of interest.

How do you see the use of open source technologies evolving over the next five years?
In the next five years, open-source technologies are set to play a pivotal role in innovation, with a growing preference among developers and organizations to initiate their projects or migrate from commercial to open-source solutions. The community-driven nature of these technologies will fuel the addition of new features, enhancing their value and appeal.

Check out the full schedule for PostgresConf US 2024. Learn more about our conference here and buy your tickets soon!

Debra Cerda     May 07, 2024     speaker spotlight