Open for Business, Heroku Postgres

The Heroku Postgres cloud database service is now officially available. Read on to learn more about this new Database as a Service (DbaaS) offering.

Need a full-featured, ANSI SQL compliant database? If you don’t want to wait for your IT department to provision it for you, or don’t want the hassle of installing and configuring a whole bunch of software on your local machine, then cloud database services are a great option for you. And today, you can now access a new DbaaS from Heroku called Heroku Postgres.

[Full Discloser: I work for salesforce.com, the parent company of Heroku.]

PostgreSQL

Heroku Postgres is built using PostgreSQL, commonly known as Postgres. Most of my regular readers probably already know about Postgres, but for those of you that don’t, it’s a terrific open-source database management system that can satisfy the needs of even the most demanding apps. Among the many features you get are ACID and ANSI SQL compliance, data replication, full text search, and much more. It’s also developed by a global community of developers, which means that Oracle can’t buy it 😉 I suggest you read here for a complete list of Postgres features.

Heroku Postgres

Heroku Postgres is more than just Postgres as a service. Sure, you get all of the things you’d expect from a DbaaS offering that let you focus on app development rather than keeping the lights on, features such as effortless self-service database provisioning, simple yet secure access to your database from anywhere, automated backups, redundant transaction logs, and expert service health monitoring. And considering that Heroku has been operating Postgres for a good long while as part of their original platform as a service, they’ve got the experience to make Postgres reliable. But wait, there’s more.

The folks at Heroku are innovating with Heroku Postgres. How so? Consider Heroku’s Fork and Follow features (currently in Beta).

  • Forking a database is like forking source code — it’s a simple way to create a clone of your source database. You can then use a database fork to test new schema migrations, perform load tests, or any operation that you want to isolate from your production database. When you are done with your work, simply trash your database fork.
  • Read-only database replication is a common approach that many apps leverage to offload CPU intensive query processing from the primary, transaction processing database to one or more read-only replica databases. However, database replication is notoriously complex to configure and maintain. Not so with the Heroku Postgres follow feature. With a single command, you can create a read-only database follower (replica), which the service then keeps in sync with your primary database. Your apps can then use database followers to process queries with up-to-date data.

Getting Started

To get started with Heroku Postgres, head over to the main Heroku Postgres web site. Sign up, pick your plan, and then check out the documentation for more information about this new service.

, , , ,

  1. #1 by matt on December 1, 2011 - 3:48 am

    Don’t understand the pricing, $200 a month to give it a try? Get real!

    • #2 by Steve Bobrowski on December 2, 2011 - 11:59 am

      Yes, there’s no free evaluation. Maybe it’s not clear, but Heroku will prorate your usage if you want to kick the tires. So that’s something like $7 per day, $0.28 per hour, etc.

  1. Leveraging Heroku Postgres for Advanced Analytics

Leave a comment