I love PG, and don't plan to ever move away from it. But I'm starting to wish they had in-place upgrades. Application I develop is getting to the point of "too large to make a copy of the whole db whenever I want to upgrade Postgres". I can postpone things for a little while by replacing all our large objects with a external file storage -- but the tables themselves are growing quickly. That'd be my favorite "big dat…
You can run pg_upgrade with the --link option to have it hardlink most of the tables into the new cluster's location. It'll still re-write some things, but I believe that most of the actual table data remains unaltered.
“Big data” features coming in PostgreSQL 9.5
21–30 of 35 posts
Re: “Big data” features coming in PostgreSQL 9.5
#22Re: “Big data” features coming in PostgreSQL 9.5
#23In the meantime... self-plug: http://parpsql.com (free, open source)
Re: “Big data” features coming in PostgreSQL 9.5
#24I should really learn some PG and move away from MySQL. But at 40 years old i have a problem learning how to sit properly. sigh
It's certainly possible to use Postgres productively without ever doing anything advanced. My use case can pretty well be summed up as "things an ORM can do for you out of the box." As a developer living in the shallow end of the RDBMS pool, switching a hobby project over is a matter of hours. If your usage is similar, learning it well enough to get by could just be a matter of: apt-get install postgres
Re: “Big data” features coming in PostgreSQL 9.5
#25I love PG, and don't plan to ever move away from it. But I'm starting to wish they had in-place upgrades. Application I develop is getting to the point of "too large to make a copy of the whole db whenever I want to upgrade Postgres". I can postpone things for a little while by replacing all our large objects with a external file storage -- but the tables themselves are growing quickly. That'd be my favorite "big dat…
You can run pg_upgrade with the --link option to have it hardlink most of the tables into the new cluster's location. It'll still re-write some things, but I believe that most of the actual table data remains unaltered.
Re: “Big data” features coming in PostgreSQL 9.5
#26"Big" is apparently still limited by the 32TB table size limit in PostegreSQL. My last job was running into this. Sadly we didn't get rigorous metrics, but the database 'felt' slower when it got over .5 TB. The process pumping data into the database was several percent slower in items per second than when it started. Still, PostgreSQL is great and I'm using it right now on the new project and I hope that someday I am…
http://stackoverflow.com/questions/12206600/how-to-speed-up-...
Depending on the nature of your project, you might consider a column store engine for postgres, such as
Re: “Big data” features coming in PostgreSQL 9.5
#27Earlier quoted context omitted.
It's certainly possible to use Postgres productively without ever doing anything advanced. My use case can pretty well be summed up as "things an ORM can do for you out of the box." As a developer living in the shallow end of the RDBMS pool, switching a hobby project over is a matter of hours. If your usage is similar, learning it well enough to get by could just be a matter of: apt-get install postgres
For longtime MySQL users (like myself, ahem), I've found the biggest initial hurdle to be the different syntax the stock MySQL and Postgres clients use. When dropping into a Postgres environment I have to constantly look up what the Postgres commands are to do simple stuff like list all tables or describe a table's structure. It's not that the Postgres commands are particularly abstruse or anything, just that they're…
Compared to MySQL, the presence of schemas is a big win for me (same as 'user' in Oracle). Also, I can't move away from Postgres because it's the only DBMS which supports transactional DDL, which the ability to roll back an "add column" as part of a transaction.
http://stackoverflow.com/questions/2901453/sql-standard-to-e...
Re: “Big data” features coming in PostgreSQL 9.5
#28Earlier quoted context omitted.
For longtime MySQL users (like myself, ahem), I've found the biggest initial hurdle to be the different syntax the stock MySQL and Postgres clients use. When dropping into a Postgres environment I have to constantly look up what the Postgres commands are to do simple stuff like list all tables or describe a table's structure. It's not that the Postgres commands are particularly abstruse or anything, just that they're…
Postgres is often closer to the SQL standard. For example escaping column names is specified by SQL-99 with double-quotes (") whereas MySQL by default refuses this and requires backticks (`, same as Oracle). Compared to MySQL, the presence of schemas is a big win for me (same as 'user' in Oracle). Also, I can't move away from Postgres because it's the only DBMS which supports transactional DDL, which the ability to r…
Re: “Big data” features coming in PostgreSQL 9.5
#29"Unfortunately, due to the technical challenges being more difficult than expected by the team led by EnterpriseDB programmer Robert Haas, no parallel query features have yet been committed." In the meantime... self-plug: http://parpsql.com (free, open source)
Re: “Big data” features coming in PostgreSQL 9.5
#30I would love to go back to relational, but I can't get over the linear scaling and HA ease of Cassandra and I'm willing to write my applications to work around the data model limitations. Is there any open source SQL database (i.e. "newsql") that can linearly scale with Cassandra's ease right now? I look forward to CockroachDB but it isn't done yet.
It's commercial, but MemSQL Community Edition scales horizontally. It's free and there are no capacity or scaling limits.