Postgres and Open Source Experts

Anytime. Anywhere. Since 1997.

Blog

PostgreSQL Conference: East 2009, When should we hold it?

I have been negotiating (with the help of Bruce and others) with various parties to determine where we are going to hold East 2009. One of the questions that keeps popping up is, "When are we going to hold PostgreSQL Conference East: 2009". Since we now have this nifty new Drupal (with PostgreSQL) driven web site, we should take advantage of the ease of use and ask for some feedback. …

Explain: Why do I have to recheck my condition?

As with any PostgreSQL question, the first place you should look for answer is the PostgreSQL docs. I was recently reviewing the EXPLAIN docs as freshen up on some query tuning fu and I came across this little gem:
EXPLAIN SELECT * FROM tenk1 WHERE unique1 < 100;

                                  QUERY PLAN
------------------------------------------------------------------------------
 Bitmap Heap Scan on tenk1  (cost=2.37..232.35 rows=106 width=244)
   Recheck Cond: (unique1 < 100)
   ->  Bitmap Index Scan on tenk1_unique1  (cost=0.00..2.37 rows=106 width=0)
         Index Cond: (unique1 < 100)
What the above says (per the docs) is :
Here the planner has …

Pg Conference: Videos up! (well some of them anyway)

Last March at PostgreSQL Conference: East we video taped almost all the talks. It has taken some time to get them up and we are still encoding (and learning the tricks of the trade) but we do have a few up now that people may enjoy.
  • Deploying PostgreSQL on Windows
  • The magic of MVCC
  • PostgreSQL Interprocess Coordination and Communication
  • PostgreSQL Logic and Databases
You can find them at the newly …

PostgreSQL Conference: A new platform

In my on going efforts to secure a location for the upcoming East (MIT, Penn State, Drexel and even the Marriot are on the list), I am bound and determined to revamp the entire Pgcon.US website. I have several problems/goals I wish to solve.
  1. A more community orientated site. Currently the site is 100% manage by me. Although it does use PHP it is essentially flat files.
  2. A social …

PostgreSQL Certification: JTA results released

The PostgreSQL Certification project has released the results of the Job Task Analysis. Thanks to everyone who participated in this important step toward delivering a quality certification. 223 members took the time and effort to fill out the survey. A couple of interesting results. There were 213 members felt we needed a certification. That is a sharp contrast to exposed opinions of some in the community. Of all the results …

PostgreSQL Certification: JTA now closed

Thanks to everyone that took the time to participate in the PostgreSQL Certification JTA. We received over 223 respondents which is great. We will be posting the results of the JTA shortly and if you would like to participate in the resulting project discussion please join us.

PostgreSQL Certification (JTA closes November 14th)

The PostgreSQL certification project is in the closing days of the JTA (Job Task Analysis). In short, what should the PostgreSQL certification project, certify? In hacker terms, "What is the problem we are trying to solve?". It is relatively long but the information is of extreme value to ensure that the project develops a relevant certification to the professional PostgreSQL community. If you haven't done so already please create an …

You are not good enough (for Open Source)

A segment of the talk I gave at NAU on why you should contribute to Open Source and why you think you can't. Original idea credited to Matt S. Trout.


Updated 11/05/08 from Matt Trout: the version he gave at YAPC-EU 2008
 
 

The Open Source job market

The following is a segment of the talk I gave at Northern Arizona State University about the Open Source job market.

PostgreSQL Replicator developer meeting 10/28

With the recent open sourcing of Replicator, the team has been trying to come up with ways to ensure an open development process. In that light we have decided to have our first release 1.9 meeting on Freenode. All people interested in participating in a discussion about the upcoming Replicator 1.9 are welcome to attend. The current topics are:
  • New MCP architecture
  • DDL Replication
  • Release timeline
  • Questions
Replicator is set …