Re: [PERFORM] Performance for relative large DB

2005-08-29 Thread Jim C. Nasby
On Tue, Aug 23, 2005 at 11:25:02PM -0700, tobbe wrote:
 Hi Chris.
 
 Thanks for the answer.
 Sorry that i was a bit unclear.
 
 1) We update around 20.000 posts per night.
Doesn't seem like a lot at all.

 2) What i meant was that we suspect that the DBMS called PervasiveSQL
 that we are using today is much to small. That's why we're looking for
 alternatives.

Just so no one gets confused, PervasiveSQL is our Btrieve-based
database; it has nothing to do with Pervasive Posgres or PosgreSQL.
Also, feel free to contact me off-list if you'd like our help with this.

 Today we base our solution much on using querry-specific tables created
 at night, so instead of doing querrys direct on the post table (with
 4-6M rows) at daytime, we have the data pre-aligned in several much
 smaller tables. This is just to make the current DBMS coop with our
 amount of data.
 
 What I am particulary interested in is if we can expect to run all our
 select querrys directly from the post table with PostgreSQL.

Probably, depending on what those queries are, what hardware you have
and how the table is laid out. Unless you've got a really high query
load I suspect you could handle this on some fairly mundane hardware...

 3) How well does postgres work with load balancing environments. Is it
 built-in?

As Chris said, there is no built-in solution. PGCluster
(http://pgfoundry.org/projects/pgcluster/) is a possible solution should
you need clustering/load balancing, but as I mentioned I suspect you
should be ok without it.
-- 
Jim C. Nasby, Sr. Engineering Consultant  [EMAIL PROTECTED]
Pervasive Softwarehttp://pervasive.com512-569-9461

---(end of broadcast)---
TIP 5: don't forget to increase your free space map settings


Re: [PERFORM] Performance for relative large DB

2005-08-27 Thread Chris Travers

tobbe wrote:


Hi Chris.

Thanks for the answer.
Sorry that i was a bit unclear.

1) We update around 20.000 posts per night.

2) What i meant was that we suspect that the DBMS called PervasiveSQL
that we are using today is much to small. That's why we're looking for
alternatives.

Today we base our solution much on using querry-specific tables created
at night, so instead of doing querrys direct on the post table (with
4-6M rows) at daytime, we have the data pre-aligned in several much
smaller tables. This is just to make the current DBMS coop with our
amount of data.

What I am particulary interested in is if we can expect to run all our
select querrys directly from the post table with PostgreSQL.
 

20k transactions per day?  Doesn't seem too bad.  That amounts to how 
many transactions per second during peak times?  Personally I don't 
think it will be a problem, but you might want to clarify what sort of 
load you are expecting during its peak time.



3) How well does postgres work with load balancing environments. Is it
built-in?
 

There is no load balancing built in.  You would need to use Slony-I 
and possibly Pg-Pool for that.  I don't know about Pg-Pool, but Slony-I 
was written in large part by member(s?) of the core development team so 
even if it is not built in it is not as if it is a team of outsiders 
who wrote it. 

If you need something proprietary, there are similar solutions with 
replication built in which are based on PostgreSQL and licensed under 
proprietary licenses.


Best Wishes,
Chris Travers
Metatron Technology Consulting

---(end of broadcast)---
TIP 2: Don't 'kill -9' the postmaster


[PERFORM] Performance for relative large DB

2005-08-26 Thread tobbe
Hi.

The company that I'm working for are surveying the djungle of DBMS
since we are due to implement the next generation of our system.

The companys buissnes is utilizing the DBMS to store data that are
accessed trough the web at daytime (only SELECTs, sometimes with joins,
etc). The data is a collection of bjects that are for sale. The data
consists of basic text information about theese togheter with some
group information, etc.

The data is updated once every night.

There are about 4 M posts in the database (one table) and is expected
to grow with atleast 50% during a reasonable long time.

How well would PostgreSQL fit our needs?

We are using Pervasive SQL today and suspect that it is much to small.
We have some problems with latency. Esp. when updating information,
complicated conditions in selects and on concurrent usage.


