can someone show how to setup pgpool 2 in parallel *query* mode ie horizontal partitioning - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T07:21:24Zhttp://stackoverflow.com/feeds/question/1052295http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1052295/can-someone-show-how-to-setup-pgpool-2-in-parallel-query-mode-ie-horizontal-par0 can someone show how to setup pgpool 2 in parallel *query* mode ie horizontal partitioningpylabs2009-06-27T07:18:40Z2009-06-27T07:18:40Z
<p>i did read both extensively, but finishing all the steps parallel mode or horizontal partitioning mode doesnot work!</p>
<p>but this is my conf file</p>
<h1>backend_hostname, backend_port, backend_weight</h1>
<h1>here are examples</h1>
<p>backend_hostname0 = 'localhost'
backend_port0 = 5432
backend_weight0 = 1
backend_data_directory0 = '/mnt/work/database'</p>
<p>backend_hostname1 = 'marc.somehost.com'
backend_port1 = 5432
backend_weight1 = 1
backend_data_directory1 = '/mnt/work/database'</p>
<p>this is the problem
pgpool-II-2.2.2]$ createdb -p 9999
createdb: could not connect to database postgres: server closed the connection unexpectedly
This probably means the server terminated abnormally</p>
<h2> before or while processing the request.</h2>
<p>Error in log
tail -f /tmp/pgpool.log
2009-06-26 17:24:07 LOG: pid 5561: pgpool successfully started
2009-06-26 18:48:34 ERROR: pid 5563: pool_read_int: data does not match between between master(0) slot[1] (50331648)
2009-06-26 18:48:34 ERROR: pid 5563: pool_do_auth: read auth kind failed</p>
<p>tail -f /tmp/pgpool.log
2009-06-26 18:49:37 DEBUG: pid 23506: s_do_auth: backend key data received
2009-06-26 18:49:37 DEBUG: pid 23506: s_do_auth: transaction state: I
2009-06-26 18:49:40 DEBUG: pid 23466: I am 23466 accept fd 7
2009-06-26 18:49:40 DEBUG: pid 23466: Protocol Major: 3 Minor: 0 database: postgres user: mark
2009-06-26 18:49:40 DEBUG: pid 23466: new_connection: connecting 0 backend
2009-06-26 18:49:40 DEBUG: pid 23466: new_connection: connecting 1 backend
2009-06-26 18:49:40 DEBUG: pid 23466: pool_read_message_length: slot: 0 length: 8
2009-06-26 18:49:40 DEBUG: pid 23466: pool_read_message_length: slot: 1 length: 8
2009-06-26 18:49:40 ERROR: pid 23466: pool_read_int: data does not match between between master(0) slot[1] (50331648)
2009-06-26 18:49:40 ERROR: pid 23466: pool_do_auth: read auth kind failed</p>
<pre><code> can someone show how to setup pgpool 2 in parallel *query* mode ie horizontal partitioning
did you look at http://pgpool.projects.postgresql.org/pgpool-II/doc/tutorial-en.html#parallel ?
I'd pay close attention to the restrictions here, too... http://pgpool.projects.postgresql.org/pgpool-II/doc/pgpool-en.html#restriction
</code></pre>