You can subscribe to this list here.
2010 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(2) |
Jun
|
Jul
|
Aug
(6) |
Sep
|
Oct
(19) |
Nov
(1) |
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2011 |
Jan
(12) |
Feb
(1) |
Mar
(4) |
Apr
(4) |
May
(32) |
Jun
(12) |
Jul
(11) |
Aug
(1) |
Sep
(6) |
Oct
(3) |
Nov
|
Dec
(10) |
2012 |
Jan
(11) |
Feb
(1) |
Mar
(3) |
Apr
(25) |
May
(53) |
Jun
(38) |
Jul
(103) |
Aug
(54) |
Sep
(31) |
Oct
(66) |
Nov
(77) |
Dec
(20) |
2013 |
Jan
(91) |
Feb
(86) |
Mar
(103) |
Apr
(107) |
May
(25) |
Jun
(37) |
Jul
(17) |
Aug
(59) |
Sep
(38) |
Oct
(78) |
Nov
(29) |
Dec
(15) |
2014 |
Jan
(23) |
Feb
(82) |
Mar
(118) |
Apr
(101) |
May
(103) |
Jun
(45) |
Jul
(6) |
Aug
(10) |
Sep
|
Oct
(32) |
Nov
|
Dec
(9) |
2015 |
Jan
(3) |
Feb
(5) |
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
(9) |
Aug
(4) |
Sep
(3) |
Oct
|
Nov
|
Dec
|
2016 |
Jan
(3) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2017 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(3) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2018 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(4) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
S | M | T | W | T | F | S |
---|---|---|---|---|---|---|
|
|
|
|
1
|
2
(2) |
3
(2) |
4
|
5
(6) |
6
(8) |
7
(10) |
8
(5) |
9
(1) |
10
|
11
|
12
(2) |
13
|
14
(3) |
15
(2) |
16
(3) |
17
|
18
|
19
(1) |
20
(2) |
21
(3) |
22
(5) |
23
(2) |
24
|
25
(2) |
26
|
27
|
28
|
29
|
30
|
31
|
From: Wolfgang K. <fel...@gm...> - 2013-08-25 11:35:01
|
> I'm a post-graduation student Hm. > and my conclusion work is about Postgres-XC. I've read a lot about > the project and I really think this is a powerful tool. > Unfortunately, I couldn't achieve the performance I had expected. > > I've configured a cluster with 4 virtualized servers (all of them on > the same hardware using Virtual Box): You're running several RDBMS server instances on one physical computer and you expect to get more throughput from that than with one single instance running on the same physical computer? Errr, huh? > I used pgbench to compare the number of transactions per second in > Postgres-XC and in a standalone PostgreSQL server. Postgres-XC > achieved only half TPS compared to PostgreSQL. The test was basically > consisted of inserts into distributed tables (I used a custom script > in pgbench) simulating many clients simultaneously. That's what is to be expected. The same hardware minus the additional overhead for virtualisation and replication *has to* give you less throughput than one single RDBMS server instance. And if you emulate the clients by running scripts on the same hardware as the servers... > - How many servers would be enough to have a write/read scalability > compared to a single PostgreSQL? More than one. *Hardware* servers. > - Would it be a problem to have all servers on the same hardware? That's not just "a problem", that's the whole point. If you want more throughput, you need more hardware*. That's what replication is made for in the first place. Sincerely, Wolfgang *Of course you also must optimise your configuration to get the maximum out of the hardware. |