[pgpool-general-jp: 1575] Re: Solarisでregression test 006のテストに失敗

Ono, Kyohei ono.kyohei @ jp.fujitsu.com
2018年 8月 23日 (木) 08:49:05 JST


大野です。
お世話になっております。

> > パッチのご提供、ありがとうございます。
> > しかし、パッチを当てても結果に変わりはありませんでした。(同様のバスエ
> ラーとなる)
> 
> その時の、
> 
> cih
> および
> cih->total_length
> のアドレスを教えていただけますか?
回答が遅くなってしまい申し訳ございません。
こちら確認しました。
cih
 7ffffffffb4fffc7
cih->total_length
 不明
 ※cih->total_lengthのアドレスを参照しようとした時点でバスエラーとなるため

パッチをあててもポインタが奇数になるのは
pool_memcache.cのpool_add_temp_query_cache関数の
以下の処理が原因と考えていますがいかがでしょうか。
----
:
pool_add_buffer(buffer, &kind, 1);		★ここでアドレスに1を足している
send_len = htonl(data_len + sizeof(int));
pool_add_buffer(buffer, (char *)&send_len, sizeof(int));
pool_add_buffer(buffer, data, data_len);

return;
----

以上です。よろしくお願いします。
> -----Original Message-----
> From: Tatsuo Ishii [mailto:ishii @ sraoss.co.jp]
> Sent: Thursday, August 16, 2018 11:25 AM
> To: Ono, Kyohei/大野 恭平
> Cc: ishii @ sraoss.co.jp; pgpool-general-jp @ sraoss.jp
> Subject: Re: [pgpool-general-jp: 1563] Re: Solarisでregression test 006
> のテストに失敗
> 
> From: "Ono, Kyohei" <ono.kyohei @ jp.fujitsu.com>
> Subject: RE: [pgpool-general-jp: 1563] Re: Solarisでregression test 006
> のテストに失敗
> Date: Thu, 16 Aug 2018 00:14:01 +0000
> Message-ID: <0D4ECE98D682E946A028D3EA6F08A5E482CDB2 @ g01jpexmbkw24>
> 
> > 大野です。
> > お世話になっております。
> >
> >> >> ちょっと考えたのですが、cih->total_lengthが4バイトバウンダリにな
>> >> てし
> >> >> まうのは、POOL_CACHE_BLOCK_HEADER構造体の大きさが12バイトである
> から
> >> だ
> >> >> と思います。少なくとも手元のamd64/Linuxではそうでした(Solarisで
> どう
> >> な
> >> >> るかは、確認していません)。
> >> >>
> >> >> この構造体は、クエリキャッシュを格納するのに使われる共有メモリ上
> のブ
> >> ロ
> >> >> ッ
> >> >> クの先頭に配置され、そのあとに他の管理データが配置されます。です
> から、
> >> >> POOL_CACHE_BLOCK_HEADERが4バイトの倍数のサイズだと、以後ぜんぶア
>> >> イン
> >> >> メントが4バイトになってしまいます。そこで添付のようなパッチを作
> って
> >> み
> >> >> ました。この構造体の先頭にダミーでunsigned intを挿入することによ
> り、
> >> サ
> >> >> イズが12から16バイトになります。
> >> >>
> >> >> よろしければ、このパッチをお試しください。
> >> > パッチファイルが空ファイルになっています。
> >> > 弊社のネットワークの関係上、正しく受信出来ていない可能性があります。
> >> > お手数おかけしますが、拡張子を変更(例.diff→.diff_)するなどして再
> 送し
> >> て頂けないでしょうか。
> >>
> >> 失礼しました。こちらの操作ミスでした。パッチを再添付します。
> > パッチのご提供、ありがとうございます。
> > しかし、パッチを当てても結果に変わりはありませんでした。(同様のバスエ
> ラーとなる)
> 
> その時の、
> 
> cih
> および
> cih->total_length
> のアドレスを教えていただけますか?
> --
> Tatsuo Ishii
> SRA OSS, Inc. Japan
> English: http://www.sraoss.co.jp/index_en.php
> Japanese:http://www.sraoss.co.jp
> 
> > また、sarコマンドでメモリおよびSWAPの領域確認も行いましたが問題あり
> ませんでした。
> > user @ b14se03g027:/tmp$ sar -r 1 100
> > 10:36:47 freemem freeswap
> > 10:36:48   93946  4057536
> > 10:36:49   93934  4057536
> > 10:36:50   93934  4057536
> > 10:36:51   93934  4057536
> > 10:36:52   93934  4057536
> >
> >> -----Original Message-----
> >> From: Tatsuo Ishii [mailto:ishii @ sraoss.co.jp]
> >> Sent: Wednesday, August 08, 2018 2:54 PM
> >> To: Ono, Kyohei/大野 恭平
> >> Cc: pgpool-general-jp @ sraoss.jp
> >> Subject: Re: [pgpool-general-jp: 1563] Re: Solarisでregression test
> 006
> >> のテストに失敗
> >>
> >> > 大野です。
> >> > お世話になっております。
> >> >
> >> >> > 以下を確認させていただけないでしょうか。
> >> >> > ・修正内容の妥当性
> >> >>
> >> >> そこだけを見ればこれでも動くと思いますが、あまり推奨できません。
> >> >>
> >> >> > ・本テスト以外でも類似の障害(アライメントの問題)が発生する可能
>> >> >> >  # あればその機能
> >> >>
> >> >> コードパスによっては、cih->total_lengthを見ているところが他にもあ
>> >> から
> >> >> です。
> >> >> (コード上でgrepで確認しただけで、どの機能で問題が発生するかを確
> 認は
> >> し
> >> >> ていません)
> >> > 承知しました。
> >> >
> >> >> ちょっと考えたのですが、cih->total_lengthが4バイトバウンダリにな
>> >> てし
> >> >> まうのは、POOL_CACHE_BLOCK_HEADER構造体の大きさが12バイトである
> から
> >> だ
> >> >> と思います。少なくとも手元のamd64/Linuxではそうでした(Solarisで
> どう
> >> な
> >> >> るかは、確認していません)。
> >> >>
> >> >> この構造体は、クエリキャッシュを格納するのに使われる共有メモリ上
> のブ
> >> ロ
> >> >> ッ
> >> >> クの先頭に配置され、そのあとに他の管理データが配置されます。です
> から、
> >> >> POOL_CACHE_BLOCK_HEADERが4バイトの倍数のサイズだと、以後ぜんぶア
>> >> イン
> >> >> メントが4バイトになってしまいます。そこで添付のようなパッチを作
> って
> >> み
> >> >> ました。この構造体の先頭にダミーでunsigned intを挿入することによ
> り、
> >> サ
> >> >> イズが12から16バイトになります。
> >> >>
> >> >> よろしければ、このパッチをお試しください。
> >> > パッチファイルが空ファイルになっています。
> >> > 弊社のネットワークの関係上、正しく受信出来ていない可能性があります。
> >> > お手数おかけしますが、拡張子を変更(例.diff→.diff_)するなどして再
> 送し
> >> て頂けないでしょうか。
> >>
> >> 失礼しました。こちらの操作ミスでした。パッチを再添付します。
> >>
> >> >> もうひとつ、ここで言及した構造体の配置アドレスや、サイズを印字す
> るテ
> >> ス
> >> >> トプログラムも添付しています。Soalrisでどのような結果になるか、見
>> >> て
> >> >> いただけると助かります。
> >> > こちら実行結果を以下に記載します。
> >> >
> >> > ------------------
> >> > user @ b14se03g027:/mnt/work/pgpool_test$ gcc -o test test.c
> >> > user @ b14se03g027:/mnt/work/pgpool_test$ ./test
> >> > POOL_CACHE_BLOCK_HEADER: 16
> >> > POOL_CACHE_BLOCK_HEADER address: ffbff9e0
> >> > POOL_QUERY_HASH: 32
> >> > POOL_CACHE_ITEM_POINTER: 48
> >> > POOL_CACHE_ITEM_POINTER address: ffbff9a0
> >> > POOL_CACHE_ITEM_HEADER: 8
> >> > POOL_CACHE_ITEM_HEADER address: ffbff9d8 ffbff9d0
> >> > ------------------
> >> >
> >> >> -----Original Message-----
> >> >> From: Tatsuo Ishii [mailto:ishii @ sraoss.co.jp]
> >> >> Sent: Wednesday, August 08, 2018 11:56 AM
> >> >> To: Ono, Kyohei/大野 恭平
> >> >> Cc: pgpool-general-jp @ sraoss.jp; Kitaguchi, Sunao/北口 直
> >> >> Subject: Re: [pgpool-general-jp: 1563] Re: Solarisでregression test
> >> >> 006
> >> >> のテストに失敗
> >> >>
> >> >> 石井です。
> >> >>
> >> >> > 大野です。
> >> >> > お世話になっております。
> >> >> >
> >> >> >> > 以下確認させて頂けないでしょうか。
> >> >> >> > ・アライメントの問題という推測は合っているでしょうか
> >> >> >>
> >> >> >> たぶんあっていると思います。
> >> >> > 承知致しました。ご回答ありがとうございます。
> >> >> >
> >> >> >> 対応するにはソースコードに手を入れる必要があります。
> >> >> > 「cih->total_length」を「memcpy(&w, cih, 4);」に変更する対処と
> 考え
> >> て
> >> >> います。
> >> >> > 上記修正で本テストは通っているようです。
> >> >> >
> >> >> > 以下を確認させていただけないでしょうか。
> >> >> > ・修正内容の妥当性
> >> >>
> >> >> そこだけを見ればこれでも動くと思いますが、あまり推奨できません。
> >> >>
> >> >> > ・本テスト以外でも類似の障害(アライメントの問題)が発生する可能
>> >> >> >  # あればその機能
> >> >>
> >> >> コードパスによっては、cih->total_lengthを見ているところが他にもあ
>> >> から
> >> >> です。
> >> >> (コード上でgrepで確認しただけで、どの機能で問題が発生するかを確
> 認は
> >> し
> >> >> ていません)
> >> >>
> >> >> ちょっと考えたのですが、cih->total_lengthが4バイトバウンダリにな
>> >> てし
> >> >> まうのは、POOL_CACHE_BLOCK_HEADER構造体の大きさが12バイトである
> から
> >> だ
> >> >> と思います。少なくとも手元のamd64/Linuxではそうでした(Solarisで
> どう
> >> な
> >> >> るかは、確認していません)。
> >> >>
> >> >> この構造体は、クエリキャッシュを格納するのに使われる共有メモリ上
> のブ
> >> ロ
> >> >> ッ
> >> >> クの先頭に配置され、そのあとに他の管理データが配置されます。です
> から、
> >> >> POOL_CACHE_BLOCK_HEADERが4バイトの倍数のサイズだと、以後ぜんぶア
>> >> イン
> >> >> メントが4バイトになってしまいます。そこで添付のようなパッチを作
> って
> >> み
> >> >> ました。この構造体の先頭にダミーでunsigned intを挿入することによ
> り、
> >> サ
> >> >> イズが12から16バイトになります。
> >> >>
> >> >> よろしければ、このパッチをお試しください。
> >> >>
> >> >> もうひとつ、ここで言及した構造体の配置アドレスや、サイズを印字す
> るテ
> >> ス
> >> >> トプログラムも添付しています。Soalrisでどのような結果になるか、見
>> >> て
> >> >> いただけると助かります。
> >> >> --
> >> >> Tatsuo Ishii
> >> >> SRA OSS, Inc. Japan
> >> >> English: http://www.sraoss.co.jp/index_en.php
> >> >> Japanese:http://www.sraoss.co.jp
> >> >>
> >> >> > 以上です。よろしくお願いします。
> >> >> >> -----Original Message-----
> >> >> >> From: Tatsuo Ishii [mailto:ishii @ sraoss.co.jp]
> >> >> >> Sent: Tuesday, August 07, 2018 4:10 PM
> >> >> >> To: pgpool-general-jp @ sraoss.jp; Ono, Kyohei/大野 恭平
> >> >> >> Subject: Re: [pgpool-general-jp: 1563] Re: Solarisでregression
> test
> >> >> >> 006
> >> >> >> のテストに失敗
> >> >> >>
> >> >> >> 石井です。
> >> >> >>
> >> >> >> > 大野です。
> >> >> >> > お世話になっております。
> >> >> >> >
> >> >> >> > 本エラーについて、こちらで調査を進めたところ
> >> >> >> > 共有メモリからキャッシュを取得している箇所でバスエラーとなっ
>> >> いる
> >> >> よ
> >> >> >> うでした。
> >> >> >> >
> >> >> >> > [対象ソース]
> >> >> >> >  src/query_cache/pool_memqcache.c
> >> >> >> >
> >> >> >> > [エラー発生箇所]
> >> >> >> >  pool_get_item_shmem_cache関数の以下の★印の箇所
> >> >> >> > ――――
> >> >> >> > :
> >> >> >> > 	cih = pool_cache_item_header(cacheid);
> >> >> >> >
> >> >> >> > 	*size = cih->total_length -
> >> sizeof(POOL_CACHE_ITEM_HEADER); ★
> >> >> >> > 	return (char *)cih + sizeof(POOL_CACHE_ITEM_HEADER); }
> >> ――――
> >> >> >> >
> >> >> >> > 共有メモリ(shmem)のベースアドレス:0x7ffffffffb400000
> >> >> >> > 共有メモリのサイズ        :4000000
> >> >> >> > 共有メモリの最終アドレス     :0x7fffffffff400000
> >> >> >> >
> >> >> >> > cihのアドレスは0x7ffffffffb4fffc
> >> >> >> > なので共有メモリ範囲内で特に問題なし
> >> >> >> >
> >> >> >> > cih->total_lengthでバスエラーが発生していますが
> >> >> >> > memcpy(&w_uint, cih, 4) では問題なくアクセスできています。
> >> >> >> >
> >> >> >> > 今回の環境は64bit CPUなのでデータのアライメントの問題と推測
>> >> てま
> >> >> す。
> >> >> >> > # Solaris 11.3 SPARC
> >> >> >> >
> >> >> >> > 以下確認させて頂けないでしょうか。
> >> >> >> > ・アライメントの問題という推測は合っているでしょうか
> >> >> >>
> >> >> >> たぶんあっていると思います。
> >> >> >>
> >> >> >> > cihのアドレスは0x7ffffffffb4fffc
> >> >> >>
> >> >> >> ということなので、アドレスは4の倍数ではあるものの、8の倍数で
> はな
> >> い
> >> >> ので、
> >> >> >> もしもSparcが8バイトのアライメントを要求しているとすると、エ
>> >> ーが
> >> >> 発
> >> >> >> 生
> >> >> >> すると思います。
> >> >> >>
> >> >> >> >  合っている場合、回避策はあるでしょうか
> >> >> >>
> >> >> >> 対応するにはソースコードに手を入れる必要があります。
> >> >> >>
> >> >> >> あとは、クエリキャッシュのストレージとして、memcachedを使うく
> らい
> >> で
> >> >> すね。
> >> >> >> --
> >> >> >> Tatsuo Ishii
> >> >> >> SRA OSS, Inc. Japan
> >> >> >> English: http://www.sraoss.co.jp/index_en.php
> >> >> >> Japanese:http://www.sraoss.co.jp
> >> >> >>
> >> >> >> > 以上です。よろしくお願いします。
> >> >> >> >> -----Original Message-----
> >> >> >> >> From: pgpool-general-jp-bounces @ sraoss.jp
> >> >> >> >> [mailto:pgpool-general-jp-bounces @ sraoss.jp] On Behalf Of Ono,
> >> >> >> >> Kyohei
> >> >> >> >> Sent: Tuesday, July 17, 2018 1:10 PM
> >> >> >> >> To: pgpool-general-jp @ sraoss.jp
> >> >> >> >> Subject: [pgpool-general-jp: 1554] Solarisでregression test
> 006
> >> >> のテ
> >> >> >> ス
> >> >> >> >> トに失敗
> >> >> >> >>
> >> >> >> >> 大野と申します。
> >> >> >> >> お世話になります。
> >> >> >> >>
> >> >> >> >> 以下の環境でregression testを実行したところ、
> >> >> >> >> 006.memqcacheのテストに必ず失敗しております。
> >> >> >> >> 006.memqcacheのログを見る限り
> >> >> >> >> テスト途中でコネクションが閉じられているようですが原因が思
> い当
> >> り
> >> >> ま
> >> >> >> せん。
> >> >> >> >>
> >> >> >> >> [環境]
> >> >> >> >>  Solaris 11.3 SPARC
> >> >> >> >>  Postgres10.3
> >> >> >> >>  pgpool-II-3.7.4
> >> >> >> >>
> >> >> >> >> [006.memqcache]
> >> >> >> >> ----
> >> >> >> >> :
> >> >> >> >> server closed the connection unexpectedly
> >> >> >> >>         This probably means the server terminated abnormally
> >> >> >> >>         before or while processing the request.
> >> >> >> >> connection to server was lost
> >> >> >> >> ----
> >> >> >> >>
> >> >> >> >> 原因・対処方法をご教示頂けないでしょうか。
> >> >> >> >> テスト時に出力されるログ(006.memqcache)
> >> >> >> >> 各DBが出力するログ(data0_Tuesday.log、data1_Tuesday.log)
> >> >> >> >> pgpool2が出力するログ(pgpool.log)を添付致します。
> >> >> >> >>
> >> >> >> >> また、テスト失敗後に以下のプロセスが残ったままになります。
> >> >> >> >>
> >> >> >> >>
> user @ b14se03g027:/mnt/work/pgpool-II-3.7.4/src/test/regression$
> >> >> >> >> ps
> >> >> >> -ef |
> >> >> >> >> grep regress
> >> >> >> >>     user 24374 24369   0 11:52:18 ?           0:00
> >> >> >> >> /mnt/postgres/bin/postgres -D
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/data1
> >> >> >> >>     user 24404 24377   0 11:52:18 pts/3       0:00
> >> >> >> >> /mnt/pgpool2//bin/pgpool -d -D -n -f
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pgpool.conf -F
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pcp.conf -a
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pool_hba.conf
> >> >> >> >>     user 24393 24377   0 11:52:18 pts/3       0:00
> >> >> >> >> /mnt/pgpool2//bin/pgpool -d -D -n -f
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pgpool.conf -F
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pcp.conf -a
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pool_hba.conf
> >> >> >> >>     user 24371 24369   0 11:52:18 ?           0:00
> >> >> >> >> /mnt/postgres/bin/postgres -D
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/data1
> >> >> >> >>     user 24410 24377   0 11:52:18 pts/3       0:00
> >> >> >> >> /mnt/pgpool2//bin/pgpool -d -D -n -f
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pgpool.conf -F
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pcp.conf -a
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pool_hba.conf
> >> >> >> >>     user 24386 24377   0 11:52:18 pts/3       0:00
> >> >> >> >> /mnt/pgpool2//bin/pgpool -d -D -n -f
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pgpool.conf -F
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pcp.conf -a
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pool_hba.conf
> >> >> >> >>     user 24403 24377   0 11:52:18 pts/3       0:00
> >> >> >> >> /mnt/pgpool2//bin/pgpool -d -D -n -f
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pgpool.conf -F
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pcp.conf -a
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pool_hba.conf
> >> >> >> >>     user 24401 24377   0 11:52:18 pts/3       0:00
> >> >> >> >> /mnt/pgpool2//bin/pgpool -d -D -n -f
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pgpool.conf -F
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pcp.conf -a
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pool_hba.conf
> >> >> >> >>     user 24389 24377   0 11:52:18 pts/3       0:00
> >> >> >> >> /mnt/pgpool2//bin/pgpool -d -D -n -f
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pgpool.conf -F
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pcp.conf -a
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pool_hba.conf
> >> >> >> >>     user 24362 24357   0 11:52:18 ?           0:00
> >> >> >> >> /mnt/postgres/bin/postgres -D
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/data0
> >> >> >> >>     user 24373 24369   0 11:52:18 ?           0:00
> >> >> >> >> /mnt/postgres/bin/postgres -D
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/data1
> >> >> >> >>     user 24618 24377   0 11:57:19 pts/3       0:00
> >> >> >> >> /mnt/pgpool2//bin/pgpool -d -D -n -f
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pgpool.conf -F
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pcp.conf -a
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pool_hba.conf
> >> >> >> >>     user 24364 24357   0 11:52:18 ?           0:00
> >> >> >> >> /mnt/postgres/bin/postgres -D
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/data0
> >> >> >> >>     user 24419 24377   0 11:52:19 pts/3       0:00
> >> >> >> >> /mnt/pgpool2//bin/pgpool -d -D -n -f
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pgpool.conf -F
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pcp.conf -a
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pool_hba.conf
> >> >> >> >>     user 24392 24377   0 11:52:18 pts/3       0:00
> >> >> >> >> /mnt/pgpool2//bin/pgpool -d -D -n -f
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pgpool.conf -F
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pcp.conf -a
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pool_hba.conf
> >> >> >> >>     user 24407 24377   0 11:52:18 pts/3       0:00
> >> >> >> >> /mnt/pgpool2//bin/pgpool -d -D -n -f
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pgpool.conf -F
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pcp.conf -a
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pool_hba.conf
> >> >> >> >>     user 24413 24377   0 11:52:19 pts/3       0:00
> >> >> >> >> /mnt/pgpool2//bin/pgpool -d -D -n -f
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pgpool.conf -F
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pcp.conf -a
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pool_hba.conf
> >> >> >> >>     user 24408 24377   0 11:52:18 pts/3       0:00
> >> >> >> >> /mnt/pgpool2//bin/pgpool -d -D -n -f
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pgpool.conf -F
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pcp.conf -a
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pool_hba.conf
> >> >> >> >>     user 24402 24377   0 11:52:18 pts/3       0:00
> >> >> >> >> /mnt/pgpool2//bin/pgpool -d -D -n -f
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pgpool.conf -F
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pcp.conf -a
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pool_hba.conf
> >> >> >> >>     user 24383 24377   0 11:52:18 pts/3       0:00
> >> >> >> >> /mnt/pgpool2//bin/pgpool -d -D -n -f
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pgpool.conf -F
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pcp.conf -a
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pool_hba.conf
> >> >> >> >>     user 24418 24377   0 11:52:19 pts/3       0:00
> >> >> >> >> /mnt/pgpool2//bin/pgpool -d -D -n -f
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pgpool.conf -F
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pcp.conf -a
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pool_hba.conf
> >> >> >> >>     user 24385 24377   0 11:52:18 pts/3       0:00
> >> >> >> >> /mnt/pgpool2//bin/pgpool -d -D -n -f
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pgpool.conf -F
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pcp.conf -a
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pool_hba.conf
> >> >> >> >>     user 24395 24377   0 11:52:18 pts/3       0:00
> >> >> >> >> /mnt/pgpool2//bin/pgpool -d -D -n -f
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pgpool.conf -F
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pcp.conf -a
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pool_hba.conf
> >> >> >> >>     user 24360 24357   0 11:52:18 ?           0:00
> >> >> >> >> /mnt/postgres/bin/postgres -D
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/data0
> >> >> >> >>     user 24375 24357   0 11:52:18 ?           0:00
> >> >> >> >> /mnt/postgres/bin/postgres -D
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/data0
> >> >> >> >>     user 24396 24377   0 11:52:18 pts/3       0:00
> >> >> >> >> /mnt/pgpool2//bin/pgpool -d -D -n -f
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pgpool.conf -F
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pcp.conf -a
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pool_hba.conf
> >> >> >> >>     user 24399 24377   0 11:52:18 pts/3       0:00
> >> >> >> >> /mnt/pgpool2//bin/pgpool -d -D -n -f
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pgpool.conf -F
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pcp.conf -a
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pool_hba.conf
> >> >> >> >>     user 24405 24377   0 11:52:18 pts/3       0:00
> >> >> >> >> /mnt/pgpool2//bin/pgpool -d -D -n -f
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pgpool.conf -F
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pcp.conf -a
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pool_hba.conf
> >> >> >> >>     user 24394 24377   0 11:52:18 pts/3       0:00
> >> >> >> >> /mnt/pgpool2//bin/pgpool -d -D -n -f
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pgpool.conf -F
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pcp.conf -a
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pool_hba.conf
> >> >> >> >>     user 24694  2014   0 11:59:05 pts/3       0:00 grep regress
> >> >> >> >>     user 24409 24377   0 11:52:18 pts/3       0:00
> >> >> >> >> /mnt/pgpool2//bin/pgpool -d -D -n -f
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pgpool.conf -F
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pcp.conf -a
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pool_hba.conf
> >> >> >> >>     user 24411 24377   0 11:52:18 pts/3       0:00
> >> >> >> >> /mnt/pgpool2//bin/pgpool -d -D -n -f
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pgpool.conf -F
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pcp.conf -a
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pool_hba.conf
> >> >> >> >>     user 24361 24357   0 11:52:18 ?           0:00
> >> >> >> >> /mnt/postgres/bin/postgres -D
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/data0
> >> >> >> >>     user 24432 24377   0 11:52:22 pts/3       0:00
> >> >> >> >> /mnt/pgpool2//bin/pgpool -d -D -n -f
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pgpool.conf -F
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pcp.conf -a
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pool_hba.conf
> >> >> >> >>     user 24398 24377   0 11:52:18 pts/3       0:00
> >> >> >> >> /mnt/pgpool2//bin/pgpool -d -D -n -f
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pgpool.conf -F
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pcp.conf -a
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pool_hba.conf
> >> >> >> >>     user 24412 24377   0 11:52:19 pts/3       0:00
> >> >> >> >> /mnt/pgpool2//bin/pgpool -d -D -n -f
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pgpool.conf -F
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pcp.conf -a
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pool_hba.conf
> >> >> >> >>     user 24406 24377   0 11:52:18 pts/3       0:00
> >> >> >> >> /mnt/pgpool2//bin/pgpool -d -D -n -f
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pgpool.conf -F
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pcp.conf -a
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pool_hba.conf
> >> >> >> >>     user 24358 24357   0 11:52:18 ?           0:00
> >> >> >> >> /mnt/postgres/bin/postgres -D
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/data0
> >> >> >> >>     user 24390 24377   0 11:52:18 pts/3       0:00
> >> >> >> >> /mnt/pgpool2//bin/pgpool -d -D -n -f
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pgpool.conf -F
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pcp.conf -a
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pool_hba.conf
> >> >> >> >>     user 24400 24377   0 11:52:18 pts/3       0:00
> >> >> >> >> /mnt/pgpool2//bin/pgpool -d -D -n -f
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pgpool.conf -F
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pcp.conf -a
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pool_hba.conf
> >> >> >> >>     user 24416 24377   0 11:52:19 pts/3       0:00
> >> >> >> >> /mnt/pgpool2//bin/pgpool -d -D -n -f
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pgpool.conf -F
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pcp.conf -a
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pool_hba.conf
> >> >> >> >>     user 24397 24377   0 11:52:18 pts/3       0:00
> >> >> >> >> /mnt/pgpool2//bin/pgpool -d -D -n -f
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pgpool.conf -F
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pcp.conf -a
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pool_hba.conf
> >> >> >> >>     user 24370 24369   0 11:52:18 ?           0:00
> >> >> >> >> /mnt/postgres/bin/postgres -D
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/data1
> >> >> >> >>     user 24387 24377   0 11:52:18 pts/3       0:00
> >> >> >> >> /mnt/pgpool2//bin/pgpool -d -D -n -f
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pgpool.conf -F
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pcp.conf -a
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pool_hba.conf
> >> >> >> >>     user 24417 24377   0 11:52:19 pts/3       0:00
> >> >> >> >> /mnt/pgpool2//bin/pgpool -d -D -n -f
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pgpool.conf -F
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pcp.conf -a
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pool_hba.conf
> >> >> >> >>     user 24363 24357   0 11:52:18 ?           0:00
> >> >> >> >> /mnt/postgres/bin/postgres -D
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/data0
> >> >> >> >>     user 24365 24357   0 11:52:18 ?           0:00
> >> >> >> >> /mnt/postgres/bin/postgres -D
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/data0
> >> >> >> >>     user 24377     1   0 11:52:18 pts/3       0:00
> >> >> >> >> /mnt/pgpool2//bin/pgpool -d -D -n -f
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pgpool.conf -F
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pcp.conf -a
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pool_hba.conf
> >> >> >> >>     user 24372 24369   0 11:52:18 ?           0:00
> >> >> >> >> /mnt/postgres/bin/postgres -D
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/data1
> >> >> >> >>     user 24366 24357   0 11:52:18 ?           0:00
> >> >> >> >> /mnt/postgres/bin/postgres -D
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/data0
> >> >> >> >>     user 24388 24377   0 11:52:18 pts/3       0:00
> >> >> >> >> /mnt/pgpool2//bin/pgpool -d -D -n -f
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pgpool.conf -F
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pcp.conf -a
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pool_hba.conf
> >> >> >> >>     user 24369     1   0 11:52:18 pts/3       0:00
> >> >> >> >> /mnt/postgres/bin/postgres -D
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/data1
> >> >> >> >>     user 24391 24377   0 11:52:18 pts/3       0:00
> >> >> >> >> /mnt/pgpool2//bin/pgpool -d -D -n -f
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pgpool.conf -F
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pcp.conf -a
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/etc/pool_hba.conf
> >> >> >> >>     user 24357     1   0 11:52:18 pts/3       0:00
> >> >> >> >> /mnt/postgres/bin/postgres -D
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/data0
> >> >> >> >>     user 24376 24369   0 11:52:18 ?           0:00
> >> >> >> >> /mnt/postgres/bin/postgres -D
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> /mnt/work/pgpool-II-3.7.4/src/test/regression/tests/006.memqcache/tes
> >> >> >> t
> >> >> >> >> dir/data1
> >> >> >> >>
> user @ b14se03g027:/mnt/work/pgpool-II-3.7.4/src/test/regression$
> >> >> >> >>
> >> >> >> >> 以上です。よろしくお願いします。
> >> >> >> >
> >> >> >> > _______________________________________________
> >> >> >> > pgpool-general-jp mailing list
> >> >> >> > pgpool-general-jp @ sraoss.jp
> >> >> >> > http://www.sraoss.jp/mailman/listinfo/pgpool-general-jp
> >> >> >
> >> >> >
> >> >
> >




pgpool-general-jp メーリングリストの案内