669557 members! Sign up to stay informed.

Sponsored Links


Resources

Enterprise Java
Research Library

Get Java white papers, product information, case studies and webcasts

News News News Messages: 11 Messages: 11 Messages: 11 Printer friendly Printer friendly Printer friendly Post reply Post reply Post reply XML XML XML

PostgreSQL 8.4 now available

Posted by: Josh Berkus on July 03, 2009 DIGG
PostgreSQL 8.4, the latest version of the high-end open source SQL database system, is now available. This new release has several cool features, including:

* Recursive Queries & Common Table Expressions
* Windowing Functions
* Parallel database restore
* Column-level privileges
* New monitoring tools

This release not only implements some unique new PostgreSQL features, it makes administration of the database easier in several ways. Download it and give Postgres 8.4 a try.

Threaded replies

·  PostgreSQL 8.4 now available by Josh Berkus on Fri Jul 03 10:19:27 EDT 2009
  ·  Re: PostgreSQL 8.4 now available by Istvan Soos on Fri Jul 03 12:51:15 EDT 2009
    ·  Re: PostgreSQL 8.4 now available by eric velazquez on Fri Jul 03 15:21:49 EDT 2009
  ·  Re: PostgreSQL 8.4 now available by pagux pagux on Fri Jul 03 13:17:02 EDT 2009
    ·  Re: PostgreSQL 8.4 now available by shawn spencer on Sat Jul 04 23:04:51 EDT 2009
  ·  Re: PostgreSQL 8.4 now available by Casual Visitor on Fri Jul 03 15:08:27 EDT 2009
  ·  Re: PostgreSQL 8.4 now available by Isaias Compres on Sat Jul 04 12:00:11 EDT 2009
    ·  Re: PostgreSQL 8.4 now available by Alex Besogonov on Sun Jul 05 15:15:47 EDT 2009
      ·  Re: PostgreSQL 8.4 now available by augustientje bloem on Sun Jul 05 16:43:45 EDT 2009
      ·  Re: PostgreSQL 8.4 now available by Ilya Sterin on Sun Jul 05 19:28:59 EDT 2009
  ·  Great news by Pether Sorling on Sat Jul 04 17:10:52 EDT 2009
  ·  Re: PostgreSQL 8.4 now available by John Hurst on Tue Jul 07 20:41:37 EDT 2009
  Message #310657 Post reply Post reply Post reply Go to top Go to top Go to top

Re: PostgreSQL 8.4 now available

Posted by: Istvan Soos on July 03, 2009 in response to Message #310595
Great progress!

Btw: does anyone use a reliable multi-master cluster solution for postgresql?

  Message #310659 Post reply Post reply Post reply Go to top Go to top Go to top

Re: PostgreSQL 8.4 now available

Posted by: pagux pagux on July 03, 2009 in response to Message #310595
How many are you planning to replace over prized oracle with postgress ........here is migration suite http://www.enterprisedb.com/solutions/business_case.do

  Message #310662 Post reply Post reply Post reply Go to top Go to top Go to top

Re: PostgreSQL 8.4 now available

Posted by: Casual Visitor on July 03, 2009 in response to Message #310595
At least one advantage PostgreSQL has over 'Commercial Open Source' databases: Nobody can buy PostgreSQL.

  Message #310663 Post reply Post reply Post reply Go to top Go to top Go to top

Re: PostgreSQL 8.4 now available

Posted by: eric velazquez on July 03, 2009 in response to Message #310657
Great progress!

Btw: does anyone use a reliable multi-master cluster solution for postgresql?



Not really.

Having tried sequoia and ha-jdbc but never felt comfortable with neither of them due to some problems found.

Currently i am using the PITR way to warm-standby replicate my DB. Although a real cluster would be nice.

Looking forward to see if anyone knows any other reliable, production ready multimaster replication; of course, open source ;-)

Regards

  Message #310674 Post reply Post reply Post reply Go to top Go to top Go to top

Re: PostgreSQL 8.4 now available

Posted by: Isaias Compres on July 04, 2009 in response to Message #310595
I am not a database expert, so I would like to ask:

How does Postgres stand in comparison to the market in terms of performance and features? Specilly incomparison to oracle and mysql.

  Message #310678 Post reply Post reply Post reply Go to top Go to top Go to top

