“Big data” features coming in PostgreSQL 9.5
1–10 of 35 posts
Re: “Big data” features coming in PostgreSQL 9.5
#2Re: “Big data” features coming in PostgreSQL 9.5
#3Re: “Big data” features coming in PostgreSQL 9.5
#4Re: “Big data” features coming in PostgreSQL 9.5
#5Re: “Big data” features coming in PostgreSQL 9.5
#6Re: “Big data” features coming in PostgreSQL 9.5
#7I 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
Re: “Big data” features coming in PostgreSQL 9.5
#8Re: “Big data” features coming in PostgreSQL 9.5
#9If you choose random data pages (of fixed size), then it can fit more rows of small size than of big size.
"In the query above, SYSTEM is the name of the chosen sampling algorithm. The SYSTEM algorithm chooses a set of pseudo-random data pages, and then returns all rows on those pages, and has the advantage in running in constant time regardless of the size of the table. PostgreSQL 9.5 will also ship with the BERNOULLI sampling method, which is more rigorously random, but will take longer the larger the table is."
Re: “Big data” features coming in PostgreSQL 9.5
#10But 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 data" feature.