Best Regards
Robert Bengtsson
Project Manager


---(end of broadcast)---
TIP 5: don't forget to increase your free space map settings


Re: [PERFORM] Performance for relative large DB

2005-08-26 Thread tobbe
Hi Chris.

Thanks for the answer.
Sorry that i was a bit unclear.

1) We update around 20.000 posts per night.

2) What i meant was that we suspect that the DBMS called PervasiveSQL
that we are using today is much to small. That's why we're looking for
alternatives.

Today we base our solution much on using querry-specific tables created
at night, so instead of doing querrys direct on the post table (with
4-6M rows) at daytime, we have the data pre-aligned in several much
smaller tables. This is just to make the current DBMS coop with our
amount of data.

What I am particulary interested in is if we can expect to run all our
select querrys directly from the post table with PostgreSQL.

3) How well does postgres work with load balancing environments. Is it
built-in?

Best Regards
Robert Bengtsson
Project Manager


---(end of broadcast)---
TIP 9: In versions below 8.0, the planner will ignore your desire to
   choose an index scan if your joining column's datatypes do not
   match


Re: [PERFORM] Performance for relative large DB

2005-08-24 Thread Chris Browne
tobbe [EMAIL PROTECTED] writes:
 Hi Chris.

 Thanks for the answer.
 Sorry that i was a bit unclear.

 1) We update around 20.000 posts per night.

No surprise there; I would have been surprised to see 100/nite or
6M/nite...

 2) What i meant was that we suspect that the DBMS called PervasiveSQL
 that we are using today is much to small. That's why we're looking for
 alternatives.

 Today we base our solution much on using querry-specific tables created
 at night, so instead of doing querrys direct on the post table (with
 4-6M rows) at daytime, we have the data pre-aligned in several much
 smaller tables. This is just to make the current DBMS coop with our
 amount of data.

 What I am particulary interested in is if we can expect to run all our
 select querrys directly from the post table with PostgreSQL.

Given a decent set of indices, I'd expect that to work OK...  Whether
4M or 6M rows, that's pretty moderate in size.

If there are specific states that rows are in which are of interest,
then you can get big wins out of having partial indices...  Consider...

create index partial_post_status on posts where status in ('Active', 'Pending', 
'Locked');
-- When processing of postings are completely finished, they wind up with 
'Closed' status

We have some 'stateful' tables in our environment where the
interesting states are 'P' (where work is pending) and 'C' (where
all the work has been completed and the records are never of interest
again except as ancient history); the partial index where status =
'P' winds up being incredibly helpful.

It's worth your while to dump data out from Pervasive and load it into
a PostgreSQL instance and to do some typical sorts of queries on the
PostgreSQL side.

Do EXPLAIN ANALYZE [some select statement]; and you'll get a feel
for how PostgreSQL is running the queries.

Fiddling with indices to see how that affects things will also be a
big help.

You may find there are columns with large cardinalities (quite a lot
of unique values) where you want to improve the stats analysis via...

  alter posts alter column [whatever] set statistics 100;  
   -- Default is 10 bins
  analyze posts;  
   -- then run ANALYZE to update statistics

 3) How well does postgres work with load balancing environments. Is
 it built-in?

Load balancing means too many things.  Can you be more specific about
what you consider it to mean?

For Internet registry operations, we use replication (Slony-I) to
create replicas used to take particular sorts of load off the master
systems.

But you might be referring to something else...

For instance, connection pools, whether implemented inside
applications (everyone doing Java has one or more favorite Java
connection pool implementations) or in web servers (Apache has a DB
connection pool manager) or in an outside application (pgpool, a
C-based connection pool manager) are also sometimes used for load
balancing.
-- 
(reverse (concatenate 'string gro.mca @ enworbbc))
http://www3.sympatico.ca/cbbrowne/postgresql.html
In case you weren't aware, ad homineum is not latin for the user of
this technique is a fine debater. -- Thomas F. Burdick

---(end of broadcast)---
TIP 2: Don't 'kill -9' the postmaster