Great news

Posted by: Pether Sorling on July 04, 2009 in response to Message #310595
looking forward to test the new version out in the next prod environment I setup. Excellent that postgresql works well together with jopr.

  Message #310679 Post reply Post reply Post reply Go to top Go to top Go to top

Re: PostgreSQL 8.4 now available

Posted by: shawn spencer on July 04, 2009 in response to Message #310659
How many are you planning to replace over prized oracle with postgress ........here is migration suite http://www.enterprisedb.com/solutions/business_case.do

And enterpriseDB is the commercial vendor - so ofcourse they had to sell it! :)

  Message #310684 Post reply Post reply Post reply Go to top Go to top Go to top

Re: PostgreSQL 8.4 now available

Posted by: Alex Besogonov on July 05, 2009 in response to Message #310674
I am not a database expert, so I would like to ask:

How does Postgres stand in comparison to the market in terms of performance and features? Specilly incomparison to oracle and mysql.


PostgreSQL is way more stable than MySQL. Also, PostgreSQL has good support for stored procedures and custom functions while SPs in MySQL are a joke. Query language in PostgreSQL is also much more rich. MySQL might be faster for simple operations, but PostgreSQL completely demolishes it in complex queries.

And Oracle... Well, it's hard to find anything which has more features than Oracle :)

The only major missing piece in PostgreSQL is synchronous replication...

  Message #310685 Post reply Post reply Post reply Go to top Go to top Go to top

Re: PostgreSQL 8.4 now available

Posted by: augustientje bloem on July 05, 2009 in response to Message #310684
The only major missing piece in PostgreSQL is synchronous replication...


Some other major pieces are missing, like true table partitioning and the ability to execute a single query in parallel using multiple cpus and core.

Nevertheless, PG is truly an awesome database and the relatively low market share is something that continues to surprise me.

  Message #310686 Post reply Post reply Post reply Go to top Go to top Go to top

Re: PostgreSQL 8.4 now available

Posted by: Ilya Sterin on July 05, 2009 in response to Message #310684
MySQL is great for simple read only and/or simple query transaction processing, but it chokes in high throughput environment when complex transactions are involved.

We build a high transaction application on top of MySQL and had to really wonder why when it actually went in production and the throughput increased. We've previously worked with Postgres in a relatively complex application and it performed without a hickup. Any performance issues we ever found had to do with application CPU or IO bottlenecks, Postgres executed hundreds of queries per transaction in about .003 percent of the transaction time. This of course doesn't say much, since it's application specific. It also doesn't discount MySQL as a viable alternative, since it can be tuned for high scalability requirements and is used by some of the most high traffic sites out there. I due wonder if majority of mysql transactions in those environments are read only.

For highly scalable read/write scenarios, I think relational databases in general (at least their current implementations) are not scalable without a huge hardware investment and even then you're at the mercy of being able to scale up. That's where partitioning/sharding and even different data models are used. You can't possibly scale a highly read/write database up and the only current way to really scale horizontally is through partitioning. I wish these features where more available through some database features, vs. having to roll your own each time.

Also, in memory stores, like Terracota and GigaSpaces that provide data partitioning and replication functionality can be used in conjunction with the ACID data storage, which can be used for eventual consistency.

Ilya

  Message #310758 Post reply Post reply Post reply Go to top Go to top Go to top

Re: PostgreSQL 8.4 now available

Posted by: John Hurst on July 07, 2009 in response to Message #310595
I am really looking forward to trying out the common table expressions (CTEs, "WITH" clause), and windowing functions.

These are features I rely on frequently in Oracle, and it's great to see PostgreSQL support for them.

I am surprised to see that "WITH" is not explained in many SQL books. I use it every day, and find that it is a very important feature for many non-trivial queries.

John Hurst

Wellington, New Zealand

New content on TheServerSide.comNew content on TheServerSide.comNew content on TheServerSide.com

Developers split on open sourcing Java

Now that Oracle is absorbing Sun Microsystems, there mixed views on what should come of the Java Community Process (JCP). While some say Oracle should become the new steward of Java and keep the JCP much as it was, others argue that it may be time to open-source this widespread language. (November 24, Article)

Dependency Injection in Java EE 6 - Part 1

Reza Rahman explores the features of the proposed JSR 299, Contexts and Dependency Injection for Java EE (CDI). When approved, it promises to be a key feature of Java EE 6. (November 2, Article)

SAML: It's Not just for Web services

SAML is an XML-based standard for exchanging authentication and authorization data between security domains. The single most important problem that SAML was created to solve is the Web browser Single Sign-On problem. Many organizations are debating whether to stay with version 1.1 or move to 2.0. This article makes observations about both options. (September 28, Article)

Programming is Also Teaching Your Team

Joe Ottinger takes a look at how people learn, and applies it to the practice of programming. He notes that understanding how people learn is an essential part of working in a programming team. (September 22, Article)

Can Java EE Deliver The Asynchronous Web?

Stephen Maryka gave us an article about the Asynchronous Web and posed a number of questions that get examined like an approach to delivering Asynchronous Web capabilities through extensions to existing Java EE technologies. (July 14, Article)

JSF Flex

JavaServer Faces Flex goal is to provide users capability in creating standard Flex components, part of flexSDK which is open sourced through MPL license, as normal JSF components. This article by Ji Hoon Kim will provide an overview of creating a simple multilingual JSF page consisting of JSF Flex tags. (June 29, Article)

The Rules of SOA - A Road to a Successful SOA Implementation

In this session Jeff explores the key characteristics of successful SOA projects. He covers some of the patterns, and anti-patterns, tool sets, and strategies that he himself learned the hard way. Last, he provides a strategy and blueprint for achieving a high likelihood of success in your SOA project. (June 23, Tech Talk)

Ari Zilka Talks About Terracotta 3.1

Ari Zilka, CTO of Terracotta, Inc., talks about the new features in Terracotta 3.1, announced during JavaOne and available now. (June 15, Tech Talk)

Enterprise Application Integration, and Spring

In this Tech Talk, Josh Long explores an integration challenge using Spring Integration and walks through the implementation, employing and expanding on the basic patterns of Enterprise Application Integration to tie together components into a function integration solution, and then demonstrates how Spring Integration helps address the integration requirements. (June 15, Tech Talk)

Google Web Toolkit: An Introduction

In this Tech Talk, David Geary teaches you: The basics of Google Web Toolkit; How to implement Ajax-enabled applications in Java; Internationalization; Hooking into the browser history mechanism; Remote procedure calls. (June 4, Tech Talk)

Just Enough Early Architecture to Guide Development

Jon Kern discusses the best architecture/technical solutions and ensure that they are repeated by all developers. By tackling the architecture up-front in a serial manner, subsequent parallel development will be much more manageable and predictable. (May 28, Tech Talk)

Productive Programmer: On the Lam from the Furniture Police

This keynote describes the frustrations of modern knowledge workers in their quest to actually get some work done, and solutions for how to guard yourself against all those distractions. Neal Ford talks about environments, coding, acceleration, automation, and avoiding repetition as ways to defeat the misguided attempts to sap your ability to produce good work. (May 26, Tech Talk)

Auto-Scaling Your Existing Web Application

Gil demonstrates how new, aggressive uses of already abundant compute capacity by common applications offer competitive value for application designers. (May 21, Tech Talk)

Automating Hibernate Mapping and Queries For Java Web Development

Chris Keene introduces WaveMaker as a new way to automate the ability to generate Hibernate classes in order to more quickly bring OR mapping into an application. (May 19, Article)

Free Book PDF Download: Mastering EJB Third Edition

Mastering EJB was one of the original and most influential EJB books in the industry. Mastering EJB III now returns with two new expert co-authors, updated for EJB 2.1 and 30% new chapters including security, integration, best practices, open source, and more.
(Book PDF Download)

Application Server Matrix

The Application Server Matrix is a detailed listing of J2EE vendors and their application server products, with information on latest version numbers, J2EE spec support and licensing, pricing, platform support, and links to product downloads and reviews.
(Application Server Comparison Matrix)

News | Blogs | Discussions | Tech talks | Patterns | Reviews | White Papers | Downloads | Articles | Media kit | About
Java Solutions
All Content Copyright ©2007 TheServerSide Privacy Policy
Site Map