View Issue Details
| ID | Project | Category | View Status | Date Submitted | Last Update |
|---|---|---|---|---|---|
| 0000203 | Pgpool-II | General | public | 2016-05-30 23:04 | 2017-08-29 09:34 |
| Reporter | shanmu | Assigned To | Muhammad Usama | ||
| Priority | normal | Severity | major | Reproducibility | always |
| Status | closed | Resolution | open | ||
| Platform | Pgpool 3.5.2 | OS | FreeBSD | OS Version | 10.1 |
| Summary | 0000203: Connections stuck - Recv-Q fills up | ||||
| Description | Hi, We are testing pgpool for our environment and finding stage issue. Client connects seems to be hanging after serving for 1 or 2 times.. and we noticed whenever the Recv-Q fills up ... this hanging problem comes... Tomcat8 reports "Obtaining JDBC connection" and waits endless . Can you please help us. - Shanmu | ||||
| Tags | No tags attached. | ||||
|
|
Can you please share the pgpool conf and log files, And any specific steps to reproduce the problem. Regards Muhammad Usama |
|
|
Hi Muhammad, Please find the configuration file. Steps to reproduce problem.... we get this problem always... We are using FreeBSD 10.1 and pgpool 3.5.2 I am also providing some of the statistics which might help you. log output (last few) root@otp3:~ # tail -f /var/log/pgpool/pgpool.log Jun 5 18:16:45 otp3 pgpool[877]: [8-3] 2016-06-05 18:16:45: pid 877: LOCATION: child.c:2110 Jun 5 18:16:45 otp3 pgpool: 2016-06-05 18:16:45: pid 877: LOG: new connection received Jun 5 18:16:45 otp3 pgpool: 2016-06-05 18:16:45: pid 877: DETAIL: connecting host=10.200.1.64 port=29171 Jun 5 18:16:45 otp3 pgpool: 2016-06-05 18:16:45: pid 877: LOCATION: child.c:2110 Jun 5 18:16:45 otp3 pgpool[880]: [14-1] 2016-06-05 18:16:45: pid 880: LOG: new connection received Jun 5 18:16:45 otp3 pgpool[880]: [14-2] 2016-06-05 18:16:45: pid 880: DETAIL: connecting host=10.200.1.64 port=19139 Jun 5 18:16:45 otp3 pgpool[880]: [14-3] 2016-06-05 18:16:45: pid 880: LOCATION: child.c:2110 Jun 5 18:16:45 otp3 pgpool: 2016-06-05 18:16:45: pid 880: LOG: new connection received Jun 5 18:16:45 otp3 pgpool: 2016-06-05 18:16:45: pid 880: DETAIL: connecting host=10.200.1.64 port=19139 Jun 5 18:16:45 otp3 pgpool: 2016-06-05 18:16:45: pid 880: LOCATION: child.c:2110 /usr/local/etc/pgpool.conf # ---------------------------- # pgPool-II configuration file # ---------------------------- # # This file consists of lines of the form: # # name = value # # Whitespace may be used. Comments are introduced with "#" anywhere on a line. # The complete list of parameter names and allowed values can be found in the # pgPool-II documentation. # # This file is read on server startup and when the server receives a SIGHUP # signal. If you edit the file on a running system, you have to SIGHUP the # server for the changes to take effect, or use "pgpool reload". Some # parameters, which are marked below, require a server shutdown and restart to # take effect. # #------------------------------------------------------------------------------ # CONNECTIONS #------------------------------------------------------------------------------ # - pgpool Connection Settings - listen_addresses = '10.200.1.62' #listen_addresses = 'localhost' # Host name or IP address to listen on: # '*' for all, '' for no TCP/IP connections # (change requires restart) port = 5432 # Port number # (change requires restart) socket_dir = '/tmp' # Unix domain socket path # The Debian package defaults to # /var/run/postgresql # (change requires restart) listen_backlog_multiplier = 20 # Set the backlog parameter of listen(2) to # num_init_children * listen_backlog_multiplier. # (change requires restart) serialize_accept = off # whether to serialize accept() call to avoid thundering herd problem # (change requires restart) # - pgpool Communication Manager Connection Settings - pcp_listen_addresses = '*' # Host name or IP address for pcp process to listen on: # '*' for all, '' for no TCP/IP connections # (change requires restart) pcp_port = 9898 # Port number for pcp # (change requires restart) pcp_socket_dir = '/tmp' # Unix domain socket path for pcp # The Debian package defaults to # /var/run/postgresql # (change requires restart) # - Backend Connection Settings - #backend_hostname0 = 'localhost' # Host name or IP address to connect to for backend 0 #backend_port0 = 5432 # Port number for backend 0 #backend_weight0 = 1 # Weight for backend 0 (only in load balancing mode) #backend_data_directory0 = '/var/lib/pgsql/data' # Data directory for backend 0 #backend_flag0 = 'ALLOW_TO_FAILOVER' # Controls various backend behavior # ALLOW_TO_FAILOVER or DISALLOW_TO_FAILOVER backend_hostname0 = '10.200.1.53' backend_port0 = 5432 backend_weight0 = 1 backend_data_directory0 = '/data1' backend_flag0 = 'ALLOW_TO_FAILOVER' backend_hostname1 = '10.200.1.54' backend_port1 = 5432 backend_weight1 = 1 backend_data_directory1 = '/data1' backend_flag1 = 'ALLOW_TO_FAILOVER' # - Authentication - enable_pool_hba = on # Use pool_hba.conf for client authentication pool_passwd = 'pool_passwd' # File name of pool_passwd for md5 authentication. # "" disables pool_passwd. # (change requires restart) authentication_timeout = 60 # Delay in seconds to complete client authentication # 0 means no timeout. # - SSL Connections - ssl = off # Enable SSL support # (change requires restart) #ssl_key = './server.key' # Path to the SSL private key file # (change requires restart) #ssl_cert = './server.cert' # Path to the SSL public certificate file # (change requires restart) #ssl_ca_cert = '' # Path to a single PEM format file # containing CA root certificate(s) # (change requires restart) #ssl_ca_cert_dir = '' # Directory containing CA root certificate(s) # (change requires restart) #------------------------------------------------------------------------------ # POOLS #------------------------------------------------------------------------------ # - Pool size - num_init_children = 5 # Number of pools # (change requires restart) max_pool = 4 # Number of connections per pool # (change requires restart) # - Life time - child_life_time = 300 # Pool exits after being idle for this many seconds child_max_connections = 0 # Pool exits after receiving that many connections # 0 means no exit connection_life_time = 0 # Connection to backend closes after being idle for this many seconds # 0 means no close client_idle_limit = 0 # Client is disconnected after being idle for that many seconds # (even inside an explicit transactions!) # 0 means no disconnection #------------------------------------------------------------------------------ # LOGS #------------------------------------------------------------------------------ # - Where to log - log_destination = 'syslog' #log_destination = 'stderr' # Where to log # Valid values are combinations of stderr, # and syslog. Default to stderr. # - What to log - log_line_prefix = '%t: pid %p: ' # printf-style string to output at beginning of each log line. log_connections = on # Log connections log_hostname = off # Hostname will be shown in ps status # and in logs if connections are logged log_statement = off # Log all statements log_per_node_statement = off # Log all statements # with node and backend informations log_standby_delay = 'none' # Log standby delay # Valid values are combinations of always, # if_over_threshold, none # - Syslog specific - syslog_facility = 'LOCAL0' # Syslog local facility. Default to LOCAL0 syslog_ident = 'pgpool' # Syslog program identification string # Default to 'pgpool' # - Debug - debug_level = 1 # Debug message verbosity level # 0 means no message, 1 or more mean verbose log_error_verbosity = verbose # terse, default, or verbose messages client_min_messages = error # values in order of decreasing detail: # debug5 # debug4 # debug3 # debug2 # debug1 # log # notice # warning # error log_min_messages = error # values in order of decreasing detail: # debug5 # debug4 # debug3 # debug2 # debug1 # info # notice # warning # error # log # fatal # panic #------------------------------------------------------------------------------ # FILE LOCATIONS #------------------------------------------------------------------------------ pid_file_name = '/var/run/pgpool/pgpool.pid' # PID file name # (change requires restart) logdir = '/var/log/pgpool' # Directory of pgPool status file # (change requires restart) #------------------------------------------------------------------------------ # CONNECTION POOLING #------------------------------------------------------------------------------ connection_cache = on # Activate connection pools # (change requires restart) # Semicolon separated list of queries # to be issued at the end of a session # The default is for 8.3 and later reset_query_list = 'ABORT; DISCARD ALL' # The following one is for 8.2 and before #reset_query_list = 'ABORT; RESET ALL; SET SESSION AUTHORIZATION DEFAULT' #------------------------------------------------------------------------------ # REPLICATION MODE #------------------------------------------------------------------------------ replication_mode = on # Activate replication mode # (change requires restart) replicate_select = off # Replicate SELECT statements # when in replication mode # replicate_select is higher priority than # load_balance_mode. insert_lock = on # Automatically locks a dummy row or a table # with INSERT statements to keep SERIAL data # consistency # Without SERIAL, no lock will be issued lobj_lock_table = '' # When rewriting lo_creat command in # replication mode, specify table name to # lock # - Degenerate handling - replication_stop_on_mismatch = off # On disagreement with the packet kind # sent from backend, degenerate the node # which is most likely "minority" # If off, just force to exit this session failover_if_affected_tuples_mismatch = off # On disagreement with the number of affected # tuples in UPDATE/DELETE queries, then # degenerate the node which is most likely # "minority". # If off, just abort the transaction to # keep the consistency #------------------------------------------------------------------------------ # LOAD BALANCING MODE #------------------------------------------------------------------------------ load_balance_mode = on # Activate load balancing mode # (change requires restart) ignore_leading_white_space = on # Ignore leading white spaces of each query white_function_list = '' # Comma separated list of function names # that don't write to database # Regexp are accepted black_function_list = 'nextval,setval,nextval,setval' # Comma separated list of function names # that write to database # Regexp are accepted database_redirect_preference_list = '' # comma separated list of pairs of database and node id. # example: postgres:primary,mydb[0-4]:1,mydb[5-9]:2' # valid for streaming replicaton mode only. app_name_redirect_preference_list = '' # comma separated list of pairs of app name and node id. # example: 'psql:primary,myapp[0-4]:1,myapp[5-9]:standby' # valid for streaming replicaton mode only. allow_sql_comments = off # if on, ignore SQL comments when judging if load balance or # query cache is possible. # If off, SQL comments effectively prevent the judgment # (pre 3.4 behavior). #------------------------------------------------------- # REGARDING DEAD LOCK #-------------------------------------------------------- # set this to true if you want to avoid deadlock situation when # replication enabled. # there will be noticable performance degration, however. # a work around is set this to false and insert /*STRICT*/ comment # at the beginning of the SQL command. replication_strict = on # when replication_strict is set to false, there will be a chance for # deadlocks. set this to non 0 (in milli seconds) to detect this # situation and resolve the deadlock aborting current session. replication_timeout = 5000 #------------------------------------------------------------------------------ # MASTER/SLAVE MODE #------------------------------------------------------------------------------ master_slave_mode = off # Activate master/slave mode # (change requires restart) master_slave_sub_mode = 'slony' # Master/slave sub mode # Valid values are combinations slony or # stream. Default is slony. # (change requires restart) # - Streaming - sr_check_period = 0 # Streaming replication check period # Disabled (0) by default sr_check_user = 'nobody' # Streaming replication check user # This is necessary even if you disable # streaming replication delay check with # sr_check_period = 0 sr_check_password = '' # Password for streaming replication check user sr_check_database = 'postgres' # Database name for streaming replication check delay_threshold = 0 # Threshold before not dispatching query to standby node # Unit is in bytes # Disabled (0) by default # - Special commands - follow_master_command = '' # Executes this command after master failover # Special values: # %d = node id # %h = host name # %p = port number # %D = database cluster path # %m = new master node id # %H = hostname of the new master node # %M = old master node id # %P = old primary node id # %r = new master port number # %R = new master database cluster path # %% = '%' character #------------------------------------------------------------------------------ # HEALTH CHECK #------------------------------------------------------------------------------ health_check_period = 0 # Health check period # Disabled (0) by default health_check_timeout = 20 # Health check timeout # 0 means no timeout health_check_user = 'nobody' # Health check user health_check_password = '' # Password for health check user health_check_database = '' # Database name for health check. If '', tries 'postgres' frist, then 'template1' health_check_max_retries = 0 # Maximum number of times to retry a failed health check before giving up. health_check_retry_delay = 1 # Amount of time to wait (in seconds) between retries. connect_timeout = 10000 # Timeout value in milliseconds before giving up to connect to backend. # Default is 10000 ms (10 second). Flaky network user may want to increase # the value. 0 means no timeout. # Note that this value is not only used for health check, # but also for ordinary conection to backend. #------------------------------------------------------------------------------ # FAILOVER AND FAILBACK #------------------------------------------------------------------------------ failover_command = '' # Executes this command at failover # Special values: # %d = node id # %h = host name # %p = port number # %D = database cluster path # %m = new master node id # %H = hostname of the new master node # %M = old master node id # %P = old primary node id # %r = new master port number # %R = new master database cluster path # %% = '%' character failback_command = '' # Executes this command at failback. # Special values: # %d = node id # %h = host name # %p = port number # %D = database cluster path # %m = new master node id # %H = hostname of the new master node # %M = old master node id # %P = old primary node id # %r = new master port number # %R = new master database cluster path # %% = '%' character fail_over_on_backend_error = on # Initiates failover when reading/writing to the # backend communication socket fails # If set to off, pgpool will report an # error and disconnect the session. search_primary_node_timeout = 10 # Timeout in seconds to search for the # primary node when a failover occurs. # 0 means no timeout, keep searching # for a primary node forever. #------------------------------------------------------------------------------ # ONLINE RECOVERY #------------------------------------------------------------------------------ recovery_user = 'nobody' # Online recovery user recovery_password = '' # Online recovery password recovery_1st_stage_command = '' # Executes a command in first stage recovery_2nd_stage_command = '' # Executes a command in second stage recovery_timeout = 90 # Timeout in seconds to wait for the # recovering node's postmaster to start up # 0 means no wait client_idle_limit_in_recovery = 0 # Client is disconnected after being idle # for that many seconds in the second stage # of online recovery # 0 means no disconnection # -1 means immediate disconnection #------------------------------------------------------------------------------ # WATCHDOG #------------------------------------------------------------------------------ # - Enabling - use_watchdog = off # Activates watchdog # (change requires restart) # -Connection to up stream servers - trusted_servers = '' # trusted server list which are used # to confirm network connection # (hostA,hostB,hostC,...) # (change requires restart) ping_path = '/bin' # ping command path # (change requires restart) # - Watchdog communication Settings - wd_hostname = '' # Host name or IP address of this watchdog # (change requires restart) wd_port = 9000 # port number for watchdog service # (change requires restart) wd_priority = 1 # priority of this watchdog in leader election # (change requires restart) wd_authkey = '' # Authentication key for watchdog communication # (change requires restart) wd_ipc_socket_dir = '/tmp' # Unix domain socket path for watchdog IPC socket # The Debian package defaults to # /var/run/postgresql # (change requires restart) # - Virtual IP control Setting - delegate_IP = '' # delegate IP address # If this is empty, virtual IP never bring up. # (change requires restart) if_cmd_path = '/sbin' # path to the directory where if_up/down_cmd exists # (change requires restart) if_up_cmd = 'ip addr add $_IP_$/24 dev eth0 label eth0:0' # startup delegate IP command # (change requires restart) if_down_cmd = 'ip addr del $_IP_$/24 dev eth0' # shutdown delegate IP command # (change requires restart) arping_path = '/usr/sbin' # arping command path # (change requires restart) arping_cmd = 'arping -U $_IP_$ -w 1' # arping command # (change requires restart) # - Behaivor on escalation Setting - clear_memqcache_on_escalation = on # Clear all the query cache on shared memory # when standby pgpool escalate to active pgpool # (= virtual IP holder). # This should be off if client connects to pgpool # not using virtual IP. # (change requires restart) wd_escalation_command = '' # Executes this command at escalation on new active pgpool. # (change requires restart) wd_de_escalation_command = '' # Executes this command when master pgpool resigns from being master. # (change requires restart) # - Lifecheck Setting - # -- common -- wd_monitoring_interfaces_list = '' # Comma separated list of interfaces names to monitor. # if any interface from the list is active the watchdog will # consider the network is fine # 'any' to enable monitoring on all interfaces except loopback # '' to disable monitoring wd_lifecheck_method = 'heartbeat' # Method of watchdog lifecheck ('heartbeat' or 'query' or 'external') # (change requires restart) wd_interval = 10 # lifecheck interval (sec) > 0 # (change requires restart) # -- heartbeat mode -- wd_heartbeat_port = 9694 # Port number for receiving heartbeat signal # (change requires restart) wd_heartbeat_keepalive = 2 # Interval time of sending heartbeat signal (sec) # (change requires restart) wd_heartbeat_deadtime = 30 # Deadtime interval for heartbeat signal (sec) # (change requires restart) heartbeat_destination0 = 'host0_ip1' # Host name or IP address of destination 0 # for sending heartbeat signal. # (change requires restart) heartbeat_destination_port0 = 9694 # Port number of destination 0 for sending # heartbeat signal. Usually this is the # same as wd_heartbeat_port. # (change requires restart) heartbeat_device0 = '' # Name of NIC device (such like 'eth0') # used for sending/receiving heartbeat # signal to/from destination 0. # This works only when this is not empty # and pgpool has root privilege. # (change requires restart) #heartbeat_destination1 = 'host0_ip2' #heartbeat_destination_port1 = 9694 #heartbeat_device1 = '' # -- query mode -- wd_life_point = 3 # lifecheck retry times # (change requires restart) wd_lifecheck_query = 'SELECT 1' # lifecheck query to pgpool from watchdog # (change requires restart) wd_lifecheck_dbname = 'template1' # Database name connected for lifecheck # (change requires restart) wd_lifecheck_user = 'nobody' # watchdog user monitoring pgpools in lifecheck # (change requires restart) wd_lifecheck_password = '' # Password for watchdog user in lifecheck # (change requires restart) # - Other pgpool Connection Settings - #other_pgpool_hostname0 = 'host0' # Host name or IP address to connect to for other pgpool 0 # (change requires restart) #other_pgpool_port0 = 5432 # Port number for othet pgpool 0 # (change requires restart) #other_wd_port0 = 9000 # Port number for othet watchdog 0 # (change requires restart) #other_pgpool_hostname1 = 'host1' #other_pgpool_port1 = 5432 #other_wd_port1 = 9000 #------------------------------------------------------------------------------ # OTHERS #------------------------------------------------------------------------------ relcache_expire = 0 # Life time of relation cache in seconds. # 0 means no cache expiration(the default). # The relation cache is used for cache the # query result against PostgreSQL system # catalog to obtain various information # including table structures or if it's a # temporary table or not. The cache is # maintained in a pgpool child local memory # and being kept as long as it survives. # If someone modify the table by using # ALTER TABLE or some such, the relcache is # not consistent anymore. # For this purpose, cache_expiration # controls the life time of the cache. relcache_size = 256 # Number of relation cache # entry. If you see frequently: # "pool_search_relcache: cache replacement happend" # in the pgpool log, you might want to increate this number. check_temp_table = on # If on, enable temporary table check in SELECT statements. # This initiates queries against system catalog of primary/master # thus increases load of master. # If you are absolutely sure that your system never uses temporary tables # and you want to save access to primary/master, you could turn this off. # Default is on. check_unlogged_table = on # If on, enable unlogged table check in SELECT statements. # This initiates queries against system catalog of primary/master # thus increases load of master. # If you are absolutely sure that your system never uses unlogged tables # and you want to save access to primary/master, you could turn this off. # Default is on. #------------------------------------------------------------------------------ # IN MEMORY QUERY MEMORY CACHE #------------------------------------------------------------------------------ memory_cache_enabled = off # If on, use the memory cache functionality, off by default memqcache_method = 'shmem' # Cache storage method. either 'shmem'(shared memory) or # 'memcached'. 'shmem' by default # (change requires restart) memqcache_memcached_host = 'localhost' # Memcached host name or IP address. Mandatory if # memqcache_method = 'memcached'. # Defaults to localhost. # (change requires restart) memqcache_memcached_port = 11211 # Memcached port number. Mondatory if memqcache_method = 'memcached'. # Defaults to 11211. # (change requires restart) memqcache_total_size = 67108864 # Total memory size in bytes for storing memory cache. # Mandatory if memqcache_method = 'shmem'. # Defaults to 64MB. # (change requires restart) memqcache_max_num_cache = 1000000 # Total number of cache entries. Mandatory # if memqcache_method = 'shmem'. # Each cache entry consumes 48 bytes on shared memory. # Defaults to 1,000,000(45.8MB). # (change requires restart) memqcache_expire = 0 # Memory cache entry life time specified in seconds. # 0 means infinite life time. 0 by default. # (change requires restart) memqcache_auto_cache_invalidation = on # If on, invalidation of query cache is triggered by corresponding # DDL/DML/DCL(and memqcache_expire). If off, it is only triggered # by memqcache_expire. on by default. # (change requires restart) memqcache_maxcache = 409600 # Maximum SELECT result size in bytes. # Must be smaller than memqcache_cache_block_size. Defaults to 400KB. # (change requires restart) memqcache_cache_block_size = 1048576 # Cache block size in bytes. Mandatory if memqcache_method = 'shmem'. # Defaults to 1MB. # (change requires restart) memqcache_oiddir = '/var/log/pgpool/oiddir' # Temporary work directory to record table oids # (change requires restart) white_memqcache_table_list = '' # Comma separated list of table names to memcache # that don't write to database # Regexp are accepted black_memqcache_table_list = '' # Comma separated list of table names not to memcache # that don't write to database # Regexp are accepted root@otp3:~ # ============================== statistics ========== === netstat -a from pgpool server ==== after refreshing the application page ==== you can notice the Recv-Q 117 root@otp3:~ # netstat -a | more Active Internet connections (including servers) Proto Recv-Q Send-Q Local Address Foreign Address (state) tcp4 117 0 otp3.postgresql 10.200.1.64.62614 ESTABLISHED tcp4 117 0 otp3.postgresql 10.200.1.64.42996 ESTABLISHED tcp4 117 0 otp3.postgresql 10.200.1.64.39348 ESTABLISHED tcp4 0 0 otp3.postgresql 10.200.1.64.19139 ESTABLISHED tcp4 0 0 otp3.30955 tdb2.labs.blr.ch.postg ESTABLISHED tcp4 0 0 otp3.59863 tdb1.labs.blr.ch.postg ESTABLISHED tcp4 0 0 otp3.postgresql 10.200.1.64.29171 ESTABLISHED tcp4 0 0 otp3.50345 tdb2.labs.blr.ch.postg ESTABLISHED tcp4 0 0 otp3.36737 tdb1.labs.blr.ch.postg ESTABLISHED tcp4 0 0 otp3.postgresql 10.200.1.64.20117 ESTABLISHED tcp4 0 0 otp3.45984 tdb2.labs.blr.ch.postg ESTABLISHED tcp4 0 0 otp3.10831 tdb1.labs.blr.ch.postg ESTABLISHED tcp4 0 0 otp3.postgresql 10.200.1.64.15585 ESTABLISHED root@otp3:~ # === netstat -a ==== from backend 0 ==== root@tdb1:~ # netstat -a Active Internet connections (including servers) Proto Recv-Q Send-Q Local Address Foreign Address (state) tcp4 0 0 tdb1.postgresql 10.200.1.62.59863 ESTABLISHED tcp4 0 0 tdb1.postgresql 10.200.1.62.36737 ESTABLISHED tcp4 0 0 tdb1.postgresql 10.200.1.62.10831 ESTABLISHED tcp4 0 0 tdb1.postgresql 10.200.1.62.10767 ESTABLISHED tcp4 0 0 tdb1.postgresql 10.200.1.62.25310 ESTABLISHED tcp4 0 0 tdb1.postgresql 10.200.1.62.19984 ESTABLISHED tcp4 0 0 tdb1.postgresql 10.200.1.62.52424 ESTABLISHED tcp4 0 0 tdb1.postgresql 10.200.1.62.61744 ESTABLISHED tcp4 0 0 tdb1.postgresql 10.200.1.62.37556 ESTABLISHED tcp4 0 44 tdb1.ssh 192.168.11.125.49286 ESTABLISHED tcp4 0 0 *.postgresql *.* LISTEN tcp6 0 0 *.postgresql *.* LISTEN tcp4 0 0 localhost.smtp *.* LISTEN tcp4 0 0 *.ssh *.* LISTEN tcp6 0 0 *.ssh *.* LISTEN tcp4 0 0 *.smux *.* LISTEN udp6 0 0 localhost.57822 localhost.57822 udp4 0 0 localhost.ntp *.* udp6 0 0 fe80::1%lo0.ntp *.* udp6 0 0 localhost.ntp *.* udp4 0 0 tdbs1.ntp *.* udp4 0 0 tdb1.ntp *.* udp6 0 0 *.ntp *.* udp4 0 0 *.ntp *.* udp4 0 0 *.syslog *.* udp6 0 0 *.syslog *.* udp4 0 0 *.snmp *.* udp4 0 0 *.61503 *.* udp4 0 0 *.snmptrap *.* udp4 0 0 *.* *.* udp4 0 0 *.* *.* Active UNIX domain sockets Address Type Recv-Q Send-Q Inode Conn Refs Nextref Addr fffff800852120f0 stream 0 0 fffff80131db7938 0 0 0 /tmp/.s.PGSQL.5432 fffff800038a84b0 stream 0 0 0 fffff800038a85a0 0 0 /var/agentx/master fffff800038a85a0 stream 0 0 0 fffff800038a84b0 0 0 fffff80003820690 stream 0 0 fffff800038e7938 0 0 0 /var/agentx/master fffff800038a8b40 stream 0 0 fffff8000367f000 0 0 0 /var/run/devd.pipe fffff80096aa4870 dgram 0 0 0 fffff800038a8960 0 0 fffff800038a8780 dgram 0 0 0 fffff80003820870 0 fffff80003820780 fffff80003820780 dgram 0 0 0 fffff80003820870 0 fffff800037bf0f0 fffff800037bf0f0 dgram 0 0 0 fffff80003820870 0 0 fffff80003820870 dgram 0 0 fffff8007fece1d8 0 fffff800038a8780 0 /var/run/logpriv fffff800038a8960 dgram 0 0 fffff8008e574b10 0 fffff80096aa4870 0 /var/run/log fffff800038205a0 dgram 0 0 0 0 0 0 fffff800038a8690 dgram 0 0 0 0 0 fffff800038a8780 fffff800038a8870 dgram 0 0 0 0 0 fffff80003820780 fffff800038a8a50 seqpac 0 0 fffff8000367ece8 0 0 0 /var/run/devd.seqpacket.pipe root@tdb1:~ # ======================== Before application access ===== =========================== pop node info root@otp3:~ # pcp_node_info -U admin -p 9898 -n 0 -v -d Password: DEBUG: recv: tos="m", len=8 DEBUG: recv: tos="r", len=21 DEBUG: send: tos="I", len=6 DEBUG: recv: tos="i", len=57 Hostname: 10.200.1.53 Port : 5432 Status : 2 Weight : 0.500000 DEBUG: send: tos="X", len=4 root@otp3:~ # pcp_node_info -U admin -p 9898 -n 1 -v -d Password: DEBUG: recv: tos="m", len=8 DEBUG: recv: tos="r", len=21 DEBUG: send: tos="I", len=6 DEBUG: recv: tos="i", len=57 Hostname: 10.200.1.54 Port : 5432 Status : 2 Weight : 0.500000 DEBUG: send: tos="X", len=4 root@otp3:~ # =========================== pop proc info root@otp3:~ # pcp_proc_info --verbose -a -h localhost -p 9898 -U admin Password: Database : ctl Username : sparrowdesk Start time : 2016-06-05 17:51:27 Creation time: 2016-06-05 17:51:46 Major : 3 Minor : 0 Counter : 1 Backend PID : 89495 Connected : 1 PID : 817 Backend ID : 0 Database : ctl Username : sparrowdesk Start time : 2016-06-05 17:51:27 Creation time: 2016-06-05 17:51:46 Major : 3 Minor : 0 Counter : 1 Backend PID : 75788 Connected : 1 PID : 817 Backend ID : 1 Database : Username : Start time : 2016-06-05 17:51:27 Creation time: Major : 0 Minor : 0 Counter : 0 Backend PID : 0 Connected : 0 PID : 817 Backend ID : 0 Database : Username : Start time : 2016-06-05 17:51:27 Creation time: Major : 0 Minor : 0 Counter : 0 Backend PID : 0 Connected : 0 PID : 817 Backend ID : 1 Database : Username : Start time : 2016-06-05 17:51:27 Creation time: Major : 0 Minor : 0 Counter : 0 Backend PID : 0 Connected : 0 PID : 817 Backend ID : 0 Database : Username : Start time : 2016-06-05 17:51:27 Creation time: Major : 0 Minor : 0 Counter : 0 Backend PID : 0 Connected : 0 PID : 817 Backend ID : 1 Database : Username : Start time : 2016-06-05 17:51:27 Creation time: Major : 0 Minor : 0 Counter : 0 Backend PID : 0 Connected : 0 PID : 817 Backend ID : 0 Database : Username : Start time : 2016-06-05 17:51:27 Creation time: Major : 0 Minor : 0 Counter : 0 Backend PID : 0 Connected : 0 PID : 817 Backend ID : 1 Database : Username : Start time : 2016-06-05 17:51:27 Creation time: Major : 0 Minor : 0 Counter : 0 Backend PID : 0 Connected : 0 PID : 818 Backend ID : 0 Database : Username : Start time : 2016-06-05 17:51:27 Creation time: Major : 0 Minor : 0 Counter : 0 Backend PID : 0 Connected : 0 PID : 818 Backend ID : 1 Database : Username : Start time : 2016-06-05 17:51:27 Creation time: Major : 0 Minor : 0 Counter : 0 Backend PID : 0 Connected : 0 PID : 818 Backend ID : 0 Database : Username : Start time : 2016-06-05 17:51:27 Creation time: Major : 0 Minor : 0 Counter : 0 Backend PID : 0 Connected : 0 PID : 818 Backend ID : 1 Database : Username : Start time : 2016-06-05 17:51:27 Creation time: Major : 0 Minor : 0 Counter : 0 Backend PID : 0 Connected : 0 PID : 818 Backend ID : 0 Database : Username : Start time : 2016-06-05 17:51:27 Creation time: Major : 0 Minor : 0 Counter : 0 Backend PID : 0 Connected : 0 PID : 818 Backend ID : 1 Database : Username : Start time : 2016-06-05 17:51:27 Creation time: Major : 0 Minor : 0 Counter : 0 Backend PID : 0 Connected : 0 PID : 818 Backend ID : 0 Database : Username : Start time : 2016-06-05 17:51:27 Creation time: Major : 0 Minor : 0 Counter : 0 Backend PID : 0 Connected : 0 PID : 818 Backend ID : 1 Database : Username : Start time : 2016-06-05 17:51:27 Creation time: Major : 0 Minor : 0 Counter : 0 Backend PID : 0 Connected : 0 PID : 819 Backend ID : 0 Database : Username : Start time : 2016-06-05 17:51:27 Creation time: Major : 0 Minor : 0 Counter : 0 Backend PID : 0 Connected : 0 PID : 819 Backend ID : 1 Database : Username : Start time : 2016-06-05 17:51:27 Creation time: Major : 0 Minor : 0 Counter : 0 Backend PID : 0 Connected : 0 PID : 819 Backend ID : 0 Database : Username : Start time : 2016-06-05 17:51:27 Creation time: Major : 0 Minor : 0 Counter : 0 Backend PID : 0 Connected : 0 PID : 819 Backend ID : 1 Database : Username : Start time : 2016-06-05 17:51:27 Creation time: Major : 0 Minor : 0 Counter : 0 Backend PID : 0 Connected : 0 PID : 819 Backend ID : 0 Database : Username : Start time : 2016-06-05 17:51:27 Creation time: Major : 0 Minor : 0 Counter : 0 Backend PID : 0 Connected : 0 PID : 819 Backend ID : 1 Database : Username : Start time : 2016-06-05 17:51:27 Creation time: Major : 0 Minor : 0 Counter : 0 Backend PID : 0 Connected : 0 PID : 819 Backend ID : 0 Database : Username : Start time : 2016-06-05 17:51:27 Creation time: Major : 0 Minor : 0 Counter : 0 Backend PID : 0 Connected : 0 PID : 819 Backend ID : 1 Database : ctl Username : sparrowdesk Start time : 2016-06-05 17:51:27 Creation time: 2016-06-05 17:51:46 Major : 3 Minor : 0 Counter : 1 Backend PID : 89494 Connected : 1 PID : 820 Backend ID : 0 Database : ctl Username : sparrowdesk Start time : 2016-06-05 17:51:27 Creation time: 2016-06-05 17:51:46 Major : 3 Minor : 0 Counter : 1 Backend PID : 75787 Connected : 1 PID : 820 Backend ID : 1 Database : Username : Start time : 2016-06-05 17:51:27 Creation time: Major : 0 Minor : 0 Counter : 0 Backend PID : 0 Connected : 0 PID : 820 Backend ID : 0 Database : Username : Start time : 2016-06-05 17:51:27 Creation time: Major : 0 Minor : 0 Counter : 0 Backend PID : 0 Connected : 0 PID : 820 Backend ID : 1 Database : Username : Start time : 2016-06-05 17:51:27 Creation time: Major : 0 Minor : 0 Counter : 0 Backend PID : 0 Connected : 0 PID : 820 Backend ID : 0 Database : Username : Start time : 2016-06-05 17:51:27 Creation time: Major : 0 Minor : 0 Counter : 0 Backend PID : 0 Connected : 0 PID : 820 Backend ID : 1 Database : Username : Start time : 2016-06-05 17:51:27 Creation time: Major : 0 Minor : 0 Counter : 0 Backend PID : 0 Connected : 0 PID : 820 Backend ID : 0 Database : Username : Start time : 2016-06-05 17:51:27 Creation time: Major : 0 Minor : 0 Counter : 0 Backend PID : 0 Connected : 0 PID : 820 Backend ID : 1 Database : ctl Username : sparrowdesk Start time : 2016-06-05 17:51:27 Creation time: 2016-06-05 17:51:46 Major : 3 Minor : 0 Counter : 1 Backend PID : 89493 Connected : 1 PID : 821 Backend ID : 0 Database : ctl Username : sparrowdesk Start time : 2016-06-05 17:51:27 Creation time: 2016-06-05 17:51:46 Major : 3 Minor : 0 Counter : 1 Backend PID : 75786 Connected : 1 PID : 821 Backend ID : 1 Database : Username : Start time : 2016-06-05 17:51:27 Creation time: Major : 0 Minor : 0 Counter : 0 Backend PID : 0 Connected : 0 PID : 821 Backend ID : 0 Database : Username : Start time : 2016-06-05 17:51:27 Creation time: Major : 0 Minor : 0 Counter : 0 Backend PID : 0 Connected : 0 PID : 821 Backend ID : 1 Database : Username : Start time : 2016-06-05 17:51:27 Creation time: Major : 0 Minor : 0 Counter : 0 Backend PID : 0 Connected : 0 PID : 821 Backend ID : 0 Database : Username : Start time : 2016-06-05 17:51:27 Creation time: Major : 0 Minor : 0 Counter : 0 Backend PID : 0 Connected : 0 PID : 821 Backend ID : 1 Database : Username : Start time : 2016-06-05 17:51:27 Creation time: Major : 0 Minor : 0 Counter : 0 Backend PID : 0 Connected : 0 PID : 821 Backend ID : 0 Database : Username : Start time : 2016-06-05 17:51:27 Creation time: Major : 0 Minor : 0 Counter : 0 Backend PID : 0 Connected : 0 PID : 821 Backend ID : 1 root@otp3:~ # pgpool netstat (before application usage ) root@otp3:~ # netstat -a | more Active Internet connections (including servers) Proto Recv-Q Send-Q Local Address Foreign Address (state) tcp4 0 0 *.9898 *.* LISTEN tcp4 0 0 otp3.postgresql *.* LISTEN tcp4 0 0 localhost.smtp *.* LISTEN tcp4 0 44 otp3.ssh 192.168.11.125.49940 ESTABLISHED tcp4 0 0 otp3.ssh 192.168.11.125.49492 ESTABLISHED tcp4 0 0 *.ssh *.* LISTEN tcp6 0 0 *.ssh *.* LISTEN udp4 0 0 *.syslog *.* udp6 0 0 *.syslog *.* Active UNIX domain sockets Address Type Recv-Q Send-Q Inode Conn Refs Nextref Addr fffff80004a37870 stream 0 0 fffff80004b92000 0 0 0 /tmp/.s.PGSQL.9898 fffff80004a224b0 stream 0 0 fffff80004b921d8 0 0 0 /tmp/.s.PGSQL.5432 fffff80004a22870 stream 0 0 fffff800048d1588 0 0 0 /var/run/devd.pipe fffff80004a222d0 dgram 0 0 0 fffff80004a22690 0 fffff80004a223c0 fffff80004a223c0 dgram 0 0 0 fffff80004a22690 0 fffff80004a221e0 fffff80004a221e0 dgram 0 0 0 fffff80004a22690 0 0 fffff80004a37a50 dgram 0 0 0 fffff80004a225a0 0 fffff800048e3d20 fffff800048e3d20 dgram 0 0 0 fffff80004a225a0 0 0 fffff80004a225a0 dgram 0 0 fffff80004b2b938 0 fffff80004a37a50 0 /var/run/logpriv fffff80004a22690 dgram 0 0 fffff80004b2bb10 0 fffff80004a222d0 0 /var/run/log fffff80004a22780 seqpac 0 0 fffff800048d13b0 0 0 0 /var/run/devd.seqpacket.pipe root@otp3:~ # === Backend Status Node 0 root@tdb1:~ # psql postgres pgsql psql (9.3.12) Type "help" for help. postgres=# SELECT sum(numbackends) FROM pg_stat_database; sum ----- 1 (1 row) postgres=# root@tdb1:~ # netstat -a Active Internet connections (including servers) Proto Recv-Q Send-Q Local Address Foreign Address (state) tcp4 0 44 tdb1.ssh 192.168.11.125.49286 ESTABLISHED tcp4 0 0 *.postgresql *.* LISTEN tcp6 0 0 *.postgresql *.* LISTEN tcp4 0 0 localhost.smtp *.* LISTEN tcp4 0 0 *.ssh *.* LISTEN tcp6 0 0 *.ssh *.* LISTEN tcp4 0 0 *.smux *.* LISTEN udp6 0 0 localhost.57822 localhost.57822 udp4 0 0 localhost.ntp *.* udp6 0 0 fe80::1%lo0.ntp *.* udp6 0 0 localhost.ntp *.* udp4 0 0 tdbs1.ntp *.* udp4 0 0 tdb1.ntp *.* udp6 0 0 *.ntp *.* udp4 0 0 *.ntp *.* udp4 0 0 *.syslog *.* udp6 0 0 *.syslog *.* udp4 0 0 *.snmp *.* udp4 0 0 *.61503 *.* udp4 0 0 *.snmptrap *.* udp4 0 0 *.* *.* udp4 0 0 *.* *.* Active UNIX domain sockets Address Type Recv-Q Send-Q Inode Conn Refs Nextref Addr fffff800852120f0 stream 0 0 fffff80131db7938 0 0 0 /tmp/.s.PGSQL.5432 fffff800038a84b0 stream 0 0 0 fffff800038a85a0 0 0 /var/agentx/master fffff800038a85a0 stream 0 0 0 fffff800038a84b0 0 0 fffff80003820690 stream 0 0 fffff800038e7938 0 0 0 /var/agentx/master fffff800038a8b40 stream 0 0 fffff8000367f000 0 0 0 /var/run/devd.pipe fffff80096aa4870 dgram 0 0 0 fffff800038a8960 0 0 fffff800038a8780 dgram 0 0 0 fffff80003820870 0 fffff80003820780 fffff80003820780 dgram 0 0 0 fffff80003820870 0 fffff800037bf0f0 fffff800037bf0f0 dgram 0 0 0 fffff80003820870 0 0 fffff80003820870 dgram 0 0 fffff8007fece1d8 0 fffff800038a8780 0 /var/run/logpriv fffff800038a8960 dgram 0 0 fffff8008e574b10 0 fffff80096aa4870 0 /var/run/log fffff800038205a0 dgram 0 0 0 0 0 0 fffff800038a8690 dgram 0 0 0 0 0 fffff800038a8780 fffff800038a8870 dgram 0 0 0 0 0 fffff80003820780 fffff800038a8a50 seqpac 0 0 fffff8000367ece8 0 0 0 /var/run/devd.seqpacket.pipe root@tdb1:~ # Node 1 root@tdb2:~ # psql postgres pgsql psql (9.3.12) Type "help" for help. postgres=# SELECT sum(numbackends) FROM pg_stat_database; sum ----- 1 (1 row) postgres=# root@tdb2:~ # netstat -a Active Internet connections (including servers) Proto Recv-Q Send-Q Local Address Foreign Address (state) tcp4 0 44 tdb2.ssh 192.168.11.125.49289 ESTABLISHED tcp4 0 0 *.postgresql *.* LISTEN tcp6 0 0 *.postgresql *.* LISTEN tcp4 0 0 localhost.smtp *.* LISTEN tcp4 0 0 *.ssh *.* LISTEN tcp6 0 0 *.ssh *.* LISTEN udp6 0 0 localhost.33087 localhost.33087 udp4 0 0 *.syslog *.* udp6 0 0 *.syslog *.* udp4 0 0 tdbs1.ntp *.* udp4 0 0 localhost.ntp *.* udp6 0 0 fe80::1%lo0.ntp *.* udp6 0 0 localhost.ntp *.* udp4 0 0 tdb2.ntp *.* udp6 0 0 *.ntp *.* udp4 0 0 *.ntp *.* udp4 0 0 *.* *.* udp4 0 0 *.* *.* Active UNIX domain sockets Address Type Recv-Q Send-Q Inode Conn Refs Nextref Addr fffff800037e34b0 stream 0 0 fffff800ac4ff000 0 0 0 /tmp/.s.PGSQL.5432 fffff800037c5a50 stream 0 0 fffff800036d23b0 0 0 0 /var/run/devd.pipe fffff80003613d20 dgram 0 0 0 fffff800037e4780 0 0 fffff800037c5870 dgram 0 0 0 fffff800037e4000 0 fffff800037e44b0 fffff800037e44b0 dgram 0 0 0 fffff800037e4000 0 0 fffff800037e4000 dgram 0 0 fffff800ac6c7938 0 fffff800037c5870 0 /var/run/logpriv fffff800037e4780 dgram 0 0 fffff800ac64bb10 0 fffff80003613d20 0 /var/run/log fffff800037e43c0 dgram 0 0 0 0 0 0 fffff800037e45a0 dgram 0 0 0 0 0 fffff800037c5780 fffff800037c5780 dgram 0 0 0 0 0 fffff800037c5870 fffff800037c5960 seqpac 0 0 fffff800036d21d8 0 0 0 /var/run/devd.seqpacket.pipe root@tdb2:~ # |
|
|
Full Log from starting of the pgpool to problem occurrence netstat -a at the time of problem root@otp3:~ # netstat -a Active Internet connections (including servers) Proto Recv-Q Send-Q Local Address Foreign Address (state) tcp4 117 0 otp3.postgresql 10.200.1.64.28665 ESTABLISHED tcp4 117 0 otp3.postgresql 10.200.1.64.26982 ESTABLISHED tcp4 117 0 otp3.postgresql 10.200.1.64.10903 ESTABLISHED tcp4 117 0 otp3.postgresql 10.200.1.64.12837 ESTABLISHED tcp4 117 0 otp3.postgresql 10.200.1.64.29317 ESTABLISHED tcp4 0 0 otp3.postgresql 10.200.1.64.15457 ESTABLISHED tcp4 0 0 otp3.postgresql 10.200.1.64.21170 ESTABLISHED tcp4 0 0 otp3.postgresql 10.200.1.64.49483 ESTABLISHED tcp4 0 0 otp3.38506 tdb2.labs.blr.ch.postg ESTABLISHED tcp4 0 0 otp3.19786 tdb1.labs.blr.ch.postg ESTABLISHED tcp4 0 0 otp3.42994 tdb2.labs.blr.ch.postg ESTABLISHED tcp4 0 0 otp3.30341 tdb1.labs.blr.ch.postg ESTABLISHED tcp4 0 0 otp3.15925 tdb2.labs.blr.ch.postg ESTABLISHED tcp4 0 0 otp3.43875 tdb1.labs.blr.ch.postg ESTABLISHED tcp4 0 0 otp3.postgresql 10.200.1.64.29498 ESTABLISHED tcp4 0 0 otp3.14901 tdb2.labs.blr.ch.postg ESTABLISHED tcp4 0 0 otp3.18418 tdb1.labs.blr.ch.postg ESTABLISHED tcp4 0 0 otp3.52817 tdb2.labs.blr.ch.postg ESTABLISHED tcp4 0 0 otp3.48817 tdb1.labs.blr.ch.postg ESTABLISHED tcp4 0 0 otp3.postgresql 10.200.1.64.19492 ESTABLISHED tcp4 0 0 *.9898 *.* LISTEN tcp4 0 0 otp3.postgresql *.* LISTEN tcp4 0 80 otp3.ssh 192.168.11.125.50570 ESTABLISHED tcp4 0 0 otp3.ssh 192.168.11.125.50561 ESTABLISHED tcp4 0 0 localhost.smtp *.* LISTEN tcp4 0 0 *.ssh *.* LISTEN tcp6 0 0 *.ssh *.* LISTEN udp4 0 0 *.syslog *.* udp6 0 0 *.syslog *.* Active UNIX domain sockets ======= pgpool.log ======= root@otp3:~ # tail -f -n1000 /var/log/pgpool/pgpool.log Jun 5 18:16:45 otp3 pgpool[876]: [5-3] 2016-06-05 18:16:45: pid 876: LOCATION: child.c:2110 Jun 5 18:16:45 otp3 pgpool: 2016-06-05 18:16:45: pid 876: LOG: new connection received Jun 5 18:16:45 otp3 pgpool: 2016-06-05 18:16:45: pid 876: DETAIL: connecting host=10.200.1.64 port=20117 Jun 5 18:16:45 otp3 pgpool: 2016-06-05 18:16:45: pid 876: LOCATION: child.c:2110 Jun 5 18:16:45 otp3 pgpool[877]: [8-1] 2016-06-05 18:16:45: pid 877: LOG: new connection received Jun 5 18:16:45 otp3 pgpool[877]: [8-2] 2016-06-05 18:16:45: pid 877: DETAIL: connecting host=10.200.1.64 port=29171 Jun 5 18:16:45 otp3 pgpool[877]: [8-3] 2016-06-05 18:16:45: pid 877: LOCATION: child.c:2110 Jun 5 18:16:45 otp3 pgpool: 2016-06-05 18:16:45: pid 877: LOG: new connection received Jun 5 18:16:45 otp3 pgpool: 2016-06-05 18:16:45: pid 877: DETAIL: connecting host=10.200.1.64 port=29171 Jun 5 18:16:45 otp3 pgpool: 2016-06-05 18:16:45: pid 877: LOCATION: child.c:2110 Jun 5 18:16:45 otp3 pgpool[880]: [14-1] 2016-06-05 18:16:45: pid 880: LOG: new connection received Jun 5 18:16:45 otp3 pgpool[880]: [14-2] 2016-06-05 18:16:45: pid 880: DETAIL: connecting host=10.200.1.64 port=19139 Jun 5 18:16:45 otp3 pgpool[880]: [14-3] 2016-06-05 18:16:45: pid 880: LOCATION: child.c:2110 Jun 5 18:16:45 otp3 pgpool: 2016-06-05 18:16:45: pid 880: LOG: new connection received Jun 5 18:16:45 otp3 pgpool: 2016-06-05 18:16:45: pid 880: DETAIL: connecting host=10.200.1.64 port=19139 Jun 5 18:16:45 otp3 pgpool: 2016-06-05 18:16:45: pid 880: LOCATION: child.c:2110 Jun 5 18:46:00 otp3 pgpool[878]: [11-1] 2016-06-05 18:46:00: pid 878: LOG: new connection received Jun 5 18:46:00 otp3 pgpool[878]: [11-2] 2016-06-05 18:46:00: pid 878: DETAIL: connecting host=10.200.1.64 port=39348 Jun 5 18:46:00 otp3 pgpool[878]: [11-3] 2016-06-05 18:46:00: pid 878: LOCATION: child.c:2110 Jun 5 18:46:00 otp3 pgpool: 2016-06-05 18:46:00: pid 878: LOG: new connection received Jun 5 18:46:00 otp3 pgpool: 2016-06-05 18:46:00: pid 878: DETAIL: connecting host=10.200.1.64 port=39348 Jun 5 18:46:00 otp3 pgpool: 2016-06-05 18:46:00: pid 878: LOCATION: child.c:2110 Jun 5 18:46:00 otp3 pgpool[878]: [12-1] 2016-06-05 18:46:00: pid 878: LOG: new connection received Jun 5 18:46:00 otp3 pgpool[878]: [12-2] 2016-06-05 18:46:00: pid 878: DETAIL: connecting host=10.200.1.64 port=42996 Jun 5 18:46:00 otp3 pgpool[878]: [12-3] 2016-06-05 18:46:00: pid 878: LOCATION: child.c:2110 Jun 5 18:46:00 otp3 pgpool: 2016-06-05 18:46:00: pid 878: LOG: new connection received Jun 5 18:46:00 otp3 pgpool: 2016-06-05 18:46:00: pid 878: DETAIL: connecting host=10.200.1.64 port=42996 Jun 5 18:46:00 otp3 pgpool: 2016-06-05 18:46:00: pid 878: LOCATION: child.c:2110 Jun 5 18:46:00 otp3 pgpool[878]: [13-1] 2016-06-05 18:46:00: pid 878: LOG: new connection received Jun 5 18:46:00 otp3 pgpool[878]: [13-2] 2016-06-05 18:46:00: pid 878: DETAIL: connecting host=10.200.1.64 port=62614 Jun 5 18:46:00 otp3 pgpool[878]: [13-3] 2016-06-05 18:46:00: pid 878: LOCATION: child.c:2110 Jun 5 18:46:00 otp3 pgpool: 2016-06-05 18:46:00: pid 878: LOG: new connection received Jun 5 18:46:00 otp3 pgpool: 2016-06-05 18:46:00: pid 878: DETAIL: connecting host=10.200.1.64 port=62614 Jun 5 18:46:00 otp3 pgpool: 2016-06-05 18:46:00: pid 878: LOCATION: child.c:2110 Jun 5 18:46:00 otp3 pgpool[878]: [14-1] 2016-06-05 18:46:00: pid 878: LOG: new connection received Jun 5 18:46:00 otp3 pgpool[878]: [14-2] 2016-06-05 18:46:00: pid 878: DETAIL: connecting host=10.200.1.64 port=20665 Jun 5 18:46:00 otp3 pgpool[878]: [14-3] 2016-06-05 18:46:00: pid 878: LOCATION: child.c:2110 Jun 5 18:46:00 otp3 pgpool: 2016-06-05 18:46:00: pid 878: LOG: new connection received Jun 5 18:46:00 otp3 pgpool: 2016-06-05 18:46:00: pid 878: DETAIL: connecting host=10.200.1.64 port=20665 Jun 5 18:46:00 otp3 pgpool: 2016-06-05 18:46:00: pid 878: LOCATION: child.c:2110 Jun 5 18:46:00 otp3 pgpool[878]: [15-1] 2016-06-05 18:46:00: pid 878: LOG: new connection received Jun 5 18:46:00 otp3 pgpool[878]: [15-2] 2016-06-05 18:46:00: pid 878: DETAIL: connecting host=10.200.1.64 port=44218 Jun 5 18:46:00 otp3 pgpool[878]: [15-3] 2016-06-05 18:46:00: pid 878: LOCATION: child.c:2110 Jun 5 18:46:00 otp3 pgpool: 2016-06-05 18:46:00: pid 878: LOG: new connection received Jun 5 18:46:00 otp3 pgpool: 2016-06-05 18:46:00: pid 878: DETAIL: connecting host=10.200.1.64 port=44218 Jun 5 18:46:00 otp3 pgpool: 2016-06-05 18:46:00: pid 878: LOCATION: child.c:2110 Jun 5 18:46:00 otp3 pgpool[878]: [16-1] 2016-06-05 18:46:00: pid 878: LOG: new connection received Jun 5 18:46:00 otp3 pgpool[878]: [16-2] 2016-06-05 18:46:00: pid 878: DETAIL: connecting host=10.200.1.64 port=21473 Jun 5 18:46:00 otp3 pgpool[878]: [16-3] 2016-06-05 18:46:00: pid 878: LOCATION: child.c:2110 Jun 5 18:46:00 otp3 pgpool: 2016-06-05 18:46:00: pid 878: LOG: new connection received Jun 5 18:46:00 otp3 pgpool: 2016-06-05 18:46:00: pid 878: DETAIL: connecting host=10.200.1.64 port=21473 Jun 5 18:46:00 otp3 pgpool: 2016-06-05 18:46:00: pid 878: LOCATION: child.c:2110 Jun 5 18:46:00 otp3 pgpool[878]: [17-1] 2016-06-05 18:46:00: pid 878: LOG: new connection received Jun 5 18:46:00 otp3 pgpool[878]: [17-2] 2016-06-05 18:46:00: pid 878: DETAIL: connecting host=10.200.1.64 port=17071 Jun 5 18:46:00 otp3 pgpool[878]: [17-3] 2016-06-05 18:46:00: pid 878: LOCATION: child.c:2110 Jun 5 18:46:00 otp3 pgpool: 2016-06-05 18:46:00: pid 878: LOG: new connection received Jun 5 18:46:00 otp3 pgpool: 2016-06-05 18:46:00: pid 878: DETAIL: connecting host=10.200.1.64 port=17071 Jun 5 18:46:00 otp3 pgpool: 2016-06-05 18:46:00: pid 878: LOCATION: child.c:2110 Jun 5 18:46:00 otp3 pgpool[878]: [18-1] 2016-06-05 18:46:00: pid 878: LOG: new connection received Jun 5 18:46:00 otp3 pgpool[878]: [18-2] 2016-06-05 18:46:00: pid 878: DETAIL: connecting host=10.200.1.64 port=37514 Jun 5 18:46:00 otp3 pgpool[878]: [18-3] 2016-06-05 18:46:00: pid 878: LOCATION: child.c:2110 Jun 5 18:46:00 otp3 pgpool: 2016-06-05 18:46:00: pid 878: LOG: new connection received Jun 5 18:46:00 otp3 pgpool: 2016-06-05 18:46:00: pid 878: DETAIL: connecting host=10.200.1.64 port=37514 Jun 5 18:46:00 otp3 pgpool: 2016-06-05 18:46:00: pid 878: LOCATION: child.c:2110 Jun 5 18:46:00 otp3 pgpool[878]: [19-1] 2016-06-05 18:46:00: pid 878: LOG: new connection received Jun 5 18:46:00 otp3 pgpool[878]: [19-2] 2016-06-05 18:46:00: pid 878: DETAIL: connecting host=10.200.1.64 port=38237 Jun 5 18:46:00 otp3 pgpool[878]: [19-3] 2016-06-05 18:46:00: pid 878: LOCATION: child.c:2110 Jun 5 18:46:00 otp3 pgpool: 2016-06-05 18:46:00: pid 878: LOG: new connection received Jun 5 18:46:00 otp3 pgpool: 2016-06-05 18:46:00: pid 878: DETAIL: connecting host=10.200.1.64 port=38237 Jun 5 18:46:00 otp3 pgpool: 2016-06-05 18:46:00: pid 878: LOCATION: child.c:2110 Jun 5 18:46:00 otp3 pgpool[878]: [20-1] 2016-06-05 18:46:00: pid 878: LOG: new connection received Jun 5 18:46:00 otp3 pgpool[878]: [20-2] 2016-06-05 18:46:00: pid 878: DETAIL: connecting host=10.200.1.64 port=35394 Jun 5 18:46:00 otp3 pgpool[878]: [20-3] 2016-06-05 18:46:00: pid 878: LOCATION: child.c:2110 Jun 5 18:46:00 otp3 pgpool: 2016-06-05 18:46:00: pid 878: LOG: new connection received Jun 5 18:46:00 otp3 pgpool: 2016-06-05 18:46:00: pid 878: DETAIL: connecting host=10.200.1.64 port=35394 Jun 5 18:46:00 otp3 pgpool: 2016-06-05 18:46:00: pid 878: LOCATION: child.c:2110 Jun 5 18:46:01 otp3 pgpool[878]: [21-1] 2016-06-05 18:46:01: pid 878: LOG: new connection received Jun 5 18:46:01 otp3 pgpool[878]: [21-2] 2016-06-05 18:46:01: pid 878: DETAIL: connecting host=10.200.1.64 port=13535 Jun 5 18:46:01 otp3 pgpool[878]: [21-3] 2016-06-05 18:46:01: pid 878: LOCATION: child.c:2110 Jun 5 18:46:01 otp3 pgpool: 2016-06-05 18:46:01: pid 878: LOG: new connection received Jun 5 18:46:01 otp3 pgpool: 2016-06-05 18:46:01: pid 878: DETAIL: connecting host=10.200.1.64 port=13535 Jun 5 18:46:01 otp3 pgpool: 2016-06-05 18:46:01: pid 878: LOCATION: child.c:2110 Jun 5 18:46:01 otp3 pgpool[878]: [22-1] 2016-06-05 18:46:01: pid 878: LOG: new connection received Jun 5 18:46:01 otp3 pgpool[878]: [22-2] 2016-06-05 18:46:01: pid 878: DETAIL: connecting host=10.200.1.64 port=57111 Jun 5 18:46:01 otp3 pgpool[878]: [22-3] 2016-06-05 18:46:01: pid 878: LOCATION: child.c:2110 Jun 5 18:46:01 otp3 pgpool: 2016-06-05 18:46:01: pid 878: LOG: new connection received Jun 5 18:46:01 otp3 pgpool: 2016-06-05 18:46:01: pid 878: DETAIL: connecting host=10.200.1.64 port=57111 Jun 5 18:46:01 otp3 pgpool: 2016-06-05 18:46:01: pid 878: LOCATION: child.c:2110 Jun 5 18:46:01 otp3 pgpool[878]: [23-1] 2016-06-05 18:46:01: pid 878: LOG: new connection received Jun 5 18:46:01 otp3 pgpool[878]: [23-2] 2016-06-05 18:46:01: pid 878: DETAIL: connecting host=10.200.1.64 port=43756 Jun 5 18:46:01 otp3 pgpool[878]: [23-3] 2016-06-05 18:46:01: pid 878: LOCATION: child.c:2110 Jun 5 18:46:01 otp3 pgpool: 2016-06-05 18:46:01: pid 878: LOG: new connection received Jun 5 18:46:01 otp3 pgpool: 2016-06-05 18:46:01: pid 878: DETAIL: connecting host=10.200.1.64 port=43756 Jun 5 18:46:01 otp3 pgpool: 2016-06-05 18:46:01: pid 878: LOCATION: child.c:2110 Jun 5 18:46:01 otp3 pgpool[878]: [24-1] 2016-06-05 18:46:01: pid 878: LOG: new connection received Jun 5 18:46:01 otp3 pgpool[878]: [24-2] 2016-06-05 18:46:01: pid 878: DETAIL: connecting host=10.200.1.64 port=15430 Jun 5 18:46:01 otp3 pgpool[878]: [24-3] 2016-06-05 18:46:01: pid 878: LOCATION: child.c:2110 Jun 5 18:46:01 otp3 pgpool: 2016-06-05 18:46:01: pid 878: LOG: new connection received Jun 5 18:46:01 otp3 pgpool: 2016-06-05 18:46:01: pid 878: DETAIL: connecting host=10.200.1.64 port=15430 Jun 5 18:46:01 otp3 pgpool: 2016-06-05 18:46:01: pid 878: LOCATION: child.c:2110 Jun 5 18:46:18 otp3 pgpool[878]: [25-1] 2016-06-05 18:46:18: pid 878: LOG: new connection received Jun 5 18:46:18 otp3 pgpool[878]: [25-2] 2016-06-05 18:46:18: pid 878: DETAIL: connecting host=10.200.1.64 port=18646 Jun 5 18:46:18 otp3 pgpool[878]: [25-3] 2016-06-05 18:46:18: pid 878: LOCATION: child.c:2110 Jun 5 18:46:18 otp3 pgpool: 2016-06-05 18:46:18: pid 878: LOG: new connection received Jun 5 18:46:18 otp3 pgpool: 2016-06-05 18:46:18: pid 878: DETAIL: connecting host=10.200.1.64 port=18646 Jun 5 18:46:18 otp3 pgpool: 2016-06-05 18:46:18: pid 878: LOCATION: child.c:2110 Jun 5 18:46:18 otp3 pgpool[880]: [15-1] 2016-06-05 18:46:18: pid 880: LOG: new connection received Jun 5 18:46:18 otp3 pgpool[880]: [15-2] 2016-06-05 18:46:18: pid 880: DETAIL: connecting host=10.200.1.64 port=18960 Jun 5 18:46:18 otp3 pgpool[880]: [15-3] 2016-06-05 18:46:18: pid 880: LOCATION: child.c:2110 Jun 5 18:46:18 otp3 pgpool: 2016-06-05 18:46:18: pid 880: LOG: new connection received Jun 5 18:46:18 otp3 pgpool: 2016-06-05 18:46:18: pid 880: DETAIL: connecting host=10.200.1.64 port=18960 Jun 5 18:46:18 otp3 pgpool: 2016-06-05 18:46:18: pid 880: LOCATION: child.c:2110 Jun 5 18:46:46 otp3 pgpool[876]: [6-1] 2016-06-05 18:46:46: pid 876: LOG: new connection received Jun 5 18:46:46 otp3 pgpool[876]: [6-2] 2016-06-05 18:46:46: pid 876: DETAIL: connecting host=10.200.1.64 port=23242 Jun 5 18:46:46 otp3 pgpool[876]: [6-3] 2016-06-05 18:46:46: pid 876: LOCATION: child.c:2110 Jun 5 18:46:46 otp3 pgpool: 2016-06-05 18:46:46: pid 876: LOG: new connection received Jun 5 18:46:46 otp3 pgpool: 2016-06-05 18:46:46: pid 876: DETAIL: connecting host=10.200.1.64 port=23242 Jun 5 18:46:46 otp3 pgpool: 2016-06-05 18:46:46: pid 876: LOCATION: child.c:2110 Jun 5 18:46:48 otp3 pgpool[877]: [9-1] 2016-06-05 18:46:48: pid 877: LOG: new connection received Jun 5 18:46:48 otp3 pgpool[877]: [9-2] 2016-06-05 18:46:48: pid 877: DETAIL: connecting host=10.200.1.64 port=51277 Jun 5 18:46:48 otp3 pgpool[877]: [9-3] 2016-06-05 18:46:48: pid 877: LOCATION: child.c:2110 Jun 5 18:46:48 otp3 pgpool: 2016-06-05 18:46:48: pid 877: LOG: new connection received Jun 5 18:46:48 otp3 pgpool: 2016-06-05 18:46:48: pid 877: DETAIL: connecting host=10.200.1.64 port=51277 Jun 5 18:46:48 otp3 pgpool: 2016-06-05 18:46:48: pid 877: LOCATION: child.c:2110 Jun 5 18:46:48 otp3 pgpool[879]: [12-1] 2016-06-05 18:46:48: pid 879: LOG: new connection received Jun 5 18:46:48 otp3 pgpool[879]: [12-2] 2016-06-05 18:46:48: pid 879: DETAIL: connecting host=10.200.1.64 port=38847 Jun 5 18:46:48 otp3 pgpool[879]: [12-3] 2016-06-05 18:46:48: pid 879: LOCATION: child.c:2110 Jun 5 18:46:48 otp3 pgpool: 2016-06-05 18:46:48: pid 879: LOG: new connection received Jun 5 18:46:48 otp3 pgpool: 2016-06-05 18:46:48: pid 879: DETAIL: connecting host=10.200.1.64 port=38847 Jun 5 18:46:48 otp3 pgpool: 2016-06-05 18:46:48: pid 879: LOCATION: child.c:2110 Jun 5 19:15:51 otp3 pgpool[880]: [16-1] 2016-06-05 19:15:51: pid 880: LOG: new connection received Jun 5 19:15:51 otp3 pgpool[880]: [16-2] 2016-06-05 19:15:51: pid 880: DETAIL: connecting host=10.200.1.64 port=10188 Jun 5 19:15:51 otp3 pgpool[880]: [16-3] 2016-06-05 19:15:51: pid 880: LOCATION: child.c:2110 Jun 5 19:15:51 otp3 pgpool: 2016-06-05 19:15:51: pid 880: LOG: new connection received Jun 5 19:15:51 otp3 pgpool: 2016-06-05 19:15:51: pid 880: DETAIL: connecting host=10.200.1.64 port=10188 Jun 5 19:15:51 otp3 pgpool: 2016-06-05 19:15:51: pid 880: LOCATION: child.c:2110 Jun 5 19:15:51 otp3 pgpool[878]: [26-1] 2016-06-05 19:15:51: pid 878: LOG: new connection received Jun 5 19:15:51 otp3 pgpool[878]: [26-2] 2016-06-05 19:15:51: pid 878: DETAIL: connecting host=10.200.1.64 port=25710 Jun 5 19:15:51 otp3 pgpool[878]: [26-3] 2016-06-05 19:15:51: pid 878: LOCATION: child.c:2110 Jun 5 19:15:51 otp3 pgpool: 2016-06-05 19:15:51: pid 878: LOG: new connection received Jun 5 19:15:51 otp3 pgpool: 2016-06-05 19:15:51: pid 878: DETAIL: connecting host=10.200.1.64 port=25710 Jun 5 19:15:51 otp3 pgpool: 2016-06-05 19:15:51: pid 878: LOCATION: child.c:2110 Jun 5 19:16:49 otp3 pgpool[876]: [7-1] 2016-06-05 19:16:49: pid 876: LOG: new connection received Jun 5 19:16:49 otp3 pgpool[876]: [7-2] 2016-06-05 19:16:49: pid 876: DETAIL: connecting host=10.200.1.64 port=57631 Jun 5 19:16:49 otp3 pgpool[876]: [7-3] 2016-06-05 19:16:49: pid 876: LOCATION: child.c:2110 Jun 5 19:16:49 otp3 pgpool: 2016-06-05 19:16:49: pid 876: LOG: new connection received Jun 5 19:16:49 otp3 pgpool: 2016-06-05 19:16:49: pid 876: DETAIL: connecting host=10.200.1.64 port=57631 Jun 5 19:16:49 otp3 pgpool: 2016-06-05 19:16:49: pid 876: LOCATION: child.c:2110 Jun 5 19:16:51 otp3 pgpool[879]: [13-1] 2016-06-05 19:16:51: pid 879: LOG: new connection received Jun 5 19:16:51 otp3 pgpool[879]: [13-2] 2016-06-05 19:16:51: pid 879: DETAIL: connecting host=10.200.1.64 port=63647 Jun 5 19:16:51 otp3 pgpool[879]: [13-3] 2016-06-05 19:16:51: pid 879: LOCATION: child.c:2110 Jun 5 19:16:51 otp3 pgpool: 2016-06-05 19:16:51: pid 879: LOG: new connection received Jun 5 19:16:51 otp3 pgpool: 2016-06-05 19:16:51: pid 879: DETAIL: connecting host=10.200.1.64 port=63647 Jun 5 19:16:51 otp3 pgpool: 2016-06-05 19:16:51: pid 879: LOCATION: child.c:2110 Jun 5 19:16:51 otp3 pgpool[877]: [10-1] 2016-06-05 19:16:51: pid 877: LOG: new connection received Jun 5 19:16:51 otp3 pgpool[877]: [10-2] 2016-06-05 19:16:51: pid 877: DETAIL: connecting host=10.200.1.64 port=45986 Jun 5 19:16:51 otp3 pgpool[877]: [10-3] 2016-06-05 19:16:51: pid 877: LOCATION: child.c:2110 Jun 5 19:16:51 otp3 pgpool: 2016-06-05 19:16:51: pid 877: LOG: new connection received Jun 5 19:16:51 otp3 pgpool: 2016-06-05 19:16:51: pid 877: DETAIL: connecting host=10.200.1.64 port=45986 Jun 5 19:16:51 otp3 pgpool: 2016-06-05 19:16:51: pid 877: LOCATION: child.c:2110 Jun 5 19:45:24 otp3 pgpool[880]: [17-1] 2016-06-05 19:45:24: pid 880: LOG: new connection received Jun 5 19:45:24 otp3 pgpool[880]: [17-2] 2016-06-05 19:45:24: pid 880: DETAIL: connecting host=10.200.1.64 port=29380 Jun 5 19:45:24 otp3 pgpool[880]: [17-3] 2016-06-05 19:45:24: pid 880: LOCATION: child.c:2110 Jun 5 19:45:24 otp3 pgpool: 2016-06-05 19:45:24: pid 880: LOG: new connection received Jun 5 19:45:24 otp3 pgpool: 2016-06-05 19:45:24: pid 880: DETAIL: connecting host=10.200.1.64 port=29380 Jun 5 19:45:24 otp3 pgpool: 2016-06-05 19:45:24: pid 880: LOCATION: child.c:2110 Jun 5 19:45:24 otp3 pgpool[878]: [27-1] 2016-06-05 19:45:24: pid 878: LOG: new connection received Jun 5 19:45:24 otp3 pgpool[878]: [27-2] 2016-06-05 19:45:24: pid 878: DETAIL: connecting host=10.200.1.64 port=32055 Jun 5 19:45:24 otp3 pgpool[878]: [27-3] 2016-06-05 19:45:24: pid 878: LOCATION: child.c:2110 Jun 5 19:45:24 otp3 pgpool: 2016-06-05 19:45:24: pid 878: LOG: new connection received Jun 5 19:45:24 otp3 pgpool: 2016-06-05 19:45:24: pid 878: DETAIL: connecting host=10.200.1.64 port=32055 Jun 5 19:45:24 otp3 pgpool: 2016-06-05 19:45:24: pid 878: LOCATION: child.c:2110 Jun 5 19:46:23 otp3 pgpool[879]: [14-1] 2016-06-05 19:46:23: pid 879: LOG: new connection received Jun 5 19:46:23 otp3 pgpool[879]: [14-2] 2016-06-05 19:46:23: pid 879: DETAIL: connecting host=10.200.1.64 port=34726 Jun 5 19:46:23 otp3 pgpool[879]: [14-3] 2016-06-05 19:46:23: pid 879: LOCATION: child.c:2110 Jun 5 19:46:23 otp3 pgpool: 2016-06-05 19:46:23: pid 879: LOG: new connection received Jun 5 19:46:23 otp3 pgpool: 2016-06-05 19:46:23: pid 879: DETAIL: connecting host=10.200.1.64 port=34726 Jun 5 19:46:23 otp3 pgpool: 2016-06-05 19:46:23: pid 879: LOCATION: child.c:2110 Jun 5 19:46:24 otp3 pgpool[876]: [8-1] 2016-06-05 19:46:24: pid 876: LOG: new connection received Jun 5 19:46:24 otp3 pgpool[876]: [8-2] 2016-06-05 19:46:24: pid 876: DETAIL: connecting host=10.200.1.64 port=35712 Jun 5 19:46:24 otp3 pgpool[876]: [8-3] 2016-06-05 19:46:24: pid 876: LOCATION: child.c:2110 Jun 5 19:46:24 otp3 pgpool: 2016-06-05 19:46:24: pid 876: LOG: new connection received Jun 5 19:46:24 otp3 pgpool: 2016-06-05 19:46:24: pid 876: DETAIL: connecting host=10.200.1.64 port=35712 Jun 5 19:46:24 otp3 pgpool: 2016-06-05 19:46:24: pid 876: LOCATION: child.c:2110 Jun 5 19:46:24 otp3 pgpool[877]: [11-1] 2016-06-05 19:46:24: pid 877: LOG: new connection received Jun 5 19:46:24 otp3 pgpool[877]: [11-2] 2016-06-05 19:46:24: pid 877: DETAIL: connecting host=10.200.1.64 port=10650 Jun 5 19:46:24 otp3 pgpool[877]: [11-3] 2016-06-05 19:46:24: pid 877: LOCATION: child.c:2110 Jun 5 19:46:24 otp3 pgpool: 2016-06-05 19:46:24: pid 877: LOG: new connection received Jun 5 19:46:24 otp3 pgpool: 2016-06-05 19:46:24: pid 877: DETAIL: connecting host=10.200.1.64 port=10650 Jun 5 19:46:24 otp3 pgpool: 2016-06-05 19:46:24: pid 877: LOCATION: child.c:2110 Jun 5 20:14:58 otp3 pgpool[878]: [28-1] 2016-06-05 20:14:58: pid 878: LOG: new connection received Jun 5 20:14:58 otp3 pgpool[878]: [28-2] 2016-06-05 20:14:58: pid 878: DETAIL: connecting host=10.200.1.64 port=61016 Jun 5 20:14:58 otp3 pgpool[878]: [28-3] 2016-06-05 20:14:58: pid 878: LOCATION: child.c:2110 Jun 5 20:14:58 otp3 pgpool: 2016-06-05 20:14:58: pid 878: LOG: new connection received Jun 5 20:14:58 otp3 pgpool: 2016-06-05 20:14:58: pid 878: DETAIL: connecting host=10.200.1.64 port=61016 Jun 5 20:14:58 otp3 pgpool: 2016-06-05 20:14:58: pid 878: LOCATION: child.c:2110 Jun 5 20:14:58 otp3 pgpool[880]: [18-1] 2016-06-05 20:14:58: pid 880: LOG: new connection received Jun 5 20:14:58 otp3 pgpool[880]: [18-2] 2016-06-05 20:14:58: pid 880: DETAIL: connecting host=10.200.1.64 port=39234 Jun 5 20:14:58 otp3 pgpool[880]: [18-3] 2016-06-05 20:14:58: pid 880: LOCATION: child.c:2110 Jun 5 20:14:58 otp3 pgpool: 2016-06-05 20:14:58: pid 880: LOG: new connection received Jun 5 20:14:58 otp3 pgpool: 2016-06-05 20:14:58: pid 880: DETAIL: connecting host=10.200.1.64 port=39234 Jun 5 20:14:58 otp3 pgpool: 2016-06-05 20:14:58: pid 880: LOCATION: child.c:2110 Jun 5 20:16:25 otp3 pgpool[877]: [12-1] 2016-06-05 20:16:25: pid 877: LOG: new connection received Jun 5 20:16:25 otp3 pgpool[877]: [12-2] 2016-06-05 20:16:25: pid 877: DETAIL: connecting host=10.200.1.64 port=50491 Jun 5 20:16:25 otp3 pgpool[877]: [12-3] 2016-06-05 20:16:25: pid 877: LOCATION: child.c:2110 Jun 5 20:16:25 otp3 pgpool: 2016-06-05 20:16:25: pid 877: LOG: new connection received Jun 5 20:16:25 otp3 pgpool: 2016-06-05 20:16:25: pid 877: DETAIL: connecting host=10.200.1.64 port=50491 Jun 5 20:16:25 otp3 pgpool: 2016-06-05 20:16:25: pid 877: LOCATION: child.c:2110 Jun 5 20:16:28 otp3 pgpool[879]: [15-1] 2016-06-05 20:16:28: pid 879: LOG: new connection received Jun 5 20:16:28 otp3 pgpool[879]: [15-2] 2016-06-05 20:16:28: pid 879: DETAIL: connecting host=10.200.1.64 port=60765 Jun 5 20:16:28 otp3 pgpool[879]: [15-3] 2016-06-05 20:16:28: pid 879: LOCATION: child.c:2110 Jun 5 20:16:28 otp3 pgpool: 2016-06-05 20:16:28: pid 879: LOG: new connection received Jun 5 20:16:28 otp3 pgpool: 2016-06-05 20:16:28: pid 879: DETAIL: connecting host=10.200.1.64 port=60765 Jun 5 20:16:28 otp3 pgpool: 2016-06-05 20:16:28: pid 879: LOCATION: child.c:2110 Jun 5 20:16:28 otp3 pgpool[876]: [9-1] 2016-06-05 20:16:28: pid 876: LOG: new connection received Jun 5 20:16:28 otp3 pgpool[876]: [9-2] 2016-06-05 20:16:28: pid 876: DETAIL: connecting host=10.200.1.64 port=28776 Jun 5 20:16:28 otp3 pgpool[876]: [9-3] 2016-06-05 20:16:28: pid 876: LOCATION: child.c:2110 Jun 5 20:16:28 otp3 pgpool: 2016-06-05 20:16:28: pid 876: LOG: new connection received Jun 5 20:16:28 otp3 pgpool: 2016-06-05 20:16:28: pid 876: DETAIL: connecting host=10.200.1.64 port=28776 Jun 5 20:16:28 otp3 pgpool: 2016-06-05 20:16:28: pid 876: LOCATION: child.c:2110 Jun 5 20:45:01 otp3 pgpool[880]: [19-1] 2016-06-05 20:45:01: pid 880: LOG: new connection received Jun 5 20:45:01 otp3 pgpool[880]: [19-2] 2016-06-05 20:45:01: pid 880: DETAIL: connecting host=10.200.1.64 port=62592 Jun 5 20:45:01 otp3 pgpool[880]: [19-3] 2016-06-05 20:45:01: pid 880: LOCATION: child.c:2110 Jun 5 20:45:01 otp3 pgpool: 2016-06-05 20:45:01: pid 880: LOG: new connection received Jun 5 20:45:01 otp3 pgpool: 2016-06-05 20:45:01: pid 880: DETAIL: connecting host=10.200.1.64 port=62592 Jun 5 20:45:01 otp3 pgpool: 2016-06-05 20:45:01: pid 880: LOCATION: child.c:2110 Jun 5 20:45:01 otp3 pgpool[878]: [29-1] 2016-06-05 20:45:01: pid 878: LOG: new connection received Jun 5 20:45:01 otp3 pgpool[878]: [29-2] 2016-06-05 20:45:01: pid 878: DETAIL: connecting host=10.200.1.64 port=19580 Jun 5 20:45:01 otp3 pgpool[878]: [29-3] 2016-06-05 20:45:01: pid 878: LOCATION: child.c:2110 Jun 5 20:45:01 otp3 pgpool: 2016-06-05 20:45:01: pid 878: LOG: new connection received Jun 5 20:45:01 otp3 pgpool: 2016-06-05 20:45:01: pid 878: DETAIL: connecting host=10.200.1.64 port=19580 Jun 5 20:45:01 otp3 pgpool: 2016-06-05 20:45:01: pid 878: LOCATION: child.c:2110 Jun 5 20:46:01 otp3 pgpool[879]: [16-1] 2016-06-05 20:46:01: pid 879: LOG: new connection received Jun 5 20:46:01 otp3 pgpool[879]: [16-2] 2016-06-05 20:46:01: pid 879: DETAIL: connecting host=10.200.1.64 port=36280 Jun 5 20:46:01 otp3 pgpool[879]: [16-3] 2016-06-05 20:46:01: pid 879: LOCATION: child.c:2110 Jun 5 20:46:01 otp3 pgpool: 2016-06-05 20:46:01: pid 879: LOG: new connection received Jun 5 20:46:01 otp3 pgpool: 2016-06-05 20:46:01: pid 879: DETAIL: connecting host=10.200.1.64 port=36280 Jun 5 20:46:01 otp3 pgpool: 2016-06-05 20:46:01: pid 879: LOCATION: child.c:2110 Jun 5 20:46:28 otp3 pgpool[877]: [13-1] 2016-06-05 20:46:28: pid 877: LOG: new connection received Jun 5 20:46:28 otp3 pgpool[877]: [13-2] 2016-06-05 20:46:28: pid 877: DETAIL: connecting host=10.200.1.64 port=28435 Jun 5 20:46:28 otp3 pgpool[877]: [13-3] 2016-06-05 20:46:28: pid 877: LOCATION: child.c:2110 Jun 5 20:46:28 otp3 pgpool: 2016-06-05 20:46:28: pid 877: LOG: new connection received Jun 5 20:46:28 otp3 pgpool: 2016-06-05 20:46:28: pid 877: DETAIL: connecting host=10.200.1.64 port=28435 Jun 5 20:46:28 otp3 pgpool: 2016-06-05 20:46:28: pid 877: LOCATION: child.c:2110 Jun 5 20:46:31 otp3 pgpool[876]: [10-1] 2016-06-05 20:46:31: pid 876: LOG: new connection received Jun 5 20:46:31 otp3 pgpool[876]: [10-2] 2016-06-05 20:46:31: pid 876: DETAIL: connecting host=10.200.1.64 port=28554 Jun 5 20:46:31 otp3 pgpool[876]: [10-3] 2016-06-05 20:46:31: pid 876: LOCATION: child.c:2110 Jun 5 20:46:31 otp3 pgpool: 2016-06-05 20:46:31: pid 876: LOG: new connection received Jun 5 20:46:31 otp3 pgpool: 2016-06-05 20:46:31: pid 876: DETAIL: connecting host=10.200.1.64 port=28554 Jun 5 20:46:31 otp3 pgpool: 2016-06-05 20:46:31: pid 876: LOCATION: child.c:2110 Jun 5 21:14:34 otp3 pgpool[880]: [20-1] 2016-06-05 21:14:34: pid 880: LOG: new connection received Jun 5 21:14:34 otp3 pgpool[880]: [20-2] 2016-06-05 21:14:34: pid 880: DETAIL: connecting host=10.200.1.64 port=11367 Jun 5 21:14:34 otp3 pgpool[880]: [20-3] 2016-06-05 21:14:34: pid 880: LOCATION: child.c:2110 Jun 5 21:14:34 otp3 pgpool: 2016-06-05 21:14:34: pid 880: LOG: new connection received Jun 5 21:14:34 otp3 pgpool: 2016-06-05 21:14:34: pid 880: DETAIL: connecting host=10.200.1.64 port=11367 Jun 5 21:14:34 otp3 pgpool: 2016-06-05 21:14:34: pid 880: LOCATION: child.c:2110 Jun 5 21:15:04 otp3 pgpool[878]: [30-1] 2016-06-05 21:15:04: pid 878: LOG: new connection received Jun 5 21:15:04 otp3 pgpool[878]: [30-2] 2016-06-05 21:15:04: pid 878: DETAIL: connecting host=10.200.1.64 port=57898 Jun 5 21:15:04 otp3 pgpool[878]: [30-3] 2016-06-05 21:15:04: pid 878: LOCATION: child.c:2110 Jun 5 21:15:04 otp3 pgpool: 2016-06-05 21:15:04: pid 878: LOG: new connection received Jun 5 21:15:04 otp3 pgpool: 2016-06-05 21:15:04: pid 878: DETAIL: connecting host=10.200.1.64 port=57898 Jun 5 21:15:04 otp3 pgpool: 2016-06-05 21:15:04: pid 878: LOCATION: child.c:2110 Jun 5 21:16:04 otp3 pgpool[879]: [17-1] 2016-06-05 21:16:04: pid 879: LOG: new connection received Jun 5 21:16:04 otp3 pgpool[879]: [17-2] 2016-06-05 21:16:04: pid 879: DETAIL: connecting host=10.200.1.64 port=52168 Jun 5 21:16:04 otp3 pgpool[879]: [17-3] 2016-06-05 21:16:04: pid 879: LOCATION: child.c:2110 Jun 5 21:16:04 otp3 pgpool: 2016-06-05 21:16:04: pid 879: LOG: new connection received Jun 5 21:16:04 otp3 pgpool: 2016-06-05 21:16:04: pid 879: DETAIL: connecting host=10.200.1.64 port=52168 Jun 5 21:16:04 otp3 pgpool: 2016-06-05 21:16:04: pid 879: LOCATION: child.c:2110 Jun 5 21:16:31 otp3 pgpool[877]: [14-1] 2016-06-05 21:16:31: pid 877: LOG: new connection received Jun 5 21:16:31 otp3 pgpool[877]: [14-2] 2016-06-05 21:16:31: pid 877: DETAIL: connecting host=10.200.1.64 port=14584 Jun 5 21:16:31 otp3 pgpool[877]: [14-3] 2016-06-05 21:16:31: pid 877: LOCATION: child.c:2110 Jun 5 21:16:31 otp3 pgpool: 2016-06-05 21:16:31: pid 877: LOG: new connection received Jun 5 21:16:31 otp3 pgpool: 2016-06-05 21:16:31: pid 877: DETAIL: connecting host=10.200.1.64 port=14584 Jun 5 21:16:31 otp3 pgpool: 2016-06-05 21:16:31: pid 877: LOCATION: child.c:2110 Jun 5 21:16:34 otp3 pgpool[876]: [11-1] 2016-06-05 21:16:34: pid 876: LOG: new connection received Jun 5 21:16:34 otp3 pgpool[876]: [11-2] 2016-06-05 21:16:34: pid 876: DETAIL: connecting host=10.200.1.64 port=53947 Jun 5 21:16:34 otp3 pgpool[876]: [11-3] 2016-06-05 21:16:34: pid 876: LOCATION: child.c:2110 Jun 5 21:16:34 otp3 pgpool: 2016-06-05 21:16:34: pid 876: LOG: new connection received Jun 5 21:16:34 otp3 pgpool: 2016-06-05 21:16:34: pid 876: DETAIL: connecting host=10.200.1.64 port=53947 Jun 5 21:16:34 otp3 pgpool: 2016-06-05 21:16:34: pid 876: LOCATION: child.c:2110 Jun 5 21:44:07 otp3 pgpool[880]: [21-1] 2016-06-05 21:44:07: pid 880: LOG: new connection received Jun 5 21:44:07 otp3 pgpool[880]: [21-2] 2016-06-05 21:44:07: pid 880: DETAIL: connecting host=10.200.1.64 port=21844 Jun 5 21:44:07 otp3 pgpool[880]: [21-3] 2016-06-05 21:44:07: pid 880: LOCATION: child.c:2110 Jun 5 21:44:07 otp3 pgpool: 2016-06-05 21:44:07: pid 880: LOG: new connection received Jun 5 21:44:07 otp3 pgpool: 2016-06-05 21:44:07: pid 880: DETAIL: connecting host=10.200.1.64 port=21844 Jun 5 21:44:07 otp3 pgpool: 2016-06-05 21:44:07: pid 880: LOCATION: child.c:2110 Jun 5 21:45:08 otp3 pgpool[878]: [31-1] 2016-06-05 21:45:08: pid 878: LOG: new connection received Jun 5 21:45:08 otp3 pgpool[878]: [31-2] 2016-06-05 21:45:08: pid 878: DETAIL: connecting host=10.200.1.64 port=47212 Jun 5 21:45:08 otp3 pgpool[878]: [31-3] 2016-06-05 21:45:08: pid 878: LOCATION: child.c:2110 Jun 5 21:45:08 otp3 pgpool: 2016-06-05 21:45:08: pid 878: LOG: new connection received Jun 5 21:45:08 otp3 pgpool: 2016-06-05 21:45:08: pid 878: DETAIL: connecting host=10.200.1.64 port=47212 Jun 5 21:45:08 otp3 pgpool: 2016-06-05 21:45:08: pid 878: LOCATION: child.c:2110 Jun 5 21:46:08 otp3 pgpool[879]: [18-1] 2016-06-05 21:46:08: pid 879: LOG: new connection received Jun 5 21:46:08 otp3 pgpool[879]: [18-2] 2016-06-05 21:46:08: pid 879: DETAIL: connecting host=10.200.1.64 port=47543 Jun 5 21:46:08 otp3 pgpool[879]: [18-3] 2016-06-05 21:46:08: pid 879: LOCATION: child.c:2110 Jun 5 21:46:08 otp3 pgpool: 2016-06-05 21:46:08: pid 879: LOG: new connection received Jun 5 21:46:08 otp3 pgpool: 2016-06-05 21:46:08: pid 879: DETAIL: connecting host=10.200.1.64 port=47543 Jun 5 21:46:08 otp3 pgpool: 2016-06-05 21:46:08: pid 879: LOCATION: child.c:2110 Jun 5 21:46:34 otp3 pgpool[876]: [12-1] 2016-06-05 21:46:34: pid 876: LOG: new connection received Jun 5 21:46:34 otp3 pgpool[876]: [12-2] 2016-06-05 21:46:34: pid 876: DETAIL: connecting host=10.200.1.64 port=56125 Jun 5 21:46:34 otp3 pgpool[876]: [12-3] 2016-06-05 21:46:34: pid 876: LOCATION: child.c:2110 Jun 5 21:46:34 otp3 pgpool: 2016-06-05 21:46:34: pid 876: LOG: new connection received Jun 5 21:46:34 otp3 pgpool: 2016-06-05 21:46:34: pid 876: DETAIL: connecting host=10.200.1.64 port=56125 Jun 5 21:46:34 otp3 pgpool: 2016-06-05 21:46:34: pid 876: LOCATION: child.c:2110 Jun 5 21:46:38 otp3 pgpool[877]: [15-1] 2016-06-05 21:46:38: pid 877: LOG: new connection received Jun 5 21:46:38 otp3 pgpool[877]: [15-2] 2016-06-05 21:46:38: pid 877: DETAIL: connecting host=10.200.1.64 port=52716 Jun 5 21:46:38 otp3 pgpool[877]: [15-3] 2016-06-05 21:46:38: pid 877: LOCATION: child.c:2110 Jun 5 21:46:38 otp3 pgpool: 2016-06-05 21:46:38: pid 877: LOG: new connection received Jun 5 21:46:38 otp3 pgpool: 2016-06-05 21:46:38: pid 877: DETAIL: connecting host=10.200.1.64 port=52716 Jun 5 21:46:38 otp3 pgpool: 2016-06-05 21:46:38: pid 877: LOCATION: child.c:2110 Jun 5 22:13:41 otp3 pgpool[880]: [22-1] 2016-06-05 22:13:41: pid 880: LOG: new connection received Jun 5 22:13:41 otp3 pgpool[880]: [22-2] 2016-06-05 22:13:41: pid 880: DETAIL: connecting host=10.200.1.64 port=49593 Jun 5 22:13:41 otp3 pgpool[880]: [22-3] 2016-06-05 22:13:41: pid 880: LOCATION: child.c:2110 Jun 5 22:13:41 otp3 pgpool: 2016-06-05 22:13:41: pid 880: LOG: new connection received Jun 5 22:13:41 otp3 pgpool: 2016-06-05 22:13:41: pid 880: DETAIL: connecting host=10.200.1.64 port=49593 Jun 5 22:13:41 otp3 pgpool: 2016-06-05 22:13:41: pid 880: LOCATION: child.c:2110 Jun 5 22:15:11 otp3 pgpool[878]: [32-1] 2016-06-05 22:15:11: pid 878: LOG: new connection received Jun 5 22:15:11 otp3 pgpool[878]: [32-2] 2016-06-05 22:15:11: pid 878: DETAIL: connecting host=10.200.1.64 port=53106 Jun 5 22:15:11 otp3 pgpool[878]: [32-3] 2016-06-05 22:15:11: pid 878: LOCATION: child.c:2110 Jun 5 22:15:11 otp3 pgpool: 2016-06-05 22:15:11: pid 878: LOG: new connection received Jun 5 22:15:11 otp3 pgpool: 2016-06-05 22:15:11: pid 878: DETAIL: connecting host=10.200.1.64 port=53106 Jun 5 22:15:11 otp3 pgpool: 2016-06-05 22:15:11: pid 878: LOCATION: child.c:2110 Jun 5 22:16:08 otp3 pgpool[879]: [19-1] 2016-06-05 22:16:08: pid 879: LOG: new connection received Jun 5 22:16:08 otp3 pgpool[879]: [19-2] 2016-06-05 22:16:08: pid 879: DETAIL: connecting host=10.200.1.64 port=59545 Jun 5 22:16:08 otp3 pgpool[879]: [19-3] 2016-06-05 22:16:08: pid 879: LOCATION: child.c:2110 Jun 5 22:16:08 otp3 pgpool: 2016-06-05 22:16:08: pid 879: LOG: new connection received Jun 5 22:16:08 otp3 pgpool: 2016-06-05 22:16:08: pid 879: DETAIL: connecting host=10.200.1.64 port=59545 Jun 5 22:16:08 otp3 pgpool: 2016-06-05 22:16:08: pid 879: LOCATION: child.c:2110 Jun 5 22:16:11 otp3 pgpool[877]: [16-1] 2016-06-05 22:16:11: pid 877: LOG: new connection received Jun 5 22:16:11 otp3 pgpool[877]: [16-2] 2016-06-05 22:16:11: pid 877: DETAIL: connecting host=10.200.1.64 port=39885 Jun 5 22:16:11 otp3 pgpool[877]: [16-3] 2016-06-05 22:16:11: pid 877: LOCATION: child.c:2110 Jun 5 22:16:11 otp3 pgpool: 2016-06-05 22:16:11: pid 877: LOG: new connection received Jun 5 22:16:11 otp3 pgpool: 2016-06-05 22:16:11: pid 877: DETAIL: connecting host=10.200.1.64 port=39885 Jun 5 22:16:11 otp3 pgpool: 2016-06-05 22:16:11: pid 877: LOCATION: child.c:2110 Jun 5 22:16:11 otp3 pgpool[876]: [13-1] 2016-06-05 22:16:11: pid 876: LOG: new connection received Jun 5 22:16:11 otp3 pgpool[876]: [13-2] 2016-06-05 22:16:11: pid 876: DETAIL: connecting host=10.200.1.64 port=10611 Jun 5 22:16:11 otp3 pgpool[876]: [13-3] 2016-06-05 22:16:11: pid 876: LOCATION: child.c:2110 Jun 5 22:16:11 otp3 pgpool: 2016-06-05 22:16:11: pid 876: LOG: new connection received Jun 5 22:16:11 otp3 pgpool: 2016-06-05 22:16:11: pid 876: DETAIL: connecting host=10.200.1.64 port=10611 Jun 5 22:16:11 otp3 pgpool: 2016-06-05 22:16:11: pid 876: LOCATION: child.c:2110 Jun 5 22:43:43 otp3 pgpool[880]: [23-1] 2016-06-05 22:43:43: pid 880: LOG: new connection received Jun 5 22:43:43 otp3 pgpool[880]: [23-2] 2016-06-05 22:43:43: pid 880: DETAIL: connecting host=10.200.1.64 port=48681 Jun 5 22:43:43 otp3 pgpool[880]: [23-3] 2016-06-05 22:43:43: pid 880: LOCATION: child.c:2110 Jun 5 22:43:43 otp3 pgpool: 2016-06-05 22:43:43: pid 880: LOG: new connection received Jun 5 22:43:43 otp3 pgpool: 2016-06-05 22:43:43: pid 880: DETAIL: connecting host=10.200.1.64 port=48681 Jun 5 22:43:43 otp3 pgpool: 2016-06-05 22:43:43: pid 880: LOCATION: child.c:2110 Jun 5 22:44:43 otp3 pgpool[878]: [33-1] 2016-06-05 22:44:43: pid 878: LOG: new connection received Jun 5 22:44:43 otp3 pgpool[878]: [33-2] 2016-06-05 22:44:43: pid 878: DETAIL: connecting host=10.200.1.64 port=49124 Jun 5 22:44:43 otp3 pgpool[878]: [33-3] 2016-06-05 22:44:43: pid 878: LOCATION: child.c:2110 Jun 5 22:44:43 otp3 pgpool: 2016-06-05 22:44:43: pid 878: LOG: new connection received Jun 5 22:44:43 otp3 pgpool: 2016-06-05 22:44:43: pid 878: DETAIL: connecting host=10.200.1.64 port=49124 Jun 5 22:44:43 otp3 pgpool: 2016-06-05 22:44:43: pid 878: LOCATION: child.c:2110 Jun 5 22:45:40 otp3 pgpool[877]: [17-1] 2016-06-05 22:45:40: pid 877: LOG: new connection received Jun 5 22:45:40 otp3 pgpool[877]: [17-2] 2016-06-05 22:45:40: pid 877: DETAIL: connecting host=10.200.1.64 port=56431 Jun 5 22:45:40 otp3 pgpool[877]: [17-3] 2016-06-05 22:45:40: pid 877: LOCATION: child.c:2110 Jun 5 22:45:40 otp3 pgpool: 2016-06-05 22:45:40: pid 877: LOG: new connection received Jun 5 22:45:40 otp3 pgpool: 2016-06-05 22:45:40: pid 877: DETAIL: connecting host=10.200.1.64 port=56431 Jun 5 22:45:40 otp3 pgpool: 2016-06-05 22:45:40: pid 877: LOCATION: child.c:2110 Jun 5 22:45:43 otp3 pgpool[879]: [20-1] 2016-06-05 22:45:43: pid 879: LOG: new connection received Jun 5 22:45:43 otp3 pgpool[879]: [20-2] 2016-06-05 22:45:43: pid 879: DETAIL: connecting host=10.200.1.64 port=57034 Jun 5 22:45:43 otp3 pgpool[879]: [20-3] 2016-06-05 22:45:43: pid 879: LOCATION: child.c:2110 Jun 5 22:45:43 otp3 pgpool: 2016-06-05 22:45:43: pid 879: LOG: new connection received Jun 5 22:45:43 otp3 pgpool: 2016-06-05 22:45:43: pid 879: DETAIL: connecting host=10.200.1.64 port=57034 Jun 5 22:45:43 otp3 pgpool: 2016-06-05 22:45:43: pid 879: LOCATION: child.c:2110 Jun 5 22:46:13 otp3 pgpool[876]: [14-1] 2016-06-05 22:46:13: pid 876: LOG: new connection received Jun 5 22:46:13 otp3 pgpool[876]: [14-2] 2016-06-05 22:46:13: pid 876: DETAIL: connecting host=10.200.1.64 port=25081 Jun 5 22:46:13 otp3 pgpool[876]: [14-3] 2016-06-05 22:46:13: pid 876: LOCATION: child.c:2110 Jun 5 22:46:13 otp3 pgpool: 2016-06-05 22:46:13: pid 876: LOG: new connection received Jun 5 22:46:13 otp3 pgpool: 2016-06-05 22:46:13: pid 876: DETAIL: connecting host=10.200.1.64 port=25081 Jun 5 22:46:13 otp3 pgpool: 2016-06-05 22:46:13: pid 876: LOCATION: child.c:2110 Jun 5 23:13:46 otp3 pgpool[880]: [24-1] 2016-06-05 23:13:46: pid 880: LOG: new connection received Jun 5 23:13:46 otp3 pgpool[880]: [24-2] 2016-06-05 23:13:46: pid 880: DETAIL: connecting host=10.200.1.64 port=33719 Jun 5 23:13:46 otp3 pgpool[880]: [24-3] 2016-06-05 23:13:46: pid 880: LOCATION: child.c:2110 Jun 5 23:13:46 otp3 pgpool: 2016-06-05 23:13:46: pid 880: LOG: new connection received Jun 5 23:13:46 otp3 pgpool: 2016-06-05 23:13:46: pid 880: DETAIL: connecting host=10.200.1.64 port=33719 Jun 5 23:13:46 otp3 pgpool: 2016-06-05 23:13:46: pid 880: LOCATION: child.c:2110 Jun 5 23:14:16 otp3 pgpool[878]: [34-1] 2016-06-05 23:14:16: pid 878: LOG: new connection received Jun 5 23:14:16 otp3 pgpool[878]: [34-2] 2016-06-05 23:14:16: pid 878: DETAIL: connecting host=10.200.1.64 port=34110 Jun 5 23:14:16 otp3 pgpool[878]: [34-3] 2016-06-05 23:14:16: pid 878: LOCATION: child.c:2110 Jun 5 23:14:16 otp3 pgpool: 2016-06-05 23:14:16: pid 878: LOG: new connection received Jun 5 23:14:16 otp3 pgpool: 2016-06-05 23:14:16: pid 878: DETAIL: connecting host=10.200.1.64 port=34110 Jun 5 23:14:16 otp3 pgpool: 2016-06-05 23:14:16: pid 878: LOCATION: child.c:2110 Jun 5 23:15:14 otp3 pgpool[877]: [18-1] 2016-06-05 23:15:14: pid 877: LOG: new connection received Jun 5 23:15:14 otp3 pgpool[877]: [18-2] 2016-06-05 23:15:14: pid 877: DETAIL: connecting host=10.200.1.64 port=29821 Jun 5 23:15:14 otp3 pgpool[877]: [18-3] 2016-06-05 23:15:14: pid 877: LOCATION: child.c:2110 Jun 5 23:15:14 otp3 pgpool: 2016-06-05 23:15:14: pid 877: LOG: new connection received Jun 5 23:15:14 otp3 pgpool: 2016-06-05 23:15:14: pid 877: DETAIL: connecting host=10.200.1.64 port=29821 Jun 5 23:15:14 otp3 pgpool: 2016-06-05 23:15:14: pid 877: LOCATION: child.c:2110 Jun 5 23:15:46 otp3 pgpool[879]: [21-1] 2016-06-05 23:15:46: pid 879: LOG: new connection received Jun 5 23:15:46 otp3 pgpool[879]: [21-2] 2016-06-05 23:15:46: pid 879: DETAIL: connecting host=10.200.1.64 port=31453 Jun 5 23:15:46 otp3 pgpool[879]: [21-3] 2016-06-05 23:15:46: pid 879: LOCATION: child.c:2110 Jun 5 23:15:46 otp3 pgpool: 2016-06-05 23:15:46: pid 879: LOG: new connection received Jun 5 23:15:46 otp3 pgpool: 2016-06-05 23:15:46: pid 879: DETAIL: connecting host=10.200.1.64 port=31453 Jun 5 23:15:46 otp3 pgpool: 2016-06-05 23:15:46: pid 879: LOCATION: child.c:2110 Jun 5 23:16:16 otp3 pgpool[876]: [15-1] 2016-06-05 23:16:16: pid 876: LOG: new connection received Jun 5 23:16:16 otp3 pgpool[876]: [15-2] 2016-06-05 23:16:16: pid 876: DETAIL: connecting host=10.200.1.64 port=55228 Jun 5 23:16:16 otp3 pgpool[876]: [15-3] 2016-06-05 23:16:16: pid 876: LOCATION: child.c:2110 Jun 5 23:16:16 otp3 pgpool: 2016-06-05 23:16:16: pid 876: LOG: new connection received Jun 5 23:16:16 otp3 pgpool: 2016-06-05 23:16:16: pid 876: DETAIL: connecting host=10.200.1.64 port=55228 Jun 5 23:16:16 otp3 pgpool: 2016-06-05 23:16:16: pid 876: LOCATION: child.c:2110 Jun 5 23:43:49 otp3 pgpool[878]: [35-1] 2016-06-05 23:43:49: pid 878: LOG: new connection received Jun 5 23:43:49 otp3 pgpool[878]: [35-2] 2016-06-05 23:43:49: pid 878: DETAIL: connecting host=10.200.1.64 port=43404 Jun 5 23:43:49 otp3 pgpool[878]: [35-3] 2016-06-05 23:43:49: pid 878: LOCATION: child.c:2110 Jun 5 23:43:49 otp3 pgpool: 2016-06-05 23:43:49: pid 878: LOG: new connection received Jun 5 23:43:49 otp3 pgpool: 2016-06-05 23:43:49: pid 878: DETAIL: connecting host=10.200.1.64 port=43404 Jun 5 23:43:49 otp3 pgpool: 2016-06-05 23:43:49: pid 878: LOCATION: child.c:2110 Jun 5 23:43:49 otp3 pgpool[880]: [25-1] 2016-06-05 23:43:49: pid 880: LOG: new connection received Jun 5 23:43:49 otp3 pgpool[880]: [25-2] 2016-06-05 23:43:49: pid 880: DETAIL: connecting host=10.200.1.64 port=28849 Jun 5 23:43:49 otp3 pgpool[880]: [25-3] 2016-06-05 23:43:49: pid 880: LOCATION: child.c:2110 Jun 5 23:43:49 otp3 pgpool: 2016-06-05 23:43:49: pid 880: LOG: new connection received Jun 5 23:43:49 otp3 pgpool: 2016-06-05 23:43:49: pid 880: DETAIL: connecting host=10.200.1.64 port=28849 Jun 5 23:43:49 otp3 pgpool: 2016-06-05 23:43:49: pid 880: LOCATION: child.c:2110 Jun 5 23:44:47 otp3 pgpool[877]: [19-1] 2016-06-05 23:44:47: pid 877: LOG: new connection received Jun 5 23:44:47 otp3 pgpool[877]: [19-2] 2016-06-05 23:44:47: pid 877: DETAIL: connecting host=10.200.1.64 port=47677 Jun 5 23:44:47 otp3 pgpool[877]: [19-3] 2016-06-05 23:44:47: pid 877: LOCATION: child.c:2110 Jun 5 23:44:47 otp3 pgpool: 2016-06-05 23:44:47: pid 877: LOG: new connection received Jun 5 23:44:47 otp3 pgpool: 2016-06-05 23:44:47: pid 877: DETAIL: connecting host=10.200.1.64 port=47677 Jun 5 23:44:47 otp3 pgpool: 2016-06-05 23:44:47: pid 877: LOCATION: child.c:2110 Jun 5 23:45:19 otp3 pgpool[879]: [22-1] 2016-06-05 23:45:19: pid 879: LOG: new connection received Jun 5 23:45:19 otp3 pgpool[879]: [22-2] 2016-06-05 23:45:19: pid 879: DETAIL: connecting host=10.200.1.64 port=29511 Jun 5 23:45:19 otp3 pgpool[879]: [22-3] 2016-06-05 23:45:19: pid 879: LOCATION: child.c:2110 Jun 5 23:45:19 otp3 pgpool: 2016-06-05 23:45:19: pid 879: LOG: new connection received Jun 5 23:45:19 otp3 pgpool: 2016-06-05 23:45:19: pid 879: DETAIL: connecting host=10.200.1.64 port=29511 Jun 5 23:45:19 otp3 pgpool: 2016-06-05 23:45:19: pid 879: LOCATION: child.c:2110 Jun 5 23:45:50 otp3 pgpool[876]: [16-1] 2016-06-05 23:45:50: pid 876: LOG: new connection received Jun 5 23:45:50 otp3 pgpool[876]: [16-2] 2016-06-05 23:45:50: pid 876: DETAIL: connecting host=10.200.1.64 port=18593 Jun 5 23:45:50 otp3 pgpool[876]: [16-3] 2016-06-05 23:45:50: pid 876: LOCATION: child.c:2110 Jun 5 23:45:50 otp3 pgpool: 2016-06-05 23:45:50: pid 876: LOG: new connection received Jun 5 23:45:50 otp3 pgpool: 2016-06-05 23:45:50: pid 876: DETAIL: connecting host=10.200.1.64 port=18593 Jun 5 23:45:50 otp3 pgpool: 2016-06-05 23:45:50: pid 876: LOCATION: child.c:2110 Jun 6 00:13:24 otp3 pgpool[878]: [36-1] 2016-06-06 00:13:24: pid 878: LOG: new connection received Jun 6 00:13:24 otp3 pgpool[878]: [36-2] 2016-06-06 00:13:24: pid 878: DETAIL: connecting host=10.200.1.64 port=28919 Jun 6 00:13:24 otp3 pgpool[878]: [36-3] 2016-06-06 00:13:24: pid 878: LOCATION: child.c:2110 Jun 6 00:13:24 otp3 pgpool: 2016-06-06 00:13:24: pid 878: LOG: new connection received Jun 6 00:13:24 otp3 pgpool: 2016-06-06 00:13:24: pid 878: DETAIL: connecting host=10.200.1.64 port=28919 Jun 6 00:13:24 otp3 pgpool: 2016-06-06 00:13:24: pid 878: LOCATION: child.c:2110 Jun 6 00:13:24 otp3 pgpool[880]: [26-1] 2016-06-06 00:13:24: pid 880: LOG: new connection received Jun 6 00:13:24 otp3 pgpool[880]: [26-2] 2016-06-06 00:13:24: pid 880: DETAIL: connecting host=10.200.1.64 port=56945 Jun 6 00:13:24 otp3 pgpool[880]: [26-3] 2016-06-06 00:13:24: pid 880: LOCATION: child.c:2110 Jun 6 00:13:24 otp3 pgpool: 2016-06-06 00:13:24: pid 880: LOG: new connection received Jun 6 00:13:24 otp3 pgpool: 2016-06-06 00:13:24: pid 880: DETAIL: connecting host=10.200.1.64 port=56945 Jun 6 00:13:24 otp3 pgpool: 2016-06-06 00:13:24: pid 880: LOCATION: child.c:2110 Jun 6 00:14:51 otp3 pgpool[877]: [20-1] 2016-06-06 00:14:51: pid 877: LOG: new connection received Jun 6 00:14:51 otp3 pgpool[877]: [20-2] 2016-06-06 00:14:51: pid 877: DETAIL: connecting host=10.200.1.64 port=44035 Jun 6 00:14:51 otp3 pgpool[877]: [20-3] 2016-06-06 00:14:51: pid 877: LOCATION: child.c:2110 Jun 6 00:14:51 otp3 pgpool: 2016-06-06 00:14:51: pid 877: LOG: new connection received Jun 6 00:14:51 otp3 pgpool: 2016-06-06 00:14:51: pid 877: DETAIL: connecting host=10.200.1.64 port=44035 Jun 6 00:14:51 otp3 pgpool: 2016-06-06 00:14:51: pid 877: LOCATION: child.c:2110 Jun 6 00:15:24 otp3 pgpool[879]: [23-1] 2016-06-06 00:15:24: pid 879: LOG: new connection received Jun 6 00:15:24 otp3 pgpool[879]: [23-2] 2016-06-06 00:15:24: pid 879: DETAIL: connecting host=10.200.1.64 port=57217 Jun 6 00:15:24 otp3 pgpool[879]: [23-3] 2016-06-06 00:15:24: pid 879: LOCATION: child.c:2110 Jun 6 00:15:24 otp3 pgpool: 2016-06-06 00:15:24: pid 879: LOG: new connection received Jun 6 00:15:24 otp3 pgpool: 2016-06-06 00:15:24: pid 879: DETAIL: connecting host=10.200.1.64 port=57217 Jun 6 00:15:24 otp3 pgpool: 2016-06-06 00:15:24: pid 879: LOCATION: child.c:2110 Jun 6 00:15:54 otp3 pgpool[876]: [17-1] 2016-06-06 00:15:54: pid 876: LOG: new connection received Jun 6 00:15:54 otp3 pgpool[876]: [17-2] 2016-06-06 00:15:54: pid 876: DETAIL: connecting host=10.200.1.64 port=18926 Jun 6 00:15:54 otp3 pgpool[876]: [17-3] 2016-06-06 00:15:54: pid 876: LOCATION: child.c:2110 Jun 6 00:15:54 otp3 pgpool: 2016-06-06 00:15:54: pid 876: LOG: new connection received Jun 6 00:15:54 otp3 pgpool: 2016-06-06 00:15:54: pid 876: DETAIL: connecting host=10.200.1.64 port=18926 Jun 6 00:15:54 otp3 pgpool: 2016-06-06 00:15:54: pid 876: LOCATION: child.c:2110 Jun 6 00:42:57 otp3 pgpool[878]: [37-1] 2016-06-06 00:42:57: pid 878: LOG: new connection received Jun 6 00:42:57 otp3 pgpool[878]: [37-2] 2016-06-06 00:42:57: pid 878: DETAIL: connecting host=10.200.1.64 port=54143 Jun 6 00:42:57 otp3 pgpool[878]: [37-3] 2016-06-06 00:42:57: pid 878: LOCATION: child.c:2110 Jun 6 00:42:57 otp3 pgpool: 2016-06-06 00:42:57: pid 878: LOG: new connection received Jun 6 00:42:57 otp3 pgpool: 2016-06-06 00:42:57: pid 878: DETAIL: connecting host=10.200.1.64 port=54143 Jun 6 00:42:57 otp3 pgpool: 2016-06-06 00:42:57: pid 878: LOCATION: child.c:2110 Jun 6 00:43:27 otp3 pgpool[880]: [27-1] 2016-06-06 00:43:27: pid 880: LOG: new connection received Jun 6 00:43:27 otp3 pgpool[880]: [27-2] 2016-06-06 00:43:27: pid 880: DETAIL: connecting host=10.200.1.64 port=19551 Jun 6 00:43:27 otp3 pgpool[880]: [27-3] 2016-06-06 00:43:27: pid 880: LOCATION: child.c:2110 Jun 6 00:43:27 otp3 pgpool: 2016-06-06 00:43:27: pid 880: LOG: new connection received Jun 6 00:43:27 otp3 pgpool: 2016-06-06 00:43:27: pid 880: DETAIL: connecting host=10.200.1.64 port=19551 Jun 6 00:43:27 otp3 pgpool: 2016-06-06 00:43:27: pid 880: LOCATION: child.c:2110 Jun 6 00:44:54 otp3 pgpool[877]: [21-1] 2016-06-06 00:44:54: pid 877: LOG: new connection received Jun 6 00:44:54 otp3 pgpool[877]: [21-2] 2016-06-06 00:44:54: pid 877: DETAIL: connecting host=10.200.1.64 port=39059 Jun 6 00:44:54 otp3 pgpool[877]: [21-3] 2016-06-06 00:44:54: pid 877: LOCATION: child.c:2110 Jun 6 00:44:54 otp3 pgpool: 2016-06-06 00:44:54: pid 877: LOG: new connection received Jun 6 00:44:54 otp3 pgpool: 2016-06-06 00:44:54: pid 877: DETAIL: connecting host=10.200.1.64 port=39059 Jun 6 00:44:54 otp3 pgpool: 2016-06-06 00:44:54: pid 877: LOCATION: child.c:2110 Jun 6 00:45:27 otp3 pgpool[879]: [24-1] 2016-06-06 00:45:27: pid 879: LOG: new connection received Jun 6 00:45:27 otp3 pgpool[879]: [24-2] 2016-06-06 00:45:27: pid 879: DETAIL: connecting host=10.200.1.64 port=54705 Jun 6 00:45:27 otp3 pgpool[879]: [24-3] 2016-06-06 00:45:27: pid 879: LOCATION: child.c:2110 Jun 6 00:45:27 otp3 pgpool: 2016-06-06 00:45:27: pid 879: LOG: new connection received Jun 6 00:45:27 otp3 pgpool: 2016-06-06 00:45:27: pid 879: DETAIL: connecting host=10.200.1.64 port=54705 Jun 6 00:45:27 otp3 pgpool: 2016-06-06 00:45:27: pid 879: LOCATION: child.c:2110 Jun 6 00:45:57 otp3 pgpool[876]: [18-1] 2016-06-06 00:45:57: pid 876: LOG: new connection received Jun 6 00:45:57 otp3 pgpool[876]: [18-2] 2016-06-06 00:45:57: pid 876: DETAIL: connecting host=10.200.1.64 port=21005 Jun 6 00:45:57 otp3 pgpool[876]: [18-3] 2016-06-06 00:45:57: pid 876: LOCATION: child.c:2110 Jun 6 00:45:57 otp3 pgpool: 2016-06-06 00:45:57: pid 876: LOG: new connection received Jun 6 00:45:57 otp3 pgpool: 2016-06-06 00:45:57: pid 876: DETAIL: connecting host=10.200.1.64 port=21005 Jun 6 00:45:57 otp3 pgpool: 2016-06-06 00:45:57: pid 876: LOCATION: child.c:2110 Jun 6 01:12:59 otp3 pgpool[880]: [28-1] 2016-06-06 01:12:59: pid 880: LOG: new connection received Jun 6 01:12:59 otp3 pgpool[880]: [28-2] 2016-06-06 01:12:59: pid 880: DETAIL: connecting host=10.200.1.64 port=28755 Jun 6 01:12:59 otp3 pgpool[880]: [28-3] 2016-06-06 01:12:59: pid 880: LOCATION: child.c:2110 Jun 6 01:12:59 otp3 pgpool: 2016-06-06 01:12:59: pid 880: LOG: new connection received Jun 6 01:12:59 otp3 pgpool: 2016-06-06 01:12:59: pid 880: DETAIL: connecting host=10.200.1.64 port=28755 Jun 6 01:12:59 otp3 pgpool: 2016-06-06 01:12:59: pid 880: LOCATION: child.c:2110 Jun 6 01:12:59 otp3 pgpool[878]: [38-1] 2016-06-06 01:12:59: pid 878: LOG: new connection received Jun 6 01:12:59 otp3 pgpool[878]: [38-2] 2016-06-06 01:12:59: pid 878: DETAIL: connecting host=10.200.1.64 port=56489 Jun 6 01:12:59 otp3 pgpool[878]: [38-3] 2016-06-06 01:12:59: pid 878: LOCATION: child.c:2110 Jun 6 01:12:59 otp3 pgpool: 2016-06-06 01:12:59: pid 878: LOG: new connection received Jun 6 01:12:59 otp3 pgpool: 2016-06-06 01:12:59: pid 878: DETAIL: connecting host=10.200.1.64 port=56489 Jun 6 01:12:59 otp3 pgpool: 2016-06-06 01:12:59: pid 878: LOCATION: child.c:2110 Jun 6 01:14:57 otp3 pgpool[877]: [22-1] 2016-06-06 01:14:57: pid 877: LOG: new connection received Jun 6 01:14:57 otp3 pgpool[877]: [22-2] 2016-06-06 01:14:57: pid 877: DETAIL: connecting host=10.200.1.64 port=62328 Jun 6 01:14:57 otp3 pgpool[877]: [22-3] 2016-06-06 01:14:57: pid 877: LOCATION: child.c:2110 Jun 6 01:14:57 otp3 pgpool: 2016-06-06 01:14:57: pid 877: LOG: new connection received Jun 6 01:14:57 otp3 pgpool: 2016-06-06 01:14:57: pid 877: DETAIL: connecting host=10.200.1.64 port=62328 Jun 6 01:14:57 otp3 pgpool: 2016-06-06 01:14:57: pid 877: LOCATION: child.c:2110 Jun 6 01:14:59 otp3 pgpool[879]: [25-1] 2016-06-06 01:14:59: pid 879: LOG: new connection received Jun 6 01:14:59 otp3 pgpool[879]: [25-2] 2016-06-06 01:14:59: pid 879: DETAIL: connecting host=10.200.1.64 port=47765 Jun 6 01:14:59 otp3 pgpool[879]: [25-3] 2016-06-06 01:14:59: pid 879: LOCATION: child.c:2110 Jun 6 01:14:59 otp3 pgpool: 2016-06-06 01:14:59: pid 879: LOG: new connection received Jun 6 01:14:59 otp3 pgpool: 2016-06-06 01:14:59: pid 879: DETAIL: connecting host=10.200.1.64 port=47765 Jun 6 01:14:59 otp3 pgpool: 2016-06-06 01:14:59: pid 879: LOCATION: child.c:2110 Jun 6 01:15:29 otp3 pgpool[876]: [19-1] 2016-06-06 01:15:29: pid 876: LOG: new connection received Jun 6 01:15:29 otp3 pgpool[876]: [19-2] 2016-06-06 01:15:29: pid 876: DETAIL: connecting host=10.200.1.64 port=39178 Jun 6 01:15:29 otp3 pgpool[876]: [19-3] 2016-06-06 01:15:29: pid 876: LOCATION: child.c:2110 Jun 6 01:15:29 otp3 pgpool: 2016-06-06 01:15:29: pid 876: LOG: new connection received Jun 6 01:15:29 otp3 pgpool: 2016-06-06 01:15:29: pid 876: DETAIL: connecting host=10.200.1.64 port=39178 Jun 6 01:15:29 otp3 pgpool: 2016-06-06 01:15:29: pid 876: LOCATION: child.c:2110 Jun 6 01:42:32 otp3 pgpool[878]: [39-1] 2016-06-06 01:42:32: pid 878: LOG: new connection received Jun 6 01:42:32 otp3 pgpool[878]: [39-2] 2016-06-06 01:42:32: pid 878: DETAIL: connecting host=10.200.1.64 port=20610 Jun 6 01:42:32 otp3 pgpool[878]: [39-3] 2016-06-06 01:42:32: pid 878: LOCATION: child.c:2110 Jun 6 01:42:32 otp3 pgpool: 2016-06-06 01:42:32: pid 878: LOG: new connection received Jun 6 01:42:32 otp3 pgpool: 2016-06-06 01:42:32: pid 878: DETAIL: connecting host=10.200.1.64 port=20610 Jun 6 01:42:32 otp3 pgpool: 2016-06-06 01:42:32: pid 878: LOCATION: child.c:2110 Jun 6 01:43:02 otp3 pgpool[880]: [29-1] 2016-06-06 01:43:02: pid 880: LOG: new connection received Jun 6 01:43:02 otp3 pgpool[880]: [29-2] 2016-06-06 01:43:02: pid 880: DETAIL: connecting host=10.200.1.64 port=18190 Jun 6 01:43:02 otp3 pgpool[880]: [29-3] 2016-06-06 01:43:02: pid 880: LOCATION: child.c:2110 Jun 6 01:43:02 otp3 pgpool: 2016-06-06 01:43:02: pid 880: LOG: new connection received Jun 6 01:43:02 otp3 pgpool: 2016-06-06 01:43:02: pid 880: DETAIL: connecting host=10.200.1.64 port=18190 Jun 6 01:43:02 otp3 pgpool: 2016-06-06 01:43:02: pid 880: LOCATION: child.c:2110 Jun 6 01:45:00 otp3 pgpool[876]: [20-1] 2016-06-06 01:45:00: pid 876: LOG: new connection received Jun 6 01:45:00 otp3 pgpool[876]: [20-2] 2016-06-06 01:45:00: pid 876: DETAIL: connecting host=10.200.1.64 port=11459 Jun 6 01:45:00 otp3 pgpool[876]: [20-3] 2016-06-06 01:45:00: pid 876: LOCATION: child.c:2110 Jun 6 01:45:00 otp3 pgpool: 2016-06-06 01:45:00: pid 876: LOG: new connection received Jun 6 01:45:00 otp3 pgpool: 2016-06-06 01:45:00: pid 876: DETAIL: connecting host=10.200.1.64 port=11459 Jun 6 01:45:00 otp3 pgpool: 2016-06-06 01:45:00: pid 876: LOCATION: child.c:2110 Jun 6 01:45:02 otp3 pgpool[877]: [23-1] 2016-06-06 01:45:02: pid 877: LOG: new connection received Jun 6 01:45:02 otp3 pgpool[877]: [23-2] 2016-06-06 01:45:02: pid 877: DETAIL: connecting host=10.200.1.64 port=59955 Jun 6 01:45:02 otp3 pgpool[877]: [23-3] 2016-06-06 01:45:02: pid 877: LOCATION: child.c:2110 Jun 6 01:45:02 otp3 pgpool: 2016-06-06 01:45:02: pid 877: LOG: new connection received Jun 6 01:45:02 otp3 pgpool: 2016-06-06 01:45:02: pid 877: DETAIL: connecting host=10.200.1.64 port=59955 Jun 6 01:45:02 otp3 pgpool: 2016-06-06 01:45:02: pid 877: LOCATION: child.c:2110 Jun 6 01:45:02 otp3 pgpool[879]: [26-1] 2016-06-06 01:45:02: pid 879: LOG: new connection received Jun 6 01:45:02 otp3 pgpool[879]: [26-2] 2016-06-06 01:45:02: pid 879: DETAIL: connecting host=10.200.1.64 port=15521 Jun 6 01:45:02 otp3 pgpool[879]: [26-3] 2016-06-06 01:45:02: pid 879: LOCATION: child.c:2110 Jun 6 01:45:02 otp3 pgpool: 2016-06-06 01:45:02: pid 879: LOG: new connection received Jun 6 01:45:02 otp3 pgpool: 2016-06-06 01:45:02: pid 879: DETAIL: connecting host=10.200.1.64 port=15521 Jun 6 01:45:02 otp3 pgpool: 2016-06-06 01:45:02: pid 879: LOCATION: child.c:2110 Jun 6 02:12:05 otp3 pgpool[878]: [40-1] 2016-06-06 02:12:05: pid 878: LOG: new connection received Jun 6 02:12:05 otp3 pgpool[878]: [40-2] 2016-06-06 02:12:05: pid 878: DETAIL: connecting host=10.200.1.64 port=34021 Jun 6 02:12:05 otp3 pgpool[878]: [40-3] 2016-06-06 02:12:05: pid 878: LOCATION: child.c:2110 Jun 6 02:12:05 otp3 pgpool: 2016-06-06 02:12:05: pid 878: LOG: new connection received Jun 6 02:12:05 otp3 pgpool: 2016-06-06 02:12:05: pid 878: DETAIL: connecting host=10.200.1.64 port=34021 Jun 6 02:12:05 otp3 pgpool: 2016-06-06 02:12:05: pid 878: LOCATION: child.c:2110 Jun 6 02:13:05 otp3 pgpool[880]: [30-1] 2016-06-06 02:13:05: pid 880: LOG: new connection received Jun 6 02:13:05 otp3 pgpool[880]: [30-2] 2016-06-06 02:13:05: pid 880: DETAIL: connecting host=10.200.1.64 port=48254 Jun 6 02:13:05 otp3 pgpool[880]: [30-3] 2016-06-06 02:13:05: pid 880: LOCATION: child.c:2110 Jun 6 02:13:05 otp3 pgpool: 2016-06-06 02:13:05: pid 880: LOG: new connection received Jun 6 02:13:05 otp3 pgpool: 2016-06-06 02:13:05: pid 880: DETAIL: connecting host=10.200.1.64 port=48254 Jun 6 02:13:05 otp3 pgpool: 2016-06-06 02:13:05: pid 880: LOCATION: child.c:2110 Jun 6 02:14:36 otp3 pgpool[877]: [24-1] 2016-06-06 02:14:36: pid 877: LOG: new connection received Jun 6 02:14:36 otp3 pgpool[877]: [24-2] 2016-06-06 02:14:36: pid 877: DETAIL: connecting host=10.200.1.64 port=35353 Jun 6 02:14:36 otp3 pgpool[877]: [24-3] 2016-06-06 02:14:36: pid 877: LOCATION: child.c:2110 Jun 6 02:14:36 otp3 pgpool: 2016-06-06 02:14:36: pid 877: LOG: new connection received Jun 6 02:14:36 otp3 pgpool: 2016-06-06 02:14:36: pid 877: DETAIL: connecting host=10.200.1.64 port=35353 Jun 6 02:14:36 otp3 pgpool: 2016-06-06 02:14:36: pid 877: LOCATION: child.c:2110 Jun 6 02:15:03 otp3 pgpool[876]: [21-1] 2016-06-06 02:15:03: pid 876: LOG: new connection received Jun 6 02:15:03 otp3 pgpool[876]: [21-2] 2016-06-06 02:15:03: pid 876: DETAIL: connecting host=10.200.1.64 port=44084 Jun 6 02:15:03 otp3 pgpool[876]: [21-3] 2016-06-06 02:15:03: pid 876: LOCATION: child.c:2110 Jun 6 02:15:03 otp3 pgpool: 2016-06-06 02:15:03: pid 876: LOG: new connection received Jun 6 02:15:03 otp3 pgpool: 2016-06-06 02:15:03: pid 876: DETAIL: connecting host=10.200.1.64 port=44084 Jun 6 02:15:03 otp3 pgpool: 2016-06-06 02:15:03: pid 876: LOCATION: child.c:2110 Jun 6 02:15:06 otp3 pgpool[879]: [27-1] 2016-06-06 02:15:06: pid 879: LOG: new connection received Jun 6 02:15:06 otp3 pgpool[879]: [27-2] 2016-06-06 02:15:06: pid 879: DETAIL: connecting host=10.200.1.64 port=37517 Jun 6 02:15:06 otp3 pgpool[879]: [27-3] 2016-06-06 02:15:06: pid 879: LOCATION: child.c:2110 Jun 6 02:15:06 otp3 pgpool: 2016-06-06 02:15:06: pid 879: LOG: new connection received Jun 6 02:15:06 otp3 pgpool: 2016-06-06 02:15:06: pid 879: DETAIL: connecting host=10.200.1.64 port=37517 Jun 6 02:15:06 otp3 pgpool: 2016-06-06 02:15:06: pid 879: LOCATION: child.c:2110 Jun 6 02:42:09 otp3 pgpool[878]: [41-1] 2016-06-06 02:42:09: pid 878: LOG: new connection received Jun 6 02:42:09 otp3 pgpool[878]: [41-2] 2016-06-06 02:42:09: pid 878: DETAIL: connecting host=10.200.1.64 port=14216 Jun 6 02:42:09 otp3 pgpool[878]: [41-3] 2016-06-06 02:42:09: pid 878: LOCATION: child.c:2110 Jun 6 02:42:09 otp3 pgpool: 2016-06-06 02:42:09: pid 878: LOG: new connection received Jun 6 02:42:09 otp3 pgpool: 2016-06-06 02:42:09: pid 878: DETAIL: connecting host=10.200.1.64 port=14216 Jun 6 02:42:09 otp3 pgpool: 2016-06-06 02:42:09: pid 878: LOCATION: child.c:2110 Jun 6 02:43:09 otp3 pgpool[880]: [31-1] 2016-06-06 02:43:09: pid 880: LOG: new connection received Jun 6 02:43:09 otp3 pgpool[880]: [31-2] 2016-06-06 02:43:09: pid 880: DETAIL: connecting host=10.200.1.64 port=24681 Jun 6 02:43:09 otp3 pgpool[880]: [31-3] 2016-06-06 02:43:09: pid 880: LOCATION: child.c:2110 Jun 6 02:43:09 otp3 pgpool: 2016-06-06 02:43:09: pid 880: LOG: new connection received Jun 6 02:43:09 otp3 pgpool: 2016-06-06 02:43:09: pid 880: DETAIL: connecting host=10.200.1.64 port=24681 Jun 6 02:43:09 otp3 pgpool: 2016-06-06 02:43:09: pid 880: LOCATION: child.c:2110 Jun 6 02:44:36 otp3 pgpool[877]: [25-1] 2016-06-06 02:44:36: pid 877: LOG: new connection received Jun 6 02:44:36 otp3 pgpool[877]: [25-2] 2016-06-06 02:44:36: pid 877: DETAIL: connecting host=10.200.1.64 port=48709 Jun 6 02:44:36 otp3 pgpool[877]: [25-3] 2016-06-06 02:44:36: pid 877: LOCATION: child.c:2110 Jun 6 02:44:36 otp3 pgpool: 2016-06-06 02:44:36: pid 877: LOG: new connection received Jun 6 02:44:36 otp3 pgpool: 2016-06-06 02:44:36: pid 877: DETAIL: connecting host=10.200.1.64 port=48709 Jun 6 02:44:36 otp3 pgpool: 2016-06-06 02:44:36: pid 877: LOCATION: child.c:2110 Jun 6 02:44:39 otp3 pgpool[876]: [22-1] 2016-06-06 02:44:39: pid 876: LOG: new connection received Jun 6 02:44:39 otp3 pgpool[876]: [22-2] 2016-06-06 02:44:39: pid 876: DETAIL: connecting host=10.200.1.64 port=59952 Jun 6 02:44:39 otp3 pgpool[876]: [22-3] 2016-06-06 02:44:39: pid 876: LOCATION: child.c:2110 Jun 6 02:44:39 otp3 pgpool: 2016-06-06 02:44:39: pid 876: LOG: new connection received Jun 6 02:44:39 otp3 pgpool: 2016-06-06 02:44:39: pid 876: DETAIL: connecting host=10.200.1.64 port=59952 Jun 6 02:44:39 otp3 pgpool: 2016-06-06 02:44:39: pid 876: LOCATION: child.c:2110 Jun 6 02:45:09 otp3 pgpool[879]: [28-1] 2016-06-06 02:45:09: pid 879: LOG: new connection received Jun 6 02:45:09 otp3 pgpool[879]: [28-2] 2016-06-06 02:45:09: pid 879: DETAIL: connecting host=10.200.1.64 port=14155 Jun 6 02:45:09 otp3 pgpool[879]: [28-3] 2016-06-06 02:45:09: pid 879: LOCATION: child.c:2110 Jun 6 02:45:09 otp3 pgpool: 2016-06-06 02:45:09: pid 879: LOG: new connection received Jun 6 02:45:09 otp3 pgpool: 2016-06-06 02:45:09: pid 879: DETAIL: connecting host=10.200.1.64 port=14155 Jun 6 02:45:09 otp3 pgpool: 2016-06-06 02:45:09: pid 879: LOCATION: child.c:2110 Jun 6 03:11:42 otp3 pgpool[878]: [42-1] 2016-06-06 03:11:42: pid 878: LOG: new connection received Jun 6 03:11:42 otp3 pgpool[878]: [42-2] 2016-06-06 03:11:42: pid 878: DETAIL: connecting host=10.200.1.64 port=62066 Jun 6 03:11:42 otp3 pgpool[878]: [42-3] 2016-06-06 03:11:42: pid 878: LOCATION: child.c:2110 Jun 6 03:11:42 otp3 pgpool: 2016-06-06 03:11:42: pid 878: LOG: new connection received Jun 6 03:11:42 otp3 pgpool: 2016-06-06 03:11:42: pid 878: DETAIL: connecting host=10.200.1.64 port=62066 Jun 6 03:11:42 otp3 pgpool: 2016-06-06 03:11:42: pid 878: LOCATION: child.c:2110 Jun 6 03:13:13 otp3 pgpool[880]: [32-1] 2016-06-06 03:13:13: pid 880: LOG: new connection received Jun 6 03:13:13 otp3 pgpool[880]: [32-2] 2016-06-06 03:13:13: pid 880: DETAIL: connecting host=10.200.1.64 port=18116 Jun 6 03:13:13 otp3 pgpool[880]: [32-3] 2016-06-06 03:13:13: pid 880: LOCATION: child.c:2110 Jun 6 03:13:13 otp3 pgpool: 2016-06-06 03:13:13: pid 880: LOG: new connection received Jun 6 03:13:13 otp3 pgpool: 2016-06-06 03:13:13: pid 880: DETAIL: connecting host=10.200.1.64 port=18116 Jun 6 03:13:13 otp3 pgpool: 2016-06-06 03:13:13: pid 880: LOCATION: child.c:2110 Jun 6 03:14:39 otp3 pgpool[879]: [29-1] 2016-06-06 03:14:39: pid 879: LOG: new connection received Jun 6 03:14:39 otp3 pgpool[879]: [29-2] 2016-06-06 03:14:39: pid 879: DETAIL: connecting host=10.200.1.64 port=34404 Jun 6 03:14:39 otp3 pgpool[879]: [29-3] 2016-06-06 03:14:39: pid 879: LOCATION: child.c:2110 Jun 6 03:14:39 otp3 pgpool: 2016-06-06 03:14:39: pid 879: LOG: new connection received Jun 6 03:14:39 otp3 pgpool: 2016-06-06 03:14:39: pid 879: DETAIL: connecting host=10.200.1.64 port=34404 Jun 6 03:14:39 otp3 pgpool: 2016-06-06 03:14:39: pid 879: LOCATION: child.c:2110 Jun 6 03:14:43 otp3 pgpool[876]: [23-1] 2016-06-06 03:14:43: pid 876: LOG: new connection received Jun 6 03:14:43 otp3 pgpool[876]: [23-2] 2016-06-06 03:14:43: pid 876: DETAIL: connecting host=10.200.1.64 port=29332 Jun 6 03:14:43 otp3 pgpool[876]: [23-3] 2016-06-06 03:14:43: pid 876: LOCATION: child.c:2110 Jun 6 03:14:43 otp3 pgpool: 2016-06-06 03:14:43: pid 876: LOG: new connection received Jun 6 03:14:43 otp3 pgpool: 2016-06-06 03:14:43: pid 876: DETAIL: connecting host=10.200.1.64 port=29332 Jun 6 03:14:43 otp3 pgpool: 2016-06-06 03:14:43: pid 876: LOCATION: child.c:2110 Jun 6 03:14:43 otp3 pgpool[877]: [26-1] 2016-06-06 03:14:43: pid 877: LOG: new connection received Jun 6 03:14:43 otp3 pgpool[877]: [26-2] 2016-06-06 03:14:43: pid 877: DETAIL: connecting host=10.200.1.64 port=40974 Jun 6 03:14:43 otp3 pgpool[877]: [26-3] 2016-06-06 03:14:43: pid 877: LOCATION: child.c:2110 Jun 6 03:14:43 otp3 pgpool: 2016-06-06 03:14:43: pid 877: LOG: new connection received Jun 6 03:14:43 otp3 pgpool: 2016-06-06 03:14:43: pid 877: DETAIL: connecting host=10.200.1.64 port=40974 Jun 6 03:14:43 otp3 pgpool: 2016-06-06 03:14:43: pid 877: LOCATION: child.c:2110 Jun 6 03:41:17 otp3 pgpool[878]: [43-1] 2016-06-06 03:41:17: pid 878: LOG: new connection received Jun 6 03:41:17 otp3 pgpool[878]: [43-2] 2016-06-06 03:41:17: pid 878: DETAIL: connecting host=10.200.1.64 port=33799 Jun 6 03:41:17 otp3 pgpool[878]: [43-3] 2016-06-06 03:41:17: pid 878: LOCATION: child.c:2110 Jun 6 03:41:17 otp3 pgpool: 2016-06-06 03:41:17: pid 878: LOG: new connection received Jun 6 03:41:17 otp3 pgpool: 2016-06-06 03:41:17: pid 878: DETAIL: connecting host=10.200.1.64 port=33799 Jun 6 03:41:17 otp3 pgpool: 2016-06-06 03:41:17: pid 878: LOCATION: child.c:2110 Jun 6 03:43:18 otp3 pgpool[880]: [33-1] 2016-06-06 03:43:18: pid 880: LOG: new connection received Jun 6 03:43:18 otp3 pgpool[880]: [33-2] 2016-06-06 03:43:18: pid 880: DETAIL: connecting host=10.200.1.64 port=43118 Jun 6 03:43:18 otp3 pgpool[880]: [33-3] 2016-06-06 03:43:18: pid 880: LOCATION: child.c:2110 Jun 6 03:43:18 otp3 pgpool: 2016-06-06 03:43:18: pid 880: LOG: new connection received Jun 6 03:43:18 otp3 pgpool: 2016-06-06 03:43:18: pid 880: DETAIL: connecting host=10.200.1.64 port=43118 Jun 6 03:43:18 otp3 pgpool: 2016-06-06 03:43:18: pid 880: LOCATION: child.c:2110 Jun 6 03:44:12 otp3 pgpool[879]: [30-1] 2016-06-06 03:44:12: pid 879: LOG: new connection received Jun 6 03:44:12 otp3 pgpool[879]: [30-2] 2016-06-06 03:44:12: pid 879: DETAIL: connecting host=10.200.1.64 port=55972 Jun 6 03:44:12 otp3 pgpool[879]: [30-3] 2016-06-06 03:44:12: pid 879: LOCATION: child.c:2110 Jun 6 03:44:12 otp3 pgpool: 2016-06-06 03:44:12: pid 879: LOG: new connection received Jun 6 03:44:12 otp3 pgpool: 2016-06-06 03:44:12: pid 879: DETAIL: connecting host=10.200.1.64 port=55972 Jun 6 03:44:12 otp3 pgpool: 2016-06-06 03:44:12: pid 879: LOCATION: child.c:2110 Jun 6 03:44:27 otp3 pgpool[876]: [24-1] 2016-06-06 03:44:27: pid 876: LOG: new connection received Jun 6 03:44:27 otp3 pgpool[876]: [24-2] 2016-06-06 03:44:27: pid 876: DETAIL: connecting host=10.200.1.64 port=18686 Jun 6 03:44:27 otp3 pgpool[876]: [24-3] 2016-06-06 03:44:27: pid 876: LOCATION: child.c:2110 Jun 6 03:44:27 otp3 pgpool: 2016-06-06 03:44:27: pid 876: LOG: new connection received Jun 6 03:44:27 otp3 pgpool: 2016-06-06 03:44:27: pid 876: DETAIL: connecting host=10.200.1.64 port=18686 Jun 6 03:44:27 otp3 pgpool: 2016-06-06 03:44:27: pid 876: LOCATION: child.c:2110 Jun 6 03:44:48 otp3 pgpool[877]: [27-1] 2016-06-06 03:44:48: pid 877: LOG: new connection received Jun 6 03:44:48 otp3 pgpool[877]: [27-2] 2016-06-06 03:44:48: pid 877: DETAIL: connecting host=10.200.1.64 port=36586 Jun 6 03:44:48 otp3 pgpool[877]: [27-3] 2016-06-06 03:44:48: pid 877: LOCATION: child.c:2110 Jun 6 03:44:48 otp3 pgpool: 2016-06-06 03:44:48: pid 877: LOG: new connection received Jun 6 03:44:48 otp3 pgpool: 2016-06-06 03:44:48: pid 877: DETAIL: connecting host=10.200.1.64 port=36586 Jun 6 03:44:48 otp3 pgpool: 2016-06-06 03:44:48: pid 877: LOCATION: child.c:2110 Jun 6 04:11:21 otp3 pgpool[878]: [44-1] 2016-06-06 04:11:21: pid 878: LOG: new connection received Jun 6 04:11:21 otp3 pgpool[878]: [44-2] 2016-06-06 04:11:21: pid 878: DETAIL: connecting host=10.200.1.64 port=19059 Jun 6 04:11:21 otp3 pgpool[878]: [44-3] 2016-06-06 04:11:21: pid 878: LOCATION: child.c:2110 Jun 6 04:11:21 otp3 pgpool: 2016-06-06 04:11:21: pid 878: LOG: new connection received Jun 6 04:11:21 otp3 pgpool: 2016-06-06 04:11:21: pid 878: DETAIL: connecting host=10.200.1.64 port=19059 Jun 6 04:11:21 otp3 pgpool: 2016-06-06 04:11:21: pid 878: LOCATION: child.c:2110 Jun 6 04:12:51 otp3 pgpool[880]: [34-1] 2016-06-06 04:12:51: pid 880: LOG: new connection received Jun 6 04:12:51 otp3 pgpool[880]: [34-2] 2016-06-06 04:12:51: pid 880: DETAIL: connecting host=10.200.1.64 port=58727 Jun 6 04:12:51 otp3 pgpool[880]: [34-3] 2016-06-06 04:12:51: pid 880: LOCATION: child.c:2110 Jun 6 04:12:51 otp3 pgpool: 2016-06-06 04:12:51: pid 880: LOG: new connection received Jun 6 04:12:51 otp3 pgpool: 2016-06-06 04:12:51: pid 880: DETAIL: connecting host=10.200.1.64 port=58727 Jun 6 04:12:51 otp3 pgpool: 2016-06-06 04:12:51: pid 880: LOCATION: child.c:2110 Jun 6 04:14:16 otp3 pgpool[879]: [31-1] 2016-06-06 04:14:16: pid 879: LOG: new connection received Jun 6 04:14:16 otp3 pgpool[879]: [31-2] 2016-06-06 04:14:16: pid 879: DETAIL: connecting host=10.200.1.64 port=59841 Jun 6 04:14:16 otp3 pgpool[879]: [31-3] 2016-06-06 04:14:16: pid 879: LOCATION: child.c:2110 Jun 6 04:14:16 otp3 pgpool: 2016-06-06 04:14:16: pid 879: LOG: new connection received Jun 6 04:14:16 otp3 pgpool: 2016-06-06 04:14:16: pid 879: DETAIL: connecting host=10.200.1.64 port=59841 Jun 6 04:14:16 otp3 pgpool: 2016-06-06 04:14:16: pid 879: LOCATION: child.c:2110 Jun 6 04:14:22 otp3 pgpool[876]: [25-1] 2016-06-06 04:14:22: pid 876: LOG: new connection received Jun 6 04:14:22 otp3 pgpool[876]: [25-2] 2016-06-06 04:14:22: pid 876: DETAIL: connecting host=10.200.1.64 port=42489 Jun 6 04:14:22 otp3 pgpool[876]: [25-3] 2016-06-06 04:14:22: pid 876: LOCATION: child.c:2110 Jun 6 04:14:22 otp3 pgpool: 2016-06-06 04:14:22: pid 876: LOG: new connection received Jun 6 04:14:22 otp3 pgpool: 2016-06-06 04:14:22: pid 876: DETAIL: connecting host=10.200.1.64 port=42489 Jun 6 04:14:22 otp3 pgpool: 2016-06-06 04:14:22: pid 876: LOCATION: child.c:2110 Jun 6 04:14:52 otp3 pgpool[877]: [28-1] 2016-06-06 04:14:52: pid 877: LOG: new connection received Jun 6 04:14:52 otp3 pgpool[877]: [28-2] 2016-06-06 04:14:52: pid 877: DETAIL: connecting host=10.200.1.64 port=28355 Jun 6 04:14:52 otp3 pgpool[877]: [28-3] 2016-06-06 04:14:52: pid 877: LOCATION: child.c:2110 Jun 6 04:14:52 otp3 pgpool: 2016-06-06 04:14:52: pid 877: LOG: new connection received Jun 6 04:14:52 otp3 pgpool: 2016-06-06 04:14:52: pid 877: DETAIL: connecting host=10.200.1.64 port=28355 Jun 6 04:14:52 otp3 pgpool: 2016-06-06 04:14:52: pid 877: LOCATION: child.c:2110 Jun 6 04:41:25 otp3 pgpool[878]: [45-1] 2016-06-06 04:41:25: pid 878: LOG: new connection received Jun 6 04:41:25 otp3 pgpool[878]: [45-2] 2016-06-06 04:41:25: pid 878: DETAIL: connecting host=10.200.1.64 port=36948 Jun 6 04:41:25 otp3 pgpool[878]: [45-3] 2016-06-06 04:41:25: pid 878: LOCATION: child.c:2110 Jun 6 04:41:25 otp3 pgpool: 2016-06-06 04:41:25: pid 878: LOG: new connection received Jun 6 04:41:25 otp3 pgpool: 2016-06-06 04:41:25: pid 878: DETAIL: connecting host=10.200.1.64 port=36948 Jun 6 04:41:25 otp3 pgpool: 2016-06-06 04:41:25: pid 878: LOCATION: child.c:2110 Jun 6 04:42:55 otp3 pgpool[880]: [35-1] 2016-06-06 04:42:55: pid 880: LOG: new connection received Jun 6 04:42:55 otp3 pgpool[880]: [35-2] 2016-06-06 04:42:55: pid 880: DETAIL: connecting host=10.200.1.64 port=30227 Jun 6 04:42:55 otp3 pgpool[880]: [35-3] 2016-06-06 04:42:55: pid 880: LOCATION: child.c:2110 Jun 6 04:42:55 otp3 pgpool: 2016-06-06 04:42:55: pid 880: LOG: new connection received Jun 6 04:42:55 otp3 pgpool: 2016-06-06 04:42:55: pid 880: DETAIL: connecting host=10.200.1.64 port=30227 Jun 6 04:42:55 otp3 pgpool: 2016-06-06 04:42:55: pid 880: LOCATION: child.c:2110 Jun 6 04:43:49 otp3 pgpool[879]: [32-1] 2016-06-06 04:43:49: pid 879: LOG: new connection received Jun 6 04:43:49 otp3 pgpool[879]: [32-2] 2016-06-06 04:43:49: pid 879: DETAIL: connecting host=10.200.1.64 port=63325 Jun 6 04:43:49 otp3 pgpool[879]: [32-3] 2016-06-06 04:43:49: pid 879: LOCATION: child.c:2110 Jun 6 04:43:49 otp3 pgpool: 2016-06-06 04:43:49: pid 879: LOG: new connection received Jun 6 04:43:49 otp3 pgpool: 2016-06-06 04:43:49: pid 879: DETAIL: connecting host=10.200.1.64 port=63325 Jun 6 04:43:49 otp3 pgpool: 2016-06-06 04:43:49: pid 879: LOCATION: child.c:2110 Jun 6 04:44:25 otp3 pgpool[876]: [26-1] 2016-06-06 04:44:25: pid 876: LOG: new connection received Jun 6 04:44:25 otp3 pgpool[876]: [26-2] 2016-06-06 04:44:25: pid 876: DETAIL: connecting host=10.200.1.64 port=31670 Jun 6 04:44:25 otp3 pgpool[876]: [26-3] 2016-06-06 04:44:25: pid 876: LOCATION: child.c:2110 Jun 6 04:44:25 otp3 pgpool: 2016-06-06 04:44:25: pid 876: LOG: new connection received Jun 6 04:44:25 otp3 pgpool: 2016-06-06 04:44:25: pid 876: DETAIL: connecting host=10.200.1.64 port=31670 Jun 6 04:44:25 otp3 pgpool: 2016-06-06 04:44:25: pid 876: LOCATION: child.c:2110 Jun 6 04:44:25 otp3 pgpool[877]: [29-1] 2016-06-06 04:44:25: pid 877: LOG: new connection received Jun 6 04:44:25 otp3 pgpool[877]: [29-2] 2016-06-06 04:44:25: pid 877: DETAIL: connecting host=10.200.1.64 port=19220 Jun 6 04:44:25 otp3 pgpool[877]: [29-3] 2016-06-06 04:44:25: pid 877: LOCATION: child.c:2110 Jun 6 04:44:25 otp3 pgpool: 2016-06-06 04:44:25: pid 877: LOG: new connection received Jun 6 04:44:25 otp3 pgpool: 2016-06-06 04:44:25: pid 877: DETAIL: connecting host=10.200.1.64 port=19220 Jun 6 04:44:25 otp3 pgpool: 2016-06-06 04:44:25: pid 877: LOCATION: child.c:2110 Jun 6 05:11:29 otp3 pgpool[878]: [46-1] 2016-06-06 05:11:29: pid 878: LOG: new connection received Jun 6 05:11:29 otp3 pgpool[878]: [46-2] 2016-06-06 05:11:29: pid 878: DETAIL: connecting host=10.200.1.64 port=64344 Jun 6 05:11:29 otp3 pgpool[878]: [46-3] 2016-06-06 05:11:29: pid 878: LOCATION: child.c:2110 Jun 6 05:11:29 otp3 pgpool: 2016-06-06 05:11:29: pid 878: LOG: new connection received Jun 6 05:11:29 otp3 pgpool: 2016-06-06 05:11:29: pid 878: DETAIL: connecting host=10.200.1.64 port=64344 Jun 6 05:11:29 otp3 pgpool: 2016-06-06 05:11:29: pid 878: LOCATION: child.c:2110 Jun 6 05:12:59 otp3 pgpool[880]: [36-1] 2016-06-06 05:12:59: pid 880: LOG: new connection received Jun 6 05:12:59 otp3 pgpool[880]: [36-2] 2016-06-06 05:12:59: pid 880: DETAIL: connecting host=10.200.1.64 port=58732 Jun 6 05:12:59 otp3 pgpool[880]: [36-3] 2016-06-06 05:12:59: pid 880: LOCATION: child.c:2110 Jun 6 05:12:59 otp3 pgpool: 2016-06-06 05:12:59: pid 880: LOG: new connection received Jun 6 05:12:59 otp3 pgpool: 2016-06-06 05:12:59: pid 880: DETAIL: connecting host=10.200.1.64 port=58732 Jun 6 05:12:59 otp3 pgpool: 2016-06-06 05:12:59: pid 880: LOCATION: child.c:2110 Jun 6 05:13:22 otp3 pgpool[879]: [33-1] 2016-06-06 05:13:22: pid 879: LOG: new connection received Jun 6 05:13:22 otp3 pgpool[879]: [33-2] 2016-06-06 05:13:22: pid 879: DETAIL: connecting host=10.200.1.64 port=50618 Jun 6 05:13:22 otp3 pgpool[879]: [33-3] 2016-06-06 05:13:22: pid 879: LOCATION: child.c:2110 Jun 6 05:13:22 otp3 pgpool: 2016-06-06 05:13:22: pid 879: LOG: new connection received Jun 6 05:13:22 otp3 pgpool: 2016-06-06 05:13:22: pid 879: DETAIL: connecting host=10.200.1.64 port=50618 Jun 6 05:13:22 otp3 pgpool: 2016-06-06 05:13:22: pid 879: LOCATION: child.c:2110 Jun 6 05:13:59 otp3 pgpool[876]: [27-1] 2016-06-06 05:13:59: pid 876: LOG: new connection received Jun 6 05:13:59 otp3 pgpool[876]: [27-2] 2016-06-06 05:13:59: pid 876: DETAIL: connecting host=10.200.1.64 port=22754 Jun 6 05:13:59 otp3 pgpool[876]: [27-3] 2016-06-06 05:13:59: pid 876: LOCATION: child.c:2110 Jun 6 05:13:59 otp3 pgpool: 2016-06-06 05:13:59: pid 876: LOG: new connection received Jun 6 05:13:59 otp3 pgpool: 2016-06-06 05:13:59: pid 876: DETAIL: connecting host=10.200.1.64 port=22754 Jun 6 05:13:59 otp3 pgpool: 2016-06-06 05:13:59: pid 876: LOCATION: child.c:2110 Jun 6 05:14:29 otp3 pgpool[877]: [30-1] 2016-06-06 05:14:29: pid 877: LOG: new connection received Jun 6 05:14:29 otp3 pgpool[877]: [30-2] 2016-06-06 05:14:29: pid 877: DETAIL: connecting host=10.200.1.64 port=39241 Jun 6 05:14:29 otp3 pgpool[877]: [30-3] 2016-06-06 05:14:29: pid 877: LOCATION: child.c:2110 Jun 6 05:14:29 otp3 pgpool: 2016-06-06 05:14:29: pid 877: LOG: new connection received Jun 6 05:14:29 otp3 pgpool: 2016-06-06 05:14:29: pid 877: DETAIL: connecting host=10.200.1.64 port=39241 Jun 6 05:14:29 otp3 pgpool: 2016-06-06 05:14:29: pid 877: LOCATION: child.c:2110 Jun 6 05:41:03 otp3 pgpool[878]: [47-1] 2016-06-06 05:41:03: pid 878: LOG: new connection received Jun 6 05:41:03 otp3 pgpool[878]: [47-2] 2016-06-06 05:41:03: pid 878: DETAIL: connecting host=10.200.1.64 port=28269 Jun 6 05:41:03 otp3 pgpool[878]: [47-3] 2016-06-06 05:41:03: pid 878: LOCATION: child.c:2110 Jun 6 05:41:03 otp3 pgpool: 2016-06-06 05:41:03: pid 878: LOG: new connection received Jun 6 05:41:03 otp3 pgpool: 2016-06-06 05:41:03: pid 878: DETAIL: connecting host=10.200.1.64 port=28269 Jun 6 05:41:03 otp3 pgpool: 2016-06-06 05:41:03: pid 878: LOCATION: child.c:2110 Jun 6 05:42:33 otp3 pgpool[880]: [37-1] 2016-06-06 05:42:33: pid 880: LOG: new connection received Jun 6 05:42:33 otp3 pgpool[880]: [37-2] 2016-06-06 05:42:33: pid 880: DETAIL: connecting host=10.200.1.64 port=37044 Jun 6 05:42:33 otp3 pgpool[880]: [37-3] 2016-06-06 05:42:33: pid 880: LOCATION: child.c:2110 Jun 6 05:42:33 otp3 pgpool: 2016-06-06 05:42:33: pid 880: LOG: new connection received Jun 6 05:42:33 otp3 pgpool: 2016-06-06 05:42:33: pid 880: DETAIL: connecting host=10.200.1.64 port=37044 Jun 6 05:42:33 otp3 pgpool: 2016-06-06 05:42:33: pid 880: LOCATION: child.c:2110 Jun 6 05:42:55 otp3 pgpool[879]: [34-1] 2016-06-06 05:42:55: pid 879: LOG: new connection received Jun 6 05:42:55 otp3 pgpool[879]: [34-2] 2016-06-06 05:42:55: pid 879: DETAIL: connecting host=10.200.1.64 port=36975 Jun 6 05:42:55 otp3 pgpool[879]: [34-3] 2016-06-06 05:42:55: pid 879: LOCATION: child.c:2110 Jun 6 05:42:55 otp3 pgpool: 2016-06-06 05:42:55: pid 879: LOG: new connection received Jun 6 05:42:55 otp3 pgpool: 2016-06-06 05:42:55: pid 879: DETAIL: connecting host=10.200.1.64 port=36975 Jun 6 05:42:55 otp3 pgpool: 2016-06-06 05:42:55: pid 879: LOCATION: child.c:2110 Jun 6 05:43:33 otp3 pgpool[876]: [28-1] 2016-06-06 05:43:33: pid 876: LOG: new connection received Jun 6 05:43:33 otp3 pgpool[876]: [28-2] 2016-06-06 05:43:33: pid 876: DETAIL: connecting host=10.200.1.64 port=20625 Jun 6 05:43:33 otp3 pgpool[876]: [28-3] 2016-06-06 05:43:33: pid 876: LOCATION: child.c:2110 Jun 6 05:43:33 otp3 pgpool: 2016-06-06 05:43:33: pid 876: LOG: new connection received Jun 6 05:43:33 otp3 pgpool: 2016-06-06 05:43:33: pid 876: DETAIL: connecting host=10.200.1.64 port=20625 Jun 6 05:43:33 otp3 pgpool: 2016-06-06 05:43:33: pid 876: LOCATION: child.c:2110 Jun 6 05:44:03 otp3 pgpool[877]: [31-1] 2016-06-06 05:44:03: pid 877: LOG: new connection received Jun 6 05:44:03 otp3 pgpool[877]: [31-2] 2016-06-06 05:44:03: pid 877: DETAIL: connecting host=10.200.1.64 port=19093 Jun 6 05:44:03 otp3 pgpool[877]: [31-3] 2016-06-06 05:44:03: pid 877: LOCATION: child.c:2110 Jun 6 05:44:03 otp3 pgpool: 2016-06-06 05:44:03: pid 877: LOG: new connection received Jun 6 05:44:03 otp3 pgpool: 2016-06-06 05:44:03: pid 877: DETAIL: connecting host=10.200.1.64 port=19093 Jun 6 05:44:03 otp3 pgpool: 2016-06-06 05:44:03: pid 877: LOCATION: child.c:2110 Jun 6 06:11:06 otp3 pgpool[878]: [48-1] 2016-06-06 06:11:06: pid 878: LOG: new connection received Jun 6 06:11:06 otp3 pgpool[878]: [48-2] 2016-06-06 06:11:06: pid 878: DETAIL: connecting host=10.200.1.64 port=24822 Jun 6 06:11:06 otp3 pgpool[878]: [48-3] 2016-06-06 06:11:06: pid 878: LOCATION: child.c:2110 Jun 6 06:11:06 otp3 pgpool: 2016-06-06 06:11:06: pid 878: LOG: new connection received Jun 6 06:11:06 otp3 pgpool: 2016-06-06 06:11:06: pid 878: DETAIL: connecting host=10.200.1.64 port=24822 Jun 6 06:11:06 otp3 pgpool: 2016-06-06 06:11:06: pid 878: LOCATION: child.c:2110 Jun 6 06:12:36 otp3 pgpool[880]: [38-1] 2016-06-06 06:12:36: pid 880: LOG: new connection received Jun 6 06:12:36 otp3 pgpool[880]: [38-2] 2016-06-06 06:12:36: pid 880: DETAIL: connecting host=10.200.1.64 port=43351 Jun 6 06:12:36 otp3 pgpool[880]: [38-3] 2016-06-06 06:12:36: pid 880: LOCATION: child.c:2110 Jun 6 06:12:36 otp3 pgpool: 2016-06-06 06:12:36: pid 880: LOG: new connection received Jun 6 06:12:36 otp3 pgpool: 2016-06-06 06:12:36: pid 880: DETAIL: connecting host=10.200.1.64 port=43351 Jun 6 06:12:36 otp3 pgpool: 2016-06-06 06:12:36: pid 880: LOCATION: child.c:2110 Jun 6 06:12:59 otp3 pgpool[879]: [35-1] 2016-06-06 06:12:59: pid 879: LOG: new connection received Jun 6 06:12:59 otp3 pgpool[879]: [35-2] 2016-06-06 06:12:59: pid 879: DETAIL: connecting host=10.200.1.64 port=51498 Jun 6 06:12:59 otp3 pgpool[879]: [35-3] 2016-06-06 06:12:59: pid 879: LOCATION: child.c:2110 Jun 6 06:12:59 otp3 pgpool: 2016-06-06 06:12:59: pid 879: LOG: new connection received Jun 6 06:12:59 otp3 pgpool: 2016-06-06 06:12:59: pid 879: DETAIL: connecting host=10.200.1.64 port=51498 Jun 6 06:12:59 otp3 pgpool: 2016-06-06 06:12:59: pid 879: LOCATION: child.c:2110 Jun 6 06:13:36 otp3 pgpool[876]: [29-1] 2016-06-06 06:13:36: pid 876: LOG: new connection received Jun 6 06:13:36 otp3 pgpool[876]: [29-2] 2016-06-06 06:13:36: pid 876: DETAIL: connecting host=10.200.1.64 port=19548 Jun 6 06:13:36 otp3 pgpool[876]: [29-3] 2016-06-06 06:13:36: pid 876: LOCATION: child.c:2110 Jun 6 06:13:36 otp3 pgpool: 2016-06-06 06:13:36: pid 876: LOG: new connection received Jun 6 06:13:36 otp3 pgpool: 2016-06-06 06:13:36: pid 876: DETAIL: connecting host=10.200.1.64 port=19548 Jun 6 06:13:36 otp3 pgpool: 2016-06-06 06:13:36: pid 876: LOCATION: child.c:2110 Jun 6 06:14:06 otp3 pgpool[877]: [32-1] 2016-06-06 06:14:06: pid 877: LOG: new connection received Jun 6 06:14:06 otp3 pgpool[877]: [32-2] 2016-06-06 06:14:06: pid 877: DETAIL: connecting host=10.200.1.64 port=12009 Jun 6 06:14:06 otp3 pgpool[877]: [32-3] 2016-06-06 06:14:06: pid 877: LOCATION: child.c:2110 Jun 6 06:14:06 otp3 pgpool: 2016-06-06 06:14:06: pid 877: LOG: new connection received Jun 6 06:14:06 otp3 pgpool: 2016-06-06 06:14:06: pid 877: DETAIL: connecting host=10.200.1.64 port=12009 Jun 6 06:14:06 otp3 pgpool: 2016-06-06 06:14:06: pid 877: LOCATION: child.c:2110 Jun 6 06:40:39 otp3 pgpool[878]: [49-1] 2016-06-06 06:40:39: pid 878: LOG: new connection received Jun 6 06:40:39 otp3 pgpool[878]: [49-2] 2016-06-06 06:40:39: pid 878: DETAIL: connecting host=10.200.1.64 port=13526 Jun 6 06:40:39 otp3 pgpool[878]: [49-3] 2016-06-06 06:40:39: pid 878: LOCATION: child.c:2110 Jun 6 06:40:39 otp3 pgpool: 2016-06-06 06:40:39: pid 878: LOG: new connection received Jun 6 06:40:39 otp3 pgpool: 2016-06-06 06:40:39: pid 878: DETAIL: connecting host=10.200.1.64 port=13526 Jun 6 06:40:39 otp3 pgpool: 2016-06-06 06:40:39: pid 878: LOCATION: child.c:2110 Jun 6 06:42:33 otp3 pgpool[879]: [36-1] 2016-06-06 06:42:33: pid 879: LOG: new connection received Jun 6 06:42:33 otp3 pgpool[879]: [36-2] 2016-06-06 06:42:33: pid 879: DETAIL: connecting host=10.200.1.64 port=53386 Jun 6 06:42:33 otp3 pgpool[879]: [36-3] 2016-06-06 06:42:33: pid 879: LOCATION: child.c:2110 Jun 6 06:42:33 otp3 pgpool: 2016-06-06 06:42:33: pid 879: LOG: new connection received Jun 6 06:42:33 otp3 pgpool: 2016-06-06 06:42:33: pid 879: DETAIL: connecting host=10.200.1.64 port=53386 Jun 6 06:42:33 otp3 pgpool: 2016-06-06 06:42:33: pid 879: LOCATION: child.c:2110 Jun 6 06:42:39 otp3 pgpool[880]: [39-1] 2016-06-06 06:42:39: pid 880: LOG: new connection received Jun 6 06:42:39 otp3 pgpool[880]: [39-2] 2016-06-06 06:42:39: pid 880: DETAIL: connecting host=10.200.1.64 port=33015 Jun 6 06:42:39 otp3 pgpool[880]: [39-3] 2016-06-06 06:42:39: pid 880: LOCATION: child.c:2110 Jun 6 06:42:39 otp3 pgpool: 2016-06-06 06:42:39: pid 880: LOG: new connection received Jun 6 06:42:39 otp3 pgpool: 2016-06-06 06:42:39: pid 880: DETAIL: connecting host=10.200.1.64 port=33015 Jun 6 06:42:39 otp3 pgpool: 2016-06-06 06:42:39: pid 880: LOCATION: child.c:2110 Jun 6 06:43:39 otp3 pgpool[876]: [30-1] 2016-06-06 06:43:39: pid 876: LOG: new connection received Jun 6 06:43:39 otp3 pgpool[876]: [30-2] 2016-06-06 06:43:39: pid 876: DETAIL: connecting host=10.200.1.64 port=21442 Jun 6 06:43:39 otp3 pgpool[876]: [30-3] 2016-06-06 06:43:39: pid 876: LOCATION: child.c:2110 Jun 6 06:43:39 otp3 pgpool: 2016-06-06 06:43:39: pid 876: LOG: new connection received Jun 6 06:43:39 otp3 pgpool: 2016-06-06 06:43:39: pid 876: DETAIL: connecting host=10.200.1.64 port=21442 Jun 6 06:43:39 otp3 pgpool: 2016-06-06 06:43:39: pid 876: LOCATION: child.c:2110 Jun 6 06:44:09 otp3 pgpool[877]: [33-1] 2016-06-06 06:44:09: pid 877: LOG: new connection received Jun 6 06:44:09 otp3 pgpool[877]: [33-2] 2016-06-06 06:44:09: pid 877: DETAIL: connecting host=10.200.1.64 port=35852 Jun 6 06:44:09 otp3 pgpool[877]: [33-3] 2016-06-06 06:44:09: pid 877: LOCATION: child.c:2110 Jun 6 06:44:09 otp3 pgpool: 2016-06-06 06:44:09: pid 877: LOG: new connection received Jun 6 06:44:09 otp3 pgpool: 2016-06-06 06:44:09: pid 877: DETAIL: connecting host=10.200.1.64 port=35852 Jun 6 06:44:09 otp3 pgpool: 2016-06-06 06:44:09: pid 877: LOCATION: child.c:2110 Jun 6 07:10:42 otp3 pgpool[878]: [50-1] 2016-06-06 07:10:42: pid 878: LOG: new connection received Jun 6 07:10:42 otp3 pgpool[878]: [50-2] 2016-06-06 07:10:42: pid 878: DETAIL: connecting host=10.200.1.64 port=27223 Jun 6 07:10:42 otp3 pgpool[878]: [50-3] 2016-06-06 07:10:42: pid 878: LOCATION: child.c:2110 Jun 6 07:10:42 otp3 pgpool: 2016-06-06 07:10:42: pid 878: LOG: new connection received Jun 6 07:10:42 otp3 pgpool: 2016-06-06 07:10:42: pid 878: DETAIL: connecting host=10.200.1.64 port=27223 Jun 6 07:10:42 otp3 pgpool: 2016-06-06 07:10:42: pid 878: LOCATION: child.c:2110 Jun 6 07:12:12 otp3 pgpool[880]: [40-1] 2016-06-06 07:12:12: pid 880: LOG: new connection received Jun 6 07:12:12 otp3 pgpool[880]: [40-2] 2016-06-06 07:12:12: pid 880: DETAIL: connecting host=10.200.1.64 port=59018 Jun 6 07:12:12 otp3 pgpool[880]: [40-3] 2016-06-06 07:12:12: pid 880: LOCATION: child.c:2110 Jun 6 07:12:12 otp3 pgpool: 2016-06-06 07:12:12: pid 880: LOG: new connection received Jun 6 07:12:12 otp3 pgpool: 2016-06-06 07:12:12: pid 880: DETAIL: connecting host=10.200.1.64 port=59018 Jun 6 07:12:12 otp3 pgpool: 2016-06-06 07:12:12: pid 880: LOCATION: child.c:2110 Jun 6 07:12:36 otp3 pgpool[879]: [37-1] 2016-06-06 07:12:36: pid 879: LOG: new connection received Jun 6 07:12:36 otp3 pgpool[879]: [37-2] 2016-06-06 07:12:36: pid 879: DETAIL: connecting host=10.200.1.64 port=28818 Jun 6 07:12:36 otp3 pgpool[879]: [37-3] 2016-06-06 07:12:36: pid 879: LOCATION: child.c:2110 Jun 6 07:12:36 otp3 pgpool: 2016-06-06 07:12:36: pid 879: LOG: new connection received Jun 6 07:12:36 otp3 pgpool: 2016-06-06 07:12:36: pid 879: DETAIL: connecting host=10.200.1.64 port=28818 Jun 6 07:12:36 otp3 pgpool: 2016-06-06 07:12:36: pid 879: LOCATION: child.c:2110 Jun 6 07:13:42 otp3 pgpool[876]: [31-1] 2016-06-06 07:13:42: pid 876: LOG: new connection received Jun 6 07:13:42 otp3 pgpool[876]: [31-2] 2016-06-06 07:13:42: pid 876: DETAIL: connecting host=10.200.1.64 port=16890 Jun 6 07:13:42 otp3 pgpool[876]: [31-3] 2016-06-06 07:13:42: pid 876: LOCATION: child.c:2110 Jun 6 07:13:42 otp3 pgpool: 2016-06-06 07:13:42: pid 876: LOG: new connection received Jun 6 07:13:42 otp3 pgpool: 2016-06-06 07:13:42: pid 876: DETAIL: connecting host=10.200.1.64 port=16890 Jun 6 07:13:42 otp3 pgpool: 2016-06-06 07:13:42: pid 876: LOCATION: child.c:2110 Jun 6 07:14:12 otp3 pgpool[877]: [34-1] 2016-06-06 07:14:12: pid 877: LOG: new connection received Jun 6 07:14:12 otp3 pgpool[877]: [34-2] 2016-06-06 07:14:12: pid 877: DETAIL: connecting host=10.200.1.64 port=38509 Jun 6 07:14:12 otp3 pgpool[877]: [34-3] 2016-06-06 07:14:12: pid 877: LOCATION: child.c:2110 Jun 6 07:14:12 otp3 pgpool: 2016-06-06 07:14:12: pid 877: LOG: new connection received Jun 6 07:14:12 otp3 pgpool: 2016-06-06 07:14:12: pid 877: DETAIL: connecting host=10.200.1.64 port=38509 Jun 6 07:14:12 otp3 pgpool: 2016-06-06 07:14:12: pid 877: LOCATION: child.c:2110 Jun 6 07:40:15 otp3 pgpool[878]: [51-1] 2016-06-06 07:40:15: pid 878: LOG: new connection received Jun 6 07:40:15 otp3 pgpool[878]: [51-2] 2016-06-06 07:40:15: pid 878: DETAIL: connecting host=10.200.1.64 port=37010 Jun 6 07:40:15 otp3 pgpool[878]: [51-3] 2016-06-06 07:40:15: pid 878: LOCATION: child.c:2110 Jun 6 07:40:15 otp3 pgpool: 2016-06-06 07:40:15: pid 878: LOG: new connection received Jun 6 07:40:15 otp3 pgpool: 2016-06-06 07:40:15: pid 878: DETAIL: connecting host=10.200.1.64 port=37010 Jun 6 07:40:15 otp3 pgpool: 2016-06-06 07:40:15: pid 878: LOCATION: child.c:2110 Jun 6 07:42:09 otp3 pgpool[880]: [41-1] 2016-06-06 07:42:09: pid 880: LOG: new connection received Jun 6 07:42:09 otp3 pgpool[880]: [41-2] 2016-06-06 07:42:09: pid 880: DETAIL: connecting host=10.200.1.64 port=26129 Jun 6 07:42:09 otp3 pgpool[880]: [41-3] 2016-06-06 07:42:09: pid 880: LOCATION: child.c:2110 Jun 6 07:42:09 otp3 pgpool: 2016-06-06 07:42:09: pid 880: LOG: new connection received Jun 6 07:42:09 otp3 pgpool: 2016-06-06 07:42:09: pid 880: DETAIL: connecting host=10.200.1.64 port=26129 Jun 6 07:42:09 otp3 pgpool: 2016-06-06 07:42:09: pid 880: LOCATION: child.c:2110 Jun 6 07:42:16 otp3 pgpool[879]: [38-1] 2016-06-06 07:42:16: pid 879: LOG: new connection received Jun 6 07:42:16 otp3 pgpool[879]: [38-2] 2016-06-06 07:42:16: pid 879: DETAIL: connecting host=10.200.1.64 port=25031 Jun 6 07:42:16 otp3 pgpool[879]: [38-3] 2016-06-06 07:42:16: pid 879: LOCATION: child.c:2110 Jun 6 07:42:16 otp3 pgpool: 2016-06-06 07:42:16: pid 879: LOG: new connection received Jun 6 07:42:16 otp3 pgpool: 2016-06-06 07:42:16: pid 879: DETAIL: connecting host=10.200.1.64 port=25031 Jun 6 07:42:16 otp3 pgpool: 2016-06-06 07:42:16: pid 879: LOCATION: child.c:2110 Jun 6 07:43:16 otp3 pgpool[876]: [32-1] 2016-06-06 07:43:16: pid 876: LOG: new connection received Jun 6 07:43:16 otp3 pgpool[876]: [32-2] 2016-06-06 07:43:16: pid 876: DETAIL: connecting host=10.200.1.64 port=52988 Jun 6 07:43:16 otp3 pgpool[876]: [32-3] 2016-06-06 07:43:16: pid 876: LOCATION: child.c:2110 Jun 6 07:43:16 otp3 pgpool: 2016-06-06 07:43:16: pid 876: LOG: new connection received Jun 6 07:43:16 otp3 pgpool: 2016-06-06 07:43:16: pid 876: DETAIL: connecting host=10.200.1.64 port=52988 Jun 6 07:43:16 otp3 pgpool: 2016-06-06 07:43:16: pid 876: LOCATION: child.c:2110 Jun 6 07:43:46 otp3 pgpool[877]: [35-1] 2016-06-06 07:43:46: pid 877: LOG: new connection received Jun 6 07:43:46 otp3 pgpool[877]: [35-2] 2016-06-06 07:43:46: pid 877: DETAIL: connecting host=10.200.1.64 port=42642 Jun 6 07:43:46 otp3 pgpool[877]: [35-3] 2016-06-06 07:43:46: pid 877: LOCATION: child.c:2110 Jun 6 07:43:46 otp3 pgpool: 2016-06-06 07:43:46: pid 877: LOG: new connection received Jun 6 07:43:46 otp3 pgpool: 2016-06-06 07:43:46: pid 877: DETAIL: connecting host=10.200.1.64 port=42642 Jun 6 07:43:46 otp3 pgpool: 2016-06-06 07:43:46: pid 877: LOCATION: child.c:2110 Jun 6 08:10:19 otp3 pgpool[878]: [52-1] 2016-06-06 08:10:19: pid 878: LOG: new connection received Jun 6 08:10:19 otp3 pgpool[878]: [52-2] 2016-06-06 08:10:19: pid 878: DETAIL: connecting host=10.200.1.64 port=63442 Jun 6 08:10:19 otp3 pgpool[878]: [52-3] 2016-06-06 08:10:19: pid 878: LOCATION: child.c:2110 Jun 6 08:10:19 otp3 pgpool: 2016-06-06 08:10:19: pid 878: LOG: new connection received Jun 6 08:10:19 otp3 pgpool: 2016-06-06 08:10:19: pid 878: DETAIL: connecting host=10.200.1.64 port=63442 Jun 6 08:10:19 otp3 pgpool: 2016-06-06 08:10:19: pid 878: LOCATION: child.c:2110 Jun 6 08:12:12 otp3 pgpool[879]: [39-1] 2016-06-06 08:12:12: pid 879: LOG: new connection received Jun 6 08:12:12 otp3 pgpool[879]: [39-2] 2016-06-06 08:12:12: pid 879: DETAIL: connecting host=10.200.1.64 port=21416 Jun 6 08:12:12 otp3 pgpool[879]: [39-3] 2016-06-06 08:12:12: pid 879: LOCATION: child.c:2110 Jun 6 08:12:12 otp3 pgpool: 2016-06-06 08:12:12: pid 879: LOG: new connection received Jun 6 08:12:12 otp3 pgpool: 2016-06-06 08:12:12: pid 879: DETAIL: connecting host=10.200.1.64 port=21416 Jun 6 08:12:12 otp3 pgpool: 2016-06-06 08:12:12: pid 879: LOCATION: child.c:2110 Jun 6 08:12:19 otp3 pgpool[880]: [42-1] 2016-06-06 08:12:19: pid 880: LOG: new connection received Jun 6 08:12:19 otp3 pgpool[880]: [42-2] 2016-06-06 08:12:19: pid 880: DETAIL: connecting host=10.200.1.64 port=47822 Jun 6 08:12:19 otp3 pgpool[880]: [42-3] 2016-06-06 08:12:19: pid 880: LOCATION: child.c:2110 Jun 6 08:12:19 otp3 pgpool: 2016-06-06 08:12:19: pid 880: LOG: new connection received Jun 6 08:12:19 otp3 pgpool: 2016-06-06 08:12:19: pid 880: DETAIL: connecting host=10.200.1.64 port=47822 Jun 6 08:12:19 otp3 pgpool: 2016-06-06 08:12:19: pid 880: LOCATION: child.c:2110 Jun 6 08:12:49 otp3 pgpool[876]: [33-1] 2016-06-06 08:12:49: pid 876: LOG: new connection received Jun 6 08:12:49 otp3 pgpool[876]: [33-2] 2016-06-06 08:12:49: pid 876: DETAIL: connecting host=10.200.1.64 port=53231 Jun 6 08:12:49 otp3 pgpool[876]: [33-3] 2016-06-06 08:12:49: pid 876: LOCATION: child.c:2110 Jun 6 08:12:49 otp3 pgpool: 2016-06-06 08:12:49: pid 876: LOG: new connection received Jun 6 08:12:49 otp3 pgpool: 2016-06-06 08:12:49: pid 876: DETAIL: connecting host=10.200.1.64 port=53231 Jun 6 08:12:49 otp3 pgpool: 2016-06-06 08:12:49: pid 876: LOCATION: child.c:2110 Jun 6 08:13:19 otp3 pgpool[877]: [36-1] 2016-06-06 08:13:19: pid 877: LOG: new connection received Jun 6 08:13:19 otp3 pgpool[877]: [36-2] 2016-06-06 08:13:19: pid 877: DETAIL: connecting host=10.200.1.64 port=49182 Jun 6 08:13:19 otp3 pgpool[877]: [36-3] 2016-06-06 08:13:19: pid 877: LOCATION: child.c:2110 Jun 6 08:13:19 otp3 pgpool: 2016-06-06 08:13:19: pid 877: LOG: new connection received Jun 6 08:13:19 otp3 pgpool: 2016-06-06 08:13:19: pid 877: DETAIL: connecting host=10.200.1.64 port=49182 Jun 6 08:13:19 otp3 pgpool: 2016-06-06 08:13:19: pid 877: LOCATION: child.c:2110 Jun 6 08:40:21 otp3 pgpool[878]: [53-1] 2016-06-06 08:40:21: pid 878: LOG: new connection received Jun 6 08:40:21 otp3 pgpool[878]: [53-2] 2016-06-06 08:40:21: pid 878: DETAIL: connecting host=10.200.1.64 port=27884 Jun 6 08:40:21 otp3 pgpool[878]: [53-3] 2016-06-06 08:40:21: pid 878: LOCATION: child.c:2110 Jun 6 08:40:21 otp3 pgpool: 2016-06-06 08:40:21: pid 878: LOG: new connection received Jun 6 08:40:21 otp3 pgpool: 2016-06-06 08:40:21: pid 878: DETAIL: connecting host=10.200.1.64 port=27884 Jun 6 08:40:21 otp3 pgpool: 2016-06-06 08:40:21: pid 878: LOCATION: child.c:2110 Jun 6 08:41:45 otp3 pgpool[879]: [40-1] 2016-06-06 08:41:45: pid 879: LOG: new connection received Jun 6 08:41:45 otp3 pgpool[879]: [40-2] 2016-06-06 08:41:45: pid 879: DETAIL: connecting host=10.200.1.64 port=53693 Jun 6 08:41:45 otp3 pgpool[879]: [40-3] 2016-06-06 08:41:45: pid 879: LOCATION: child.c:2110 Jun 6 08:41:45 otp3 pgpool: 2016-06-06 08:41:45: pid 879: LOG: new connection received Jun 6 08:41:45 otp3 pgpool: 2016-06-06 08:41:45: pid 879: DETAIL: connecting host=10.200.1.64 port=53693 Jun 6 08:41:45 otp3 pgpool: 2016-06-06 08:41:45: pid 879: LOCATION: child.c:2110 Jun 6 08:42:21 otp3 pgpool[880]: [43-1] 2016-06-06 08:42:21: pid 880: LOG: new connection received Jun 6 08:42:21 otp3 pgpool[880]: [43-2] 2016-06-06 08:42:21: pid 880: DETAIL: connecting host=10.200.1.64 port=20299 Jun 6 08:42:21 otp3 pgpool[880]: [43-3] 2016-06-06 08:42:21: pid 880: LOCATION: child.c:2110 Jun 6 08:42:21 otp3 pgpool: 2016-06-06 08:42:21: pid 880: LOG: new connection received Jun 6 08:42:21 otp3 pgpool: 2016-06-06 08:42:21: pid 880: DETAIL: connecting host=10.200.1.64 port=20299 Jun 6 08:42:21 otp3 pgpool: 2016-06-06 08:42:21: pid 880: LOCATION: child.c:2110 Jun 6 08:42:51 otp3 pgpool[876]: [34-1] 2016-06-06 08:42:51: pid 876: LOG: new connection received Jun 6 08:42:51 otp3 pgpool[876]: [34-2] 2016-06-06 08:42:51: pid 876: DETAIL: connecting host=10.200.1.64 port=29547 Jun 6 08:42:51 otp3 pgpool[876]: [34-3] 2016-06-06 08:42:51: pid 876: LOCATION: child.c:2110 Jun 6 08:42:51 otp3 pgpool: 2016-06-06 08:42:51: pid 876: LOG: new connection received Jun 6 08:42:51 otp3 pgpool: 2016-06-06 08:42:51: pid 876: DETAIL: connecting host=10.200.1.64 port=29547 Jun 6 08:42:51 otp3 pgpool: 2016-06-06 08:42:51: pid 876: LOCATION: child.c:2110 Jun 6 08:43:21 otp3 pgpool[877]: [37-1] 2016-06-06 08:43:21: pid 877: LOG: new connection received Jun 6 08:43:21 otp3 pgpool[877]: [37-2] 2016-06-06 08:43:21: pid 877: DETAIL: connecting host=10.200.1.64 port=10951 Jun 6 08:43:21 otp3 pgpool[877]: [37-3] 2016-06-06 08:43:21: pid 877: LOCATION: child.c:2110 Jun 6 08:43:21 otp3 pgpool: 2016-06-06 08:43:21: pid 877: LOG: new connection received Jun 6 08:43:21 otp3 pgpool: 2016-06-06 08:43:21: pid 877: DETAIL: connecting host=10.200.1.64 port=10951 Jun 6 08:43:21 otp3 pgpool: 2016-06-06 08:43:21: pid 877: LOCATION: child.c:2110 Jun 6 09:09:55 otp3 pgpool[878]: [54-1] 2016-06-06 09:09:55: pid 878: LOG: new connection received Jun 6 09:09:55 otp3 pgpool[878]: [54-2] 2016-06-06 09:09:55: pid 878: DETAIL: connecting host=10.200.1.64 port=27108 Jun 6 09:09:55 otp3 pgpool[878]: [54-3] 2016-06-06 09:09:55: pid 878: LOCATION: child.c:2110 Jun 6 09:09:55 otp3 pgpool: 2016-06-06 09:09:55: pid 878: LOG: new connection received Jun 6 09:09:55 otp3 pgpool: 2016-06-06 09:09:55: pid 878: DETAIL: connecting host=10.200.1.64 port=27108 Jun 6 09:09:55 otp3 pgpool: 2016-06-06 09:09:55: pid 878: LOCATION: child.c:2110 Jun 6 09:11:48 otp3 pgpool[879]: [41-1] 2016-06-06 09:11:48: pid 879: LOG: new connection received Jun 6 09:11:48 otp3 pgpool[879]: [41-2] 2016-06-06 09:11:48: pid 879: DETAIL: connecting host=10.200.1.64 port=50069 Jun 6 09:11:48 otp3 pgpool[879]: [41-3] 2016-06-06 09:11:48: pid 879: LOCATION: child.c:2110 Jun 6 09:11:48 otp3 pgpool: 2016-06-06 09:11:48: pid 879: LOG: new connection received Jun 6 09:11:48 otp3 pgpool: 2016-06-06 09:11:48: pid 879: DETAIL: connecting host=10.200.1.64 port=50069 Jun 6 09:11:48 otp3 pgpool: 2016-06-06 09:11:48: pid 879: LOCATION: child.c:2110 Jun 6 09:11:55 otp3 pgpool[880]: [44-1] 2016-06-06 09:11:55: pid 880: LOG: new connection received Jun 6 09:11:55 otp3 pgpool[880]: [44-2] 2016-06-06 09:11:55: pid 880: DETAIL: connecting host=10.200.1.64 port=36992 Jun 6 09:11:55 otp3 pgpool[880]: [44-3] 2016-06-06 09:11:55: pid 880: LOCATION: child.c:2110 Jun 6 09:11:55 otp3 pgpool: 2016-06-06 09:11:55: pid 880: LOG: new connection received Jun 6 09:11:55 otp3 pgpool: 2016-06-06 09:11:55: pid 880: DETAIL: connecting host=10.200.1.64 port=36992 Jun 6 09:11:55 otp3 pgpool: 2016-06-06 09:11:55: pid 880: LOCATION: child.c:2110 Jun 6 09:12:25 otp3 pgpool[876]: [35-1] 2016-06-06 09:12:25: pid 876: LOG: new connection received Jun 6 09:12:25 otp3 pgpool[876]: [35-2] 2016-06-06 09:12:25: pid 876: DETAIL: connecting host=10.200.1.64 port=22296 Jun 6 09:12:25 otp3 pgpool[876]: [35-3] 2016-06-06 09:12:25: pid 876: LOCATION: child.c:2110 Jun 6 09:12:25 otp3 pgpool: 2016-06-06 09:12:25: pid 876: LOG: new connection received Jun 6 09:12:25 otp3 pgpool: 2016-06-06 09:12:25: pid 876: DETAIL: connecting host=10.200.1.64 port=22296 Jun 6 09:12:25 otp3 pgpool: 2016-06-06 09:12:25: pid 876: LOCATION: child.c:2110 Jun 6 09:13:25 otp3 pgpool[877]: [38-1] 2016-06-06 09:13:25: pid 877: LOG: new connection received Jun 6 09:13:25 otp3 pgpool[877]: [38-2] 2016-06-06 09:13:25: pid 877: DETAIL: connecting host=10.200.1.64 port=41422 Jun 6 09:13:25 otp3 pgpool[877]: [38-3] 2016-06-06 09:13:25: pid 877: LOCATION: child.c:2110 Jun 6 09:13:25 otp3 pgpool: 2016-06-06 09:13:25: pid 877: LOG: new connection received Jun 6 09:13:25 otp3 pgpool: 2016-06-06 09:13:25: pid 877: DETAIL: connecting host=10.200.1.64 port=41422 Jun 6 09:13:25 otp3 pgpool: 2016-06-06 09:13:25: pid 877: LOCATION: child.c:2110 Jun 6 09:28:33 otp3 pgpool[2818]: [1-1] 2016-06-06 09:28:33: pid 2818: LOG: stop request sent to pgpool. waiting for termination... Jun 6 09:28:33 otp3 pgpool[2818]: [1-2] 2016-06-06 09:28:33: pid 2818: LOCATION: main.c:441 Jun 6 09:28:33 otp3 pgpool[815]: [13-1] 2016-06-06 09:28:33: pid 815: LOG: received smart shutdown request Jun 6 09:28:33 otp3 pgpool[815]: [13-2] 2016-06-06 09:28:33: pid 815: LOCATION: pgpool_main.c:1309 Jun 6 09:28:33 otp3 pgpool: 2016-06-06 09:28:33: pid 815: LOG: received smart shutdown request Jun 6 09:28:33 otp3 pgpool: 2016-06-06 09:28:33: pid 815: LOCATION: pgpool_main.c:1309 Jun 6 09:28:33 otp3 pgpool[815]: [14-1] 2016-06-06 09:28:33: pid 815: LOG: shutdown request. closing listen socket Jun 6 09:28:33 otp3 pgpool[815]: [14-2] 2016-06-06 09:28:33: pid 815: LOCATION: pgpool_main.c:1330 Jun 6 09:28:33 otp3 pgpool: 2016-06-06 09:28:33: pid 815: LOG: shutdown request. closing listen socket Jun 6 09:28:33 otp3 pgpool: 2016-06-06 09:28:33: pid 815: LOCATION: pgpool_main.c:1330 Jun 6 09:28:33 otp3 pgpool[880]: [45-1] 2016-06-06 09:28:33: pid 880: LOG: child process received shutdown request signal 15 Jun 6 09:28:33 otp3 pgpool[880]: [45-2] 2016-06-06 09:28:33: pid 880: LOCATION: child.c:911 Jun 6 09:28:33 otp3 pgpool: 2016-06-06 09:28:33: pid 880: LOG: child process received shutdown request signal 15 Jun 6 09:28:33 otp3 pgpool[878]: [55-1] 2016-06-06 09:28:33: pid 878: LOG: child process received shutdown request signal 15 Jun 6 09:28:33 otp3 pgpool: 2016-06-06 09:28:33: pid 880: LOCATION: child.c:911 Jun 6 09:28:33 otp3 pgpool[877]: [39-1] 2016-06-06 09:28:33: pid 877: LOG: child process received shutdown request signal 15 Jun 6 09:28:33 otp3 pgpool[879]: [42-1] 2016-06-06 09:28:33: pid 879: LOG: child process received shutdown request signal 15 Jun 6 09:28:33 otp3 pgpool[878]: [55-2] 2016-06-06 09:28:33: pid 878: LOCATION: child.c:911 Jun 6 09:28:33 otp3 pgpool[877]: [39-2] 2016-06-06 09:28:33: pid 877: LOCATION: child.c:911 Jun 6 09:28:33 otp3 pgpool[879]: [42-2] 2016-06-06 09:28:33: pid 879: LOCATION: child.c:911 Jun 6 09:28:33 otp3 pgpool: 2016-06-06 09:28:33: pid 878: LOG: child process received shutdown request signal 15 Jun 6 09:28:33 otp3 pgpool: 2016-06-06 09:28:33: pid 878: LOCATION: child.c:911 Jun 6 09:28:33 otp3 pgpool: 2016-06-06 09:28:33: pid 877: LOG: child process received shutdown request signal 15 Jun 6 09:28:33 otp3 pgpool: 2016-06-06 09:28:33: pid 877: LOCATION: child.c:911 Jun 6 09:28:33 otp3 pgpool: 2016-06-06 09:28:33: pid 879: LOG: child process received shutdown request signal 15 Jun 6 09:28:33 otp3 pgpool: 2016-06-06 09:28:33: pid 879: LOCATION: child.c:911 Jun 6 09:28:33 otp3 pgpool[876]: [36-1] 2016-06-06 09:28:33: pid 876: LOG: child process received shutdown request signal 15 Jun 6 09:28:33 otp3 pgpool[876]: [36-2] 2016-06-06 09:28:33: pid 876: LOCATION: child.c:911 Jun 6 09:28:33 otp3 pgpool: 2016-06-06 09:28:33: pid 876: LOG: child process received shutdown request signal 15 Jun 6 09:28:33 otp3 pgpool: 2016-06-06 09:28:33: pid 876: LOCATION: child.c:911 ^C root@otp3:~ # pgpool -m fast stop 2016-06-06 09:28:42: pid 2819: LOG: stop request sent to pgpool. waiting for termination... 2016-06-06 09:28:42: pid 2819: LOCATION: main.c:441 .....................................................................................................................................................................done. root@otp3:~ # tail -f -n1000 /var/log/pgpool/pgpool.log Jun 5 18:46:00 otp3 pgpool[878]: [15-1] 2016-06-05 18:46:00: pid 878: LOG: new connection received Jun 5 18:46:00 otp3 pgpool[878]: [15-2] 2016-06-05 18:46:00: pid 878: DETAIL: connecting host=10.200.1.64 port=44218 Jun 5 18:46:00 otp3 pgpool[878]: [15-3] 2016-06-05 18:46:00: pid 878: LOCATION: child.c:2110 Jun 5 18:46:00 otp3 pgpool: 2016-06-05 18:46:00: pid 878: LOG: new connection received Jun 5 18:46:00 otp3 pgpool: 2016-06-05 18:46:00: pid 878: DETAIL: connecting host=10.200.1.64 port=44218 Jun 5 18:46:00 otp3 pgpool: 2016-06-05 18:46:00: pid 878: LOCATION: child.c:2110 Jun 5 18:46:00 otp3 pgpool[878]: [16-1] 2016-06-05 18:46:00: pid 878: LOG: new connection received Jun 5 18:46:00 otp3 pgpool[878]: [16-2] 2016-06-05 18:46:00: pid 878: DETAIL: connecting host=10.200.1.64 port=21473 Jun 5 18:46:00 otp3 pgpool[878]: [16-3] 2016-06-05 18:46:00: pid 878: LOCATION: child.c:2110 Jun 5 18:46:00 otp3 pgpool: 2016-06-05 18:46:00: pid 878: LOG: new connection received Jun 5 18:46:00 otp3 pgpool: 2016-06-05 18:46:00: pid 878: DETAIL: connecting host=10.200.1.64 port=21473 Jun 5 18:46:00 otp3 pgpool: 2016-06-05 18:46:00: pid 878: LOCATION: child.c:2110 Jun 5 18:46:00 otp3 pgpool[878]: [17-1] 2016-06-05 18:46:00: pid 878: LOG: new connection received Jun 5 18:46:00 otp3 pgpool[878]: [17-2] 2016-06-05 18:46:00: pid 878: DETAIL: connecting host=10.200.1.64 port=17071 Jun 5 18:46:00 otp3 pgpool[878]: [17-3] 2016-06-05 18:46:00: pid 878: LOCATION: child.c:2110 Jun 5 18:46:00 otp3 pgpool: 2016-06-05 18:46:00: pid 878: LOG: new connection received Jun 5 18:46:00 otp3 pgpool: 2016-06-05 18:46:00: pid 878: DETAIL: connecting host=10.200.1.64 port=17071 Jun 5 18:46:00 otp3 pgpool: 2016-06-05 18:46:00: pid 878: LOCATION: child.c:2110 Jun 5 18:46:00 otp3 pgpool[878]: [18-1] 2016-06-05 18:46:00: pid 878: LOG: new connection received Jun 5 18:46:00 otp3 pgpool[878]: [18-2] 2016-06-05 18:46:00: pid 878: DETAIL: connecting host=10.200.1.64 port=37514 Jun 5 18:46:00 otp3 pgpool[878]: [18-3] 2016-06-05 18:46:00: pid 878: LOCATION: child.c:2110 Jun 5 18:46:00 otp3 pgpool: 2016-06-05 18:46:00: pid 878: LOG: new connection received Jun 5 18:46:00 otp3 pgpool: 2016-06-05 18:46:00: pid 878: DETAIL: connecting host=10.200.1.64 port=37514 Jun 5 18:46:00 otp3 pgpool: 2016-06-05 18:46:00: pid 878: LOCATION: child.c:2110 Jun 5 18:46:00 otp3 pgpool[878]: [19-1] 2016-06-05 18:46:00: pid 878: LOG: new connection received Jun 5 18:46:00 otp3 pgpool[878]: [19-2] 2016-06-05 18:46:00: pid 878: DETAIL: connecting host=10.200.1.64 port=38237 Jun 5 18:46:00 otp3 pgpool[878]: [19-3] 2016-06-05 18:46:00: pid 878: LOCATION: child.c:2110 Jun 5 18:46:00 otp3 pgpool: 2016-06-05 18:46:00: pid 878: LOG: new connection received Jun 5 18:46:00 otp3 pgpool: 2016-06-05 18:46:00: pid 878: DETAIL: connecting host=10.200.1.64 port=38237 Jun 5 18:46:00 otp3 pgpool: 2016-06-05 18:46:00: pid 878: LOCATION: child.c:2110 Jun 5 18:46:00 otp3 pgpool[878]: [20-1] 2016-06-05 18:46:00: pid 878: LOG: new connection received Jun 5 18:46:00 otp3 pgpool[878]: [20-2] 2016-06-05 18:46:00: pid 878: DETAIL: connecting host=10.200.1.64 port=35394 Jun 5 18:46:00 otp3 pgpool[878]: [20-3] 2016-06-05 18:46:00: pid 878: LOCATION: child.c:2110 Jun 5 18:46:00 otp3 pgpool: 2016-06-05 18:46:00: pid 878: LOG: new connection received Jun 5 18:46:00 otp3 pgpool: 2016-06-05 18:46:00: pid 878: DETAIL: connecting host=10.200.1.64 port=35394 Jun 5 18:46:00 otp3 pgpool: 2016-06-05 18:46:00: pid 878: LOCATION: child.c:2110 Jun 5 18:46:01 otp3 pgpool[878]: [21-1] 2016-06-05 18:46:01: pid 878: LOG: new connection received Jun 5 18:46:01 otp3 pgpool[878]: [21-2] 2016-06-05 18:46:01: pid 878: DETAIL: connecting host=10.200.1.64 port=13535 Jun 5 18:46:01 otp3 pgpool[878]: [21-3] 2016-06-05 18:46:01: pid 878: LOCATION: child.c:2110 Jun 5 18:46:01 otp3 pgpool: 2016-06-05 18:46:01: pid 878: LOG: new connection received Jun 5 18:46:01 otp3 pgpool: 2016-06-05 18:46:01: pid 878: DETAIL: connecting host=10.200.1.64 port=13535 Jun 5 18:46:01 otp3 pgpool: 2016-06-05 18:46:01: pid 878: LOCATION: child.c:2110 Jun 5 18:46:01 otp3 pgpool[878]: [22-1] 2016-06-05 18:46:01: pid 878: LOG: new connection received Jun 5 18:46:01 otp3 pgpool[878]: [22-2] 2016-06-05 18:46:01: pid 878: DETAIL: connecting host=10.200.1.64 port=57111 Jun 5 18:46:01 otp3 pgpool[878]: [22-3] 2016-06-05 18:46:01: pid 878: LOCATION: child.c:2110 Jun 5 18:46:01 otp3 pgpool: 2016-06-05 18:46:01: pid 878: LOG: new connection received Jun 5 18:46:01 otp3 pgpool: 2016-06-05 18:46:01: pid 878: DETAIL: connecting host=10.200.1.64 port=57111 Jun 5 18:46:01 otp3 pgpool: 2016-06-05 18:46:01: pid 878: LOCATION: child.c:2110 Jun 5 18:46:01 otp3 pgpool[878]: [23-1] 2016-06-05 18:46:01: pid 878: LOG: new connection received Jun 5 18:46:01 otp3 pgpool[878]: [23-2] 2016-06-05 18:46:01: pid 878: DETAIL: connecting host=10.200.1.64 port=43756 Jun 5 18:46:01 otp3 pgpool[878]: [23-3] 2016-06-05 18:46:01: pid 878: LOCATION: child.c:2110 Jun 5 18:46:01 otp3 pgpool: 2016-06-05 18:46:01: pid 878: LOG: new connection received Jun 5 18:46:01 otp3 pgpool: 2016-06-05 18:46:01: pid 878: DETAIL: connecting host=10.200.1.64 port=43756 Jun 5 18:46:01 otp3 pgpool: 2016-06-05 18:46:01: pid 878: LOCATION: child.c:2110 Jun 5 18:46:01 otp3 pgpool[878]: [24-1] 2016-06-05 18:46:01: pid 878: LOG: new connection received Jun 5 18:46:01 otp3 pgpool[878]: [24-2] 2016-06-05 18:46:01: pid 878: DETAIL: connecting host=10.200.1.64 port=15430 Jun 5 18:46:01 otp3 pgpool[878]: [24-3] 2016-06-05 18:46:01: pid 878: LOCATION: child.c:2110 Jun 5 18:46:01 otp3 pgpool: 2016-06-05 18:46:01: pid 878: LOG: new connection received Jun 5 18:46:01 otp3 pgpool: 2016-06-05 18:46:01: pid 878: DETAIL: connecting host=10.200.1.64 port=15430 Jun 5 18:46:01 otp3 pgpool: 2016-06-05 18:46:01: pid 878: LOCATION: child.c:2110 Jun 5 18:46:18 otp3 pgpool[878]: [25-1] 2016-06-05 18:46:18: pid 878: LOG: new connection received Jun 5 18:46:18 otp3 pgpool[878]: [25-2] 2016-06-05 18:46:18: pid 878: DETAIL: connecting host=10.200.1.64 port=18646 Jun 5 18:46:18 otp3 pgpool[878]: [25-3] 2016-06-05 18:46:18: pid 878: LOCATION: child.c:2110 Jun 5 18:46:18 otp3 pgpool: 2016-06-05 18:46:18: pid 878: LOG: new connection received Jun 5 18:46:18 otp3 pgpool: 2016-06-05 18:46:18: pid 878: DETAIL: connecting host=10.200.1.64 port=18646 Jun 5 18:46:18 otp3 pgpool: 2016-06-05 18:46:18: pid 878: LOCATION: child.c:2110 Jun 5 18:46:18 otp3 pgpool[880]: [15-1] 2016-06-05 18:46:18: pid 880: LOG: new connection received Jun 5 18:46:18 otp3 pgpool[880]: [15-2] 2016-06-05 18:46:18: pid 880: DETAIL: connecting host=10.200.1.64 port=18960 Jun 5 18:46:18 otp3 pgpool[880]: [15-3] 2016-06-05 18:46:18: pid 880: LOCATION: child.c:2110 Jun 5 18:46:18 otp3 pgpool: 2016-06-05 18:46:18: pid 880: LOG: new connection received Jun 5 18:46:18 otp3 pgpool: 2016-06-05 18:46:18: pid 880: DETAIL: connecting host=10.200.1.64 port=18960 Jun 5 18:46:18 otp3 pgpool: 2016-06-05 18:46:18: pid 880: LOCATION: child.c:2110 Jun 5 18:46:46 otp3 pgpool[876]: [6-1] 2016-06-05 18:46:46: pid 876: LOG: new connection received Jun 5 18:46:46 otp3 pgpool[876]: [6-2] 2016-06-05 18:46:46: pid 876: DETAIL: connecting host=10.200.1.64 port=23242 Jun 5 18:46:46 otp3 pgpool[876]: [6-3] 2016-06-05 18:46:46: pid 876: LOCATION: child.c:2110 Jun 5 18:46:46 otp3 pgpool: 2016-06-05 18:46:46: pid 876: LOG: new connection received Jun 5 18:46:46 otp3 pgpool: 2016-06-05 18:46:46: pid 876: DETAIL: connecting host=10.200.1.64 port=23242 Jun 5 18:46:46 otp3 pgpool: 2016-06-05 18:46:46: pid 876: LOCATION: child.c:2110 Jun 5 18:46:48 otp3 pgpool[877]: [9-1] 2016-06-05 18:46:48: pid 877: LOG: new connection received Jun 5 18:46:48 otp3 pgpool[877]: [9-2] 2016-06-05 18:46:48: pid 877: DETAIL: connecting host=10.200.1.64 port=51277 Jun 5 18:46:48 otp3 pgpool[877]: [9-3] 2016-06-05 18:46:48: pid 877: LOCATION: child.c:2110 Jun 5 18:46:48 otp3 pgpool: 2016-06-05 18:46:48: pid 877: LOG: new connection received Jun 5 18:46:48 otp3 pgpool: 2016-06-05 18:46:48: pid 877: DETAIL: connecting host=10.200.1.64 port=51277 Jun 5 18:46:48 otp3 pgpool: 2016-06-05 18:46:48: pid 877: LOCATION: child.c:2110 Jun 5 18:46:48 otp3 pgpool[879]: [12-1] 2016-06-05 18:46:48: pid 879: LOG: new connection received Jun 5 18:46:48 otp3 pgpool[879]: [12-2] 2016-06-05 18:46:48: pid 879: DETAIL: connecting host=10.200.1.64 port=38847 Jun 5 18:46:48 otp3 pgpool[879]: [12-3] 2016-06-05 18:46:48: pid 879: LOCATION: child.c:2110 Jun 5 18:46:48 otp3 pgpool: 2016-06-05 18:46:48: pid 879: LOG: new connection received Jun 5 18:46:48 otp3 pgpool: 2016-06-05 18:46:48: pid 879: DETAIL: connecting host=10.200.1.64 port=38847 Jun 5 18:46:48 otp3 pgpool: 2016-06-05 18:46:48: pid 879: LOCATION: child.c:2110 Jun 5 19:15:51 otp3 pgpool[880]: [16-1] 2016-06-05 19:15:51: pid 880: LOG: new connection received Jun 5 19:15:51 otp3 pgpool[880]: [16-2] 2016-06-05 19:15:51: pid 880: DETAIL: connecting host=10.200.1.64 port=10188 Jun 5 19:15:51 otp3 pgpool[880]: [16-3] 2016-06-05 19:15:51: pid 880: LOCATION: child.c:2110 Jun 5 19:15:51 otp3 pgpool: 2016-06-05 19:15:51: pid 880: LOG: new connection received Jun 5 19:15:51 otp3 pgpool: 2016-06-05 19:15:51: pid 880: DETAIL: connecting host=10.200.1.64 port=10188 Jun 5 19:15:51 otp3 pgpool: 2016-06-05 19:15:51: pid 880: LOCATION: child.c:2110 Jun 5 19:15:51 otp3 pgpool[878]: [26-1] 2016-06-05 19:15:51: pid 878: LOG: new connection received Jun 5 19:15:51 otp3 pgpool[878]: [26-2] 2016-06-05 19:15:51: pid 878: DETAIL: connecting host=10.200.1.64 port=25710 Jun 5 19:15:51 otp3 pgpool[878]: [26-3] 2016-06-05 19:15:51: pid 878: LOCATION: child.c:2110 Jun 5 19:15:51 otp3 pgpool: 2016-06-05 19:15:51: pid 878: LOG: new connection received Jun 5 19:15:51 otp3 pgpool: 2016-06-05 19:15:51: pid 878: DETAIL: connecting host=10.200.1.64 port=25710 Jun 5 19:15:51 otp3 pgpool: 2016-06-05 19:15:51: pid 878: LOCATION: child.c:2110 Jun 5 19:16:49 otp3 pgpool[876]: [7-1] 2016-06-05 19:16:49: pid 876: LOG: new connection received Jun 5 19:16:49 otp3 pgpool[876]: [7-2] 2016-06-05 19:16:49: pid 876: DETAIL: connecting host=10.200.1.64 port=57631 Jun 5 19:16:49 otp3 pgpool[876]: [7-3] 2016-06-05 19:16:49: pid 876: LOCATION: child.c:2110 Jun 5 19:16:49 otp3 pgpool: 2016-06-05 19:16:49: pid 876: LOG: new connection received Jun 5 19:16:49 otp3 pgpool: 2016-06-05 19:16:49: pid 876: DETAIL: connecting host=10.200.1.64 port=57631 Jun 5 19:16:49 otp3 pgpool: 2016-06-05 19:16:49: pid 876: LOCATION: child.c:2110 Jun 5 19:16:51 otp3 pgpool[879]: [13-1] 2016-06-05 19:16:51: pid 879: LOG: new connection received Jun 5 19:16:51 otp3 pgpool[879]: [13-2] 2016-06-05 19:16:51: pid 879: DETAIL: connecting host=10.200.1.64 port=63647 Jun 5 19:16:51 otp3 pgpool[879]: [13-3] 2016-06-05 19:16:51: pid 879: LOCATION: child.c:2110 Jun 5 19:16:51 otp3 pgpool: 2016-06-05 19:16:51: pid 879: LOG: new connection received Jun 5 19:16:51 otp3 pgpool: 2016-06-05 19:16:51: pid 879: DETAIL: connecting host=10.200.1.64 port=63647 Jun 5 19:16:51 otp3 pgpool: 2016-06-05 19:16:51: pid 879: LOCATION: child.c:2110 Jun 5 19:16:51 otp3 pgpool[877]: [10-1] 2016-06-05 19:16:51: pid 877: LOG: new connection received Jun 5 19:16:51 otp3 pgpool[877]: [10-2] 2016-06-05 19:16:51: pid 877: DETAIL: connecting host=10.200.1.64 port=45986 Jun 5 19:16:51 otp3 pgpool[877]: [10-3] 2016-06-05 19:16:51: pid 877: LOCATION: child.c:2110 Jun 5 19:16:51 otp3 pgpool: 2016-06-05 19:16:51: pid 877: LOG: new connection received Jun 5 19:16:51 otp3 pgpool: 2016-06-05 19:16:51: pid 877: DETAIL: connecting host=10.200.1.64 port=45986 Jun 5 19:16:51 otp3 pgpool: 2016-06-05 19:16:51: pid 877: LOCATION: child.c:2110 Jun 5 19:45:24 otp3 pgpool[880]: [17-1] 2016-06-05 19:45:24: pid 880: LOG: new connection received Jun 5 19:45:24 otp3 pgpool[880]: [17-2] 2016-06-05 19:45:24: pid 880: DETAIL: connecting host=10.200.1.64 port=29380 Jun 5 19:45:24 otp3 pgpool[880]: [17-3] 2016-06-05 19:45:24: pid 880: LOCATION: child.c:2110 Jun 5 19:45:24 otp3 pgpool: 2016-06-05 19:45:24: pid 880: LOG: new connection received Jun 5 19:45:24 otp3 pgpool: 2016-06-05 19:45:24: pid 880: DETAIL: connecting host=10.200.1.64 port=29380 Jun 5 19:45:24 otp3 pgpool: 2016-06-05 19:45:24: pid 880: LOCATION: child.c:2110 Jun 5 19:45:24 otp3 pgpool[878]: [27-1] 2016-06-05 19:45:24: pid 878: LOG: new connection received Jun 5 19:45:24 otp3 pgpool[878]: [27-2] 2016-06-05 19:45:24: pid 878: DETAIL: connecting host=10.200.1.64 port=32055 Jun 5 19:45:24 otp3 pgpool[878]: [27-3] 2016-06-05 19:45:24: pid 878: LOCATION: child.c:2110 Jun 5 19:45:24 otp3 pgpool: 2016-06-05 19:45:24: pid 878: LOG: new connection received Jun 5 19:45:24 otp3 pgpool: 2016-06-05 19:45:24: pid 878: DETAIL: connecting host=10.200.1.64 port=32055 Jun 5 19:45:24 otp3 pgpool: 2016-06-05 19:45:24: pid 878: LOCATION: child.c:2110 Jun 5 19:46:23 otp3 pgpool[879]: [14-1] 2016-06-05 19:46:23: pid 879: LOG: new connection received Jun 5 19:46:23 otp3 pgpool[879]: [14-2] 2016-06-05 19:46:23: pid 879: DETAIL: connecting host=10.200.1.64 port=34726 Jun 5 19:46:23 otp3 pgpool[879]: [14-3] 2016-06-05 19:46:23: pid 879: LOCATION: child.c:2110 Jun 5 19:46:23 otp3 pgpool: 2016-06-05 19:46:23: pid 879: LOG: new connection received Jun 5 19:46:23 otp3 pgpool: 2016-06-05 19:46:23: pid 879: DETAIL: connecting host=10.200.1.64 port=34726 Jun 5 19:46:23 otp3 pgpool: 2016-06-05 19:46:23: pid 879: LOCATION: child.c:2110 Jun 5 19:46:24 otp3 pgpool[876]: [8-1] 2016-06-05 19:46:24: pid 876: LOG: new connection received Jun 5 19:46:24 otp3 pgpool[876]: [8-2] 2016-06-05 19:46:24: pid 876: DETAIL: connecting host=10.200.1.64 port=35712 Jun 5 19:46:24 otp3 pgpool[876]: [8-3] 2016-06-05 19:46:24: pid 876: LOCATION: child.c:2110 Jun 5 19:46:24 otp3 pgpool: 2016-06-05 19:46:24: pid 876: LOG: new connection received Jun 5 19:46:24 otp3 pgpool: 2016-06-05 19:46:24: pid 876: DETAIL: connecting host=10.200.1.64 port=35712 Jun 5 19:46:24 otp3 pgpool: 2016-06-05 19:46:24: pid 876: LOCATION: child.c:2110 Jun 5 19:46:24 otp3 pgpool[877]: [11-1] 2016-06-05 19:46:24: pid 877: LOG: new connection received Jun 5 19:46:24 otp3 pgpool[877]: [11-2] 2016-06-05 19:46:24: pid 877: DETAIL: connecting host=10.200.1.64 port=10650 Jun 5 19:46:24 otp3 pgpool[877]: [11-3] 2016-06-05 19:46:24: pid 877: LOCATION: child.c:2110 Jun 5 19:46:24 otp3 pgpool: 2016-06-05 19:46:24: pid 877: LOG: new connection received Jun 5 19:46:24 otp3 pgpool: 2016-06-05 19:46:24: pid 877: DETAIL: connecting host=10.200.1.64 port=10650 Jun 5 19:46:24 otp3 pgpool: 2016-06-05 19:46:24: pid 877: LOCATION: child.c:2110 Jun 5 20:14:58 otp3 pgpool[878]: [28-1] 2016-06-05 20:14:58: pid 878: LOG: new connection received Jun 5 20:14:58 otp3 pgpool[878]: [28-2] 2016-06-05 20:14:58: pid 878: DETAIL: connecting host=10.200.1.64 port=61016 Jun 5 20:14:58 otp3 pgpool[878]: [28-3] 2016-06-05 20:14:58: pid 878: LOCATION: child.c:2110 Jun 5 20:14:58 otp3 pgpool: 2016-06-05 20:14:58: pid 878: LOG: new connection received Jun 5 20:14:58 otp3 pgpool: 2016-06-05 20:14:58: pid 878: DETAIL: connecting host=10.200.1.64 port=61016 Jun 5 20:14:58 otp3 pgpool: 2016-06-05 20:14:58: pid 878: LOCATION: child.c:2110 Jun 5 20:14:58 otp3 pgpool[880]: [18-1] 2016-06-05 20:14:58: pid 880: LOG: new connection received Jun 5 20:14:58 otp3 pgpool[880]: [18-2] 2016-06-05 20:14:58: pid 880: DETAIL: connecting host=10.200.1.64 port=39234 Jun 5 20:14:58 otp3 pgpool[880]: [18-3] 2016-06-05 20:14:58: pid 880: LOCATION: child.c:2110 Jun 5 20:14:58 otp3 pgpool: 2016-06-05 20:14:58: pid 880: LOG: new connection received Jun 5 20:14:58 otp3 pgpool: 2016-06-05 20:14:58: pid 880: DETAIL: connecting host=10.200.1.64 port=39234 Jun 5 20:14:58 otp3 pgpool: 2016-06-05 20:14:58: pid 880: LOCATION: child.c:2110 Jun 5 20:16:25 otp3 pgpool[877]: [12-1] 2016-06-05 20:16:25: pid 877: LOG: new connection received Jun 5 20:16:25 otp3 pgpool[877]: [12-2] 2016-06-05 20:16:25: pid 877: DETAIL: connecting host=10.200.1.64 port=50491 Jun 5 20:16:25 otp3 pgpool[877]: [12-3] 2016-06-05 20:16:25: pid 877: LOCATION: child.c:2110 Jun 5 20:16:25 otp3 pgpool: 2016-06-05 20:16:25: pid 877: LOG: new connection received Jun 5 20:16:25 otp3 pgpool: 2016-06-05 20:16:25: pid 877: DETAIL: connecting host=10.200.1.64 port=50491 Jun 5 20:16:25 otp3 pgpool: 2016-06-05 20:16:25: pid 877: LOCATION: child.c:2110 Jun 5 20:16:28 otp3 pgpool[879]: [15-1] 2016-06-05 20:16:28: pid 879: LOG: new connection received Jun 5 20:16:28 otp3 pgpool[879]: [15-2] 2016-06-05 20:16:28: pid 879: DETAIL: connecting host=10.200.1.64 port=60765 Jun 5 20:16:28 otp3 pgpool[879]: [15-3] 2016-06-05 20:16:28: pid 879: LOCATION: child.c:2110 Jun 5 20:16:28 otp3 pgpool: 2016-06-05 20:16:28: pid 879: LOG: new connection received Jun 5 20:16:28 otp3 pgpool: 2016-06-05 20:16:28: pid 879: DETAIL: connecting host=10.200.1.64 port=60765 Jun 5 20:16:28 otp3 pgpool: 2016-06-05 20:16:28: pid 879: LOCATION: child.c:2110 Jun 5 20:16:28 otp3 pgpool[876]: [9-1] 2016-06-05 20:16:28: pid 876: LOG: new connection received Jun 5 20:16:28 otp3 pgpool[876]: [9-2] 2016-06-05 20:16:28: pid 876: DETAIL: connecting host=10.200.1.64 port=28776 Jun 5 20:16:28 otp3 pgpool[876]: [9-3] 2016-06-05 20:16:28: pid 876: LOCATION: child.c:2110 Jun 5 20:16:28 otp3 pgpool: 2016-06-05 20:16:28: pid 876: LOG: new connection received Jun 5 20:16:28 otp3 pgpool: 2016-06-05 20:16:28: pid 876: DETAIL: connecting host=10.200.1.64 port=28776 Jun 5 20:16:28 otp3 pgpool: 2016-06-05 20:16:28: pid 876: LOCATION: child.c:2110 Jun 5 20:45:01 otp3 pgpool[880]: [19-1] 2016-06-05 20:45:01: pid 880: LOG: new connection received Jun 5 20:45:01 otp3 pgpool[880]: [19-2] 2016-06-05 20:45:01: pid 880: DETAIL: connecting host=10.200.1.64 port=62592 Jun 5 20:45:01 otp3 pgpool[880]: [19-3] 2016-06-05 20:45:01: pid 880: LOCATION: child.c:2110 Jun 5 20:45:01 otp3 pgpool: 2016-06-05 20:45:01: pid 880: LOG: new connection received Jun 5 20:45:01 otp3 pgpool: 2016-06-05 20:45:01: pid 880: DETAIL: connecting host=10.200.1.64 port=62592 Jun 5 20:45:01 otp3 pgpool: 2016-06-05 20:45:01: pid 880: LOCATION: child.c:2110 Jun 5 20:45:01 otp3 pgpool[878]: [29-1] 2016-06-05 20:45:01: pid 878: LOG: new connection received Jun 5 20:45:01 otp3 pgpool[878]: [29-2] 2016-06-05 20:45:01: pid 878: DETAIL: connecting host=10.200.1.64 port=19580 Jun 5 20:45:01 otp3 pgpool[878]: [29-3] 2016-06-05 20:45:01: pid 878: LOCATION: child.c:2110 Jun 5 20:45:01 otp3 pgpool: 2016-06-05 20:45:01: pid 878: LOG: new connection received Jun 5 20:45:01 otp3 pgpool: 2016-06-05 20:45:01: pid 878: DETAIL: connecting host=10.200.1.64 port=19580 Jun 5 20:45:01 otp3 pgpool: 2016-06-05 20:45:01: pid 878: LOCATION: child.c:2110 Jun 5 20:46:01 otp3 pgpool[879]: [16-1] 2016-06-05 20:46:01: pid 879: LOG: new connection received Jun 5 20:46:01 otp3 pgpool[879]: [16-2] 2016-06-05 20:46:01: pid 879: DETAIL: connecting host=10.200.1.64 port=36280 Jun 5 20:46:01 otp3 pgpool[879]: [16-3] 2016-06-05 20:46:01: pid 879: LOCATION: child.c:2110 Jun 5 20:46:01 otp3 pgpool: 2016-06-05 20:46:01: pid 879: LOG: new connection received Jun 5 20:46:01 otp3 pgpool: 2016-06-05 20:46:01: pid 879: DETAIL: connecting host=10.200.1.64 port=36280 Jun 5 20:46:01 otp3 pgpool: 2016-06-05 20:46:01: pid 879: LOCATION: child.c:2110 Jun 5 20:46:28 otp3 pgpool[877]: [13-1] 2016-06-05 20:46:28: pid 877: LOG: new connection received Jun 5 20:46:28 otp3 pgpool[877]: [13-2] 2016-06-05 20:46:28: pid 877: DETAIL: connecting host=10.200.1.64 port=28435 Jun 5 20:46:28 otp3 pgpool[877]: [13-3] 2016-06-05 20:46:28: pid 877: LOCATION: child.c:2110 Jun 5 20:46:28 otp3 pgpool: 2016-06-05 20:46:28: pid 877: LOG: new connection received Jun 5 20:46:28 otp3 pgpool: 2016-06-05 20:46:28: pid 877: DETAIL: connecting host=10.200.1.64 port=28435 Jun 5 20:46:28 otp3 pgpool: 2016-06-05 20:46:28: pid 877: LOCATION: child.c:2110 Jun 5 20:46:31 otp3 pgpool[876]: [10-1] 2016-06-05 20:46:31: pid 876: LOG: new connection received Jun 5 20:46:31 otp3 pgpool[876]: [10-2] 2016-06-05 20:46:31: pid 876: DETAIL: connecting host=10.200.1.64 port=28554 Jun 5 20:46:31 otp3 pgpool[876]: [10-3] 2016-06-05 20:46:31: pid 876: LOCATION: child.c:2110 Jun 5 20:46:31 otp3 pgpool: 2016-06-05 20:46:31: pid 876: LOG: new connection received Jun 5 20:46:31 otp3 pgpool: 2016-06-05 20:46:31: pid 876: DETAIL: connecting host=10.200.1.64 port=28554 Jun 5 20:46:31 otp3 pgpool: 2016-06-05 20:46:31: pid 876: LOCATION: child.c:2110 Jun 5 21:14:34 otp3 pgpool[880]: [20-1] 2016-06-05 21:14:34: pid 880: LOG: new connection received Jun 5 21:14:34 otp3 pgpool[880]: [20-2] 2016-06-05 21:14:34: pid 880: DETAIL: connecting host=10.200.1.64 port=11367 Jun 5 21:14:34 otp3 pgpool[880]: [20-3] 2016-06-05 21:14:34: pid 880: LOCATION: child.c:2110 Jun 5 21:14:34 otp3 pgpool: 2016-06-05 21:14:34: pid 880: LOG: new connection received Jun 5 21:14:34 otp3 pgpool: 2016-06-05 21:14:34: pid 880: DETAIL: connecting host=10.200.1.64 port=11367 Jun 5 21:14:34 otp3 pgpool: 2016-06-05 21:14:34: pid 880: LOCATION: child.c:2110 Jun 5 21:15:04 otp3 pgpool[878]: [30-1] 2016-06-05 21:15:04: pid 878: LOG: new connection received Jun 5 21:15:04 otp3 pgpool[878]: [30-2] 2016-06-05 21:15:04: pid 878: DETAIL: connecting host=10.200.1.64 port=57898 Jun 5 21:15:04 otp3 pgpool[878]: [30-3] 2016-06-05 21:15:04: pid 878: LOCATION: child.c:2110 Jun 5 21:15:04 otp3 pgpool: 2016-06-05 21:15:04: pid 878: LOG: new connection received Jun 5 21:15:04 otp3 pgpool: 2016-06-05 21:15:04: pid 878: DETAIL: connecting host=10.200.1.64 port=57898 Jun 5 21:15:04 otp3 pgpool: 2016-06-05 21:15:04: pid 878: LOCATION: child.c:2110 Jun 5 21:16:04 otp3 pgpool[879]: [17-1] 2016-06-05 21:16:04: pid 879: LOG: new connection received Jun 5 21:16:04 otp3 pgpool[879]: [17-2] 2016-06-05 21:16:04: pid 879: DETAIL: connecting host=10.200.1.64 port=52168 Jun 5 21:16:04 otp3 pgpool[879]: [17-3] 2016-06-05 21:16:04: pid 879: LOCATION: child.c:2110 Jun 5 21:16:04 otp3 pgpool: 2016-06-05 21:16:04: pid 879: LOG: new connection received Jun 5 21:16:04 otp3 pgpool: 2016-06-05 21:16:04: pid 879: DETAIL: connecting host=10.200.1.64 port=52168 Jun 5 21:16:04 otp3 pgpool: 2016-06-05 21:16:04: pid 879: LOCATION: child.c:2110 Jun 5 21:16:31 otp3 pgpool[877]: [14-1] 2016-06-05 21:16:31: pid 877: LOG: new connection received Jun 5 21:16:31 otp3 pgpool[877]: [14-2] 2016-06-05 21:16:31: pid 877: DETAIL: connecting host=10.200.1.64 port=14584 Jun 5 21:16:31 otp3 pgpool[877]: [14-3] 2016-06-05 21:16:31: pid 877: LOCATION: child.c:2110 Jun 5 21:16:31 otp3 pgpool: 2016-06-05 21:16:31: pid 877: LOG: new connection received Jun 5 21:16:31 otp3 pgpool: 2016-06-05 21:16:31: pid 877: DETAIL: connecting host=10.200.1.64 port=14584 Jun 5 21:16:31 otp3 pgpool: 2016-06-05 21:16:31: pid 877: LOCATION: child.c:2110 Jun 5 21:16:34 otp3 pgpool[876]: [11-1] 2016-06-05 21:16:34: pid 876: LOG: new connection received Jun 5 21:16:34 otp3 pgpool[876]: [11-2] 2016-06-05 21:16:34: pid 876: DETAIL: connecting host=10.200.1.64 port=53947 Jun 5 21:16:34 otp3 pgpool[876]: [11-3] 2016-06-05 21:16:34: pid 876: LOCATION: child.c:2110 Jun 5 21:16:34 otp3 pgpool: 2016-06-05 21:16:34: pid 876: LOG: new connection received Jun 5 21:16:34 otp3 pgpool: 2016-06-05 21:16:34: pid 876: DETAIL: connecting host=10.200.1.64 port=53947 Jun 5 21:16:34 otp3 pgpool: 2016-06-05 21:16:34: pid 876: LOCATION: child.c:2110 Jun 5 21:44:07 otp3 pgpool[880]: [21-1] 2016-06-05 21:44:07: pid 880: LOG: new connection received Jun 5 21:44:07 otp3 pgpool[880]: [21-2] 2016-06-05 21:44:07: pid 880: DETAIL: connecting host=10.200.1.64 port=21844 Jun 5 21:44:07 otp3 pgpool[880]: [21-3] 2016-06-05 21:44:07: pid 880: LOCATION: child.c:2110 Jun 5 21:44:07 otp3 pgpool: 2016-06-05 21:44:07: pid 880: LOG: new connection received Jun 5 21:44:07 otp3 pgpool: 2016-06-05 21:44:07: pid 880: DETAIL: connecting host=10.200.1.64 port=21844 Jun 5 21:44:07 otp3 pgpool: 2016-06-05 21:44:07: pid 880: LOCATION: child.c:2110 Jun 5 21:45:08 otp3 pgpool[878]: [31-1] 2016-06-05 21:45:08: pid 878: LOG: new connection received Jun 5 21:45:08 otp3 pgpool[878]: [31-2] 2016-06-05 21:45:08: pid 878: DETAIL: connecting host=10.200.1.64 port=47212 Jun 5 21:45:08 otp3 pgpool[878]: [31-3] 2016-06-05 21:45:08: pid 878: LOCATION: child.c:2110 Jun 5 21:45:08 otp3 pgpool: 2016-06-05 21:45:08: pid 878: LOG: new connection received Jun 5 21:45:08 otp3 pgpool: 2016-06-05 21:45:08: pid 878: DETAIL: connecting host=10.200.1.64 port=47212 Jun 5 21:45:08 otp3 pgpool: 2016-06-05 21:45:08: pid 878: LOCATION: child.c:2110 Jun 5 21:46:08 otp3 pgpool[879]: [18-1] 2016-06-05 21:46:08: pid 879: LOG: new connection received Jun 5 21:46:08 otp3 pgpool[879]: [18-2] 2016-06-05 21:46:08: pid 879: DETAIL: connecting host=10.200.1.64 port=47543 Jun 5 21:46:08 otp3 pgpool[879]: [18-3] 2016-06-05 21:46:08: pid 879: LOCATION: child.c:2110 Jun 5 21:46:08 otp3 pgpool: 2016-06-05 21:46:08: pid 879: LOG: new connection received Jun 5 21:46:08 otp3 pgpool: 2016-06-05 21:46:08: pid 879: DETAIL: connecting host=10.200.1.64 port=47543 Jun 5 21:46:08 otp3 pgpool: 2016-06-05 21:46:08: pid 879: LOCATION: child.c:2110 Jun 5 21:46:34 otp3 pgpool[876]: [12-1] 2016-06-05 21:46:34: pid 876: LOG: new connection received Jun 5 21:46:34 otp3 pgpool[876]: [12-2] 2016-06-05 21:46:34: pid 876: DETAIL: connecting host=10.200.1.64 port=56125 Jun 5 21:46:34 otp3 pgpool[876]: [12-3] 2016-06-05 21:46:34: pid 876: LOCATION: child.c:2110 Jun 5 21:46:34 otp3 pgpool: 2016-06-05 21:46:34: pid 876: LOG: new connection received Jun 5 21:46:34 otp3 pgpool: 2016-06-05 21:46:34: pid 876: DETAIL: connecting host=10.200.1.64 port=56125 Jun 5 21:46:34 otp3 pgpool: 2016-06-05 21:46:34: pid 876: LOCATION: child.c:2110 Jun 5 21:46:38 otp3 pgpool[877]: [15-1] 2016-06-05 21:46:38: pid 877: LOG: new connection received Jun 5 21:46:38 otp3 pgpool[877]: [15-2] 2016-06-05 21:46:38: pid 877: DETAIL: connecting host=10.200.1.64 port=52716 Jun 5 21:46:38 otp3 pgpool[877]: [15-3] 2016-06-05 21:46:38: pid 877: LOCATION: child.c:2110 Jun 5 21:46:38 otp3 pgpool: 2016-06-05 21:46:38: pid 877: LOG: new connection received Jun 5 21:46:38 otp3 pgpool: 2016-06-05 21:46:38: pid 877: DETAIL: connecting host=10.200.1.64 port=52716 Jun 5 21:46:38 otp3 pgpool: 2016-06-05 21:46:38: pid 877: LOCATION: child.c:2110 Jun 5 22:13:41 otp3 pgpool[880]: [22-1] 2016-06-05 22:13:41: pid 880: LOG: new connection received Jun 5 22:13:41 otp3 pgpool[880]: [22-2] 2016-06-05 22:13:41: pid 880: DETAIL: connecting host=10.200.1.64 port=49593 Jun 5 22:13:41 otp3 pgpool[880]: [22-3] 2016-06-05 22:13:41: pid 880: LOCATION: child.c:2110 Jun 5 22:13:41 otp3 pgpool: 2016-06-05 22:13:41: pid 880: LOG: new connection received Jun 5 22:13:41 otp3 pgpool: 2016-06-05 22:13:41: pid 880: DETAIL: connecting host=10.200.1.64 port=49593 Jun 5 22:13:41 otp3 pgpool: 2016-06-05 22:13:41: pid 880: LOCATION: child.c:2110 Jun 5 22:15:11 otp3 pgpool[878]: [32-1] 2016-06-05 22:15:11: pid 878: LOG: new connection received Jun 5 22:15:11 otp3 pgpool[878]: [32-2] 2016-06-05 22:15:11: pid 878: DETAIL: connecting host=10.200.1.64 port=53106 Jun 5 22:15:11 otp3 pgpool[878]: [32-3] 2016-06-05 22:15:11: pid 878: LOCATION: child.c:2110 Jun 5 22:15:11 otp3 pgpool: 2016-06-05 22:15:11: pid 878: LOG: new connection received Jun 5 22:15:11 otp3 pgpool: 2016-06-05 22:15:11: pid 878: DETAIL: connecting host=10.200.1.64 port=53106 Jun 5 22:15:11 otp3 pgpool: 2016-06-05 22:15:11: pid 878: LOCATION: child.c:2110 Jun 5 22:16:08 otp3 pgpool[879]: [19-1] 2016-06-05 22:16:08: pid 879: LOG: new connection received Jun 5 22:16:08 otp3 pgpool[879]: [19-2] 2016-06-05 22:16:08: pid 879: DETAIL: connecting host=10.200.1.64 port=59545 Jun 5 22:16:08 otp3 pgpool[879]: [19-3] 2016-06-05 22:16:08: pid 879: LOCATION: child.c:2110 Jun 5 22:16:08 otp3 pgpool: 2016-06-05 22:16:08: pid 879: LOG: new connection received Jun 5 22:16:08 otp3 pgpool: 2016-06-05 22:16:08: pid 879: DETAIL: connecting host=10.200.1.64 port=59545 Jun 5 22:16:08 otp3 pgpool: 2016-06-05 22:16:08: pid 879: LOCATION: child.c:2110 Jun 5 22:16:11 otp3 pgpool[877]: [16-1] 2016-06-05 22:16:11: pid 877: LOG: new connection received Jun 5 22:16:11 otp3 pgpool[877]: [16-2] 2016-06-05 22:16:11: pid 877: DETAIL: connecting host=10.200.1.64 port=39885 Jun 5 22:16:11 otp3 pgpool[877]: [16-3] 2016-06-05 22:16:11: pid 877: LOCATION: child.c:2110 Jun 5 22:16:11 otp3 pgpool: 2016-06-05 22:16:11: pid 877: LOG: new connection received Jun 5 22:16:11 otp3 pgpool: 2016-06-05 22:16:11: pid 877: DETAIL: connecting host=10.200.1.64 port=39885 Jun 5 22:16:11 otp3 pgpool: 2016-06-05 22:16:11: pid 877: LOCATION: child.c:2110 Jun 5 22:16:11 otp3 pgpool[876]: [13-1] 2016-06-05 22:16:11: pid 876: LOG: new connection received Jun 5 22:16:11 otp3 pgpool[876]: [13-2] 2016-06-05 22:16:11: pid 876: DETAIL: connecting host=10.200.1.64 port=10611 Jun 5 22:16:11 otp3 pgpool[876]: [13-3] 2016-06-05 22:16:11: pid 876: LOCATION: child.c:2110 Jun 5 22:16:11 otp3 pgpool: 2016-06-05 22:16:11: pid 876: LOG: new connection received Jun 5 22:16:11 otp3 pgpool: 2016-06-05 22:16:11: pid 876: DETAIL: connecting host=10.200.1.64 port=10611 Jun 5 22:16:11 otp3 pgpool: 2016-06-05 22:16:11: pid 876: LOCATION: child.c:2110 Jun 5 22:43:43 otp3 pgpool[880]: [23-1] 2016-06-05 22:43:43: pid 880: LOG: new connection received Jun 5 22:43:43 otp3 pgpool[880]: [23-2] 2016-06-05 22:43:43: pid 880: DETAIL: connecting host=10.200.1.64 port=48681 Jun 5 22:43:43 otp3 pgpool[880]: [23-3] 2016-06-05 22:43:43: pid 880: LOCATION: child.c:2110 Jun 5 22:43:43 otp3 pgpool: 2016-06-05 22:43:43: pid 880: LOG: new connection received Jun 5 22:43:43 otp3 pgpool: 2016-06-05 22:43:43: pid 880: DETAIL: connecting host=10.200.1.64 port=48681 Jun 5 22:43:43 otp3 pgpool: 2016-06-05 22:43:43: pid 880: LOCATION: child.c:2110 Jun 5 22:44:43 otp3 pgpool[878]: [33-1] 2016-06-05 22:44:43: pid 878: LOG: new connection received Jun 5 22:44:43 otp3 pgpool[878]: [33-2] 2016-06-05 22:44:43: pid 878: DETAIL: connecting host=10.200.1.64 port=49124 Jun 5 22:44:43 otp3 pgpool[878]: [33-3] 2016-06-05 22:44:43: pid 878: LOCATION: child.c:2110 Jun 5 22:44:43 otp3 pgpool: 2016-06-05 22:44:43: pid 878: LOG: new connection received Jun 5 22:44:43 otp3 pgpool: 2016-06-05 22:44:43: pid 878: DETAIL: connecting host=10.200.1.64 port=49124 Jun 5 22:44:43 otp3 pgpool: 2016-06-05 22:44:43: pid 878: LOCATION: child.c:2110 Jun 5 22:45:40 otp3 pgpool[877]: [17-1] 2016-06-05 22:45:40: pid 877: LOG: new connection received Jun 5 22:45:40 otp3 pgpool[877]: [17-2] 2016-06-05 22:45:40: pid 877: DETAIL: connecting host=10.200.1.64 port=56431 Jun 5 22:45:40 otp3 pgpool[877]: [17-3] 2016-06-05 22:45:40: pid 877: LOCATION: child.c:2110 Jun 5 22:45:40 otp3 pgpool: 2016-06-05 22:45:40: pid 877: LOG: new connection received Jun 5 22:45:40 otp3 pgpool: 2016-06-05 22:45:40: pid 877: DETAIL: connecting host=10.200.1.64 port=56431 Jun 5 22:45:40 otp3 pgpool: 2016-06-05 22:45:40: pid 877: LOCATION: child.c:2110 Jun 5 22:45:43 otp3 pgpool[879]: [20-1] 2016-06-05 22:45:43: pid 879: LOG: new connection received Jun 5 22:45:43 otp3 pgpool[879]: [20-2] 2016-06-05 22:45:43: pid 879: DETAIL: connecting host=10.200.1.64 port=57034 Jun 5 22:45:43 otp3 pgpool[879]: [20-3] 2016-06-05 22:45:43: pid 879: LOCATION: child.c:2110 Jun 5 22:45:43 otp3 pgpool: 2016-06-05 22:45:43: pid 879: LOG: new connection received Jun 5 22:45:43 otp3 pgpool: 2016-06-05 22:45:43: pid 879: DETAIL: connecting host=10.200.1.64 port=57034 Jun 5 22:45:43 otp3 pgpool: 2016-06-05 22:45:43: pid 879: LOCATION: child.c:2110 Jun 5 22:46:13 otp3 pgpool[876]: [14-1] 2016-06-05 22:46:13: pid 876: LOG: new connection received Jun 5 22:46:13 otp3 pgpool[876]: [14-2] 2016-06-05 22:46:13: pid 876: DETAIL: connecting host=10.200.1.64 port=25081 Jun 5 22:46:13 otp3 pgpool[876]: [14-3] 2016-06-05 22:46:13: pid 876: LOCATION: child.c:2110 Jun 5 22:46:13 otp3 pgpool: 2016-06-05 22:46:13: pid 876: LOG: new connection received Jun 5 22:46:13 otp3 pgpool: 2016-06-05 22:46:13: pid 876: DETAIL: connecting host=10.200.1.64 port=25081 Jun 5 22:46:13 otp3 pgpool: 2016-06-05 22:46:13: pid 876: LOCATION: child.c:2110 Jun 5 23:13:46 otp3 pgpool[880]: [24-1] 2016-06-05 23:13:46: pid 880: LOG: new connection received Jun 5 23:13:46 otp3 pgpool[880]: [24-2] 2016-06-05 23:13:46: pid 880: DETAIL: connecting host=10.200.1.64 port=33719 Jun 5 23:13:46 otp3 pgpool[880]: [24-3] 2016-06-05 23:13:46: pid 880: LOCATION: child.c:2110 Jun 5 23:13:46 otp3 pgpool: 2016-06-05 23:13:46: pid 880: LOG: new connection received Jun 5 23:13:46 otp3 pgpool: 2016-06-05 23:13:46: pid 880: DETAIL: connecting host=10.200.1.64 port=33719 Jun 5 23:13:46 otp3 pgpool: 2016-06-05 23:13:46: pid 880: LOCATION: child.c:2110 Jun 5 23:14:16 otp3 pgpool[878]: [34-1] 2016-06-05 23:14:16: pid 878: LOG: new connection received Jun 5 23:14:16 otp3 pgpool[878]: [34-2] 2016-06-05 23:14:16: pid 878: DETAIL: connecting host=10.200.1.64 port=34110 Jun 5 23:14:16 otp3 pgpool[878]: [34-3] 2016-06-05 23:14:16: pid 878: LOCATION: child.c:2110 Jun 5 23:14:16 otp3 pgpool: 2016-06-05 23:14:16: pid 878: LOG: new connection received Jun 5 23:14:16 otp3 pgpool: 2016-06-05 23:14:16: pid 878: DETAIL: connecting host=10.200.1.64 port=34110 Jun 5 23:14:16 otp3 pgpool: 2016-06-05 23:14:16: pid 878: LOCATION: child.c:2110 Jun 5 23:15:14 otp3 pgpool[877]: [18-1] 2016-06-05 23:15:14: pid 877: LOG: new connection received Jun 5 23:15:14 otp3 pgpool[877]: [18-2] 2016-06-05 23:15:14: pid 877: DETAIL: connecting host=10.200.1.64 port=29821 Jun 5 23:15:14 otp3 pgpool[877]: [18-3] 2016-06-05 23:15:14: pid 877: LOCATION: child.c:2110 Jun 5 23:15:14 otp3 pgpool: 2016-06-05 23:15:14: pid 877: LOG: new connection received Jun 5 23:15:14 otp3 pgpool: 2016-06-05 23:15:14: pid 877: DETAIL: connecting host=10.200.1.64 port=29821 Jun 5 23:15:14 otp3 pgpool: 2016-06-05 23:15:14: pid 877: LOCATION: child.c:2110 Jun 5 23:15:46 otp3 pgpool[879]: [21-1] 2016-06-05 23:15:46: pid 879: LOG: new connection received Jun 5 23:15:46 otp3 pgpool[879]: [21-2] 2016-06-05 23:15:46: pid 879: DETAIL: connecting host=10.200.1.64 port=31453 Jun 5 23:15:46 otp3 pgpool[879]: [21-3] 2016-06-05 23:15:46: pid 879: LOCATION: child.c:2110 Jun 5 23:15:46 otp3 pgpool: 2016-06-05 23:15:46: pid 879: LOG: new connection received Jun 5 23:15:46 otp3 pgpool: 2016-06-05 23:15:46: pid 879: DETAIL: connecting host=10.200.1.64 port=31453 Jun 5 23:15:46 otp3 pgpool: 2016-06-05 23:15:46: pid 879: LOCATION: child.c:2110 Jun 5 23:16:16 otp3 pgpool[876]: [15-1] 2016-06-05 23:16:16: pid 876: LOG: new connection received Jun 5 23:16:16 otp3 pgpool[876]: [15-2] 2016-06-05 23:16:16: pid 876: DETAIL: connecting host=10.200.1.64 port=55228 Jun 5 23:16:16 otp3 pgpool[876]: [15-3] 2016-06-05 23:16:16: pid 876: LOCATION: child.c:2110 Jun 5 23:16:16 otp3 pgpool: 2016-06-05 23:16:16: pid 876: LOG: new connection received Jun 5 23:16:16 otp3 pgpool: 2016-06-05 23:16:16: pid 876: DETAIL: connecting host=10.200.1.64 port=55228 Jun 5 23:16:16 otp3 pgpool: 2016-06-05 23:16:16: pid 876: LOCATION: child.c:2110 Jun 5 23:43:49 otp3 pgpool[878]: [35-1] 2016-06-05 23:43:49: pid 878: LOG: new connection received Jun 5 23:43:49 otp3 pgpool[878]: [35-2] 2016-06-05 23:43:49: pid 878: DETAIL: connecting host=10.200.1.64 port=43404 Jun 5 23:43:49 otp3 pgpool[878]: [35-3] 2016-06-05 23:43:49: pid 878: LOCATION: child.c:2110 Jun 5 23:43:49 otp3 pgpool: 2016-06-05 23:43:49: pid 878: LOG: new connection received Jun 5 23:43:49 otp3 pgpool: 2016-06-05 23:43:49: pid 878: DETAIL: connecting host=10.200.1.64 port=43404 Jun 5 23:43:49 otp3 pgpool: 2016-06-05 23:43:49: pid 878: LOCATION: child.c:2110 Jun 5 23:43:49 otp3 pgpool[880]: [25-1] 2016-06-05 23:43:49: pid 880: LOG: new connection received Jun 5 23:43:49 otp3 pgpool[880]: [25-2] 2016-06-05 23:43:49: pid 880: DETAIL: connecting host=10.200.1.64 port=28849 Jun 5 23:43:49 otp3 pgpool[880]: [25-3] 2016-06-05 23:43:49: pid 880: LOCATION: child.c:2110 Jun 5 23:43:49 otp3 pgpool: 2016-06-05 23:43:49: pid 880: LOG: new connection received Jun 5 23:43:49 otp3 pgpool: 2016-06-05 23:43:49: pid 880: DETAIL: connecting host=10.200.1.64 port=28849 Jun 5 23:43:49 otp3 pgpool: 2016-06-05 23:43:49: pid 880: LOCATION: child.c:2110 Jun 5 23:44:47 otp3 pgpool[877]: [19-1] 2016-06-05 23:44:47: pid 877: LOG: new connection received Jun 5 23:44:47 otp3 pgpool[877]: [19-2] 2016-06-05 23:44:47: pid 877: DETAIL: connecting host=10.200.1.64 port=47677 Jun 5 23:44:47 otp3 pgpool[877]: [19-3] 2016-06-05 23:44:47: pid 877: LOCATION: child.c:2110 Jun 5 23:44:47 otp3 pgpool: 2016-06-05 23:44:47: pid 877: LOG: new connection received Jun 5 23:44:47 otp3 pgpool: 2016-06-05 23:44:47: pid 877: DETAIL: connecting host=10.200.1.64 port=47677 Jun 5 23:44:47 otp3 pgpool: 2016-06-05 23:44:47: pid 877: LOCATION: child.c:2110 Jun 5 23:45:19 otp3 pgpool[879]: [22-1] 2016-06-05 23:45:19: pid 879: LOG: new connection received Jun 5 23:45:19 otp3 pgpool[879]: [22-2] 2016-06-05 23:45:19: pid 879: DETAIL: connecting host=10.200.1.64 port=29511 Jun 5 23:45:19 otp3 pgpool[879]: [22-3] 2016-06-05 23:45:19: pid 879: LOCATION: child.c:2110 Jun 5 23:45:19 otp3 pgpool: 2016-06-05 23:45:19: pid 879: LOG: new connection received Jun 5 23:45:19 otp3 pgpool: 2016-06-05 23:45:19: pid 879: DETAIL: connecting host=10.200.1.64 port=29511 Jun 5 23:45:19 otp3 pgpool: 2016-06-05 23:45:19: pid 879: LOCATION: child.c:2110 Jun 5 23:45:50 otp3 pgpool[876]: [16-1] 2016-06-05 23:45:50: pid 876: LOG: new connection received Jun 5 23:45:50 otp3 pgpool[876]: [16-2] 2016-06-05 23:45:50: pid 876: DETAIL: connecting host=10.200.1.64 port=18593 Jun 5 23:45:50 otp3 pgpool[876]: [16-3] 2016-06-05 23:45:50: pid 876: LOCATION: child.c:2110 Jun 5 23:45:50 otp3 pgpool: 2016-06-05 23:45:50: pid 876: LOG: new connection received Jun 5 23:45:50 otp3 pgpool: 2016-06-05 23:45:50: pid 876: DETAIL: connecting host=10.200.1.64 port=18593 Jun 5 23:45:50 otp3 pgpool: 2016-06-05 23:45:50: pid 876: LOCATION: child.c:2110 Jun 6 00:13:24 otp3 pgpool[878]: [36-1] 2016-06-06 00:13:24: pid 878: LOG: new connection received Jun 6 00:13:24 otp3 pgpool[878]: [36-2] 2016-06-06 00:13:24: pid 878: DETAIL: connecting host=10.200.1.64 port=28919 Jun 6 00:13:24 otp3 pgpool[878]: [36-3] 2016-06-06 00:13:24: pid 878: LOCATION: child.c:2110 Jun 6 00:13:24 otp3 pgpool: 2016-06-06 00:13:24: pid 878: LOG: new connection received Jun 6 00:13:24 otp3 pgpool: 2016-06-06 00:13:24: pid 878: DETAIL: connecting host=10.200.1.64 port=28919 Jun 6 00:13:24 otp3 pgpool: 2016-06-06 00:13:24: pid 878: LOCATION: child.c:2110 Jun 6 00:13:24 otp3 pgpool[880]: [26-1] 2016-06-06 00:13:24: pid 880: LOG: new connection received Jun 6 00:13:24 otp3 pgpool[880]: [26-2] 2016-06-06 00:13:24: pid 880: DETAIL: connecting host=10.200.1.64 port=56945 Jun 6 00:13:24 otp3 pgpool[880]: [26-3] 2016-06-06 00:13:24: pid 880: LOCATION: child.c:2110 Jun 6 00:13:24 otp3 pgpool: 2016-06-06 00:13:24: pid 880: LOG: new connection received Jun 6 00:13:24 otp3 pgpool: 2016-06-06 00:13:24: pid 880: DETAIL: connecting host=10.200.1.64 port=56945 Jun 6 00:13:24 otp3 pgpool: 2016-06-06 00:13:24: pid 880: LOCATION: child.c:2110 Jun 6 00:14:51 otp3 pgpool[877]: [20-1] 2016-06-06 00:14:51: pid 877: LOG: new connection received Jun 6 00:14:51 otp3 pgpool[877]: [20-2] 2016-06-06 00:14:51: pid 877: DETAIL: connecting host=10.200.1.64 port=44035 Jun 6 00:14:51 otp3 pgpool[877]: [20-3] 2016-06-06 00:14:51: pid 877: LOCATION: child.c:2110 Jun 6 00:14:51 otp3 pgpool: 2016-06-06 00:14:51: pid 877: LOG: new connection received Jun 6 00:14:51 otp3 pgpool: 2016-06-06 00:14:51: pid 877: DETAIL: connecting host=10.200.1.64 port=44035 Jun 6 00:14:51 otp3 pgpool: 2016-06-06 00:14:51: pid 877: LOCATION: child.c:2110 Jun 6 00:15:24 otp3 pgpool[879]: [23-1] 2016-06-06 00:15:24: pid 879: LOG: new connection received Jun 6 00:15:24 otp3 pgpool[879]: [23-2] 2016-06-06 00:15:24: pid 879: DETAIL: connecting host=10.200.1.64 port=57217 Jun 6 00:15:24 otp3 pgpool[879]: [23-3] 2016-06-06 00:15:24: pid 879: LOCATION: child.c:2110 Jun 6 00:15:24 otp3 pgpool: 2016-06-06 00:15:24: pid 879: LOG: new connection received Jun 6 00:15:24 otp3 pgpool: 2016-06-06 00:15:24: pid 879: DETAIL: connecting host=10.200.1.64 port=57217 Jun 6 00:15:24 otp3 pgpool: 2016-06-06 00:15:24: pid 879: LOCATION: child.c:2110 Jun 6 00:15:54 otp3 pgpool[876]: [17-1] 2016-06-06 00:15:54: pid 876: LOG: new connection received Jun 6 00:15:54 otp3 pgpool[876]: [17-2] 2016-06-06 00:15:54: pid 876: DETAIL: connecting host=10.200.1.64 port=18926 Jun 6 00:15:54 otp3 pgpool[876]: [17-3] 2016-06-06 00:15:54: pid 876: LOCATION: child.c:2110 Jun 6 00:15:54 otp3 pgpool: 2016-06-06 00:15:54: pid 876: LOG: new connection received Jun 6 00:15:54 otp3 pgpool: 2016-06-06 00:15:54: pid 876: DETAIL: connecting host=10.200.1.64 port=18926 Jun 6 00:15:54 otp3 pgpool: 2016-06-06 00:15:54: pid 876: LOCATION: child.c:2110 Jun 6 00:42:57 otp3 pgpool[878]: [37-1] 2016-06-06 00:42:57: pid 878: LOG: new connection received Jun 6 00:42:57 otp3 pgpool[878]: [37-2] 2016-06-06 00:42:57: pid 878: DETAIL: connecting host=10.200.1.64 port=54143 Jun 6 00:42:57 otp3 pgpool[878]: [37-3] 2016-06-06 00:42:57: pid 878: LOCATION: child.c:2110 Jun 6 00:42:57 otp3 pgpool: 2016-06-06 00:42:57: pid 878: LOG: new connection received Jun 6 00:42:57 otp3 pgpool: 2016-06-06 00:42:57: pid 878: DETAIL: connecting host=10.200.1.64 port=54143 Jun 6 00:42:57 otp3 pgpool: 2016-06-06 00:42:57: pid 878: LOCATION: child.c:2110 Jun 6 00:43:27 otp3 pgpool[880]: [27-1] 2016-06-06 00:43:27: pid 880: LOG: new connection received Jun 6 00:43:27 otp3 pgpool[880]: [27-2] 2016-06-06 00:43:27: pid 880: DETAIL: connecting host=10.200.1.64 port=19551 Jun 6 00:43:27 otp3 pgpool[880]: [27-3] 2016-06-06 00:43:27: pid 880: LOCATION: child.c:2110 Jun 6 00:43:27 otp3 pgpool: 2016-06-06 00:43:27: pid 880: LOG: new connection received Jun 6 00:43:27 otp3 pgpool: 2016-06-06 00:43:27: pid 880: DETAIL: connecting host=10.200.1.64 port=19551 Jun 6 00:43:27 otp3 pgpool: 2016-06-06 00:43:27: pid 880: LOCATION: child.c:2110 Jun 6 00:44:54 otp3 pgpool[877]: [21-1] 2016-06-06 00:44:54: pid 877: LOG: new connection received Jun 6 00:44:54 otp3 pgpool[877]: [21-2] 2016-06-06 00:44:54: pid 877: DETAIL: connecting host=10.200.1.64 port=39059 Jun 6 00:44:54 otp3 pgpool[877]: [21-3] 2016-06-06 00:44:54: pid 877: LOCATION: child.c:2110 Jun 6 00:44:54 otp3 pgpool: 2016-06-06 00:44:54: pid 877: LOG: new connection received Jun 6 00:44:54 otp3 pgpool: 2016-06-06 00:44:54: pid 877: DETAIL: connecting host=10.200.1.64 port=39059 Jun 6 00:44:54 otp3 pgpool: 2016-06-06 00:44:54: pid 877: LOCATION: child.c:2110 Jun 6 00:45:27 otp3 pgpool[879]: [24-1] 2016-06-06 00:45:27: pid 879: LOG: new connection received Jun 6 00:45:27 otp3 pgpool[879]: [24-2] 2016-06-06 00:45:27: pid 879: DETAIL: connecting host=10.200.1.64 port=54705 Jun 6 00:45:27 otp3 pgpool[879]: [24-3] 2016-06-06 00:45:27: pid 879: LOCATION: child.c:2110 Jun 6 00:45:27 otp3 pgpool: 2016-06-06 00:45:27: pid 879: LOG: new connection received Jun 6 00:45:27 otp3 pgpool: 2016-06-06 00:45:27: pid 879: DETAIL: connecting host=10.200.1.64 port=54705 Jun 6 00:45:27 otp3 pgpool: 2016-06-06 00:45:27: pid 879: LOCATION: child.c:2110 Jun 6 00:45:57 otp3 pgpool[876]: [18-1] 2016-06-06 00:45:57: pid 876: LOG: new connection received Jun 6 00:45:57 otp3 pgpool[876]: [18-2] 2016-06-06 00:45:57: pid 876: DETAIL: connecting host=10.200.1.64 port=21005 Jun 6 00:45:57 otp3 pgpool[876]: [18-3] 2016-06-06 00:45:57: pid 876: LOCATION: child.c:2110 Jun 6 00:45:57 otp3 pgpool: 2016-06-06 00:45:57: pid 876: LOG: new connection received Jun 6 00:45:57 otp3 pgpool: 2016-06-06 00:45:57: pid 876: DETAIL: connecting host=10.200.1.64 port=21005 Jun 6 00:45:57 otp3 pgpool: 2016-06-06 00:45:57: pid 876: LOCATION: child.c:2110 Jun 6 01:12:59 otp3 pgpool[880]: [28-1] 2016-06-06 01:12:59: pid 880: LOG: new connection received Jun 6 01:12:59 otp3 pgpool[880]: [28-2] 2016-06-06 01:12:59: pid 880: DETAIL: connecting host=10.200.1.64 port=28755 Jun 6 01:12:59 otp3 pgpool[880]: [28-3] 2016-06-06 01:12:59: pid 880: LOCATION: child.c:2110 Jun 6 01:12:59 otp3 pgpool: 2016-06-06 01:12:59: pid 880: LOG: new connection received Jun 6 01:12:59 otp3 pgpool: 2016-06-06 01:12:59: pid 880: DETAIL: connecting host=10.200.1.64 port=28755 Jun 6 01:12:59 otp3 pgpool: 2016-06-06 01:12:59: pid 880: LOCATION: child.c:2110 Jun 6 01:12:59 otp3 pgpool[878]: [38-1] 2016-06-06 01:12:59: pid 878: LOG: new connection received Jun 6 01:12:59 otp3 pgpool[878]: [38-2] 2016-06-06 01:12:59: pid 878: DETAIL: connecting host=10.200.1.64 port=56489 Jun 6 01:12:59 otp3 pgpool[878]: [38-3] 2016-06-06 01:12:59: pid 878: LOCATION: child.c:2110 Jun 6 01:12:59 otp3 pgpool: 2016-06-06 01:12:59: pid 878: LOG: new connection received Jun 6 01:12:59 otp3 pgpool: 2016-06-06 01:12:59: pid 878: DETAIL: connecting host=10.200.1.64 port=56489 Jun 6 01:12:59 otp3 pgpool: 2016-06-06 01:12:59: pid 878: LOCATION: child.c:2110 Jun 6 01:14:57 otp3 pgpool[877]: [22-1] 2016-06-06 01:14:57: pid 877: LOG: new connection received Jun 6 01:14:57 otp3 pgpool[877]: [22-2] 2016-06-06 01:14:57: pid 877: DETAIL: connecting host=10.200.1.64 port=62328 Jun 6 01:14:57 otp3 pgpool[877]: [22-3] 2016-06-06 01:14:57: pid 877: LOCATION: child.c:2110 Jun 6 01:14:57 otp3 pgpool: 2016-06-06 01:14:57: pid 877: LOG: new connection received Jun 6 01:14:57 otp3 pgpool: 2016-06-06 01:14:57: pid 877: DETAIL: connecting host=10.200.1.64 port=62328 Jun 6 01:14:57 otp3 pgpool: 2016-06-06 01:14:57: pid 877: LOCATION: child.c:2110 Jun 6 01:14:59 otp3 pgpool[879]: [25-1] 2016-06-06 01:14:59: pid 879: LOG: new connection received Jun 6 01:14:59 otp3 pgpool[879]: [25-2] 2016-06-06 01:14:59: pid 879: DETAIL: connecting host=10.200.1.64 port=47765 Jun 6 01:14:59 otp3 pgpool[879]: [25-3] 2016-06-06 01:14:59: pid 879: LOCATION: child.c:2110 Jun 6 01:14:59 otp3 pgpool: 2016-06-06 01:14:59: pid 879: LOG: new connection received Jun 6 01:14:59 otp3 pgpool: 2016-06-06 01:14:59: pid 879: DETAIL: connecting host=10.200.1.64 port=47765 Jun 6 01:14:59 otp3 pgpool: 2016-06-06 01:14:59: pid 879: LOCATION: child.c:2110 Jun 6 01:15:29 otp3 pgpool[876]: [19-1] 2016-06-06 01:15:29: pid 876: LOG: new connection received Jun 6 01:15:29 otp3 pgpool[876]: [19-2] 2016-06-06 01:15:29: pid 876: DETAIL: connecting host=10.200.1.64 port=39178 Jun 6 01:15:29 otp3 pgpool[876]: [19-3] 2016-06-06 01:15:29: pid 876: LOCATION: child.c:2110 Jun 6 01:15:29 otp3 pgpool: 2016-06-06 01:15:29: pid 876: LOG: new connection received Jun 6 01:15:29 otp3 pgpool: 2016-06-06 01:15:29: pid 876: DETAIL: connecting host=10.200.1.64 port=39178 Jun 6 01:15:29 otp3 pgpool: 2016-06-06 01:15:29: pid 876: LOCATION: child.c:2110 Jun 6 01:42:32 otp3 pgpool[878]: [39-1] 2016-06-06 01:42:32: pid 878: LOG: new connection received Jun 6 01:42:32 otp3 pgpool[878]: [39-2] 2016-06-06 01:42:32: pid 878: DETAIL: connecting host=10.200.1.64 port=20610 Jun 6 01:42:32 otp3 pgpool[878]: [39-3] 2016-06-06 01:42:32: pid 878: LOCATION: child.c:2110 Jun 6 01:42:32 otp3 pgpool: 2016-06-06 01:42:32: pid 878: LOG: new connection received Jun 6 01:42:32 otp3 pgpool: 2016-06-06 01:42:32: pid 878: DETAIL: connecting host=10.200.1.64 port=20610 Jun 6 01:42:32 otp3 pgpool: 2016-06-06 01:42:32: pid 878: LOCATION: child.c:2110 Jun 6 01:43:02 otp3 pgpool[880]: [29-1] 2016-06-06 01:43:02: pid 880: LOG: new connection received Jun 6 01:43:02 otp3 pgpool[880]: [29-2] 2016-06-06 01:43:02: pid 880: DETAIL: connecting host=10.200.1.64 port=18190 Jun 6 01:43:02 otp3 pgpool[880]: [29-3] 2016-06-06 01:43:02: pid 880: LOCATION: child.c:2110 Jun 6 01:43:02 otp3 pgpool: 2016-06-06 01:43:02: pid 880: LOG: new connection received Jun 6 01:43:02 otp3 pgpool: 2016-06-06 01:43:02: pid 880: DETAIL: connecting host=10.200.1.64 port=18190 Jun 6 01:43:02 otp3 pgpool: 2016-06-06 01:43:02: pid 880: LOCATION: child.c:2110 Jun 6 01:45:00 otp3 pgpool[876]: [20-1] 2016-06-06 01:45:00: pid 876: LOG: new connection received Jun 6 01:45:00 otp3 pgpool[876]: [20-2] 2016-06-06 01:45:00: pid 876: DETAIL: connecting host=10.200.1.64 port=11459 Jun 6 01:45:00 otp3 pgpool[876]: [20-3] 2016-06-06 01:45:00: pid 876: LOCATION: child.c:2110 Jun 6 01:45:00 otp3 pgpool: 2016-06-06 01:45:00: pid 876: LOG: new connection received Jun 6 01:45:00 otp3 pgpool: 2016-06-06 01:45:00: pid 876: DETAIL: connecting host=10.200.1.64 port=11459 Jun 6 01:45:00 otp3 pgpool: 2016-06-06 01:45:00: pid 876: LOCATION: child.c:2110 Jun 6 01:45:02 otp3 pgpool[877]: [23-1] 2016-06-06 01:45:02: pid 877: LOG: new connection received Jun 6 01:45:02 otp3 pgpool[877]: [23-2] 2016-06-06 01:45:02: pid 877: DETAIL: connecting host=10.200.1.64 port=59955 Jun 6 01:45:02 otp3 pgpool[877]: [23-3] 2016-06-06 01:45:02: pid 877: LOCATION: child.c:2110 Jun 6 01:45:02 otp3 pgpool: 2016-06-06 01:45:02: pid 877: LOG: new connection received Jun 6 01:45:02 otp3 pgpool: 2016-06-06 01:45:02: pid 877: DETAIL: connecting host=10.200.1.64 port=59955 Jun 6 01:45:02 otp3 pgpool: 2016-06-06 01:45:02: pid 877: LOCATION: child.c:2110 Jun 6 01:45:02 otp3 pgpool[879]: [26-1] 2016-06-06 01:45:02: pid 879: LOG: new connection received Jun 6 01:45:02 otp3 pgpool[879]: [26-2] 2016-06-06 01:45:02: pid 879: DETAIL: connecting host=10.200.1.64 port=15521 Jun 6 01:45:02 otp3 pgpool[879]: [26-3] 2016-06-06 01:45:02: pid 879: LOCATION: child.c:2110 Jun 6 01:45:02 otp3 pgpool: 2016-06-06 01:45:02: pid 879: LOG: new connection received Jun 6 01:45:02 otp3 pgpool: 2016-06-06 01:45:02: pid 879: DETAIL: connecting host=10.200.1.64 port=15521 Jun 6 01:45:02 otp3 pgpool: 2016-06-06 01:45:02: pid 879: LOCATION: child.c:2110 Jun 6 02:12:05 otp3 pgpool[878]: [40-1] 2016-06-06 02:12:05: pid 878: LOG: new connection received Jun 6 02:12:05 otp3 pgpool[878]: [40-2] 2016-06-06 02:12:05: pid 878: DETAIL: connecting host=10.200.1.64 port=34021 Jun 6 02:12:05 otp3 pgpool[878]: [40-3] 2016-06-06 02:12:05: pid 878: LOCATION: child.c:2110 Jun 6 02:12:05 otp3 pgpool: 2016-06-06 02:12:05: pid 878: LOG: new connection received Jun 6 02:12:05 otp3 pgpool: 2016-06-06 02:12:05: pid 878: DETAIL: connecting host=10.200.1.64 port=34021 Jun 6 02:12:05 otp3 pgpool: 2016-06-06 02:12:05: pid 878: LOCATION: child.c:2110 Jun 6 02:13:05 otp3 pgpool[880]: [30-1] 2016-06-06 02:13:05: pid 880: LOG: new connection received Jun 6 02:13:05 otp3 pgpool[880]: [30-2] 2016-06-06 02:13:05: pid 880: DETAIL: connecting host=10.200.1.64 port=48254 Jun 6 02:13:05 otp3 pgpool[880]: [30-3] 2016-06-06 02:13:05: pid 880: LOCATION: child.c:2110 Jun 6 02:13:05 otp3 pgpool: 2016-06-06 02:13:05: pid 880: LOG: new connection received Jun 6 02:13:05 otp3 pgpool: 2016-06-06 02:13:05: pid 880: DETAIL: connecting host=10.200.1.64 port=48254 Jun 6 02:13:05 otp3 pgpool: 2016-06-06 02:13:05: pid 880: LOCATION: child.c:2110 Jun 6 02:14:36 otp3 pgpool[877]: [24-1] 2016-06-06 02:14:36: pid 877: LOG: new connection received Jun 6 02:14:36 otp3 pgpool[877]: [24-2] 2016-06-06 02:14:36: pid 877: DETAIL: connecting host=10.200.1.64 port=35353 Jun 6 02:14:36 otp3 pgpool[877]: [24-3] 2016-06-06 02:14:36: pid 877: LOCATION: child.c:2110 Jun 6 02:14:36 otp3 pgpool: 2016-06-06 02:14:36: pid 877: LOG: new connection received Jun 6 02:14:36 otp3 pgpool: 2016-06-06 02:14:36: pid 877: DETAIL: connecting host=10.200.1.64 port=35353 Jun 6 02:14:36 otp3 pgpool: 2016-06-06 02:14:36: pid 877: LOCATION: child.c:2110 Jun 6 02:15:03 otp3 pgpool[876]: [21-1] 2016-06-06 02:15:03: pid 876: LOG: new connection received Jun 6 02:15:03 otp3 pgpool[876]: [21-2] 2016-06-06 02:15:03: pid 876: DETAIL: connecting host=10.200.1.64 port=44084 Jun 6 02:15:03 otp3 pgpool[876]: [21-3] 2016-06-06 02:15:03: pid 876: LOCATION: child.c:2110 Jun 6 02:15:03 otp3 pgpool: 2016-06-06 02:15:03: pid 876: LOG: new connection received Jun 6 02:15:03 otp3 pgpool: 2016-06-06 02:15:03: pid 876: DETAIL: connecting host=10.200.1.64 port=44084 Jun 6 02:15:03 otp3 pgpool: 2016-06-06 02:15:03: pid 876: LOCATION: child.c:2110 Jun 6 02:15:06 otp3 pgpool[879]: [27-1] 2016-06-06 02:15:06: pid 879: LOG: new connection received Jun 6 02:15:06 otp3 pgpool[879]: [27-2] 2016-06-06 02:15:06: pid 879: DETAIL: connecting host=10.200.1.64 port=37517 Jun 6 02:15:06 otp3 pgpool[879]: [27-3] 2016-06-06 02:15:06: pid 879: LOCATION: child.c:2110 Jun 6 02:15:06 otp3 pgpool: 2016-06-06 02:15:06: pid 879: LOG: new connection received Jun 6 02:15:06 otp3 pgpool: 2016-06-06 02:15:06: pid 879: DETAIL: connecting host=10.200.1.64 port=37517 Jun 6 02:15:06 otp3 pgpool: 2016-06-06 02:15:06: pid 879: LOCATION: child.c:2110 Jun 6 02:42:09 otp3 pgpool[878]: [41-1] 2016-06-06 02:42:09: pid 878: LOG: new connection received Jun 6 02:42:09 otp3 pgpool[878]: [41-2] 2016-06-06 02:42:09: pid 878: DETAIL: connecting host=10.200.1.64 port=14216 Jun 6 02:42:09 otp3 pgpool[878]: [41-3] 2016-06-06 02:42:09: pid 878: LOCATION: child.c:2110 Jun 6 02:42:09 otp3 pgpool: 2016-06-06 02:42:09: pid 878: LOG: new connection received Jun 6 02:42:09 otp3 pgpool: 2016-06-06 02:42:09: pid 878: DETAIL: connecting host=10.200.1.64 port=14216 Jun 6 02:42:09 otp3 pgpool: 2016-06-06 02:42:09: pid 878: LOCATION: child.c:2110 Jun 6 02:43:09 otp3 pgpool[880]: [31-1] 2016-06-06 02:43:09: pid 880: LOG: new connection received Jun 6 02:43:09 otp3 pgpool[880]: [31-2] 2016-06-06 02:43:09: pid 880: DETAIL: connecting host=10.200.1.64 port=24681 Jun 6 02:43:09 otp3 pgpool[880]: [31-3] 2016-06-06 02:43:09: pid 880: LOCATION: child.c:2110 Jun 6 02:43:09 otp3 pgpool: 2016-06-06 02:43:09: pid 880: LOG: new connection received Jun 6 02:43:09 otp3 pgpool: 2016-06-06 02:43:09: pid 880: DETAIL: connecting host=10.200.1.64 port=24681 Jun 6 02:43:09 otp3 pgpool: 2016-06-06 02:43:09: pid 880: LOCATION: child.c:2110 Jun 6 02:44:36 otp3 pgpool[877]: [25-1] 2016-06-06 02:44:36: pid 877: LOG: new connection received Jun 6 02:44:36 otp3 pgpool[877]: [25-2] 2016-06-06 02:44:36: pid 877: DETAIL: connecting host=10.200.1.64 port=48709 Jun 6 02:44:36 otp3 pgpool[877]: [25-3] 2016-06-06 02:44:36: pid 877: LOCATION: child.c:2110 Jun 6 02:44:36 otp3 pgpool: 2016-06-06 02:44:36: pid 877: LOG: new connection received Jun 6 02:44:36 otp3 pgpool: 2016-06-06 02:44:36: pid 877: DETAIL: connecting host=10.200.1.64 port=48709 Jun 6 02:44:36 otp3 pgpool: 2016-06-06 02:44:36: pid 877: LOCATION: child.c:2110 Jun 6 02:44:39 otp3 pgpool[876]: [22-1] 2016-06-06 02:44:39: pid 876: LOG: new connection received Jun 6 02:44:39 otp3 pgpool[876]: [22-2] 2016-06-06 02:44:39: pid 876: DETAIL: connecting host=10.200.1.64 port=59952 Jun 6 02:44:39 otp3 pgpool[876]: [22-3] 2016-06-06 02:44:39: pid 876: LOCATION: child.c:2110 Jun 6 02:44:39 otp3 pgpool: 2016-06-06 02:44:39: pid 876: LOG: new connection received Jun 6 02:44:39 otp3 pgpool: 2016-06-06 02:44:39: pid 876: DETAIL: connecting host=10.200.1.64 port=59952 Jun 6 02:44:39 otp3 pgpool: 2016-06-06 02:44:39: pid 876: LOCATION: child.c:2110 Jun 6 02:45:09 otp3 pgpool[879]: [28-1] 2016-06-06 02:45:09: pid 879: LOG: new connection received Jun 6 02:45:09 otp3 pgpool[879]: [28-2] 2016-06-06 02:45:09: pid 879: DETAIL: connecting host=10.200.1.64 port=14155 Jun 6 02:45:09 otp3 pgpool[879]: [28-3] 2016-06-06 02:45:09: pid 879: LOCATION: child.c:2110 Jun 6 02:45:09 otp3 pgpool: 2016-06-06 02:45:09: pid 879: LOG: new connection received Jun 6 02:45:09 otp3 pgpool: 2016-06-06 02:45:09: pid 879: DETAIL: connecting host=10.200.1.64 port=14155 Jun 6 02:45:09 otp3 pgpool: 2016-06-06 02:45:09: pid 879: LOCATION: child.c:2110 Jun 6 03:11:42 otp3 pgpool[878]: [42-1] 2016-06-06 03:11:42: pid 878: LOG: new connection received Jun 6 03:11:42 otp3 pgpool[878]: [42-2] 2016-06-06 03:11:42: pid 878: DETAIL: connecting host=10.200.1.64 port=62066 Jun 6 03:11:42 otp3 pgpool[878]: [42-3] 2016-06-06 03:11:42: pid 878: LOCATION: child.c:2110 Jun 6 03:11:42 otp3 pgpool: 2016-06-06 03:11:42: pid 878: LOG: new connection received Jun 6 03:11:42 otp3 pgpool: 2016-06-06 03:11:42: pid 878: DETAIL: connecting host=10.200.1.64 port=62066 Jun 6 03:11:42 otp3 pgpool: 2016-06-06 03:11:42: pid 878: LOCATION: child.c:2110 Jun 6 03:13:13 otp3 pgpool[880]: [32-1] 2016-06-06 03:13:13: pid 880: LOG: new connection received Jun 6 03:13:13 otp3 pgpool[880]: [32-2] 2016-06-06 03:13:13: pid 880: DETAIL: connecting host=10.200.1.64 port=18116 Jun 6 03:13:13 otp3 pgpool[880]: [32-3] 2016-06-06 03:13:13: pid 880: LOCATION: child.c:2110 Jun 6 03:13:13 otp3 pgpool: 2016-06-06 03:13:13: pid 880: LOG: new connection received Jun 6 03:13:13 otp3 pgpool: 2016-06-06 03:13:13: pid 880: DETAIL: connecting host=10.200.1.64 port=18116 Jun 6 03:13:13 otp3 pgpool: 2016-06-06 03:13:13: pid 880: LOCATION: child.c:2110 Jun 6 03:14:39 otp3 pgpool[879]: [29-1] 2016-06-06 03:14:39: pid 879: LOG: new connection received Jun 6 03:14:39 otp3 pgpool[879]: [29-2] 2016-06-06 03:14:39: pid 879: DETAIL: connecting host=10.200.1.64 port=34404 Jun 6 03:14:39 otp3 pgpool[879]: [29-3] 2016-06-06 03:14:39: pid 879: LOCATION: child.c:2110 Jun 6 03:14:39 otp3 pgpool: 2016-06-06 03:14:39: pid 879: LOG: new connection received Jun 6 03:14:39 otp3 pgpool: 2016-06-06 03:14:39: pid 879: DETAIL: connecting host=10.200.1.64 port=34404 Jun 6 03:14:39 otp3 pgpool: 2016-06-06 03:14:39: pid 879: LOCATION: child.c:2110 Jun 6 03:14:43 otp3 pgpool[876]: [23-1] 2016-06-06 03:14:43: pid 876: LOG: new connection received Jun 6 03:14:43 otp3 pgpool[876]: [23-2] 2016-06-06 03:14:43: pid 876: DETAIL: connecting host=10.200.1.64 port=29332 Jun 6 03:14:43 otp3 pgpool[876]: [23-3] 2016-06-06 03:14:43: pid 876: LOCATION: child.c:2110 Jun 6 03:14:43 otp3 pgpool: 2016-06-06 03:14:43: pid 876: LOG: new connection received Jun 6 03:14:43 otp3 pgpool: 2016-06-06 03:14:43: pid 876: DETAIL: connecting host=10.200.1.64 port=29332 Jun 6 03:14:43 otp3 pgpool: 2016-06-06 03:14:43: pid 876: LOCATION: child.c:2110 Jun 6 03:14:43 otp3 pgpool[877]: [26-1] 2016-06-06 03:14:43: pid 877: LOG: new connection received Jun 6 03:14:43 otp3 pgpool[877]: [26-2] 2016-06-06 03:14:43: pid 877: DETAIL: connecting host=10.200.1.64 port=40974 Jun 6 03:14:43 otp3 pgpool[877]: [26-3] 2016-06-06 03:14:43: pid 877: LOCATION: child.c:2110 Jun 6 03:14:43 otp3 pgpool: 2016-06-06 03:14:43: pid 877: LOG: new connection received Jun 6 03:14:43 otp3 pgpool: 2016-06-06 03:14:43: pid 877: DETAIL: connecting host=10.200.1.64 port=40974 Jun 6 03:14:43 otp3 pgpool: 2016-06-06 03:14:43: pid 877: LOCATION: child.c:2110 Jun 6 03:41:17 otp3 pgpool[878]: [43-1] 2016-06-06 03:41:17: pid 878: LOG: new connection received Jun 6 03:41:17 otp3 pgpool[878]: [43-2] 2016-06-06 03:41:17: pid 878: DETAIL: connecting host=10.200.1.64 port=33799 Jun 6 03:41:17 otp3 pgpool[878]: [43-3] 2016-06-06 03:41:17: pid 878: LOCATION: child.c:2110 Jun 6 03:41:17 otp3 pgpool: 2016-06-06 03:41:17: pid 878: LOG: new connection received Jun 6 03:41:17 otp3 pgpool: 2016-06-06 03:41:17: pid 878: DETAIL: connecting host=10.200.1.64 port=33799 Jun 6 03:41:17 otp3 pgpool: 2016-06-06 03:41:17: pid 878: LOCATION: child.c:2110 Jun 6 03:43:18 otp3 pgpool[880]: [33-1] 2016-06-06 03:43:18: pid 880: LOG: new connection received Jun 6 03:43:18 otp3 pgpool[880]: [33-2] 2016-06-06 03:43:18: pid 880: DETAIL: connecting host=10.200.1.64 port=43118 Jun 6 03:43:18 otp3 pgpool[880]: [33-3] 2016-06-06 03:43:18: pid 880: LOCATION: child.c:2110 Jun 6 03:43:18 otp3 pgpool: 2016-06-06 03:43:18: pid 880: LOG: new connection received Jun 6 03:43:18 otp3 pgpool: 2016-06-06 03:43:18: pid 880: DETAIL: connecting host=10.200.1.64 port=43118 Jun 6 03:43:18 otp3 pgpool: 2016-06-06 03:43:18: pid 880: LOCATION: child.c:2110 Jun 6 03:44:12 otp3 pgpool[879]: [30-1] 2016-06-06 03:44:12: pid 879: LOG: new connection received Jun 6 03:44:12 otp3 pgpool[879]: [30-2] 2016-06-06 03:44:12: pid 879: DETAIL: connecting host=10.200.1.64 port=55972 Jun 6 03:44:12 otp3 pgpool[879]: [30-3] 2016-06-06 03:44:12: pid 879: LOCATION: child.c:2110 Jun 6 03:44:12 otp3 pgpool: 2016-06-06 03:44:12: pid 879: LOG: new connection received Jun 6 03:44:12 otp3 pgpool: 2016-06-06 03:44:12: pid 879: DETAIL: connecting host=10.200.1.64 port=55972 Jun 6 03:44:12 otp3 pgpool: 2016-06-06 03:44:12: pid 879: LOCATION: child.c:2110 Jun 6 03:44:27 otp3 pgpool[876]: [24-1] 2016-06-06 03:44:27: pid 876: LOG: new connection received Jun 6 03:44:27 otp3 pgpool[876]: [24-2] 2016-06-06 03:44:27: pid 876: DETAIL: connecting host=10.200.1.64 port=18686 Jun 6 03:44:27 otp3 pgpool[876]: [24-3] 2016-06-06 03:44:27: pid 876: LOCATION: child.c:2110 Jun 6 03:44:27 otp3 pgpool: 2016-06-06 03:44:27: pid 876: LOG: new connection received Jun 6 03:44:27 otp3 pgpool: 2016-06-06 03:44:27: pid 876: DETAIL: connecting host=10.200.1.64 port=18686 Jun 6 03:44:27 otp3 pgpool: 2016-06-06 03:44:27: pid 876: LOCATION: child.c:2110 Jun 6 03:44:48 otp3 pgpool[877]: [27-1] 2016-06-06 03:44:48: pid 877: LOG: new connection received Jun 6 03:44:48 otp3 pgpool[877]: [27-2] 2016-06-06 03:44:48: pid 877: DETAIL: connecting host=10.200.1.64 port=36586 Jun 6 03:44:48 otp3 pgpool[877]: [27-3] 2016-06-06 03:44:48: pid 877: LOCATION: child.c:2110 Jun 6 03:44:48 otp3 pgpool: 2016-06-06 03:44:48: pid 877: LOG: new connection received Jun 6 03:44:48 otp3 pgpool: 2016-06-06 03:44:48: pid 877: DETAIL: connecting host=10.200.1.64 port=36586 Jun 6 03:44:48 otp3 pgpool: 2016-06-06 03:44:48: pid 877: LOCATION: child.c:2110 Jun 6 04:11:21 otp3 pgpool[878]: [44-1] 2016-06-06 04:11:21: pid 878: LOG: new connection received Jun 6 04:11:21 otp3 pgpool[878]: [44-2] 2016-06-06 04:11:21: pid 878: DETAIL: connecting host=10.200.1.64 port=19059 Jun 6 04:11:21 otp3 pgpool[878]: [44-3] 2016-06-06 04:11:21: pid 878: LOCATION: child.c:2110 Jun 6 04:11:21 otp3 pgpool: 2016-06-06 04:11:21: pid 878: LOG: new connection received Jun 6 04:11:21 otp3 pgpool: 2016-06-06 04:11:21: pid 878: DETAIL: connecting host=10.200.1.64 port=19059 Jun 6 04:11:21 otp3 pgpool: 2016-06-06 04:11:21: pid 878: LOCATION: child.c:2110 Jun 6 04:12:51 otp3 pgpool[880]: [34-1] 2016-06-06 04:12:51: pid 880: LOG: new connection received Jun 6 04:12:51 otp3 pgpool[880]: [34-2] 2016-06-06 04:12:51: pid 880: DETAIL: connecting host=10.200.1.64 port=58727 Jun 6 04:12:51 otp3 pgpool[880]: [34-3] 2016-06-06 04:12:51: pid 880: LOCATION: child.c:2110 Jun 6 04:12:51 otp3 pgpool: 2016-06-06 04:12:51: pid 880: LOG: new connection received Jun 6 04:12:51 otp3 pgpool: 2016-06-06 04:12:51: pid 880: DETAIL: connecting host=10.200.1.64 port=58727 Jun 6 04:12:51 otp3 pgpool: 2016-06-06 04:12:51: pid 880: LOCATION: child.c:2110 Jun 6 04:14:16 otp3 pgpool[879]: [31-1] 2016-06-06 04:14:16: pid 879: LOG: new connection received Jun 6 04:14:16 otp3 pgpool[879]: [31-2] 2016-06-06 04:14:16: pid 879: DETAIL: connecting host=10.200.1.64 port=59841 Jun 6 04:14:16 otp3 pgpool[879]: [31-3] 2016-06-06 04:14:16: pid 879: LOCATION: child.c:2110 Jun 6 04:14:16 otp3 pgpool: 2016-06-06 04:14:16: pid 879: LOG: new connection received Jun 6 04:14:16 otp3 pgpool: 2016-06-06 04:14:16: pid 879: DETAIL: connecting host=10.200.1.64 port=59841 Jun 6 04:14:16 otp3 pgpool: 2016-06-06 04:14:16: pid 879: LOCATION: child.c:2110 Jun 6 04:14:22 otp3 pgpool[876]: [25-1] 2016-06-06 04:14:22: pid 876: LOG: new connection received Jun 6 04:14:22 otp3 pgpool[876]: [25-2] 2016-06-06 04:14:22: pid 876: DETAIL: connecting host=10.200.1.64 port=42489 Jun 6 04:14:22 otp3 pgpool[876]: [25-3] 2016-06-06 04:14:22: pid 876: LOCATION: child.c:2110 Jun 6 04:14:22 otp3 pgpool: 2016-06-06 04:14:22: pid 876: LOG: new connection received Jun 6 04:14:22 otp3 pgpool: 2016-06-06 04:14:22: pid 876: DETAIL: connecting host=10.200.1.64 port=42489 Jun 6 04:14:22 otp3 pgpool: 2016-06-06 04:14:22: pid 876: LOCATION: child.c:2110 Jun 6 04:14:52 otp3 pgpool[877]: [28-1] 2016-06-06 04:14:52: pid 877: LOG: new connection received Jun 6 04:14:52 otp3 pgpool[877]: [28-2] 2016-06-06 04:14:52: pid 877: DETAIL: connecting host=10.200.1.64 port=28355 Jun 6 04:14:52 otp3 pgpool[877]: [28-3] 2016-06-06 04:14:52: pid 877: LOCATION: child.c:2110 Jun 6 04:14:52 otp3 pgpool: 2016-06-06 04:14:52: pid 877: LOG: new connection received Jun 6 04:14:52 otp3 pgpool: 2016-06-06 04:14:52: pid 877: DETAIL: connecting host=10.200.1.64 port=28355 Jun 6 04:14:52 otp3 pgpool: 2016-06-06 04:14:52: pid 877: LOCATION: child.c:2110 Jun 6 04:41:25 otp3 pgpool[878]: [45-1] 2016-06-06 04:41:25: pid 878: LOG: new connection received Jun 6 04:41:25 otp3 pgpool[878]: [45-2] 2016-06-06 04:41:25: pid 878: DETAIL: connecting host=10.200.1.64 port=36948 Jun 6 04:41:25 otp3 pgpool[878]: [45-3] 2016-06-06 04:41:25: pid 878: LOCATION: child.c:2110 Jun 6 04:41:25 otp3 pgpool: 2016-06-06 04:41:25: pid 878: LOG: new connection received Jun 6 04:41:25 otp3 pgpool: 2016-06-06 04:41:25: pid 878: DETAIL: connecting host=10.200.1.64 port=36948 Jun 6 04:41:25 otp3 pgpool: 2016-06-06 04:41:25: pid 878: LOCATION: child.c:2110 Jun 6 04:42:55 otp3 pgpool[880]: [35-1] 2016-06-06 04:42:55: pid 880: LOG: new connection received Jun 6 04:42:55 otp3 pgpool[880]: [35-2] 2016-06-06 04:42:55: pid 880: DETAIL: connecting host=10.200.1.64 port=30227 Jun 6 04:42:55 otp3 pgpool[880]: [35-3] 2016-06-06 04:42:55: pid 880: LOCATION: child.c:2110 Jun 6 04:42:55 otp3 pgpool: 2016-06-06 04:42:55: pid 880: LOG: new connection received Jun 6 04:42:55 otp3 pgpool: 2016-06-06 04:42:55: pid 880: DETAIL: connecting host=10.200.1.64 port=30227 Jun 6 04:42:55 otp3 pgpool: 2016-06-06 04:42:55: pid 880: LOCATION: child.c:2110 Jun 6 04:43:49 otp3 pgpool[879]: [32-1] 2016-06-06 04:43:49: pid 879: LOG: new connection received Jun 6 04:43:49 otp3 pgpool[879]: [32-2] 2016-06-06 04:43:49: pid 879: DETAIL: connecting host=10.200.1.64 port=63325 Jun 6 04:43:49 otp3 pgpool[879]: [32-3] 2016-06-06 04:43:49: pid 879: LOCATION: child.c:2110 Jun 6 04:43:49 otp3 pgpool: 2016-06-06 04:43:49: pid 879: LOG: new connection received Jun 6 04:43:49 otp3 pgpool: 2016-06-06 04:43:49: pid 879: DETAIL: connecting host=10.200.1.64 port=63325 Jun 6 04:43:49 otp3 pgpool: 2016-06-06 04:43:49: pid 879: LOCATION: child.c:2110 Jun 6 04:44:25 otp3 pgpool[876]: [26-1] 2016-06-06 04:44:25: pid 876: LOG: new connection received Jun 6 04:44:25 otp3 pgpool[876]: [26-2] 2016-06-06 04:44:25: pid 876: DETAIL: connecting host=10.200.1.64 port=31670 Jun 6 04:44:25 otp3 pgpool[876]: [26-3] 2016-06-06 04:44:25: pid 876: LOCATION: child.c:2110 Jun 6 04:44:25 otp3 pgpool: 2016-06-06 04:44:25: pid 876: LOG: new connection received Jun 6 04:44:25 otp3 pgpool: 2016-06-06 04:44:25: pid 876: DETAIL: connecting host=10.200.1.64 port=31670 Jun 6 04:44:25 otp3 pgpool: 2016-06-06 04:44:25: pid 876: LOCATION: child.c:2110 Jun 6 04:44:25 otp3 pgpool[877]: [29-1] 2016-06-06 04:44:25: pid 877: LOG: new connection received Jun 6 04:44:25 otp3 pgpool[877]: [29-2] 2016-06-06 04:44:25: pid 877: DETAIL: connecting host=10.200.1.64 port=19220 Jun 6 04:44:25 otp3 pgpool[877]: [29-3] 2016-06-06 04:44:25: pid 877: LOCATION: child.c:2110 Jun 6 04:44:25 otp3 pgpool: 2016-06-06 04:44:25: pid 877: LOG: new connection received Jun 6 04:44:25 otp3 pgpool: 2016-06-06 04:44:25: pid 877: DETAIL: connecting host=10.200.1.64 port=19220 Jun 6 04:44:25 otp3 pgpool: 2016-06-06 04:44:25: pid 877: LOCATION: child.c:2110 Jun 6 05:11:29 otp3 pgpool[878]: [46-1] 2016-06-06 05:11:29: pid 878: LOG: new connection received Jun 6 05:11:29 otp3 pgpool[878]: [46-2] 2016-06-06 05:11:29: pid 878: DETAIL: connecting host=10.200.1.64 port=64344 Jun 6 05:11:29 otp3 pgpool[878]: [46-3] 2016-06-06 05:11:29: pid 878: LOCATION: child.c:2110 Jun 6 05:11:29 otp3 pgpool: 2016-06-06 05:11:29: pid 878: LOG: new connection received Jun 6 05:11:29 otp3 pgpool: 2016-06-06 05:11:29: pid 878: DETAIL: connecting host=10.200.1.64 port=64344 Jun 6 05:11:29 otp3 pgpool: 2016-06-06 05:11:29: pid 878: LOCATION: child.c:2110 Jun 6 05:12:59 otp3 pgpool[880]: [36-1] 2016-06-06 05:12:59: pid 880: LOG: new connection received Jun 6 05:12:59 otp3 pgpool[880]: [36-2] 2016-06-06 05:12:59: pid 880: DETAIL: connecting host=10.200.1.64 port=58732 Jun 6 05:12:59 otp3 pgpool[880]: [36-3] 2016-06-06 05:12:59: pid 880: LOCATION: child.c:2110 Jun 6 05:12:59 otp3 pgpool: 2016-06-06 05:12:59: pid 880: LOG: new connection received Jun 6 05:12:59 otp3 pgpool: 2016-06-06 05:12:59: pid 880: DETAIL: connecting host=10.200.1.64 port=58732 Jun 6 05:12:59 otp3 pgpool: 2016-06-06 05:12:59: pid 880: LOCATION: child.c:2110 Jun 6 05:13:22 otp3 pgpool[879]: [33-1] 2016-06-06 05:13:22: pid 879: LOG: new connection received Jun 6 05:13:22 otp3 pgpool[879]: [33-2] 2016-06-06 05:13:22: pid 879: DETAIL: connecting host=10.200.1.64 port=50618 Jun 6 05:13:22 otp3 pgpool[879]: [33-3] 2016-06-06 05:13:22: pid 879: LOCATION: child.c:2110 Jun 6 05:13:22 otp3 pgpool: 2016-06-06 05:13:22: pid 879: LOG: new connection received Jun 6 05:13:22 otp3 pgpool: 2016-06-06 05:13:22: pid 879: DETAIL: connecting host=10.200.1.64 port=50618 Jun 6 05:13:22 otp3 pgpool: 2016-06-06 05:13:22: pid 879: LOCATION: child.c:2110 Jun 6 05:13:59 otp3 pgpool[876]: [27-1] 2016-06-06 05:13:59: pid 876: LOG: new connection received Jun 6 05:13:59 otp3 pgpool[876]: [27-2] 2016-06-06 05:13:59: pid 876: DETAIL: connecting host=10.200.1.64 port=22754 Jun 6 05:13:59 otp3 pgpool[876]: [27-3] 2016-06-06 05:13:59: pid 876: LOCATION: child.c:2110 Jun 6 05:13:59 otp3 pgpool: 2016-06-06 05:13:59: pid 876: LOG: new connection received Jun 6 05:13:59 otp3 pgpool: 2016-06-06 05:13:59: pid 876: DETAIL: connecting host=10.200.1.64 port=22754 Jun 6 05:13:59 otp3 pgpool: 2016-06-06 05:13:59: pid 876: LOCATION: child.c:2110 Jun 6 05:14:29 otp3 pgpool[877]: [30-1] 2016-06-06 05:14:29: pid 877: LOG: new connection received Jun 6 05:14:29 otp3 pgpool[877]: [30-2] 2016-06-06 05:14:29: pid 877: DETAIL: connecting host=10.200.1.64 port=39241 Jun 6 05:14:29 otp3 pgpool[877]: [30-3] 2016-06-06 05:14:29: pid 877: LOCATION: child.c:2110 Jun 6 05:14:29 otp3 pgpool: 2016-06-06 05:14:29: pid 877: LOG: new connection received Jun 6 05:14:29 otp3 pgpool: 2016-06-06 05:14:29: pid 877: DETAIL: connecting host=10.200.1.64 port=39241 Jun 6 05:14:29 otp3 pgpool: 2016-06-06 05:14:29: pid 877: LOCATION: child.c:2110 Jun 6 05:41:03 otp3 pgpool[878]: [47-1] 2016-06-06 05:41:03: pid 878: LOG: new connection received Jun 6 05:41:03 otp3 pgpool[878]: [47-2] 2016-06-06 05:41:03: pid 878: DETAIL: connecting host=10.200.1.64 port=28269 Jun 6 05:41:03 otp3 pgpool[878]: [47-3] 2016-06-06 05:41:03: pid 878: LOCATION: child.c:2110 Jun 6 05:41:03 otp3 pgpool: 2016-06-06 05:41:03: pid 878: LOG: new connection received Jun 6 05:41:03 otp3 pgpool: 2016-06-06 05:41:03: pid 878: DETAIL: connecting host=10.200.1.64 port=28269 Jun 6 05:41:03 otp3 pgpool: 2016-06-06 05:41:03: pid 878: LOCATION: child.c:2110 Jun 6 05:42:33 otp3 pgpool[880]: [37-1] 2016-06-06 05:42:33: pid 880: LOG: new connection received Jun 6 05:42:33 otp3 pgpool[880]: [37-2] 2016-06-06 05:42:33: pid 880: DETAIL: connecting host=10.200.1.64 port=37044 Jun 6 05:42:33 otp3 pgpool[880]: [37-3] 2016-06-06 05:42:33: pid 880: LOCATION: child.c:2110 Jun 6 05:42:33 otp3 pgpool: 2016-06-06 05:42:33: pid 880: LOG: new connection received Jun 6 05:42:33 otp3 pgpool: 2016-06-06 05:42:33: pid 880: DETAIL: connecting host=10.200.1.64 port=37044 Jun 6 05:42:33 otp3 pgpool: 2016-06-06 05:42:33: pid 880: LOCATION: child.c:2110 Jun 6 05:42:55 otp3 pgpool[879]: [34-1] 2016-06-06 05:42:55: pid 879: LOG: new connection received Jun 6 05:42:55 otp3 pgpool[879]: [34-2] 2016-06-06 05:42:55: pid 879: DETAIL: connecting host=10.200.1.64 port=36975 Jun 6 05:42:55 otp3 pgpool[879]: [34-3] 2016-06-06 05:42:55: pid 879: LOCATION: child.c:2110 Jun 6 05:42:55 otp3 pgpool: 2016-06-06 05:42:55: pid 879: LOG: new connection received Jun 6 05:42:55 otp3 pgpool: 2016-06-06 05:42:55: pid 879: DETAIL: connecting host=10.200.1.64 port=36975 Jun 6 05:42:55 otp3 pgpool: 2016-06-06 05:42:55: pid 879: LOCATION: child.c:2110 Jun 6 05:43:33 otp3 pgpool[876]: [28-1] 2016-06-06 05:43:33: pid 876: LOG: new connection received Jun 6 05:43:33 otp3 pgpool[876]: [28-2] 2016-06-06 05:43:33: pid 876: DETAIL: connecting host=10.200.1.64 port=20625 Jun 6 05:43:33 otp3 pgpool[876]: [28-3] 2016-06-06 05:43:33: pid 876: LOCATION: child.c:2110 Jun 6 05:43:33 otp3 pgpool: 2016-06-06 05:43:33: pid 876: LOG: new connection received Jun 6 05:43:33 otp3 pgpool: 2016-06-06 05:43:33: pid 876: DETAIL: connecting host=10.200.1.64 port=20625 Jun 6 05:43:33 otp3 pgpool: 2016-06-06 05:43:33: pid 876: LOCATION: child.c:2110 Jun 6 05:44:03 otp3 pgpool[877]: [31-1] 2016-06-06 05:44:03: pid 877: LOG: new connection received Jun 6 05:44:03 otp3 pgpool[877]: [31-2] 2016-06-06 05:44:03: pid 877: DETAIL: connecting host=10.200.1.64 port=19093 Jun 6 05:44:03 otp3 pgpool[877]: [31-3] 2016-06-06 05:44:03: pid 877: LOCATION: child.c:2110 Jun 6 05:44:03 otp3 pgpool: 2016-06-06 05:44:03: pid 877: LOG: new connection received Jun 6 05:44:03 otp3 pgpool: 2016-06-06 05:44:03: pid 877: DETAIL: connecting host=10.200.1.64 port=19093 Jun 6 05:44:03 otp3 pgpool: 2016-06-06 05:44:03: pid 877: LOCATION: child.c:2110 Jun 6 06:11:06 otp3 pgpool[878]: [48-1] 2016-06-06 06:11:06: pid 878: LOG: new connection received Jun 6 06:11:06 otp3 pgpool[878]: [48-2] 2016-06-06 06:11:06: pid 878: DETAIL: connecting host=10.200.1.64 port=24822 Jun 6 06:11:06 otp3 pgpool[878]: [48-3] 2016-06-06 06:11:06: pid 878: LOCATION: child.c:2110 Jun 6 06:11:06 otp3 pgpool: 2016-06-06 06:11:06: pid 878: LOG: new connection received Jun 6 06:11:06 otp3 pgpool: 2016-06-06 06:11:06: pid 878: DETAIL: connecting host=10.200.1.64 port=24822 Jun 6 06:11:06 otp3 pgpool: 2016-06-06 06:11:06: pid 878: LOCATION: child.c:2110 Jun 6 06:12:36 otp3 pgpool[880]: [38-1] 2016-06-06 06:12:36: pid 880: LOG: new connection received Jun 6 06:12:36 otp3 pgpool[880]: [38-2] 2016-06-06 06:12:36: pid 880: DETAIL: connecting host=10.200.1.64 port=43351 Jun 6 06:12:36 otp3 pgpool[880]: [38-3] 2016-06-06 06:12:36: pid 880: LOCATION: child.c:2110 Jun 6 06:12:36 otp3 pgpool: 2016-06-06 06:12:36: pid 880: LOG: new connection received Jun 6 06:12:36 otp3 pgpool: 2016-06-06 06:12:36: pid 880: DETAIL: connecting host=10.200.1.64 port=43351 Jun 6 06:12:36 otp3 pgpool: 2016-06-06 06:12:36: pid 880: LOCATION: child.c:2110 Jun 6 06:12:59 otp3 pgpool[879]: [35-1] 2016-06-06 06:12:59: pid 879: LOG: new connection received Jun 6 06:12:59 otp3 pgpool[879]: [35-2] 2016-06-06 06:12:59: pid 879: DETAIL: connecting host=10.200.1.64 port=51498 Jun 6 06:12:59 otp3 pgpool[879]: [35-3] 2016-06-06 06:12:59: pid 879: LOCATION: child.c:2110 Jun 6 06:12:59 otp3 pgpool: 2016-06-06 06:12:59: pid 879: LOG: new connection received Jun 6 06:12:59 otp3 pgpool: 2016-06-06 06:12:59: pid 879: DETAIL: connecting host=10.200.1.64 port=51498 Jun 6 06:12:59 otp3 pgpool: 2016-06-06 06:12:59: pid 879: LOCATION: child.c:2110 Jun 6 06:13:36 otp3 pgpool[876]: [29-1] 2016-06-06 06:13:36: pid 876: LOG: new connection received Jun 6 06:13:36 otp3 pgpool[876]: [29-2] 2016-06-06 06:13:36: pid 876: DETAIL: connecting host=10.200.1.64 port=19548 Jun 6 06:13:36 otp3 pgpool[876]: [29-3] 2016-06-06 06:13:36: pid 876: LOCATION: child.c:2110 Jun 6 06:13:36 otp3 pgpool: 2016-06-06 06:13:36: pid 876: LOG: new connection received Jun 6 06:13:36 otp3 pgpool: 2016-06-06 06:13:36: pid 876: DETAIL: connecting host=10.200.1.64 port=19548 Jun 6 06:13:36 otp3 pgpool: 2016-06-06 06:13:36: pid 876: LOCATION: child.c:2110 Jun 6 06:14:06 otp3 pgpool[877]: [32-1] 2016-06-06 06:14:06: pid 877: LOG: new connection received Jun 6 06:14:06 otp3 pgpool[877]: [32-2] 2016-06-06 06:14:06: pid 877: DETAIL: connecting host=10.200.1.64 port=12009 Jun 6 06:14:06 otp3 pgpool[877]: [32-3] 2016-06-06 06:14:06: pid 877: LOCATION: child.c:2110 Jun 6 06:14:06 otp3 pgpool: 2016-06-06 06:14:06: pid 877: LOG: new connection received Jun 6 06:14:06 otp3 pgpool: 2016-06-06 06:14:06: pid 877: DETAIL: connecting host=10.200.1.64 port=12009 Jun 6 06:14:06 otp3 pgpool: 2016-06-06 06:14:06: pid 877: LOCATION: child.c:2110 Jun 6 06:40:39 otp3 pgpool[878]: [49-1] 2016-06-06 06:40:39: pid 878: LOG: new connection received Jun 6 06:40:39 otp3 pgpool[878]: [49-2] 2016-06-06 06:40:39: pid 878: DETAIL: connecting host=10.200.1.64 port=13526 Jun 6 06:40:39 otp3 pgpool[878]: [49-3] 2016-06-06 06:40:39: pid 878: LOCATION: child.c:2110 Jun 6 06:40:39 otp3 pgpool: 2016-06-06 06:40:39: pid 878: LOG: new connection received Jun 6 06:40:39 otp3 pgpool: 2016-06-06 06:40:39: pid 878: DETAIL: connecting host=10.200.1.64 port=13526 Jun 6 06:40:39 otp3 pgpool: 2016-06-06 06:40:39: pid 878: LOCATION: child.c:2110 Jun 6 06:42:33 otp3 pgpool[879]: [36-1] 2016-06-06 06:42:33: pid 879: LOG: new connection received Jun 6 06:42:33 otp3 pgpool[879]: [36-2] 2016-06-06 06:42:33: pid 879: DETAIL: connecting host=10.200.1.64 port=53386 Jun 6 06:42:33 otp3 pgpool[879]: [36-3] 2016-06-06 06:42:33: pid 879: LOCATION: child.c:2110 Jun 6 06:42:33 otp3 pgpool: 2016-06-06 06:42:33: pid 879: LOG: new connection received Jun 6 06:42:33 otp3 pgpool: 2016-06-06 06:42:33: pid 879: DETAIL: connecting host=10.200.1.64 port=53386 Jun 6 06:42:33 otp3 pgpool: 2016-06-06 06:42:33: pid 879: LOCATION: child.c:2110 Jun 6 06:42:39 otp3 pgpool[880]: [39-1] 2016-06-06 06:42:39: pid 880: LOG: new connection received Jun 6 06:42:39 otp3 pgpool[880]: [39-2] 2016-06-06 06:42:39: pid 880: DETAIL: connecting host=10.200.1.64 port=33015 Jun 6 06:42:39 otp3 pgpool[880]: [39-3] 2016-06-06 06:42:39: pid 880: LOCATION: child.c:2110 Jun 6 06:42:39 otp3 pgpool: 2016-06-06 06:42:39: pid 880: LOG: new connection received Jun 6 06:42:39 otp3 pgpool: 2016-06-06 06:42:39: pid 880: DETAIL: connecting host=10.200.1.64 port=33015 Jun 6 06:42:39 otp3 pgpool: 2016-06-06 06:42:39: pid 880: LOCATION: child.c:2110 Jun 6 06:43:39 otp3 pgpool[876]: [30-1] 2016-06-06 06:43:39: pid 876: LOG: new connection received Jun 6 06:43:39 otp3 pgpool[876]: [30-2] 2016-06-06 06:43:39: pid 876: DETAIL: connecting host=10.200.1.64 port=21442 Jun 6 06:43:39 otp3 pgpool[876]: [30-3] 2016-06-06 06:43:39: pid 876: LOCATION: child.c:2110 Jun 6 06:43:39 otp3 pgpool: 2016-06-06 06:43:39: pid 876: LOG: new connection received Jun 6 06:43:39 otp3 pgpool: 2016-06-06 06:43:39: pid 876: DETAIL: connecting host=10.200.1.64 port=21442 Jun 6 06:43:39 otp3 pgpool: 2016-06-06 06:43:39: pid 876: LOCATION: child.c:2110 Jun 6 06:44:09 otp3 pgpool[877]: [33-1] 2016-06-06 06:44:09: pid 877: LOG: new connection received Jun 6 06:44:09 otp3 pgpool[877]: [33-2] 2016-06-06 06:44:09: pid 877: DETAIL: connecting host=10.200.1.64 port=35852 Jun 6 06:44:09 otp3 pgpool[877]: [33-3] 2016-06-06 06:44:09: pid 877: LOCATION: child.c:2110 Jun 6 06:44:09 otp3 pgpool: 2016-06-06 06:44:09: pid 877: LOG: new connection received Jun 6 06:44:09 otp3 pgpool: 2016-06-06 06:44:09: pid 877: DETAIL: connecting host=10.200.1.64 port=35852 Jun 6 06:44:09 otp3 pgpool: 2016-06-06 06:44:09: pid 877: LOCATION: child.c:2110 Jun 6 07:10:42 otp3 pgpool[878]: [50-1] 2016-06-06 07:10:42: pid 878: LOG: new connection received Jun 6 07:10:42 otp3 pgpool[878]: [50-2] 2016-06-06 07:10:42: pid 878: DETAIL: connecting host=10.200.1.64 port=27223 Jun 6 07:10:42 otp3 pgpool[878]: [50-3] 2016-06-06 07:10:42: pid 878: LOCATION: child.c:2110 Jun 6 07:10:42 otp3 pgpool: 2016-06-06 07:10:42: pid 878: LOG: new connection received Jun 6 07:10:42 otp3 pgpool: 2016-06-06 07:10:42: pid 878: DETAIL: connecting host=10.200.1.64 port=27223 Jun 6 07:10:42 otp3 pgpool: 2016-06-06 07:10:42: pid 878: LOCATION: child.c:2110 Jun 6 07:12:12 otp3 pgpool[880]: [40-1] 2016-06-06 07:12:12: pid 880: LOG: new connection received Jun 6 07:12:12 otp3 pgpool[880]: [40-2] 2016-06-06 07:12:12: pid 880: DETAIL: connecting host=10.200.1.64 port=59018 Jun 6 07:12:12 otp3 pgpool[880]: [40-3] 2016-06-06 07:12:12: pid 880: LOCATION: child.c:2110 Jun 6 07:12:12 otp3 pgpool: 2016-06-06 07:12:12: pid 880: LOG: new connection received Jun 6 07:12:12 otp3 pgpool: 2016-06-06 07:12:12: pid 880: DETAIL: connecting host=10.200.1.64 port=59018 Jun 6 07:12:12 otp3 pgpool: 2016-06-06 07:12:12: pid 880: LOCATION: child.c:2110 Jun 6 07:12:36 otp3 pgpool[879]: [37-1] 2016-06-06 07:12:36: pid 879: LOG: new connection received Jun 6 07:12:36 otp3 pgpool[879]: [37-2] 2016-06-06 07:12:36: pid 879: DETAIL: connecting host=10.200.1.64 port=28818 Jun 6 07:12:36 otp3 pgpool[879]: [37-3] 2016-06-06 07:12:36: pid 879: LOCATION: child.c:2110 Jun 6 07:12:36 otp3 pgpool: 2016-06-06 07:12:36: pid 879: LOG: new connection received Jun 6 07:12:36 otp3 pgpool: 2016-06-06 07:12:36: pid 879: DETAIL: connecting host=10.200.1.64 port=28818 Jun 6 07:12:36 otp3 pgpool: 2016-06-06 07:12:36: pid 879: LOCATION: child.c:2110 Jun 6 07:13:42 otp3 pgpool[876]: [31-1] 2016-06-06 07:13:42: pid 876: LOG: new connection received Jun 6 07:13:42 otp3 pgpool[876]: [31-2] 2016-06-06 07:13:42: pid 876: DETAIL: connecting host=10.200.1.64 port=16890 Jun 6 07:13:42 otp3 pgpool[876]: [31-3] 2016-06-06 07:13:42: pid 876: LOCATION: child.c:2110 Jun 6 07:13:42 otp3 pgpool: 2016-06-06 07:13:42: pid 876: LOG: new connection received Jun 6 07:13:42 otp3 pgpool: 2016-06-06 07:13:42: pid 876: DETAIL: connecting host=10.200.1.64 port=16890 Jun 6 07:13:42 otp3 pgpool: 2016-06-06 07:13:42: pid 876: LOCATION: child.c:2110 Jun 6 07:14:12 otp3 pgpool[877]: [34-1] 2016-06-06 07:14:12: pid 877: LOG: new connection received Jun 6 07:14:12 otp3 pgpool[877]: [34-2] 2016-06-06 07:14:12: pid 877: DETAIL: connecting host=10.200.1.64 port=38509 Jun 6 07:14:12 otp3 pgpool[877]: [34-3] 2016-06-06 07:14:12: pid 877: LOCATION: child.c:2110 Jun 6 07:14:12 otp3 pgpool: 2016-06-06 07:14:12: pid 877: LOG: new connection received Jun 6 07:14:12 otp3 pgpool: 2016-06-06 07:14:12: pid 877: DETAIL: connecting host=10.200.1.64 port=38509 Jun 6 07:14:12 otp3 pgpool: 2016-06-06 07:14:12: pid 877: LOCATION: child.c:2110 Jun 6 07:40:15 otp3 pgpool[878]: [51-1] 2016-06-06 07:40:15: pid 878: LOG: new connection received Jun 6 07:40:15 otp3 pgpool[878]: [51-2] 2016-06-06 07:40:15: pid 878: DETAIL: connecting host=10.200.1.64 port=37010 Jun 6 07:40:15 otp3 pgpool[878]: [51-3] 2016-06-06 07:40:15: pid 878: LOCATION: child.c:2110 Jun 6 07:40:15 otp3 pgpool: 2016-06-06 07:40:15: pid 878: LOG: new connection received Jun 6 07:40:15 otp3 pgpool: 2016-06-06 07:40:15: pid 878: DETAIL: connecting host=10.200.1.64 port=37010 Jun 6 07:40:15 otp3 pgpool: 2016-06-06 07:40:15: pid 878: LOCATION: child.c:2110 Jun 6 07:42:09 otp3 pgpool[880]: [41-1] 2016-06-06 07:42:09: pid 880: LOG: new connection received Jun 6 07:42:09 otp3 pgpool[880]: [41-2] 2016-06-06 07:42:09: pid 880: DETAIL: connecting host=10.200.1.64 port=26129 Jun 6 07:42:09 otp3 pgpool[880]: [41-3] 2016-06-06 07:42:09: pid 880: LOCATION: child.c:2110 Jun 6 07:42:09 otp3 pgpool: 2016-06-06 07:42:09: pid 880: LOG: new connection received Jun 6 07:42:09 otp3 pgpool: 2016-06-06 07:42:09: pid 880: DETAIL: connecting host=10.200.1.64 port=26129 Jun 6 07:42:09 otp3 pgpool: 2016-06-06 07:42:09: pid 880: LOCATION: child.c:2110 Jun 6 07:42:16 otp3 pgpool[879]: [38-1] 2016-06-06 07:42:16: pid 879: LOG: new connection received Jun 6 07:42:16 otp3 pgpool[879]: [38-2] 2016-06-06 07:42:16: pid 879: DETAIL: connecting host=10.200.1.64 port=25031 Jun 6 07:42:16 otp3 pgpool[879]: [38-3] 2016-06-06 07:42:16: pid 879: LOCATION: child.c:2110 Jun 6 07:42:16 otp3 pgpool: 2016-06-06 07:42:16: pid 879: LOG: new connection received Jun 6 07:42:16 otp3 pgpool: 2016-06-06 07:42:16: pid 879: DETAIL: connecting host=10.200.1.64 port=25031 Jun 6 07:42:16 otp3 pgpool: 2016-06-06 07:42:16: pid 879: LOCATION: child.c:2110 Jun 6 07:43:16 otp3 pgpool[876]: [32-1] 2016-06-06 07:43:16: pid 876: LOG: new connection received Jun 6 07:43:16 otp3 pgpool[876]: [32-2] 2016-06-06 07:43:16: pid 876: DETAIL: connecting host=10.200.1.64 port=52988 Jun 6 07:43:16 otp3 pgpool[876]: [32-3] 2016-06-06 07:43:16: pid 876: LOCATION: child.c:2110 Jun 6 07:43:16 otp3 pgpool: 2016-06-06 07:43:16: pid 876: LOG: new connection received Jun 6 07:43:16 otp3 pgpool: 2016-06-06 07:43:16: pid 876: DETAIL: connecting host=10.200.1.64 port=52988 Jun 6 07:43:16 otp3 pgpool: 2016-06-06 07:43:16: pid 876: LOCATION: child.c:2110 Jun 6 07:43:46 otp3 pgpool[877]: [35-1] 2016-06-06 07:43:46: pid 877: LOG: new connection received Jun 6 07:43:46 otp3 pgpool[877]: [35-2] 2016-06-06 07:43:46: pid 877: DETAIL: connecting host=10.200.1.64 port=42642 Jun 6 07:43:46 otp3 pgpool[877]: [35-3] 2016-06-06 07:43:46: pid 877: LOCATION: child.c:2110 Jun 6 07:43:46 otp3 pgpool: 2016-06-06 07:43:46: pid 877: LOG: new connection received Jun 6 07:43:46 otp3 pgpool: 2016-06-06 07:43:46: pid 877: DETAIL: connecting host=10.200.1.64 port=42642 Jun 6 07:43:46 otp3 pgpool: 2016-06-06 07:43:46: pid 877: LOCATION: child.c:2110 Jun 6 08:10:19 otp3 pgpool[878]: [52-1] 2016-06-06 08:10:19: pid 878: LOG: new connection received Jun 6 08:10:19 otp3 pgpool[878]: [52-2] 2016-06-06 08:10:19: pid 878: DETAIL: connecting host=10.200.1.64 port=63442 Jun 6 08:10:19 otp3 pgpool[878]: [52-3] 2016-06-06 08:10:19: pid 878: LOCATION: child.c:2110 Jun 6 08:10:19 otp3 pgpool: 2016-06-06 08:10:19: pid 878: LOG: new connection received Jun 6 08:10:19 otp3 pgpool: 2016-06-06 08:10:19: pid 878: DETAIL: connecting host=10.200.1.64 port=63442 Jun 6 08:10:19 otp3 pgpool: 2016-06-06 08:10:19: pid 878: LOCATION: child.c:2110 Jun 6 08:12:12 otp3 pgpool[879]: [39-1] 2016-06-06 08:12:12: pid 879: LOG: new connection received Jun 6 08:12:12 otp3 pgpool[879]: [39-2] 2016-06-06 08:12:12: pid 879: DETAIL: connecting host=10.200.1.64 port=21416 Jun 6 08:12:12 otp3 pgpool[879]: [39-3] 2016-06-06 08:12:12: pid 879: LOCATION: child.c:2110 Jun 6 08:12:12 otp3 pgpool: 2016-06-06 08:12:12: pid 879: LOG: new connection received Jun 6 08:12:12 otp3 pgpool: 2016-06-06 08:12:12: pid 879: DETAIL: connecting host=10.200.1.64 port=21416 Jun 6 08:12:12 otp3 pgpool: 2016-06-06 08:12:12: pid 879: LOCATION: child.c:2110 Jun 6 08:12:19 otp3 pgpool[880]: [42-1] 2016-06-06 08:12:19: pid 880: LOG: new connection received Jun 6 08:12:19 otp3 pgpool[880]: [42-2] 2016-06-06 08:12:19: pid 880: DETAIL: connecting host=10.200.1.64 port=47822 Jun 6 08:12:19 otp3 pgpool[880]: [42-3] 2016-06-06 08:12:19: pid 880: LOCATION: child.c:2110 Jun 6 08:12:19 otp3 pgpool: 2016-06-06 08:12:19: pid 880: LOG: new connection received Jun 6 08:12:19 otp3 pgpool: 2016-06-06 08:12:19: pid 880: DETAIL: connecting host=10.200.1.64 port=47822 Jun 6 08:12:19 otp3 pgpool: 2016-06-06 08:12:19: pid 880: LOCATION: child.c:2110 Jun 6 08:12:49 otp3 pgpool[876]: [33-1] 2016-06-06 08:12:49: pid 876: LOG: new connection received Jun 6 08:12:49 otp3 pgpool[876]: [33-2] 2016-06-06 08:12:49: pid 876: DETAIL: connecting host=10.200.1.64 port=53231 Jun 6 08:12:49 otp3 pgpool[876]: [33-3] 2016-06-06 08:12:49: pid 876: LOCATION: child.c:2110 Jun 6 08:12:49 otp3 pgpool: 2016-06-06 08:12:49: pid 876: LOG: new connection received Jun 6 08:12:49 otp3 pgpool: 2016-06-06 08:12:49: pid 876: DETAIL: connecting host=10.200.1.64 port=53231 Jun 6 08:12:49 otp3 pgpool: 2016-06-06 08:12:49: pid 876: LOCATION: child.c:2110 Jun 6 08:13:19 otp3 pgpool[877]: [36-1] 2016-06-06 08:13:19: pid 877: LOG: new connection received Jun 6 08:13:19 otp3 pgpool[877]: [36-2] 2016-06-06 08:13:19: pid 877: DETAIL: connecting host=10.200.1.64 port=49182 Jun 6 08:13:19 otp3 pgpool[877]: [36-3] 2016-06-06 08:13:19: pid 877: LOCATION: child.c:2110 Jun 6 08:13:19 otp3 pgpool: 2016-06-06 08:13:19: pid 877: LOG: new connection received Jun 6 08:13:19 otp3 pgpool: 2016-06-06 08:13:19: pid 877: DETAIL: connecting host=10.200.1.64 port=49182 Jun 6 08:13:19 otp3 pgpool: 2016-06-06 08:13:19: pid 877: LOCATION: child.c:2110 Jun 6 08:40:21 otp3 pgpool[878]: [53-1] 2016-06-06 08:40:21: pid 878: LOG: new connection received Jun 6 08:40:21 otp3 pgpool[878]: [53-2] 2016-06-06 08:40:21: pid 878: DETAIL: connecting host=10.200.1.64 port=27884 Jun 6 08:40:21 otp3 pgpool[878]: [53-3] 2016-06-06 08:40:21: pid 878: LOCATION: child.c:2110 Jun 6 08:40:21 otp3 pgpool: 2016-06-06 08:40:21: pid 878: LOG: new connection received Jun 6 08:40:21 otp3 pgpool: 2016-06-06 08:40:21: pid 878: DETAIL: connecting host=10.200.1.64 port=27884 Jun 6 08:40:21 otp3 pgpool: 2016-06-06 08:40:21: pid 878: LOCATION: child.c:2110 Jun 6 08:41:45 otp3 pgpool[879]: [40-1] 2016-06-06 08:41:45: pid 879: LOG: new connection received Jun 6 08:41:45 otp3 pgpool[879]: [40-2] 2016-06-06 08:41:45: pid 879: DETAIL: connecting host=10.200.1.64 port=53693 Jun 6 08:41:45 otp3 pgpool[879]: [40-3] 2016-06-06 08:41:45: pid 879: LOCATION: child.c:2110 Jun 6 08:41:45 otp3 pgpool: 2016-06-06 08:41:45: pid 879: LOG: new connection received Jun 6 08:41:45 otp3 pgpool: 2016-06-06 08:41:45: pid 879: DETAIL: connecting host=10.200.1.64 port=53693 Jun 6 08:41:45 otp3 pgpool: 2016-06-06 08:41:45: pid 879: LOCATION: child.c:2110 Jun 6 08:42:21 otp3 pgpool[880]: [43-1] 2016-06-06 08:42:21: pid 880: LOG: new connection received Jun 6 08:42:21 otp3 pgpool[880]: [43-2] 2016-06-06 08:42:21: pid 880: DETAIL: connecting host=10.200.1.64 port=20299 Jun 6 08:42:21 otp3 pgpool[880]: [43-3] 2016-06-06 08:42:21: pid 880: LOCATION: child.c:2110 Jun 6 08:42:21 otp3 pgpool: 2016-06-06 08:42:21: pid 880: LOG: new connection received Jun 6 08:42:21 otp3 pgpool: 2016-06-06 08:42:21: pid 880: DETAIL: connecting host=10.200.1.64 port=20299 Jun 6 08:42:21 otp3 pgpool: 2016-06-06 08:42:21: pid 880: LOCATION: child.c:2110 Jun 6 08:42:51 otp3 pgpool[876]: [34-1] 2016-06-06 08:42:51: pid 876: LOG: new connection received Jun 6 08:42:51 otp3 pgpool[876]: [34-2] 2016-06-06 08:42:51: pid 876: DETAIL: connecting host=10.200.1.64 port=29547 Jun 6 08:42:51 otp3 pgpool[876]: [34-3] 2016-06-06 08:42:51: pid 876: LOCATION: child.c:2110 Jun 6 08:42:51 otp3 pgpool: 2016-06-06 08:42:51: pid 876: LOG: new connection received Jun 6 08:42:51 otp3 pgpool: 2016-06-06 08:42:51: pid 876: DETAIL: connecting host=10.200.1.64 port=29547 Jun 6 08:42:51 otp3 pgpool: 2016-06-06 08:42:51: pid 876: LOCATION: child.c:2110 Jun 6 08:43:21 otp3 pgpool[877]: [37-1] 2016-06-06 08:43:21: pid 877: LOG: new connection received Jun 6 08:43:21 otp3 pgpool[877]: [37-2] 2016-06-06 08:43:21: pid 877: DETAIL: connecting host=10.200.1.64 port=10951 Jun 6 08:43:21 otp3 pgpool[877]: [37-3] 2016-06-06 08:43:21: pid 877: LOCATION: child.c:2110 Jun 6 08:43:21 otp3 pgpool: 2016-06-06 08:43:21: pid 877: LOG: new connection received Jun 6 08:43:21 otp3 pgpool: 2016-06-06 08:43:21: pid 877: DETAIL: connecting host=10.200.1.64 port=10951 Jun 6 08:43:21 otp3 pgpool: 2016-06-06 08:43:21: pid 877: LOCATION: child.c:2110 Jun 6 09:09:55 otp3 pgpool[878]: [54-1] 2016-06-06 09:09:55: pid 878: LOG: new connection received Jun 6 09:09:55 otp3 pgpool[878]: [54-2] 2016-06-06 09:09:55: pid 878: DETAIL: connecting host=10.200.1.64 port=27108 Jun 6 09:09:55 otp3 pgpool[878]: [54-3] 2016-06-06 09:09:55: pid 878: LOCATION: child.c:2110 Jun 6 09:09:55 otp3 pgpool: 2016-06-06 09:09:55: pid 878: LOG: new connection received Jun 6 09:09:55 otp3 pgpool: 2016-06-06 09:09:55: pid 878: DETAIL: connecting host=10.200.1.64 port=27108 Jun 6 09:09:55 otp3 pgpool: 2016-06-06 09:09:55: pid 878: LOCATION: child.c:2110 Jun 6 09:11:48 otp3 pgpool[879]: [41-1] 2016-06-06 09:11:48: pid 879: LOG: new connection received Jun 6 09:11:48 otp3 pgpool[879]: [41-2] 2016-06-06 09:11:48: pid 879: DETAIL: connecting host=10.200.1.64 port=50069 Jun 6 09:11:48 otp3 pgpool[879]: [41-3] 2016-06-06 09:11:48: pid 879: LOCATION: child.c:2110 Jun 6 09:11:48 otp3 pgpool: 2016-06-06 09:11:48: pid 879: LOG: new connection received Jun 6 09:11:48 otp3 pgpool: 2016-06-06 09:11:48: pid 879: DETAIL: connecting host=10.200.1.64 port=50069 Jun 6 09:11:48 otp3 pgpool: 2016-06-06 09:11:48: pid 879: LOCATION: child.c:2110 Jun 6 09:11:55 otp3 pgpool[880]: [44-1] 2016-06-06 09:11:55: pid 880: LOG: new connection received Jun 6 09:11:55 otp3 pgpool[880]: [44-2] 2016-06-06 09:11:55: pid 880: DETAIL: connecting host=10.200.1.64 port=36992 Jun 6 09:11:55 otp3 pgpool[880]: [44-3] 2016-06-06 09:11:55: pid 880: LOCATION: child.c:2110 Jun 6 09:11:55 otp3 pgpool: 2016-06-06 09:11:55: pid 880: LOG: new connection received Jun 6 09:11:55 otp3 pgpool: 2016-06-06 09:11:55: pid 880: DETAIL: connecting host=10.200.1.64 port=36992 Jun 6 09:11:55 otp3 pgpool: 2016-06-06 09:11:55: pid 880: LOCATION: child.c:2110 Jun 6 09:12:25 otp3 pgpool[876]: [35-1] 2016-06-06 09:12:25: pid 876: LOG: new connection received Jun 6 09:12:25 otp3 pgpool[876]: [35-2] 2016-06-06 09:12:25: pid 876: DETAIL: connecting host=10.200.1.64 port=22296 Jun 6 09:12:25 otp3 pgpool[876]: [35-3] 2016-06-06 09:12:25: pid 876: LOCATION: child.c:2110 Jun 6 09:12:25 otp3 pgpool: 2016-06-06 09:12:25: pid 876: LOG: new connection received Jun 6 09:12:25 otp3 pgpool: 2016-06-06 09:12:25: pid 876: DETAIL: connecting host=10.200.1.64 port=22296 Jun 6 09:12:25 otp3 pgpool: 2016-06-06 09:12:25: pid 876: LOCATION: child.c:2110 Jun 6 09:13:25 otp3 pgpool[877]: [38-1] 2016-06-06 09:13:25: pid 877: LOG: new connection received Jun 6 09:13:25 otp3 pgpool[877]: [38-2] 2016-06-06 09:13:25: pid 877: DETAIL: connecting host=10.200.1.64 port=41422 Jun 6 09:13:25 otp3 pgpool[877]: [38-3] 2016-06-06 09:13:25: pid 877: LOCATION: child.c:2110 Jun 6 09:13:25 otp3 pgpool: 2016-06-06 09:13:25: pid 877: LOG: new connection received Jun 6 09:13:25 otp3 pgpool: 2016-06-06 09:13:25: pid 877: DETAIL: connecting host=10.200.1.64 port=41422 Jun 6 09:13:25 otp3 pgpool: 2016-06-06 09:13:25: pid 877: LOCATION: child.c:2110 Jun 6 09:28:33 otp3 pgpool[2818]: [1-1] 2016-06-06 09:28:33: pid 2818: LOG: stop request sent to pgpool. waiting for termination... Jun 6 09:28:33 otp3 pgpool[2818]: [1-2] 2016-06-06 09:28:33: pid 2818: LOCATION: main.c:441 Jun 6 09:28:33 otp3 pgpool[815]: [13-1] 2016-06-06 09:28:33: pid 815: LOG: received smart shutdown request Jun 6 09:28:33 otp3 pgpool[815]: [13-2] 2016-06-06 09:28:33: pid 815: LOCATION: pgpool_main.c:1309 Jun 6 09:28:33 otp3 pgpool: 2016-06-06 09:28:33: pid 815: LOG: received smart shutdown request Jun 6 09:28:33 otp3 pgpool: 2016-06-06 09:28:33: pid 815: LOCATION: pgpool_main.c:1309 Jun 6 09:28:33 otp3 pgpool[815]: [14-1] 2016-06-06 09:28:33: pid 815: LOG: shutdown request. closing listen socket Jun 6 09:28:33 otp3 pgpool[815]: [14-2] 2016-06-06 09:28:33: pid 815: LOCATION: pgpool_main.c:1330 Jun 6 09:28:33 otp3 pgpool: 2016-06-06 09:28:33: pid 815: LOG: shutdown request. closing listen socket Jun 6 09:28:33 otp3 pgpool: 2016-06-06 09:28:33: pid 815: LOCATION: pgpool_main.c:1330 Jun 6 09:28:33 otp3 pgpool[880]: [45-1] 2016-06-06 09:28:33: pid 880: LOG: child process received shutdown request signal 15 Jun 6 09:28:33 otp3 pgpool[880]: [45-2] 2016-06-06 09:28:33: pid 880: LOCATION: child.c:911 Jun 6 09:28:33 otp3 pgpool: 2016-06-06 09:28:33: pid 880: LOG: child process received shutdown request signal 15 Jun 6 09:28:33 otp3 pgpool[878]: [55-1] 2016-06-06 09:28:33: pid 878: LOG: child process received shutdown request signal 15 Jun 6 09:28:33 otp3 pgpool: 2016-06-06 09:28:33: pid 880: LOCATION: child.c:911 Jun 6 09:28:33 otp3 pgpool[877]: [39-1] 2016-06-06 09:28:33: pid 877: LOG: child process received shutdown request signal 15 Jun 6 09:28:33 otp3 pgpool[879]: [42-1] 2016-06-06 09:28:33: pid 879: LOG: child process received shutdown request signal 15 Jun 6 09:28:33 otp3 pgpool[878]: [55-2] 2016-06-06 09:28:33: pid 878: LOCATION: child.c:911 Jun 6 09:28:33 otp3 pgpool[877]: [39-2] 2016-06-06 09:28:33: pid 877: LOCATION: child.c:911 Jun 6 09:28:33 otp3 pgpool[879]: [42-2] 2016-06-06 09:28:33: pid 879: LOCATION: child.c:911 Jun 6 09:28:33 otp3 pgpool: 2016-06-06 09:28:33: pid 878: LOG: child process received shutdown request signal 15 Jun 6 09:28:33 otp3 pgpool: 2016-06-06 09:28:33: pid 878: LOCATION: child.c:911 Jun 6 09:28:33 otp3 pgpool: 2016-06-06 09:28:33: pid 877: LOG: child process received shutdown request signal 15 Jun 6 09:28:33 otp3 pgpool: 2016-06-06 09:28:33: pid 877: LOCATION: child.c:911 Jun 6 09:28:33 otp3 pgpool: 2016-06-06 09:28:33: pid 879: LOG: child process received shutdown request signal 15 Jun 6 09:28:33 otp3 pgpool: 2016-06-06 09:28:33: pid 879: LOCATION: child.c:911 Jun 6 09:28:33 otp3 pgpool[876]: [36-1] 2016-06-06 09:28:33: pid 876: LOG: child process received shutdown request signal 15 Jun 6 09:28:33 otp3 pgpool[876]: [36-2] 2016-06-06 09:28:33: pid 876: LOCATION: child.c:911 Jun 6 09:28:33 otp3 pgpool: 2016-06-06 09:28:33: pid 876: LOG: child process received shutdown request signal 15 Jun 6 09:28:33 otp3 pgpool: 2016-06-06 09:28:33: pid 876: LOCATION: child.c:911 Jun 6 09:28:42 otp3 pgpool[815]: [15-1] 2016-06-06 09:28:42: pid 815: LOG: received fast shutdown request Jun 6 09:28:42 otp3 pgpool[815]: [15-2] 2016-06-06 09:28:42: pid 815: LOCATION: pgpool_main.c:1312 Jun 6 09:28:42 otp3 pgpool[815]: [16-1] 2016-06-06 09:28:42: pid 815: LOG: shutdown request. closing listen socket Jun 6 09:28:42 otp3 pgpool[815]: [16-2] 2016-06-06 09:28:42: pid 815: LOCATION: pgpool_main.c:1330 Jun 6 09:28:42 otp3 pgpool: 2016-06-06 09:28:42: pid 815: LOG: received fast shutdown request Jun 6 09:28:42 otp3 pgpool: 2016-06-06 09:28:42: pid 815: LOCATION: pgpool_main.c:1312 Jun 6 09:28:42 otp3 pgpool: 2016-06-06 09:28:42: pid 815: LOG: shutdown request. closing listen socket Jun 6 09:28:42 otp3 pgpool: 2016-06-06 09:28:42: pid 815: LOCATION: pgpool_main.c:1330 Jun 6 09:28:42 otp3 pgpool[2819]: [1-1] 2016-06-06 09:28:42: pid 2819: LOG: stop request sent to pgpool. waiting for termination... Jun 6 09:28:42 otp3 pgpool[2819]: [1-2] 2016-06-06 09:28:42: pid 2819: LOCATION: main.c:441 Jun 6 09:33:28 otp3 pgpool[2850]: [1-1] 2016-06-06 09:33:28: pid 2850: DEBUG: initializing pool configuration Jun 6 09:33:28 otp3 pgpool[2850]: [1-2] 2016-06-06 09:33:28: pid 2850: DETAIL: num_backends: 2 total_weight: 2.000000 Jun 6 09:33:28 otp3 pgpool[2850]: [1-3] 2016-06-06 09:33:28: pid 2850: LOCATION: pool_config.l:3394 Jun 6 09:33:28 otp3 pgpool[2850]: [2-1] 2016-06-06 09:33:28: pid 2850: DEBUG: initializing pool configuration Jun 6 09:33:28 otp3 pgpool[2850]: [2-2] 2016-06-06 09:33:28: pid 2850: DETAIL: backend 0 weight: 1073741822.500000 flag: 0000 Jun 6 09:33:28 otp3 pgpool[2850]: [2-3] 2016-06-06 09:33:28: pid 2850: LOCATION: pool_config.l:3413 Jun 6 09:33:28 otp3 pgpool[2850]: [3-1] 2016-06-06 09:33:28: pid 2850: DEBUG: initializing pool configuration Jun 6 09:33:28 otp3 pgpool[2850]: [3-2] 2016-06-06 09:33:28: pid 2850: DETAIL: backend 1 weight: 1073741822.500000 flag: 0000 Jun 6 09:33:28 otp3 pgpool[2850]: [3-3] 2016-06-06 09:33:28: pid 2850: LOCATION: pool_config.l:3413 Jun 6 09:33:28 otp3 pgpool[2850]: [4-1] 2016-06-06 09:33:28: pid 2850: DEBUG: loading hba configuration Jun 6 09:33:28 otp3 pgpool[2850]: [4-2] 2016-06-06 09:33:28: pid 2850: DETAIL: loading file :"/usr/local/etc/pool_hba.conf" for client authentication configuration file Jun 6 09:33:28 otp3 pgpool[2850]: [4-3] 2016-06-06 09:33:28: pid 2850: LOCATION: pool_hba.c:118 Jun 6 09:33:28 otp3 pgpool[2850]: [5-1] 2016-06-06 09:33:28: pid 2850: FATAL: could not read pid file Jun 6 09:33:28 otp3 pgpool[2850]: [5-2] 2016-06-06 09:33:28: pid 2850: LOCATION: main.c:431 Jun 6 09:33:41 otp3 pgpool[2869]: [1-1] 2016-06-06 09:33:41: pid 2869: DEBUG: initializing pool configuration Jun 6 09:33:41 otp3 pgpool[2869]: [1-2] 2016-06-06 09:33:41: pid 2869: DETAIL: num_backends: 2 total_weight: 2.000000 Jun 6 09:33:41 otp3 pgpool[2869]: [1-3] 2016-06-06 09:33:41: pid 2869: LOCATION: pool_config.l:3394 Jun 6 09:33:41 otp3 pgpool[2869]: [2-1] 2016-06-06 09:33:41: pid 2869: DEBUG: initializing pool configuration Jun 6 09:33:41 otp3 pgpool[2869]: [2-2] 2016-06-06 09:33:41: pid 2869: DETAIL: backend 0 weight: 1073741822.500000 flag: 0000 Jun 6 09:33:41 otp3 pgpool[2869]: [2-3] 2016-06-06 09:33:41: pid 2869: LOCATION: pool_config.l:3413 Jun 6 09:33:41 otp3 pgpool[2869]: [3-1] 2016-06-06 09:33:41: pid 2869: DEBUG: initializing pool configuration Jun 6 09:33:41 otp3 pgpool[2869]: [3-2] 2016-06-06 09:33:41: pid 2869: DETAIL: backend 1 weight: 1073741822.500000 flag: 0000 Jun 6 09:33:41 otp3 pgpool[2869]: [3-3] 2016-06-06 09:33:41: pid 2869: LOCATION: pool_config.l:3413 Jun 6 09:33:41 otp3 pgpool[2869]: [4-1] 2016-06-06 09:33:41: pid 2869: DEBUG: loading hba configuration Jun 6 09:33:41 otp3 pgpool[2869]: [4-2] 2016-06-06 09:33:41: pid 2869: DETAIL: loading file :"/usr/local/etc/pool_hba.conf" for client authentication configuration file Jun 6 09:33:41 otp3 pgpool[2869]: [4-3] 2016-06-06 09:33:41: pid 2869: LOCATION: pool_hba.c:118 Jun 6 09:33:41 otp3 pgpool: 2016-06-06 09:33:40: pid 2869: DEBUG: initializing pool configuration Jun 6 09:33:41 otp3 pgpool: 2016-06-06 09:33:41: pid 2869: DETAIL: replicate_select: 0 Jun 6 09:33:41 otp3 pgpool: 2016-06-06 09:33:41: pid 2869: LOCATION: pool_config.l:1029 Jun 6 09:33:41 otp3 pgpool: 2016-06-06 09:33:41: pid 2869: DEBUG: initializing pool configuration Jun 6 09:33:41 otp3 pgpool: 2016-06-06 09:33:41: pid 2869: DETAIL: replication_stop_on_mismatch: 0 Jun 6 09:33:41 otp3 pgpool: 2016-06-06 09:33:41: pid 2869: LOCATION: pool_config.l:991 Jun 6 09:33:41 otp3 pgpool: 2016-06-06 09:33:41: pid 2869: DEBUG: initializing pool configuration Jun 6 09:33:41 otp3 pgpool: 2016-06-06 09:33:41: pid 2869: DETAIL: failover_if_affected_tuples_mismatch: 0 Jun 6 09:33:41 otp3 pgpool: 2016-06-06 09:33:41: pid 2869: LOCATION: pool_config.l:1010 Jun 6 09:33:41 otp3 pgpool: 2016-06-06 09:33:41: pid 2869: DEBUG: initializing pool configuration Jun 6 09:33:41 otp3 pgpool: 2016-06-06 09:33:41: pid 2869: DETAIL: adding regex pattern for "black_function_list" pattern: ^nextval$ Jun 6 09:33:41 otp3 pgpool: 2016-06-06 09:33:41: pid 2869: LOCATION: pool_config.l:362 Jun 6 09:33:41 otp3 pgpool: 2016-06-06 09:33:41: pid 2869: DEBUG: initializing pool configuration Jun 6 09:33:41 otp3 pgpool: 2016-06-06 09:33:41: pid 2869: DETAIL: adding regex pattern for "black_function_list" pattern: ^setval$ Jun 6 09:33:41 otp3 pgpool: 2016-06-06 09:33:41: pid 2869: LOCATION: pool_config.l:362 Jun 6 09:33:41 otp3 pgpool: 2016-06-06 09:33:41: pid 2869: DEBUG: initializing pool configuration Jun 6 09:33:41 otp3 pgpool: 2016-06-06 09:33:41: pid 2869: DETAIL: adding regex pattern for "black_function_list" pattern: ^nextval$ Jun 6 09:33:41 otp3 pgpool: 2016-06-06 09:33:41: pid 2869: LOCATION: pool_config.l:362 Jun 6 09:33:41 otp3 pgpool: 2016-06-06 09:33:41: pid 2869: DEBUG: initializing pool configuration Jun 6 09:33:41 otp3 pgpool: 2016-06-06 09:33:41: pid 2869: DETAIL: adding regex pattern for "black_function_list" pattern: ^setval$ Jun 6 09:33:41 otp3 pgpool: 2016-06-06 09:33:41: pid 2869: LOCATION: pool_config.l:362 Jun 6 09:33:41 otp3 pgpool: 2016-06-06 09:33:41: pid 2869: DEBUG: initializing pool configuration Jun 6 09:33:41 otp3 pgpool: 2016-06-06 09:33:41: pid 2869: DETAIL: num_backends: 2 total_weight: 2.000000 Jun 6 09:33:41 otp3 pgpool: 2016-06-06 09:33:41: pid 2869: LOCATION: pool_config.l:3394 Jun 6 09:33:41 otp3 pgpool: 2016-06-06 09:33:41: pid 2869: DEBUG: initializing pool configuration Jun 6 09:33:41 otp3 pgpool: 2016-06-06 09:33:41: pid 2869: DETAIL: backend 0 weight: 1073741822.500000 flag: 0000 Jun 6 09:33:41 otp3 pgpool: 2016-06-06 09:33:41: pid 2869: LOCATION: pool_config.l:3413 Jun 6 09:33:41 otp3 pgpool: 2016-06-06 09:33:41: pid 2869: DEBUG: initializing pool configuration Jun 6 09:33:41 otp3 pgpool: 2016-06-06 09:33:41: pid 2869: DETAIL: backend 1 weight: 1073741822.500000 flag: 0000 Jun 6 09:33:41 otp3 pgpool: 2016-06-06 09:33:41: pid 2869: LOCATION: pool_config.l:3413 Jun 6 09:33:41 otp3 pgpool: 2016-06-06 09:33:41: pid 2869: DEBUG: loading hba configuration Jun 6 09:33:41 otp3 pgpool: 2016-06-06 09:33:41: pid 2869: DETAIL: loading file :"/usr/local/etc/pool_hba.conf" for client authentication configuration file Jun 6 09:33:41 otp3 pgpool: 2016-06-06 09:33:41: pid 2869: LOCATION: pool_hba.c:118 Jun 6 09:33:41 otp3 pgpool[2869]: [5-1] 2016-06-06 09:33:41: pid 2869: DEBUG: pool_coninfo_size: num_init_children (5) * max_pool (4) * MAX_NUM_BACKENDS (128) * sizeof(ConnectionInfo) (136) = 348160 bytes requested for shared memory Jun 6 09:33:41 otp3 pgpool[2869]: [5-2] 2016-06-06 09:33:41: pid 2869: LOCATION: pool_process_context.c:109 Jun 6 09:33:41 otp3 pgpool: 2016-06-06 09:33:41: pid 2869: DEBUG: pool_coninfo_size: num_init_children (5) * max_pool (4) * MAX_NUM_BACKENDS (128) * sizeof(ConnectionInfo) (136) = 348160 bytes requested for shared memory Jun 6 09:33:41 otp3 pgpool: 2016-06-06 09:33:41: pid 2869: LOCATION: pool_process_context.c:109 Jun 6 09:33:41 otp3 pgpool[2869]: [6-1] 2016-06-06 09:33:41: pid 2869: DEBUG: ProcessInfo: num_init_children (5) * sizeof(ProcessInfo) (32) = 160 bytes requested for shared memory Jun 6 09:33:41 otp3 pgpool[2869]: [6-2] 2016-06-06 09:33:41: pid 2869: LOCATION: pgpool_main.c:2822 Jun 6 09:33:41 otp3 pgpool: 2016-06-06 09:33:41: pid 2869: DEBUG: ProcessInfo: num_init_children (5) * sizeof(ProcessInfo) (32) = 160 bytes requested for shared memory Jun 6 09:33:41 otp3 pgpool: 2016-06-06 09:33:41: pid 2869: LOCATION: pgpool_main.c:2822 Jun 6 09:33:41 otp3 pgpool[2869]: [7-1] 2016-06-06 09:33:41: pid 2869: DEBUG: Request info are: sizeof(POOL_REQUEST_INFO) 5224 bytes requested for shared memory Jun 6 09:33:41 otp3 pgpool[2869]: [7-2] 2016-06-06 09:33:41: pid 2869: LOCATION: pgpool_main.c:2837 Jun 6 09:33:41 otp3 pgpool: 2016-06-06 09:33:41: pid 2869: DEBUG: Request info are: sizeof(POOL_REQUEST_INFO) 5224 bytes requested for shared memory Jun 6 09:33:41 otp3 pgpool: 2016-06-06 09:33:41: pid 2869: LOCATION: pgpool_main.c:2837 Jun 6 09:33:41 otp3 pgpool[2869]: [8-1] 2016-06-06 09:33:41: pid 2869: DEBUG: Recovery management area: sizeof(int) 4 bytes requested for shared memory Jun 6 09:33:41 otp3 pgpool[2869]: [8-2] 2016-06-06 09:33:41: pid 2869: LOCATION: pgpool_main.c:2860 Jun 6 09:33:41 otp3 pgpool: 2016-06-06 09:33:41: pid 2869: DEBUG: Recovery management area: sizeof(int) 4 bytes requested for shared memory Jun 6 09:33:41 otp3 pgpool: 2016-06-06 09:33:41: pid 2869: LOCATION: pgpool_main.c:2860 Jun 6 09:33:41 otp3 pgpool[2869]: [9-1] 2016-06-06 09:33:41: pid 2869: LOG: Setting up socket for 10.200.1.62:5432 Jun 6 09:33:41 otp3 pgpool[2869]: [9-2] 2016-06-06 09:33:41: pid 2869: LOCATION: pgpool_main.c:797 Jun 6 09:33:41 otp3 pgpool: 2016-06-06 09:33:41: pid 2869: LOG: Setting up socket for 10.200.1.62:5432 Jun 6 09:33:41 otp3 pgpool: 2016-06-06 09:33:41: pid 2869: LOCATION: pgpool_main.c:797 Jun 6 09:33:41 otp3 pgpool[2871]: [10-1] 2016-06-06 09:33:41: pid 2871: DEBUG: initializing backend status Jun 6 09:33:41 otp3 pgpool[2871]: [10-2] 2016-06-06 09:33:41: pid 2871: LOCATION: child.c:1759 Jun 6 09:33:41 otp3 pgpool[2873]: [10-1] 2016-06-06 09:33:41: pid 2873: DEBUG: initializing backend status Jun 6 09:33:41 otp3 pgpool[2873]: [10-2] 2016-06-06 09:33:41: pid 2873: LOCATION: child.c:1759 Jun 6 09:33:41 otp3 pgpool: 2016-06-06 09:33:41: pid 2873: DEBUG: initializing backend status Jun 6 09:33:41 otp3 pgpool: 2016-06-06 09:33:41: pid 2873: LOCATION: child.c:1759 Jun 6 09:33:41 otp3 pgpool: 2016-06-06 09:33:41: pid 2871: DEBUG: initializing backend status Jun 6 09:33:41 otp3 pgpool: 2016-06-06 09:33:41: pid 2871: LOCATION: child.c:1759 Jun 6 09:33:41 otp3 pgpool[2875]: [10-1] 2016-06-06 09:33:41: pid 2875: DEBUG: initializing backend status Jun 6 09:33:41 otp3 pgpool[2875]: [10-2] 2016-06-06 09:33:41: pid 2875: LOCATION: child.c:1759 Jun 6 09:33:41 otp3 pgpool: 2016-06-06 09:33:41: pid 2875: DEBUG: initializing backend status Jun 6 09:33:41 otp3 pgpool[2872]: [10-1] 2016-06-06 09:33:41: pid 2872: DEBUG: initializing backend status Jun 6 09:33:41 otp3 pgpool: 2016-06-06 09:33:41: pid 2875: LOCATION: child.c:1759 Jun 6 09:33:41 otp3 pgpool[2872]: [10-2] 2016-06-06 09:33:41: pid 2872: LOCATION: child.c:1759 Jun 6 09:33:41 otp3 pgpool: 2016-06-06 09:33:41: pid 2872: DEBUG: initializing backend status Jun 6 09:33:41 otp3 pgpool: 2016-06-06 09:33:41: pid 2872: LOCATION: child.c:1759 Jun 6 09:33:41 otp3 pgpool[2874]: [10-1] 2016-06-06 09:33:41: pid 2874: DEBUG: initializing backend status Jun 6 09:33:41 otp3 pgpool[2869]: [10-1] 2016-06-06 09:33:41: pid 2869: LOG: pgpool-II successfully started. version 3.5.2 (ekieboshi) Jun 6 09:33:41 otp3 pgpool[2869]: [10-2] 2016-06-06 09:33:41: pid 2869: LOCATION: pgpool_main.c:370 Jun 6 09:33:41 otp3 pgpool: 2016-06-06 09:33:41: pid 2869: LOG: pgpool-II successfully started. version 3.5.2 (ekieboshi) Jun 6 09:33:41 otp3 pgpool: 2016-06-06 09:33:41: pid 2869: LOCATION: pgpool_main.c:370 Jun 6 09:33:41 otp3 pgpool[2874]: [10-2] 2016-06-06 09:33:41: pid 2874: LOCATION: child.c:1759 Jun 6 09:33:41 otp3 pgpool: 2016-06-06 09:33:41: pid 2874: DEBUG: initializing backend status Jun 6 09:33:41 otp3 pgpool: 2016-06-06 09:33:41: pid 2874: LOCATION: child.c:1759 Jun 6 09:33:41 otp3 pgpool[2876]: [10-1] 2016-06-06 09:33:41: pid 2876: DEBUG: I am PCP child with pid:2876 Jun 6 09:33:41 otp3 pgpool[2876]: [10-2] 2016-06-06 09:33:41: pid 2876: LOCATION: pcp_child.c:105 Jun 6 09:33:41 otp3 pgpool[2869]: [11-1] 2016-06-06 09:33:41: pid 2869: DEBUG: find_primary_node: not in streaming replication mode Jun 6 09:33:41 otp3 pgpool: 2016-06-06 09:33:41: pid 2876: DEBUG: I am PCP child with pid:2876 Jun 6 09:33:41 otp3 pgpool[2869]: [11-2] 2016-06-06 09:33:41: pid 2869: LOCATION: pgpool_main.c:2683 Jun 6 09:33:41 otp3 pgpool: 2016-06-06 09:33:41: pid 2876: LOCATION: pcp_child.c:105 Jun 6 09:33:41 otp3 pgpool: 2016-06-06 09:33:41: pid 2869: DEBUG: find_primary_node: not in streaming replication mode Jun 6 09:33:41 otp3 pgpool: 2016-06-06 09:33:41: pid 2869: LOCATION: pgpool_main.c:2683 Jun 6 09:33:41 otp3 pgpool[2877]: [10-1] 2016-06-06 09:33:41: pid 2877: DEBUG: I am 2877 Jun 6 09:33:41 otp3 pgpool[2877]: [10-2] 2016-06-06 09:33:41: pid 2877: LOCATION: pool_worker_child.c:100 Jun 6 09:33:41 otp3 pgpool: 2016-06-06 09:33:41: pid 2877: DEBUG: I am 2877 Jun 6 09:33:41 otp3 pgpool: 2016-06-06 09:33:41: pid 2877: LOCATION: pool_worker_child.c:100 Jun 6 09:33:41 otp3 pgpool[2877]: [11-1] 2016-06-06 09:33:41: pid 2877: DEBUG: initializing backend status Jun 6 09:33:41 otp3 pgpool[2877]: [11-2] 2016-06-06 09:33:41: pid 2877: LOCATION: child.c:1759 Jun 6 09:33:41 otp3 pgpool: 2016-06-06 09:33:41: pid 2877: DEBUG: initializing backend status Jun 6 09:33:41 otp3 pgpool: 2016-06-06 09:33:41: pid 2877: LOCATION: child.c:1759 Jun 6 09:35:45 otp3 pgpool[2871]: [11-1] 2016-06-06 09:35:45: pid 2871: DEBUG: I am 2871 accept fd 7 Jun 6 09:35:45 otp3 pgpool[2871]: [11-2] 2016-06-06 09:35:45: pid 2871: LOCATION: child.c:2097 Jun 6 09:35:45 otp3 pgpool: 2016-06-06 09:35:45: pid 2871: DEBUG: I am 2871 accept fd 7 Jun 6 09:35:45 otp3 pgpool: 2016-06-06 09:35:45: pid 2871: LOCATION: child.c:2097 Jun 6 09:35:45 otp3 pgpool[2873]: [11-1] 2016-06-06 09:35:45: pid 2873: DEBUG: I am 2873 accept fd 7 Jun 6 09:35:45 otp3 pgpool[2873]: [11-2] 2016-06-06 09:35:45: pid 2873: LOCATION: child.c:2097 Jun 6 09:35:45 otp3 pgpool: 2016-06-06 09:35:45: pid 2873: DEBUG: I am 2873 accept fd 7 Jun 6 09:35:45 otp3 pgpool: 2016-06-06 09:35:45: pid 2873: LOCATION: child.c:2097 Jun 6 09:35:45 otp3 pgpool[2871]: [12-1] 2016-06-06 09:35:45: pid 2871: LOG: new connection received Jun 6 09:35:45 otp3 pgpool[2871]: [12-2] 2016-06-06 09:35:45: pid 2871: DETAIL: connecting host=10.200.1.64 port=41014 Jun 6 09:35:45 otp3 pgpool[2871]: [12-3] 2016-06-06 09:35:45: pid 2871: LOCATION: child.c:2110 Jun 6 09:35:45 otp3 pgpool[2871]: [13-1] 2016-06-06 09:35:45: pid 2871: DEBUG: reading startup packet Jun 6 09:35:45 otp3 pgpool: 2016-06-06 09:35:45: pid 2871: LOG: new connection received Jun 6 09:35:45 otp3 pgpool[2871]: [13-2] 2016-06-06 09:35:45: pid 2871: DETAIL: Protocol Major: 3 Minor: 0 database: ctl user: sparrowdesk Jun 6 09:35:45 otp3 pgpool: 2016-06-06 09:35:45: pid 2871: DETAIL: connecting host=10.200.1.64 port=41014 Jun 6 09:35:45 otp3 pgpool[2871]: [13-3] 2016-06-06 09:35:45: pid 2871: LOCATION: child.c:614 Jun 6 09:35:45 otp3 pgpool: 2016-06-06 09:35:45: pid 2871: LOCATION: child.c:2110 Jun 6 09:35:45 otp3 pgpool[2871]: [14-1] 2016-06-06 09:35:45: pid 2871: DEBUG: creating new connection to backend Jun 6 09:35:45 otp3 pgpool: 2016-06-06 09:35:45: pid 2871: DEBUG: reading startup packet Jun 6 09:35:45 otp3 pgpool[2871]: [14-2] 2016-06-06 09:35:45: pid 2871: DETAIL: connecting 0 backend Jun 6 09:35:45 otp3 pgpool: 2016-06-06 09:35:45: pid 2871: DETAIL: Protocol Major: 3 Minor: 0 database: ctl user: sparrowdesk Jun 6 09:35:45 otp3 pgpool[2871]: [14-3] 2016-06-06 09:35:45: pid 2871: LOCATION: pool_connection_pool.c:830 Jun 6 09:35:45 otp3 pgpool: 2016-06-06 09:35:45: pid 2871: LOCATION: child.c:614 Jun 6 09:35:45 otp3 pgpool: 2016-06-06 09:35:45: pid 2871: DEBUG: creating new connection to backend Jun 6 09:35:45 otp3 pgpool: 2016-06-06 09:35:45: pid 2871: DETAIL: connecting 0 backend Jun 6 09:35:45 otp3 pgpool: 2016-06-06 09:35:45: pid 2871: LOCATION: pool_connection_pool.c:830 Jun 6 09:35:45 otp3 pgpool[2871]: [15-1] 2016-06-06 09:35:45: pid 2871: DEBUG: creating new connection to backend Jun 6 09:35:45 otp3 pgpool[2871]: [15-2] 2016-06-06 09:35:45: pid 2871: DETAIL: connecting 1 backend Jun 6 09:35:45 otp3 pgpool[2871]: [15-3] 2016-06-06 09:35:45: pid 2871: LOCATION: pool_connection_pool.c:830 Jun 6 09:35:45 otp3 pgpool: 2016-06-06 09:35:45: pid 2871: DEBUG: creating new connection to backend Jun 6 09:35:45 otp3 pgpool: 2016-06-06 09:35:45: pid 2871: DETAIL: connecting 1 backend Jun 6 09:35:45 otp3 pgpool: 2016-06-06 09:35:45: pid 2871: LOCATION: pool_connection_pool.c:830 Jun 6 09:35:45 otp3 pgpool[2873]: [12-1] 2016-06-06 09:35:45: pid 2873: LOG: new connection received Jun 6 09:35:45 otp3 pgpool[2873]: [12-2] 2016-06-06 09:35:45: pid 2873: DETAIL: connecting host=10.200.1.64 port=19492 Jun 6 09:35:45 otp3 pgpool[2873]: [12-3] 2016-06-06 09:35:45: pid 2873: LOCATION: child.c:2110 Jun 6 09:35:45 otp3 pgpool: 2016-06-06 09:35:45: pid 2873: LOG: new connection received Jun 6 09:35:45 otp3 pgpool: 2016-06-06 09:35:45: pid 2873: DETAIL: connecting host=10.200.1.64 port=19492 Jun 6 09:35:45 otp3 pgpool: 2016-06-06 09:35:45: pid 2873: LOCATION: child.c:2110 Jun 6 09:35:45 otp3 pgpool[2873]: [13-1] 2016-06-06 09:35:45: pid 2873: DEBUG: reading startup packet Jun 6 09:35:45 otp3 pgpool[2873]: [13-2] 2016-06-06 09:35:45: pid 2873: DETAIL: Protocol Major: 3 Minor: 0 database: cl_helpdesk_master user: sparrowdesk Jun 6 09:35:45 otp3 pgpool[2873]: [13-3] 2016-06-06 09:35:45: pid 2873: LOCATION: child.c:614 Jun 6 09:35:45 otp3 pgpool: 2016-06-06 09:35:45: pid 2873: DEBUG: reading startup packet Jun 6 09:35:45 otp3 pgpool[2873]: [14-1] 2016-06-06 09:35:45: pid 2873: DEBUG: creating new connection to backend Jun 6 09:35:45 otp3 pgpool: 2016-06-06 09:35:45: pid 2873: DETAIL: Protocol Major: 3 Minor: 0 database: cl_helpdesk_master user: sparrowdesk Jun 6 09:35:45 otp3 pgpool: 2016-06-06 09:35:45: pid 2873: LOCATION: child.c:614 Jun 6 09:35:45 otp3 pgpool[2873]: [14-2] 2016-06-06 09:35:45: pid 2873: DETAIL: connecting 0 backend Jun 6 09:35:45 otp3 pgpool[2873]: [14-3] 2016-06-06 09:35:45: pid 2873: LOCATION: pool_connection_pool.c:830 Jun 6 09:35:45 otp3 pgpool: 2016-06-06 09:35:45: pid 2873: DEBUG: creating new connection to backend Jun 6 09:35:45 otp3 pgpool: 2016-06-06 09:35:45: pid 2873: DETAIL: connecting 0 backend Jun 6 09:35:45 otp3 pgpool: 2016-06-06 09:35:45: pid 2873: LOCATION: pool_connection_pool.c:830 Jun 6 09:35:45 otp3 pgpool[2873]: [15-1] 2016-06-06 09:35:45: pid 2873: DEBUG: creating new connection to backend Jun 6 09:35:45 otp3 pgpool[2873]: [15-2] 2016-06-06 09:35:45: pid 2873: DETAIL: connecting 1 backend Jun 6 09:35:45 otp3 pgpool[2873]: [15-3] 2016-06-06 09:35:45: pid 2873: LOCATION: pool_connection_pool.c:830 Jun 6 09:35:45 otp3 pgpool: 2016-06-06 09:35:45: pid 2873: DEBUG: creating new connection to backend Jun 6 09:35:45 otp3 pgpool: 2016-06-06 09:35:45: pid 2873: DETAIL: connecting 1 backend Jun 6 09:35:45 otp3 pgpool: 2016-06-06 09:35:45: pid 2873: LOCATION: pool_connection_pool.c:830 Jun 6 09:35:45 otp3 pgpool[2871]: [16-1] 2016-06-06 09:35:45: pid 2871: DEBUG: SSL is requested but SSL support is not available Jun 6 09:35:45 otp3 pgpool[2871]: [16-2] 2016-06-06 09:35:45: pid 2871: LOCATION: pool_ssl.c:333 Jun 6 09:35:45 otp3 pgpool: 2016-06-06 09:35:45: pid 2871: DEBUG: SSL is requested but SSL support is not available Jun 6 09:35:45 otp3 pgpool[2871]: [17-1] 2016-06-06 09:35:45: pid 2871: DEBUG: SSL is requested but SSL support is not available Jun 6 09:35:45 otp3 pgpool: 2016-06-06 09:35:45: pid 2871: LOCATION: pool_ssl.c:333 Jun 6 09:35:45 otp3 pgpool[2871]: [17-2] 2016-06-06 09:35:45: pid 2871: LOCATION: pool_ssl.c:333 Jun 6 09:35:45 otp3 pgpool: 2016-06-06 09:35:45: pid 2871: DEBUG: SSL is requested but SSL support is not available Jun 6 09:35:45 otp3 pgpool: 2016-06-06 09:35:45: pid 2871: LOCATION: pool_ssl.c:333 Jun 6 09:35:46 otp3 pgpool[2871]: [18-1] 2016-06-06 09:35:46: pid 2871: DEBUG: pool_read: read 13 bytes from backend 0 Jun 6 09:35:46 otp3 pgpool[2871]: [18-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool[2871]: [19-1] 2016-06-06 09:35:46: pid 2871: DEBUG: pool_read: read 13 bytes from backend 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: pool_read: read 13 bytes from backend 0 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool[2871]: [19-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool[2871]: [20-1] 2016-06-06 09:35:46: pid 2871: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: pool_read: read 13 bytes from backend 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool[2871]: [20-2] 2016-06-06 09:35:46: pid 2871: DETAIL: slot: 0 length: 12 Jun 6 09:35:46 otp3 pgpool[2871]: [20-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_auth.c:1107 Jun 6 09:35:46 otp3 pgpool[2871]: [21-1] 2016-06-06 09:35:46: pid 2871: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2871]: [21-2] 2016-06-06 09:35:46: pid 2871: DETAIL: slot: 1 length: 12 Jun 6 09:35:46 otp3 pgpool[2871]: [21-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_auth.c:1126 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: slot: 0 length: 12 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_auth.c:1107 Jun 6 09:35:46 otp3 pgpool[2871]: [22-1] 2016-06-06 09:35:46: pid 2871: DEBUG: authentication backend Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2871]: [22-2] 2016-06-06 09:35:46: pid 2871: DETAIL: auth kind:5 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: slot: 1 length: 12 Jun 6 09:35:46 otp3 pgpool[2871]: [22-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_auth.c:142 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_auth.c:1126 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: authentication backend Jun 6 09:35:46 otp3 pgpool[2871]: [23-1] 2016-06-06 09:35:46: pid 2871: DEBUG: authentication backend Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: auth kind:5 Jun 6 09:35:46 otp3 pgpool[2871]: [23-2] 2016-06-06 09:35:46: pid 2871: DETAIL: trying md5 authentication Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_auth.c:142 Jun 6 09:35:46 otp3 pgpool[2871]: [23-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_auth.c:239 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: authentication backend Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: trying md5 authentication Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_auth.c:239 Jun 6 09:35:46 otp3 pgpool[2871]: [24-1] 2016-06-06 09:35:46: pid 2871: DEBUG: performing md5 authentication Jun 6 09:35:46 otp3 pgpool[2871]: [24-2] 2016-06-06 09:35:46: pid 2871: DETAIL: DB node id: 0 salt: 848ae8be Jun 6 09:35:46 otp3 pgpool[2871]: [24-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_auth.c:855 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: performing md5 authentication Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: DB node id: 0 salt: 848ae8be Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_auth.c:855 Jun 6 09:35:46 otp3 pgpool[2871]: [25-1] 2016-06-06 09:35:46: pid 2871: DEBUG: pool_write: to backend: kind:p Jun 6 09:35:46 otp3 pgpool[2871]: [25-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: pool_write: to backend: kind:p Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool[2873]: [16-1] 2016-06-06 09:35:46: pid 2873: DEBUG: SSL is requested but SSL support is not available Jun 6 09:35:46 otp3 pgpool[2873]: [16-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_ssl.c:333 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: SSL is requested but SSL support is not available Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_ssl.c:333 Jun 6 09:35:46 otp3 pgpool[2873]: [17-1] 2016-06-06 09:35:46: pid 2873: DEBUG: SSL is requested but SSL support is not available Jun 6 09:35:46 otp3 pgpool[2873]: [17-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_ssl.c:333 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: SSL is requested but SSL support is not available Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_ssl.c:333 Jun 6 09:35:46 otp3 pgpool[2871]: [26-1] 2016-06-06 09:35:46: pid 2871: DEBUG: pool_read: read 337 bytes from backend 0 Jun 6 09:35:46 otp3 pgpool[2871]: [26-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: pool_read: read 337 bytes from backend 0 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool[2871]: [27-1] 2016-06-06 09:35:46: pid 2871: DEBUG: authentication backend Jun 6 09:35:46 otp3 pgpool[2871]: [27-2] 2016-06-06 09:35:46: pid 2871: DETAIL: trying md5 authentication Jun 6 09:35:46 otp3 pgpool[2871]: [27-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_auth.c:239 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: authentication backend Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: trying md5 authentication Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_auth.c:239 Jun 6 09:35:46 otp3 pgpool[2871]: [28-1] 2016-06-06 09:35:46: pid 2871: DEBUG: performing md5 authentication Jun 6 09:35:46 otp3 pgpool[2871]: [28-2] 2016-06-06 09:35:46: pid 2871: DETAIL: DB node id: 1 salt: 58bb121a Jun 6 09:35:46 otp3 pgpool[2871]: [28-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_auth.c:855 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: performing md5 authentication Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: DB node id: 1 salt: 58bb121a Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_auth.c:855 Jun 6 09:35:46 otp3 pgpool[2871]: [29-1] 2016-06-06 09:35:46: pid 2871: DEBUG: pool_write: to backend: kind:p Jun 6 09:35:46 otp3 pgpool[2871]: [29-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: pool_write: to backend: kind:p Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool[2873]: [18-1] 2016-06-06 09:35:46: pid 2873: DEBUG: pool_read: read 13 bytes from backend 0 Jun 6 09:35:46 otp3 pgpool[2873]: [18-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: pool_read: read 13 bytes from backend 0 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool[2873]: [19-1] 2016-06-06 09:35:46: pid 2873: DEBUG: pool_read: read 13 bytes from backend 1 Jun 6 09:35:46 otp3 pgpool[2873]: [19-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: pool_read: read 13 bytes from backend 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool[2873]: [20-1] 2016-06-06 09:35:46: pid 2873: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2873]: [20-2] 2016-06-06 09:35:46: pid 2873: DETAIL: slot: 0 length: 12 Jun 6 09:35:46 otp3 pgpool[2873]: [20-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_auth.c:1107 Jun 6 09:35:46 otp3 pgpool[2873]: [21-1] 2016-06-06 09:35:46: pid 2873: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: slot: 0 length: 12 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_auth.c:1107 Jun 6 09:35:46 otp3 pgpool[2873]: [21-2] 2016-06-06 09:35:46: pid 2873: DETAIL: slot: 1 length: 12 Jun 6 09:35:46 otp3 pgpool[2873]: [21-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_auth.c:1126 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: slot: 1 length: 12 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_auth.c:1126 Jun 6 09:35:46 otp3 pgpool[2873]: [22-1] 2016-06-06 09:35:46: pid 2873: DEBUG: authentication backend Jun 6 09:35:46 otp3 pgpool[2873]: [22-2] 2016-06-06 09:35:46: pid 2873: DETAIL: auth kind:5 Jun 6 09:35:46 otp3 pgpool[2873]: [22-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_auth.c:142 Jun 6 09:35:46 otp3 pgpool[2873]: [23-1] 2016-06-06 09:35:46: pid 2873: DEBUG: authentication backend Jun 6 09:35:46 otp3 pgpool[2873]: [23-2] 2016-06-06 09:35:46: pid 2873: DETAIL: trying md5 authentication Jun 6 09:35:46 otp3 pgpool[2873]: [23-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_auth.c:239 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: authentication backend Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: auth kind:5 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_auth.c:142 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: authentication backend Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: trying md5 authentication Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_auth.c:239 Jun 6 09:35:46 otp3 pgpool[2873]: [24-1] 2016-06-06 09:35:46: pid 2873: DEBUG: performing md5 authentication Jun 6 09:35:46 otp3 pgpool[2873]: [24-2] 2016-06-06 09:35:46: pid 2873: DETAIL: DB node id: 0 salt: 103fe39 Jun 6 09:35:46 otp3 pgpool[2873]: [24-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_auth.c:855 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: performing md5 authentication Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: DB node id: 0 salt: 103fe39 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_auth.c:855 Jun 6 09:35:46 otp3 pgpool[2873]: [25-1] 2016-06-06 09:35:46: pid 2873: DEBUG: pool_write: to backend: kind:p Jun 6 09:35:46 otp3 pgpool[2873]: [25-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: pool_write: to backend: kind:p Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool[2871]: [30-1] 2016-06-06 09:35:46: pid 2871: DEBUG: pool_read: read 337 bytes from backend 1 Jun 6 09:35:46 otp3 pgpool[2871]: [30-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: pool_read: read 337 bytes from backend 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool[2871]: [31-1] 2016-06-06 09:35:46: pid 2871: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2871]: [31-2] 2016-06-06 09:35:46: pid 2871: DETAIL: master slot: 0 length: 22 Jun 6 09:35:46 otp3 pgpool[2871]: [31-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_auth.c:1161 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: master slot: 0 length: 22 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_auth.c:1161 Jun 6 09:35:46 otp3 pgpool[2871]: [32-1] 2016-06-06 09:35:46: pid 2871: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2871]: [32-2] 2016-06-06 09:35:46: pid 2871: DETAIL: master slot: 1 length: 22 Jun 6 09:35:46 otp3 pgpool[2871]: [32-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_auth.c:1172 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: master slot: 1 length: 22 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_auth.c:1172 Jun 6 09:35:46 otp3 pgpool[2871]: [33-1] 2016-06-06 09:35:46: pid 2871: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool[2871]: [33-2] 2016-06-06 09:35:46: pid 2871: DETAIL: backend:0 name:"application_name" value:"" Jun 6 09:35:46 otp3 pgpool[2871]: [33-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool[2871]: [34-1] 2016-06-06 09:35:46: pid 2871: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: backend:0 name:"application_name" value:"" Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool[2871]: [34-2] 2016-06-06 09:35:46: pid 2871: DETAIL: backend:1 name:"application_name" value:"" Jun 6 09:35:46 otp3 pgpool[2871]: [34-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: backend:1 name:"application_name" value:"" Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool[2871]: [35-1] 2016-06-06 09:35:46: pid 2871: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2871]: [35-2] 2016-06-06 09:35:46: pid 2871: DETAIL: master slot: 0 length: 25 Jun 6 09:35:46 otp3 pgpool[2871]: [35-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_auth.c:1161 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2871]: [36-1] 2016-06-06 09:35:46: pid 2871: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: master slot: 0 length: 25 Jun 6 09:35:46 otp3 pgpool[2871]: [36-2] 2016-06-06 09:35:46: pid 2871: DETAIL: master slot: 1 length: 25 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_auth.c:1161 Jun 6 09:35:46 otp3 pgpool[2871]: [36-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_auth.c:1172 Jun 6 09:35:46 otp3 pgpool[2871]: [37-1] 2016-06-06 09:35:46: pid 2871: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool[2871]: [37-2] 2016-06-06 09:35:46: pid 2871: DETAIL: backend:0 name:"client_encoding" value:"UTF8" Jun 6 09:35:46 otp3 pgpool[2871]: [37-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool[2871]: [38-1] 2016-06-06 09:35:46: pid 2871: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2871]: [38-2] 2016-06-06 09:35:46: pid 2871: DETAIL: backend:1 name:"client_encoding" value:"UTF8" Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: master slot: 1 length: 25 Jun 6 09:35:46 otp3 pgpool[2871]: [38-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_auth.c:1172 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: backend:0 name:"client_encoding" value:"UTF8" Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool[2871]: [39-1] 2016-06-06 09:35:46: pid 2871: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: backend:1 name:"client_encoding" value:"UTF8" Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool[2871]: [39-2] 2016-06-06 09:35:46: pid 2871: DETAIL: master slot: 0 length: 23 Jun 6 09:35:46 otp3 pgpool[2871]: [39-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_auth.c:1161 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: master slot: 0 length: 23 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_auth.c:1161 Jun 6 09:35:46 otp3 pgpool[2871]: [40-1] 2016-06-06 09:35:46: pid 2871: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2871]: [40-2] 2016-06-06 09:35:46: pid 2871: DETAIL: master slot: 1 length: 23 Jun 6 09:35:46 otp3 pgpool[2871]: [40-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_auth.c:1172 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: master slot: 1 length: 23 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_auth.c:1172 Jun 6 09:35:46 otp3 pgpool[2871]: [41-1] 2016-06-06 09:35:46: pid 2871: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool[2871]: [41-2] 2016-06-06 09:35:46: pid 2871: DETAIL: backend:0 name:"DateStyle" value:"ISO, MDY" Jun 6 09:35:46 otp3 pgpool[2871]: [41-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool[2871]: [42-1] 2016-06-06 09:35:46: pid 2871: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: backend:0 name:"DateStyle" value:"ISO, MDY" Jun 6 09:35:46 otp3 pgpool[2871]: [42-2] 2016-06-06 09:35:46: pid 2871: DETAIL: backend:1 name:"DateStyle" value:"ISO, MDY" Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool[2871]: [42-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: backend:1 name:"DateStyle" value:"ISO, MDY" Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool[2871]: [43-1] 2016-06-06 09:35:46: pid 2871: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2871]: [43-2] 2016-06-06 09:35:46: pid 2871: DETAIL: master slot: 0 length: 25 Jun 6 09:35:46 otp3 pgpool[2871]: [43-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_auth.c:1161 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: master slot: 0 length: 25 Jun 6 09:35:46 otp3 pgpool[2871]: [44-1] 2016-06-06 09:35:46: pid 2871: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_auth.c:1161 Jun 6 09:35:46 otp3 pgpool[2871]: [44-2] 2016-06-06 09:35:46: pid 2871: DETAIL: master slot: 1 length: 25 Jun 6 09:35:46 otp3 pgpool[2871]: [44-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_auth.c:1172 Jun 6 09:35:46 otp3 pgpool[2871]: [45-1] 2016-06-06 09:35:46: pid 2871: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool[2871]: [45-2] 2016-06-06 09:35:46: pid 2871: DETAIL: backend:0 name:"integer_datetimes" value:"on" Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2871]: [45-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: master slot: 1 length: 25 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_auth.c:1172 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool[2871]: [46-1] 2016-06-06 09:35:46: pid 2871: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: backend:0 name:"integer_datetimes" value:"on" Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool[2871]: [46-2] 2016-06-06 09:35:46: pid 2871: DETAIL: backend:1 name:"integer_datetimes" value:"on" Jun 6 09:35:46 otp3 pgpool[2871]: [46-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: backend:1 name:"integer_datetimes" value:"on" Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool[2871]: [47-1] 2016-06-06 09:35:46: pid 2871: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2871]: [47-2] 2016-06-06 09:35:46: pid 2871: DETAIL: master slot: 0 length: 27 Jun 6 09:35:46 otp3 pgpool[2871]: [47-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_auth.c:1161 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: master slot: 0 length: 27 Jun 6 09:35:46 otp3 pgpool[2871]: [48-1] 2016-06-06 09:35:46: pid 2871: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2871]: [48-2] 2016-06-06 09:35:46: pid 2871: DETAIL: master slot: 1 length: 27 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_auth.c:1161 Jun 6 09:35:46 otp3 pgpool[2871]: [48-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_auth.c:1172 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: master slot: 1 length: 27 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_auth.c:1172 Jun 6 09:35:46 otp3 pgpool[2871]: [49-1] 2016-06-06 09:35:46: pid 2871: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool[2871]: [49-2] 2016-06-06 09:35:46: pid 2871: DETAIL: backend:0 name:"IntervalStyle" value:"postgres" Jun 6 09:35:46 otp3 pgpool[2871]: [49-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: backend:0 name:"IntervalStyle" value:"postgres" Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool[2871]: [50-1] 2016-06-06 09:35:46: pid 2871: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool[2871]: [50-2] 2016-06-06 09:35:46: pid 2871: DETAIL: backend:1 name:"IntervalStyle" value:"postgres" Jun 6 09:35:46 otp3 pgpool[2871]: [50-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool[2873]: [26-1] 2016-06-06 09:35:46: pid 2873: DEBUG: pool_read: read 337 bytes from backend 0 Jun 6 09:35:46 otp3 pgpool[2873]: [26-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool[2873]: [27-1] 2016-06-06 09:35:46: pid 2873: DEBUG: authentication backend Jun 6 09:35:46 otp3 pgpool[2871]: [51-1] 2016-06-06 09:35:46: pid 2871: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2871]: [51-2] 2016-06-06 09:35:46: pid 2871: DETAIL: master slot: 0 length: 21 Jun 6 09:35:46 otp3 pgpool[2871]: [51-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_auth.c:1161 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool[2871]: [52-1] 2016-06-06 09:35:46: pid 2871: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2871]: [52-2] 2016-06-06 09:35:46: pid 2871: DETAIL: master slot: 1 length: 21 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: backend:1 name:"IntervalStyle" value:"postgres" Jun 6 09:35:46 otp3 pgpool[2871]: [52-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_auth.c:1172 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: pool_read: read 337 bytes from backend 0 Jun 6 09:35:46 otp3 pgpool[2871]: [53-1] 2016-06-06 09:35:46: pid 2871: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool[2871]: [53-2] 2016-06-06 09:35:46: pid 2871: DETAIL: backend:0 name:"is_superuser" value:"off" Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: master slot: 0 length: 21 Jun 6 09:35:46 otp3 pgpool[2871]: [53-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_auth.c:1161 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: master slot: 1 length: 21 Jun 6 09:35:46 otp3 pgpool[2871]: [54-1] 2016-06-06 09:35:46: pid 2871: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool[2871]: [54-2] 2016-06-06 09:35:46: pid 2871: DETAIL: backend:1 name:"is_superuser" value:"off" Jun 6 09:35:46 otp3 pgpool[2871]: [54-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_auth.c:1172 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: backend:0 name:"is_superuser" value:"off" Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool[2871]: [55-1] 2016-06-06 09:35:46: pid 2871: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2871]: [55-2] 2016-06-06 09:35:46: pid 2871: DETAIL: master slot: 0 length: 30 Jun 6 09:35:46 otp3 pgpool[2873]: [27-2] 2016-06-06 09:35:46: pid 2873: DETAIL: trying md5 authentication Jun 6 09:35:46 otp3 pgpool[2871]: [55-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_auth.c:1161 Jun 6 09:35:46 otp3 pgpool[2873]: [27-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_auth.c:239 Jun 6 09:35:46 otp3 pgpool[2871]: [56-1] 2016-06-06 09:35:46: pid 2871: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2871]: [56-2] 2016-06-06 09:35:46: pid 2871: DETAIL: master slot: 1 length: 30 Jun 6 09:35:46 otp3 pgpool[2873]: [28-1] 2016-06-06 09:35:46: pid 2873: DEBUG: performing md5 authentication Jun 6 09:35:46 otp3 pgpool[2871]: [56-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_auth.c:1172 Jun 6 09:35:46 otp3 pgpool[2873]: [28-2] 2016-06-06 09:35:46: pid 2873: DETAIL: DB node id: 1 salt: 82f1299c Jun 6 09:35:46 otp3 pgpool[2873]: [28-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_auth.c:855 Jun 6 09:35:46 otp3 pgpool[2871]: [57-1] 2016-06-06 09:35:46: pid 2871: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool[2873]: [29-1] 2016-06-06 09:35:46: pid 2873: DEBUG: pool_write: to backend: kind:p Jun 6 09:35:46 otp3 pgpool[2873]: [29-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool[2871]: [57-2] 2016-06-06 09:35:46: pid 2871: DETAIL: backend:0 name:"server_encoding" value:"SQL_ASCII" Jun 6 09:35:46 otp3 pgpool[2871]: [57-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: backend:1 name:"is_superuser" value:"off" Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool[2871]: [58-1] 2016-06-06 09:35:46: pid 2871: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: master slot: 0 length: 30 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_auth.c:1161 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: authentication backend Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: trying md5 authentication Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_auth.c:239 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: master slot: 1 length: 30 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_auth.c:1172 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: performing md5 authentication Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: DB node id: 1 salt: 82f1299c Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_auth.c:855 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: pool_write: to backend: kind:p Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: backend:0 name:"server_encoding" value:"SQL_ASCII" Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool[2871]: [58-2] 2016-06-06 09:35:46: pid 2871: DETAIL: backend:1 name:"server_encoding" value:"SQL_ASCII" Jun 6 09:35:46 otp3 pgpool[2871]: [58-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool[2873]: [30-1] 2016-06-06 09:35:46: pid 2873: DEBUG: pool_read: read 337 bytes from backend 1 Jun 6 09:35:46 otp3 pgpool[2873]: [30-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool[2873]: [31-1] 2016-06-06 09:35:46: pid 2873: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2873]: [31-2] 2016-06-06 09:35:46: pid 2873: DETAIL: master slot: 0 length: 22 Jun 6 09:35:46 otp3 pgpool[2873]: [31-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_auth.c:1161 Jun 6 09:35:46 otp3 pgpool[2873]: [32-1] 2016-06-06 09:35:46: pid 2873: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2873]: [32-2] 2016-06-06 09:35:46: pid 2873: DETAIL: master slot: 1 length: 22 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: backend:1 name:"server_encoding" value:"SQL_ASCII" Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: pool_read: read 337 bytes from backend 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: master slot: 0 length: 22 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_auth.c:1161 Jun 6 09:35:46 otp3 pgpool[2873]: [32-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_auth.c:1172 Jun 6 09:35:46 otp3 pgpool[2871]: [59-1] 2016-06-06 09:35:46: pid 2871: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2871]: [59-2] 2016-06-06 09:35:46: pid 2871: DETAIL: master slot: 0 length: 26 Jun 6 09:35:46 otp3 pgpool[2871]: [59-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_auth.c:1161 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: master slot: 1 length: 22 Jun 6 09:35:46 otp3 pgpool[2871]: [60-1] 2016-06-06 09:35:46: pid 2871: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_auth.c:1172 Jun 6 09:35:46 otp3 pgpool[2871]: [60-2] 2016-06-06 09:35:46: pid 2871: DETAIL: master slot: 1 length: 26 Jun 6 09:35:46 otp3 pgpool[2871]: [60-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_auth.c:1172 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2871]: [61-1] 2016-06-06 09:35:46: pid 2871: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool[2871]: [61-2] 2016-06-06 09:35:46: pid 2871: DETAIL: backend:0 name:"server_version" value:"9.3.12" Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: master slot: 0 length: 26 Jun 6 09:35:46 otp3 pgpool[2871]: [61-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_auth.c:1161 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: master slot: 1 length: 26 Jun 6 09:35:46 otp3 pgpool[2871]: [62-1] 2016-06-06 09:35:46: pid 2871: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool[2871]: [62-2] 2016-06-06 09:35:46: pid 2871: DETAIL: backend:1 name:"server_version" value:"9.3.12" Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_auth.c:1172 Jun 6 09:35:46 otp3 pgpool[2871]: [62-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool[2871]: [63-1] 2016-06-06 09:35:46: pid 2871: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2871]: [63-2] 2016-06-06 09:35:46: pid 2871: DETAIL: master slot: 0 length: 38 Jun 6 09:35:46 otp3 pgpool[2871]: [63-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_auth.c:1161 Jun 6 09:35:46 otp3 pgpool[2871]: [64-1] 2016-06-06 09:35:46: pid 2871: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2871]: [64-2] 2016-06-06 09:35:46: pid 2871: DETAIL: master slot: 1 length: 38 Jun 6 09:35:46 otp3 pgpool[2871]: [64-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_auth.c:1172 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: backend:0 name:"server_version" value:"9.3.12" Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool[2871]: [65-1] 2016-06-06 09:35:46: pid 2871: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool[2871]: [65-2] 2016-06-06 09:35:46: pid 2871: DETAIL: backend:0 name:"session_authorization" value:"sparrowdesk" Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: backend:1 name:"server_version" value:"9.3.12" Jun 6 09:35:46 otp3 pgpool[2871]: [65-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool[2871]: [66-1] 2016-06-06 09:35:46: pid 2871: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool[2871]: [66-2] 2016-06-06 09:35:46: pid 2871: DETAIL: backend:1 name:"session_authorization" value:"sparrowdesk" Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2871]: [66-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: master slot: 0 length: 38 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_auth.c:1161 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2871]: [67-1] 2016-06-06 09:35:46: pid 2871: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: master slot: 1 length: 38 Jun 6 09:35:46 otp3 pgpool[2871]: [67-2] 2016-06-06 09:35:46: pid 2871: DETAIL: master slot: 0 length: 35 Jun 6 09:35:46 otp3 pgpool[2871]: [67-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_auth.c:1161 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_auth.c:1172 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool[2871]: [68-1] 2016-06-06 09:35:46: pid 2871: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2871]: [68-2] 2016-06-06 09:35:46: pid 2871: DETAIL: master slot: 1 length: 35 Jun 6 09:35:46 otp3 pgpool[2871]: [68-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_auth.c:1172 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: backend:0 name:"session_authorization" value:"sparrowdesk" Jun 6 09:35:46 otp3 pgpool[2871]: [69-1] 2016-06-06 09:35:46: pid 2871: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool[2871]: [69-2] 2016-06-06 09:35:46: pid 2871: DETAIL: backend:0 name:"standard_conforming_strings" value:"on" Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool[2871]: [69-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool[2871]: [70-1] 2016-06-06 09:35:46: pid 2871: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool[2871]: [70-2] 2016-06-06 09:35:46: pid 2871: DETAIL: backend:1 name:"standard_conforming_strings" value:"on" Jun 6 09:35:46 otp3 pgpool[2871]: [70-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: backend:1 name:"session_authorization" value:"sparrowdesk" Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2871]: [71-1] 2016-06-06 09:35:46: pid 2871: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2871]: [71-2] 2016-06-06 09:35:46: pid 2871: DETAIL: master slot: 0 length: 26 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: master slot: 0 length: 35 Jun 6 09:35:46 otp3 pgpool[2871]: [71-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_auth.c:1161 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_auth.c:1161 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: master slot: 1 length: 35 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_auth.c:1172 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: backend:0 name:"standard_conforming_strings" value:"on" Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool[2871]: [72-1] 2016-06-06 09:35:46: pid 2871: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2871]: [72-2] 2016-06-06 09:35:46: pid 2871: DETAIL: master slot: 1 length: 26 Jun 6 09:35:46 otp3 pgpool[2871]: [72-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_auth.c:1172 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool[2871]: [73-1] 2016-06-06 09:35:46: pid 2871: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: backend:1 name:"standard_conforming_strings" value:"on" Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: master slot: 0 length: 26 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_auth.c:1161 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: master slot: 1 length: 26 Jun 6 09:35:46 otp3 pgpool[2873]: [33-1] 2016-06-06 09:35:46: pid 2873: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool[2873]: [33-2] 2016-06-06 09:35:46: pid 2873: DETAIL: backend:0 name:"application_name" value:"" Jun 6 09:35:46 otp3 pgpool[2873]: [33-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_auth.c:1172 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: backend:0 name:"application_name" value:"" Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool[2873]: [34-1] 2016-06-06 09:35:46: pid 2873: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool[2873]: [34-2] 2016-06-06 09:35:46: pid 2873: DETAIL: backend:1 name:"application_name" value:"" Jun 6 09:35:46 otp3 pgpool[2873]: [34-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool[2871]: [73-2] 2016-06-06 09:35:46: pid 2871: DETAIL: backend:0 name:"TimeZone" value:"Asia/Kolkata" Jun 6 09:35:46 otp3 pgpool[2871]: [73-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool[2871]: [74-1] 2016-06-06 09:35:46: pid 2871: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool[2871]: [74-2] 2016-06-06 09:35:46: pid 2871: DETAIL: backend:1 name:"TimeZone" value:"Asia/Kolkata" Jun 6 09:35:46 otp3 pgpool[2871]: [74-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: backend:1 name:"application_name" value:"" Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool[2871]: [75-1] 2016-06-06 09:35:46: pid 2871: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool[2871]: [75-2] 2016-06-06 09:35:46: pid 2871: DETAIL: slot: 0 length: 12 Jun 6 09:35:46 otp3 pgpool[2871]: [75-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_auth.c:1107 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: backend:0 name:"TimeZone" value:"Asia/Kolkata" Jun 6 09:35:46 otp3 pgpool[2871]: [76-1] 2016-06-06 09:35:46: pid 2871: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool[2871]: [76-2] 2016-06-06 09:35:46: pid 2871: DETAIL: slot: 1 length: 12 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: backend:1 name:"TimeZone" value:"Asia/Kolkata" Jun 6 09:35:46 otp3 pgpool[2871]: [76-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_auth.c:1126 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2871]: [77-1] 2016-06-06 09:35:46: pid 2871: DEBUG: authentication backend Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: slot: 0 length: 12 Jun 6 09:35:46 otp3 pgpool[2871]: [77-2] 2016-06-06 09:35:46: pid 2871: DETAIL: cp->info[i]:0x80077b000 pid:97117 Jun 6 09:35:46 otp3 pgpool[2871]: [77-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_auth.c:391 Jun 6 09:35:46 otp3 pgpool[2871]: [78-1] 2016-06-06 09:35:46: pid 2871: DEBUG: authentication backend Jun 6 09:35:46 otp3 pgpool[2871]: [78-2] 2016-06-06 09:35:46: pid 2871: DETAIL: cp->info[i]:0x80077b088 pid:83412 Jun 6 09:35:46 otp3 pgpool[2873]: [35-1] 2016-06-06 09:35:46: pid 2873: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2871]: [78-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_auth.c:391 Jun 6 09:35:46 otp3 pgpool[2873]: [35-2] 2016-06-06 09:35:46: pid 2873: DETAIL: master slot: 0 length: 25 Jun 6 09:35:46 otp3 pgpool[2873]: [35-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_auth.c:1161 Jun 6 09:35:46 otp3 pgpool[2873]: [36-1] 2016-06-06 09:35:46: pid 2873: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2873]: [36-2] 2016-06-06 09:35:46: pid 2873: DETAIL: master slot: 1 length: 25 Jun 6 09:35:46 otp3 pgpool[2871]: [79-1] 2016-06-06 09:35:46: pid 2871: DEBUG: sending backend key data Jun 6 09:35:46 otp3 pgpool[2871]: [79-2] 2016-06-06 09:35:46: pid 2871: DETAIL: send pid 83412 to frontend Jun 6 09:35:46 otp3 pgpool[2871]: [79-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_auth.c:519 Jun 6 09:35:46 otp3 pgpool[2873]: [36-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_auth.c:1172 Jun 6 09:35:46 otp3 pgpool[2873]: [37-1] 2016-06-06 09:35:46: pid 2873: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool[2873]: [37-2] 2016-06-06 09:35:46: pid 2873: DETAIL: backend:0 name:"client_encoding" value:"UTF8" Jun 6 09:35:46 otp3 pgpool[2873]: [37-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool[2873]: [38-1] 2016-06-06 09:35:46: pid 2873: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool[2871]: [80-1] 2016-06-06 09:35:46: pid 2871: DEBUG: selecting load balance node Jun 6 09:35:46 otp3 pgpool[2873]: [38-2] 2016-06-06 09:35:46: pid 2873: DETAIL: backend:1 name:"client_encoding" value:"UTF8" Jun 6 09:35:46 otp3 pgpool[2871]: [80-2] 2016-06-06 09:35:46: pid 2871: DETAIL: selected backend id is 0 Jun 6 09:35:46 otp3 pgpool[2871]: [80-3] 2016-06-06 09:35:46: pid 2871: LOCATION: child.c:1720 Jun 6 09:35:46 otp3 pgpool[2873]: [38-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool[2871]: [81-1] 2016-06-06 09:35:46: pid 2871: DEBUG: initializing session context Jun 6 09:35:46 otp3 pgpool[2873]: [39-1] 2016-06-06 09:35:46: pid 2873: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2873]: [39-2] 2016-06-06 09:35:46: pid 2873: DETAIL: master slot: 0 length: 23 Jun 6 09:35:46 otp3 pgpool[2873]: [39-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_auth.c:1161 Jun 6 09:35:46 otp3 pgpool[2871]: [81-2] 2016-06-06 09:35:46: pid 2871: DETAIL: selected load balancing node: 0 Jun 6 09:35:46 otp3 pgpool[2871]: [81-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:99 Jun 6 09:35:46 otp3 pgpool[2873]: [40-1] 2016-06-06 09:35:46: pid 2873: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2873]: [40-2] 2016-06-06 09:35:46: pid 2873: DETAIL: master slot: 1 length: 23 Jun 6 09:35:46 otp3 pgpool[2873]: [40-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_auth.c:1172 Jun 6 09:35:46 otp3 pgpool[2873]: [41-1] 2016-06-06 09:35:46: pid 2873: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool[2871]: [82-1] 2016-06-06 09:35:46: pid 2871: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:46 otp3 pgpool[2871]: [82-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:219 Jun 6 09:35:46 otp3 pgpool[2873]: [41-2] 2016-06-06 09:35:46: pid 2873: DETAIL: backend:0 name:"DateStyle" value:"ISO, MDY" Jun 6 09:35:46 otp3 pgpool[2873]: [41-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool[2873]: [42-1] 2016-06-06 09:35:46: pid 2873: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool[2871]: [83-1] 2016-06-06 09:35:46: pid 2871: DEBUG: session context: clearing transaction isolation. DONE Jun 6 09:35:46 otp3 pgpool[2873]: [42-2] 2016-06-06 09:35:46: pid 2873: DETAIL: backend:1 name:"DateStyle" value:"ISO, MDY" Jun 6 09:35:46 otp3 pgpool[2871]: [83-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:731 Jun 6 09:35:46 otp3 pgpool[2873]: [42-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool[2871]: [84-1] 2016-06-06 09:35:46: pid 2871: DEBUG: session context: clearing writing transaction. DONE Jun 6 09:35:46 otp3 pgpool[2873]: [43-1] 2016-06-06 09:35:46: pid 2873: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2871]: [84-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:565 Jun 6 09:35:46 otp3 pgpool[2873]: [43-2] 2016-06-06 09:35:46: pid 2873: DETAIL: master slot: 0 length: 25 Jun 6 09:35:46 otp3 pgpool[2873]: [43-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_auth.c:1161 Jun 6 09:35:46 otp3 pgpool[2873]: [44-1] 2016-06-06 09:35:46: pid 2873: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2873]: [44-2] 2016-06-06 09:35:46: pid 2873: DETAIL: master slot: 1 length: 25 Jun 6 09:35:46 otp3 pgpool[2873]: [44-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_auth.c:1172 Jun 6 09:35:46 otp3 pgpool[2871]: [85-1] 2016-06-06 09:35:46: pid 2871: DEBUG: session context: clearing failed transaction. DONE Jun 6 09:35:46 otp3 pgpool[2871]: [85-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:594 Jun 6 09:35:46 otp3 pgpool[2873]: [45-1] 2016-06-06 09:35:46: pid 2873: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool[2873]: [45-2] 2016-06-06 09:35:46: pid 2873: DETAIL: backend:0 name:"integer_datetimes" value:"on" Jun 6 09:35:46 otp3 pgpool[2873]: [45-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool[2871]: [86-1] 2016-06-06 09:35:46: pid 2871: DEBUG: session context: clearing failed transaction. DONE Jun 6 09:35:46 otp3 pgpool[2871]: [86-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:624 Jun 6 09:35:46 otp3 pgpool[2873]: [46-1] 2016-06-06 09:35:46: pid 2873: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool[2873]: [46-2] 2016-06-06 09:35:46: pid 2873: DETAIL: backend:1 name:"integer_datetimes" value:"on" Jun 6 09:35:46 otp3 pgpool[2873]: [46-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool[2871]: [87-1] 2016-06-06 09:35:46: pid 2871: DEBUG: session context: clearing skip reading from backends. DONE Jun 6 09:35:46 otp3 pgpool[2873]: [47-1] 2016-06-06 09:35:46: pid 2873: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2871]: [87-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:250 Jun 6 09:35:46 otp3 pgpool[2873]: [47-2] 2016-06-06 09:35:46: pid 2873: DETAIL: master slot: 0 length: 27 Jun 6 09:35:46 otp3 pgpool[2873]: [47-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_auth.c:1161 Jun 6 09:35:46 otp3 pgpool[2871]: [88-1] 2016-06-06 09:35:46: pid 2871: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:35:46 otp3 pgpool[2871]: [88-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:310 Jun 6 09:35:46 otp3 pgpool[2873]: [48-1] 2016-06-06 09:35:46: pid 2873: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2873]: [48-2] 2016-06-06 09:35:46: pid 2873: DETAIL: master slot: 1 length: 27 Jun 6 09:35:46 otp3 pgpool[2873]: [48-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_auth.c:1172 Jun 6 09:35:46 otp3 pgpool[2873]: [49-1] 2016-06-06 09:35:46: pid 2873: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool[2871]: [89-1] 2016-06-06 09:35:46: pid 2871: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 0 doing extended query: 0 Jun 6 09:35:46 otp3 pgpool[2873]: [49-2] 2016-06-06 09:35:46: pid 2873: DETAIL: backend:0 name:"IntervalStyle" value:"postgres" Jun 6 09:35:46 otp3 pgpool[2873]: [49-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool[2871]: [89-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool[2873]: [50-1] 2016-06-06 09:35:46: pid 2873: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool[2873]: [50-2] 2016-06-06 09:35:46: pid 2873: DETAIL: backend:1 name:"IntervalStyle" value:"postgres" Jun 6 09:35:46 otp3 pgpool[2873]: [50-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool[2871]: [90-1] 2016-06-06 09:35:46: pid 2871: DEBUG: reading backend data packet kind Jun 6 09:35:46 otp3 pgpool[2871]: [90-2] 2016-06-06 09:35:46: pid 2871: DETAIL: backend:0 of 2 kind = 'Z' Jun 6 09:35:46 otp3 pgpool[2873]: [51-1] 2016-06-06 09:35:46: pid 2873: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2871]: [90-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:3349 Jun 6 09:35:46 otp3 pgpool[2873]: [51-2] 2016-06-06 09:35:46: pid 2873: DETAIL: master slot: 0 length: 21 Jun 6 09:35:46 otp3 pgpool[2873]: [51-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_auth.c:1161 Jun 6 09:35:46 otp3 pgpool[2871]: [91-1] 2016-06-06 09:35:46: pid 2871: DEBUG: reading backend data packet kind Jun 6 09:35:46 otp3 pgpool[2873]: [52-1] 2016-06-06 09:35:46: pid 2873: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2873]: [52-2] 2016-06-06 09:35:46: pid 2873: DETAIL: master slot: 1 length: 21 Jun 6 09:35:46 otp3 pgpool[2871]: [91-2] 2016-06-06 09:35:46: pid 2871: DETAIL: backend:1 of 2 kind = 'Z' Jun 6 09:35:46 otp3 pgpool[2873]: [52-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_auth.c:1172 Jun 6 09:35:46 otp3 pgpool[2871]: [91-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:3349 Jun 6 09:35:46 otp3 pgpool[2873]: [53-1] 2016-06-06 09:35:46: pid 2873: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool[2873]: [53-2] 2016-06-06 09:35:46: pid 2873: DETAIL: backend:0 name:"is_superuser" value:"off" Jun 6 09:35:46 otp3 pgpool[2873]: [53-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool[2873]: [54-1] 2016-06-06 09:35:46: pid 2873: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool[2871]: [92-1] 2016-06-06 09:35:46: pid 2871: DEBUG: read_kind_from_backend max_count:2.000000 num_executed_nodes:2 Jun 6 09:35:46 otp3 pgpool[2873]: [54-2] 2016-06-06 09:35:46: pid 2873: DETAIL: backend:1 name:"is_superuser" value:"off" Jun 6 09:35:46 otp3 pgpool[2871]: [92-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:3365 Jun 6 09:35:46 otp3 pgpool[2873]: [54-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool[2871]: [93-1] 2016-06-06 09:35:46: pid 2871: DEBUG: processing backend response Jun 6 09:35:46 otp3 pgpool[2873]: [55-1] 2016-06-06 09:35:46: pid 2873: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2871]: [93-2] 2016-06-06 09:35:46: pid 2871: DETAIL: received kind 'Z'(5a) from backend Jun 6 09:35:46 otp3 pgpool[2873]: [55-2] 2016-06-06 09:35:46: pid 2873: DETAIL: master slot: 0 length: 30 Jun 6 09:35:46 otp3 pgpool[2871]: [93-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_proto_modules.c:2424 Jun 6 09:35:46 otp3 pgpool[2873]: [55-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_auth.c:1161 Jun 6 09:35:46 otp3 pgpool[2873]: [56-1] 2016-06-06 09:35:46: pid 2873: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2873]: [56-2] 2016-06-06 09:35:46: pid 2873: DETAIL: master slot: 1 length: 30 Jun 6 09:35:46 otp3 pgpool[2871]: [94-1] 2016-06-06 09:35:46: pid 2871: DEBUG: processing backend response Jun 6 09:35:46 otp3 pgpool[2873]: [56-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_auth.c:1172 Jun 6 09:35:46 otp3 pgpool[2871]: [94-2] 2016-06-06 09:35:46: pid 2871: DETAIL: Ready For Query received Jun 6 09:35:46 otp3 pgpool[2871]: [94-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_proto_modules.c:2442 Jun 6 09:35:46 otp3 pgpool[2873]: [57-1] 2016-06-06 09:35:46: pid 2873: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool[2873]: [57-2] 2016-06-06 09:35:46: pid 2873: DETAIL: backend:0 name:"server_encoding" value:"SQL_ASCII" Jun 6 09:35:46 otp3 pgpool[2873]: [57-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool[2871]: [95-1] 2016-06-06 09:35:46: pid 2871: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:35:46 otp3 pgpool[2871]: [95-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:310 Jun 6 09:35:46 otp3 pgpool[2873]: [58-1] 2016-06-06 09:35:46: pid 2873: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool[2873]: [58-2] 2016-06-06 09:35:46: pid 2873: DETAIL: backend:1 name:"server_encoding" value:"SQL_ASCII" Jun 6 09:35:46 otp3 pgpool[2871]: [96-1] 2016-06-06 09:35:46: pid 2871: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 0 doing extended query: 0 Jun 6 09:35:46 otp3 pgpool[2873]: [58-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool[2871]: [96-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool[2873]: [59-1] 2016-06-06 09:35:46: pid 2873: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2871]: [97-1] 2016-06-06 09:35:46: pid 2871: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 0 doing extended query: 0 Jun 6 09:35:46 otp3 pgpool[2871]: [97-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool[2873]: [59-2] 2016-06-06 09:35:46: pid 2873: DETAIL: master slot: 0 length: 26 Jun 6 09:35:46 otp3 pgpool[2873]: [59-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_auth.c:1161 Jun 6 09:35:46 otp3 pgpool[2871]: [98-1] 2016-06-06 09:35:46: pid 2871: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 0 doing extended query: 0 Jun 6 09:35:46 otp3 pgpool[2873]: [60-1] 2016-06-06 09:35:46: pid 2873: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2871]: [98-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool[2873]: [60-2] 2016-06-06 09:35:46: pid 2873: DETAIL: master slot: 1 length: 26 Jun 6 09:35:46 otp3 pgpool[2873]: [60-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_auth.c:1172 Jun 6 09:35:46 otp3 pgpool[2871]: [99-1] 2016-06-06 09:35:46: pid 2871: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2871]: [99-2] 2016-06-06 09:35:46: pid 2871: DETAIL: slot: 0 length: 5 Jun 6 09:35:46 otp3 pgpool[2871]: [99-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_auth.c:1107 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_auth.c:1107 Jun 6 09:35:46 otp3 pgpool[2871]: [100-1] 2016-06-06 09:35:46: pid 2871: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2871]: [100-2] 2016-06-06 09:35:46: pid 2871: DETAIL: slot: 1 length: 5 Jun 6 09:35:46 otp3 pgpool[2871]: [100-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_auth.c:1126 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: slot: 1 length: 12 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_auth.c:1126 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: authentication backend Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: cp->info[i]:0x80077b000 pid:97117 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_auth.c:391 Jun 6 09:35:46 otp3 pgpool[2871]: [101-1] 2016-06-06 09:35:46: pid 2871: DEBUG: processing ReadyForQuery Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: authentication backend Jun 6 09:35:46 otp3 pgpool[2871]: [101-2] 2016-06-06 09:35:46: pid 2871: DETAIL: transaction state ' Jun 6 09:35:46 otp3 pgpool[2871]: [101-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_proto_modules.c:1612 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: cp->info[i]:0x80077b088 pid:83412 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_auth.c:391 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: master slot: 0 length: 25 Jun 6 09:35:46 otp3 pgpool[2871]: [102-1] 2016-06-06 09:35:46: pid 2871: DEBUG: processing ReadyForQuery Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_auth.c:1161 Jun 6 09:35:46 otp3 pgpool[2871]: [102-2] 2016-06-06 09:35:46: pid 2871: DETAIL: transaction state 'I'(49) Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: sending backend key data Jun 6 09:35:46 otp3 pgpool[2871]: [102-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_proto_modules.c:1612 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: send pid 83412 to frontend Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_auth.c:519 Jun 6 09:35:46 otp3 pgpool[2873]: [61-1] 2016-06-06 09:35:46: pid 2873: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool[2873]: [61-2] 2016-06-06 09:35:46: pid 2873: DETAIL: backend:0 name:"server_version" value:"9.3.12" Jun 6 09:35:46 otp3 pgpool[2873]: [61-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2873]: [62-1] 2016-06-06 09:35:46: pid 2873: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: master slot: 1 length: 25 Jun 6 09:35:46 otp3 pgpool[2873]: [62-2] 2016-06-06 09:35:46: pid 2873: DETAIL: backend:1 name:"server_version" value:"9.3.12" Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_auth.c:1172 Jun 6 09:35:46 otp3 pgpool[2873]: [62-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: backend:0 name:"client_encoding" value:"UTF8" Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool[2873]: [63-1] 2016-06-06 09:35:46: pid 2873: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2873]: [63-2] 2016-06-06 09:35:46: pid 2873: DETAIL: master slot: 0 length: 38 Jun 6 09:35:46 otp3 pgpool[2873]: [63-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_auth.c:1161 Jun 6 09:35:46 otp3 pgpool[2873]: [64-1] 2016-06-06 09:35:46: pid 2873: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2873]: [64-2] 2016-06-06 09:35:46: pid 2873: DETAIL: master slot: 1 length: 38 Jun 6 09:35:46 otp3 pgpool[2873]: [64-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_auth.c:1172 Jun 6 09:35:46 otp3 pgpool[2873]: [65-1] 2016-06-06 09:35:46: pid 2873: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool[2873]: [65-2] 2016-06-06 09:35:46: pid 2873: DETAIL: backend:0 name:"session_authorization" value:"sparrowdesk" Jun 6 09:35:46 otp3 pgpool[2873]: [65-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool[2873]: [66-1] 2016-06-06 09:35:46: pid 2873: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool[2873]: [66-2] 2016-06-06 09:35:46: pid 2873: DETAIL: backend:1 name:"session_authorization" value:"sparrowdesk" Jun 6 09:35:46 otp3 pgpool[2873]: [66-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool[2873]: [67-1] 2016-06-06 09:35:46: pid 2873: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2873]: [67-2] 2016-06-06 09:35:46: pid 2873: DETAIL: master slot: 0 length: 35 Jun 6 09:35:46 otp3 pgpool[2873]: [67-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_auth.c:1161 Jun 6 09:35:46 otp3 pgpool[2873]: [68-1] 2016-06-06 09:35:46: pid 2873: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2873]: [68-2] 2016-06-06 09:35:46: pid 2873: DETAIL: master slot: 1 length: 35 Jun 6 09:35:46 otp3 pgpool[2873]: [68-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_auth.c:1172 Jun 6 09:35:46 otp3 pgpool[2873]: [69-1] 2016-06-06 09:35:46: pid 2873: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool[2873]: [69-2] 2016-06-06 09:35:46: pid 2873: DETAIL: backend:0 name:"standard_conforming_strings" value:"on" Jun 6 09:35:46 otp3 pgpool[2873]: [69-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool[2873]: [70-1] 2016-06-06 09:35:46: pid 2873: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool[2873]: [70-2] 2016-06-06 09:35:46: pid 2873: DETAIL: backend:1 name:"standard_conforming_strings" value:"on" Jun 6 09:35:46 otp3 pgpool[2873]: [70-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool[2873]: [71-1] 2016-06-06 09:35:46: pid 2873: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2873]: [71-2] 2016-06-06 09:35:46: pid 2873: DETAIL: master slot: 0 length: 26 Jun 6 09:35:46 otp3 pgpool[2873]: [71-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_auth.c:1161 Jun 6 09:35:46 otp3 pgpool[2873]: [72-1] 2016-06-06 09:35:46: pid 2873: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2873]: [72-2] 2016-06-06 09:35:46: pid 2873: DETAIL: master slot: 1 length: 26 Jun 6 09:35:46 otp3 pgpool[2873]: [72-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_auth.c:1172 Jun 6 09:35:46 otp3 pgpool[2873]: [73-1] 2016-06-06 09:35:46: pid 2873: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool[2873]: [73-2] 2016-06-06 09:35:46: pid 2873: DETAIL: backend:0 name:"TimeZone" value:"Asia/Kolkata" Jun 6 09:35:46 otp3 pgpool[2873]: [73-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool[2873]: [74-1] 2016-06-06 09:35:46: pid 2873: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool[2873]: [74-2] 2016-06-06 09:35:46: pid 2873: DETAIL: backend:1 name:"TimeZone" value:"Asia/Kolkata" Jun 6 09:35:46 otp3 pgpool[2873]: [74-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool[2873]: [75-1] 2016-06-06 09:35:46: pid 2873: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2873]: [75-2] 2016-06-06 09:35:46: pid 2873: DETAIL: slot: 0 length: 12 Jun 6 09:35:46 otp3 pgpool[2873]: [75-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_auth.c:1107 Jun 6 09:35:46 otp3 pgpool[2873]: [76-1] 2016-06-06 09:35:46: pid 2873: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2873]: [76-2] 2016-06-06 09:35:46: pid 2873: DETAIL: slot: 1 length: 12 Jun 6 09:35:46 otp3 pgpool[2873]: [76-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_auth.c:1126 Jun 6 09:35:46 otp3 pgpool[2873]: [77-1] 2016-06-06 09:35:46: pid 2873: DEBUG: authentication backend Jun 6 09:35:46 otp3 pgpool[2873]: [77-2] 2016-06-06 09:35:46: pid 2873: DETAIL: cp->info[i]:0x80079d000 pid:97118 Jun 6 09:35:46 otp3 pgpool[2873]: [77-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_auth.c:391 Jun 6 09:35:46 otp3 pgpool[2873]: [78-1] 2016-06-06 09:35:46: pid 2873: DEBUG: authentication backend Jun 6 09:35:46 otp3 pgpool[2873]: [78-2] 2016-06-06 09:35:46: pid 2873: DETAIL: cp->info[i]:0x80079d088 pid:83413 Jun 6 09:35:46 otp3 pgpool[2873]: [78-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_auth.c:391 Jun 6 09:35:46 otp3 pgpool[2873]: [79-1] 2016-06-06 09:35:46: pid 2873: DEBUG: sending backend key data Jun 6 09:35:46 otp3 pgpool[2873]: [79-2] 2016-06-06 09:35:46: pid 2873: DETAIL: send pid 83413 to frontend Jun 6 09:35:46 otp3 pgpool[2873]: [79-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_auth.c:519 Jun 6 09:35:46 otp3 pgpool[2873]: [80-1] 2016-06-06 09:35:46: pid 2873: DEBUG: selecting load balance node Jun 6 09:35:46 otp3 pgpool[2873]: [80-2] 2016-06-06 09:35:46: pid 2873: DETAIL: selected backend id is 0 Jun 6 09:35:46 otp3 pgpool[2873]: [80-3] 2016-06-06 09:35:46: pid 2873: LOCATION: child.c:1720 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: selecting load balance node Jun 6 09:35:46 otp3 pgpool[2873]: [81-1] 2016-06-06 09:35:46: pid 2873: DEBUG: initializing session context Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: selected backend id is 0 Jun 6 09:35:46 otp3 pgpool[2873]: [81-2] 2016-06-06 09:35:46: pid 2873: DETAIL: selected load balancing node: 0 Jun 6 09:35:46 otp3 pgpool[2873]: [81-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:99 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: child.c:1720 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: backend:1 name:"client_encoding" value:"UTF8" Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool[2873]: [82-1] 2016-06-06 09:35:46: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:46 otp3 pgpool[2873]: [82-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: master slot: 0 length: 23 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_auth.c:1161 Jun 6 09:35:46 otp3 pgpool[2873]: [83-1] 2016-06-06 09:35:46: pid 2873: DEBUG: session context: clearing transaction isolation. DONE Jun 6 09:35:46 otp3 pgpool[2873]: [83-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:731 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: initializing session context Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: selected load balancing node: 0 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:99 Jun 6 09:35:46 otp3 pgpool[2873]: [84-1] 2016-06-06 09:35:46: pid 2873: DEBUG: session context: clearing writing transaction. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2873]: [84-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:565 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: master slot: 1 length: 23 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_auth.c:1172 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:219 Jun 6 09:35:46 otp3 pgpool[2873]: [85-1] 2016-06-06 09:35:46: pid 2873: DEBUG: session context: clearing failed transaction. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool[2873]: [85-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:594 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: backend:0 name:"DateStyle" value:"ISO, MDY" Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool[2873]: [86-1] 2016-06-06 09:35:46: pid 2873: DEBUG: session context: clearing failed transaction. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: session context: clearing transaction isolation. DONE Jun 6 09:35:46 otp3 pgpool[2873]: [86-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:624 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:731 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool[2873]: [87-1] 2016-06-06 09:35:46: pid 2873: DEBUG: session context: clearing skip reading from backends. DONE Jun 6 09:35:46 otp3 pgpool[2873]: [87-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:250 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: backend:1 name:"DateStyle" value:"ISO, MDY" Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool[2873]: [88-1] 2016-06-06 09:35:46: pid 2873: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:35:46 otp3 pgpool[2873]: [88-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:310 Jun 6 09:35:46 otp3 pgpool[2873]: [89-1] 2016-06-06 09:35:46: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 0 doing extended query: 0 Jun 6 09:35:46 otp3 pgpool[2873]: [89-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool[2873]: [90-1] 2016-06-06 09:35:46: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:35:46 otp3 pgpool[2873]: [90-2] 2016-06-06 09:35:46: pid 2873: DETAIL: backend:0 of 2 kind = 'Z' Jun 6 09:35:46 otp3 pgpool[2873]: [90-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:35:46 otp3 pgpool[2873]: [91-1] 2016-06-06 09:35:46: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:35:46 otp3 pgpool[2873]: [91-2] 2016-06-06 09:35:46: pid 2873: DETAIL: backend:1 of 2 kind = 'Z' Jun 6 09:35:46 otp3 pgpool[2873]: [91-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:35:46 otp3 pgpool[2873]: [92-1] 2016-06-06 09:35:46: pid 2873: DEBUG: read_kind_from_backend max_count:2.000000 num_executed_nodes:2 Jun 6 09:35:46 otp3 pgpool[2873]: [92-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:35:46 otp3 pgpool[2873]: [93-1] 2016-06-06 09:35:46: pid 2873: DEBUG: processing backend response Jun 6 09:35:46 otp3 pgpool[2873]: [93-2] 2016-06-06 09:35:46: pid 2873: DETAIL: received kind 'Z'(5a) from backend Jun 6 09:35:46 otp3 pgpool[2873]: [93-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:35:46 otp3 pgpool[2873]: [94-1] 2016-06-06 09:35:46: pid 2873: DEBUG: processing backend response Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: session context: clearing writing transaction. DONE Jun 6 09:35:46 otp3 pgpool[2873]: [94-2] 2016-06-06 09:35:46: pid 2873: DETAIL: Ready For Query received Jun 6 09:35:46 otp3 pgpool[2873]: [94-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_proto_modules.c:2442 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:565 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2873]: [95-1] 2016-06-06 09:35:46: pid 2873: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: master slot: 0 length: 25 Jun 6 09:35:46 otp3 pgpool[2873]: [95-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:310 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_auth.c:1161 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2873]: [96-1] 2016-06-06 09:35:46: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 0 doing extended query: 0 Jun 6 09:35:46 otp3 pgpool[2873]: [96-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: master slot: 1 length: 25 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_auth.c:1172 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: session context: clearing failed transaction. DONE Jun 6 09:35:46 otp3 pgpool[2873]: [97-1] 2016-06-06 09:35:46: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 0 doing extended query: 0 Jun 6 09:35:46 otp3 pgpool[2873]: [97-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool[2873]: [98-1] 2016-06-06 09:35:46: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 0 doing extended query: 0 Jun 6 09:35:46 otp3 pgpool[2873]: [98-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool[2873]: [99-1] 2016-06-06 09:35:46: pid 2873: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2873]: [99-2] 2016-06-06 09:35:46: pid 2873: DETAIL: slot: 0 length: 5 Jun 6 09:35:46 otp3 pgpool[2873]: [99-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_auth.c:1107 Jun 6 09:35:46 otp3 pgpool[2873]: [100-1] 2016-06-06 09:35:46: pid 2873: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2873]: [100-2] 2016-06-06 09:35:46: pid 2873: DETAIL: slot: 1 length: 5 Jun 6 09:35:46 otp3 pgpool[2873]: [100-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_auth.c:1126 Jun 6 09:35:46 otp3 pgpool[2873]: [101-1] 2016-06-06 09:35:46: pid 2873: DEBUG: processing ReadyForQuery Jun 6 09:35:46 otp3 pgpool[2873]: [101-2] 2016-06-06 09:35:46: pid 2873: DETAIL: transaction state ' Jun 6 09:35:46 otp3 pgpool[2873]: [101-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_proto_modules.c:1612 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:594 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool[2873]: [102-1] 2016-06-06 09:35:46: pid 2873: DEBUG: processing ReadyForQuery Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: backend:0 name:"integer_datetimes" value:"on" Jun 6 09:35:46 otp3 pgpool[2873]: [102-2] 2016-06-06 09:35:46: pid 2873: DETAIL: transaction state 'I'(49) Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool[2873]: [102-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_proto_modules.c:1612 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: session context: clearing failed transaction. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:624 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: backend:1 name:"integer_datetimes" value:"on" Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: session context: clearing skip reading from backends. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:250 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: master slot: 0 length: 27 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_auth.c:1161 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:310 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: master slot: 1 length: 27 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_auth.c:1172 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: backend:0 name:"IntervalStyle" value:"postgres" Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 0 doing extended query: 0 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: backend:1 name:"IntervalStyle" value:"postgres" Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: reading backend data packet kind Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: backend:0 of 2 kind = 'Z' Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:3349 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: master slot: 0 length: 21 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_auth.c:1161 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: master slot: 1 length: 21 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_auth.c:1172 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: reading backend data packet kind Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: backend:1 of 2 kind = 'Z' Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:3349 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: backend:0 name:"is_superuser" value:"off" Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: read_kind_from_backend max_count:2.000000 num_executed_nodes:2 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:3365 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: backend:1 name:"is_superuser" value:"off" Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: processing backend response Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: received kind 'Z'(5a) from backend Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_proto_modules.c:2424 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: master slot: 0 length: 30 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_auth.c:1161 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: master slot: 1 length: 30 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_auth.c:1172 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: processing backend response Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: Ready For Query received Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_proto_modules.c:2442 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: backend:0 name:"server_encoding" value:"SQL_ASCII" Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:310 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: backend:1 name:"server_encoding" value:"SQL_ASCII" Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 0 doing extended query: 0 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 0 doing extended query: 0 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: master slot: 0 length: 26 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_auth.c:1161 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 0 doing extended query: 0 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: master slot: 1 length: 26 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_auth.c:1172 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: slot: 0 length: 5 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_auth.c:1107 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: slot: 1 length: 5 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_auth.c:1126 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: processing ReadyForQuery Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: transaction state ' Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_proto_modules.c:1612 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: processing ReadyForQuery Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: transaction state 'I'(49) Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_proto_modules.c:1612 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: backend:0 name:"server_version" value:"9.3.12" Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: backend:1 name:"server_version" value:"9.3.12" Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: master slot: 0 length: 38 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_auth.c:1161 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: master slot: 1 length: 38 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_auth.c:1172 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: backend:0 name:"session_authorization" value:"sparrowdesk" Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: backend:1 name:"session_authorization" value:"sparrowdesk" Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: master slot: 0 length: 35 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_auth.c:1161 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: master slot: 1 length: 35 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_auth.c:1172 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: backend:0 name:"standard_conforming_strings" value:"on" Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: backend:1 name:"standard_conforming_strings" value:"on" Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: master slot: 0 length: 26 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_auth.c:1161 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: master slot: 1 length: 26 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_auth.c:1172 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: backend:0 name:"TimeZone" value:"Asia/Kolkata" Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: backend:1 name:"TimeZone" value:"Asia/Kolkata" Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: slot: 0 length: 12 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_auth.c:1107 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: slot: 1 length: 12 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_auth.c:1126 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: authentication backend Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: cp->info[i]:0x80079d000 pid:97118 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_auth.c:391 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: authentication backend Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: cp->info[i]:0x80079d088 pid:83413 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_auth.c:391 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: sending backend key data Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: send pid 83413 to frontend Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_auth.c:519 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: selecting load balance node Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: selected backend id is 0 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: child.c:1720 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: initializing session context Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: selected load balancing node: 0 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:99 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: session context: clearing transaction isolation. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:731 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: session context: clearing writing transaction. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:565 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: session context: clearing failed transaction. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:594 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: session context: clearing failed transaction. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:624 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: session context: clearing skip reading from backends. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:250 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:310 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 0 doing extended query: 0 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: backend:0 of 2 kind = 'Z' Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: backend:1 of 2 kind = 'Z' Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: read_kind_from_backend max_count:2.000000 num_executed_nodes:2 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: processing backend response Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: received kind 'Z'(5a) from backend Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: processing backend response Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: Ready For Query received Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_proto_modules.c:2442 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:310 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 0 doing extended query: 0 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 0 doing extended query: 0 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 0 doing extended query: 0 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: slot: 0 length: 5 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_auth.c:1107 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: slot: 1 length: 5 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_auth.c:1126 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: processing ReadyForQuery Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: transaction state ' Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_proto_modules.c:1612 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: processing ReadyForQuery Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: transaction state 'I'(49) Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_proto_modules.c:1612 Jun 6 09:35:46 otp3 pgpool[2871]: [103-1] 2016-06-06 09:35:46: pid 2871: DEBUG: processing frontend response Jun 6 09:35:46 otp3 pgpool[2873]: [103-1] 2016-06-06 09:35:46: pid 2873: DEBUG: processing frontend response Jun 6 09:35:46 otp3 pgpool[2871]: [103-2] 2016-06-06 09:35:46: pid 2871: DETAIL: received kind 'P'(50) from frontend Jun 6 09:35:46 otp3 pgpool[2873]: [103-2] 2016-06-06 09:35:46: pid 2873: DETAIL: received kind 'P'(50) from frontend Jun 6 09:35:46 otp3 pgpool[2871]: [103-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_proto_modules.c:2188 Jun 6 09:35:46 otp3 pgpool[2873]: [103-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:35:46 otp3 pgpool[2873]: [104-1] 2016-06-06 09:35:46: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:35:46 otp3 pgpool[2871]: [104-1] 2016-06-06 09:35:46: pid 2871: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:35:46 otp3 pgpool[2873]: [104-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:35:46 otp3 pgpool[2871]: [104-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:280 Jun 6 09:35:46 otp3 pgpool[2873]: [105-1] 2016-06-06 09:35:46: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:35:46 otp3 pgpool[2873]: [105-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:35:46 otp3 pgpool[2873]: [106-1] 2016-06-06 09:35:46: pid 2873: DEBUG: Parse: statement name <> Jun 6 09:35:46 otp3 pgpool[2873]: [106-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_proto_modules.c:817 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: processing frontend response Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: received kind 'P'(50) from frontend Jun 6 09:35:46 otp3 pgpool[2871]: [105-1] 2016-06-06 09:35:46: pid 2871: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_proto_modules.c:2188 Jun 6 09:35:46 otp3 pgpool[2871]: [105-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:269 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: processing frontend response Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: received kind 'P'(50) from frontend Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:280 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:35:46 otp3 pgpool[2871]: [106-1] 2016-06-06 09:35:46: pid 2871: DEBUG: Parse: statement name <> Jun 6 09:35:46 otp3 pgpool[2871]: [106-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_proto_modules.c:817 Jun 6 09:35:46 otp3 pgpool[2873]: [107-1] 2016-06-06 09:35:46: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:35:46 otp3 pgpool[2873]: [107-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: Parse: statement name <> Jun 6 09:35:46 otp3 pgpool[2871]: [107-1] 2016-06-06 09:35:46: pid 2871: DEBUG: session context: setting query in progress. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_proto_modules.c:817 Jun 6 09:35:46 otp3 pgpool[2871]: [107-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:208 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:269 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: Parse: statement name <> Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_proto_modules.c:817 Jun 6 09:35:46 otp3 pgpool[2871]: [108-1] 2016-06-06 09:35:46: pid 2871: DEBUG: pool_write: to backend: kind:S Jun 6 09:35:46 otp3 pgpool[2871]: [108-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool[2873]: [108-1] 2016-06-06 09:35:46: pid 2873: DEBUG: pool_write: to backend: kind:S Jun 6 09:35:46 otp3 pgpool[2873]: [108-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool[2871]: [109-1] 2016-06-06 09:35:46: pid 2871: DEBUG: pool_write: to backend: kind:H Jun 6 09:35:46 otp3 pgpool[2871]: [109-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool[2873]: [109-1] 2016-06-06 09:35:46: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:35:46 otp3 pgpool[2873]: [109-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:35:46 otp3 pgpool[2871]: [110-1] 2016-06-06 09:35:46: pid 2871: DEBUG: pool_write: to backend: kind:S Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: session context: setting query in progress. DONE Jun 6 09:35:46 otp3 pgpool[2871]: [110-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:208 Jun 6 09:35:46 otp3 pgpool[2871]: [111-1] 2016-06-06 09:35:46: pid 2871: DEBUG: pool_write: to backend: kind:H Jun 6 09:35:46 otp3 pgpool[2871]: [111-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool[2873]: [110-1] 2016-06-06 09:35:46: pid 2873: DEBUG: pool_write: to backend: kind:S Jun 6 09:35:46 otp3 pgpool[2873]: [110-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: pool_write: to backend: kind:S Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool[2873]: [111-1] 2016-06-06 09:35:46: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: pool_write: to backend: kind:S Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: pool_write: to backend: kind:H Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: pool_write: to backend: kind:S Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool[2873]: [111-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: pool_write: to backend: kind:H Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: pool_write: to backend: kind:S Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool[2873]: [112-1] 2016-06-06 09:35:46: pid 2873: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:35:46 otp3 pgpool[2871]: [112-1] 2016-06-06 09:35:46: pid 2871: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:35:46 otp3 pgpool[2873]: [112-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool[2871]: [112-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool[2873]: [113-1] 2016-06-06 09:35:46: pid 2873: DEBUG: pool_read: read 6 bytes from backend 1 Jun 6 09:35:46 otp3 pgpool[2873]: [113-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: pool_read: read 6 bytes from backend 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool[2871]: [113-1] 2016-06-06 09:35:46: pid 2871: DEBUG: pool_read: read 6 bytes from backend 1 Jun 6 09:35:46 otp3 pgpool[2873]: [114-1] 2016-06-06 09:35:46: pid 2873: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:35:46 otp3 pgpool[2871]: [113-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool[2873]: [114-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:310 Jun 6 09:35:46 otp3 pgpool[2873]: [115-1] 2016-06-06 09:35:46: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool[2873]: [115-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: pool_read: read 6 bytes from backend 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:35:46 otp3 pgpool[2873]: [116-1] 2016-06-06 09:35:46: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:310 Jun 6 09:35:46 otp3 pgpool[2873]: [116-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool[2873]: [117-1] 2016-06-06 09:35:46: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool[2873]: [117-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool[2873]: [118-1] 2016-06-06 09:35:46: pid 2873: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2873]: [118-2] 2016-06-06 09:35:46: pid 2873: DETAIL: slot: 0 length: 5 Jun 6 09:35:46 otp3 pgpool[2873]: [118-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_auth.c:1107 Jun 6 09:35:46 otp3 pgpool[2871]: [114-1] 2016-06-06 09:35:46: pid 2871: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:35:46 otp3 pgpool[2871]: [114-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:310 Jun 6 09:35:46 otp3 pgpool[2873]: [119-1] 2016-06-06 09:35:46: pid 2873: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2873]: [119-2] 2016-06-06 09:35:46: pid 2873: DETAIL: slot: 1 length: 5 Jun 6 09:35:46 otp3 pgpool[2873]: [119-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_auth.c:1126 Jun 6 09:35:46 otp3 pgpool[2871]: [115-1] 2016-06-06 09:35:46: pid 2871: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool[2871]: [115-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: slot: 0 length: 5 Jun 6 09:35:46 otp3 pgpool[2871]: [116-1] 2016-06-06 09:35:46: pid 2871: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool[2871]: [116-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_auth.c:1107 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:35:46 otp3 pgpool[2871]: [117-1] 2016-06-06 09:35:46: pid 2871: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool[2871]: [117-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:310 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2871]: [118-1] 2016-06-06 09:35:46: pid 2871: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: slot: 1 length: 5 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_auth.c:1126 Jun 6 09:35:46 otp3 pgpool[2871]: [118-2] 2016-06-06 09:35:46: pid 2871: DETAIL: slot: 0 length: 5 Jun 6 09:35:46 otp3 pgpool[2871]: [118-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_auth.c:1107 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool[2871]: [119-1] 2016-06-06 09:35:46: pid 2871: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2871]: [119-2] 2016-06-06 09:35:46: pid 2871: DETAIL: slot: 1 length: 5 Jun 6 09:35:46 otp3 pgpool[2871]: [119-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_auth.c:1126 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: slot: 0 length: 5 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_auth.c:1107 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: slot: 1 length: 5 Jun 6 09:35:46 otp3 pgpool[2871]: [120-1] 2016-06-06 09:35:46: pid 2871: DEBUG: processing ReadyForQuery Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_auth.c:1126 Jun 6 09:35:46 otp3 pgpool[2871]: [120-2] 2016-06-06 09:35:46: pid 2871: DETAIL: transaction state 'I'(49) Jun 6 09:35:46 otp3 pgpool[2873]: [120-1] 2016-06-06 09:35:46: pid 2873: DEBUG: processing ReadyForQuery Jun 6 09:35:46 otp3 pgpool[2871]: [120-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_proto_modules.c:1612 Jun 6 09:35:46 otp3 pgpool[2873]: [120-2] 2016-06-06 09:35:46: pid 2873: DETAIL: transaction state 'I'(49) Jun 6 09:35:46 otp3 pgpool[2873]: [120-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_proto_modules.c:1612 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: processing ReadyForQuery Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: transaction state 'I'(49) Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_proto_modules.c:1612 Jun 6 09:35:46 otp3 pgpool[2873]: [121-1] 2016-06-06 09:35:46: pid 2873: DEBUG: processing ReadyForQuery Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: processing ReadyForQuery Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: transaction state 'I'(49) Jun 6 09:35:46 otp3 pgpool[2873]: [121-2] 2016-06-06 09:35:46: pid 2873: DETAIL: transaction state 'I'(49) Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_proto_modules.c:1612 Jun 6 09:35:46 otp3 pgpool[2873]: [121-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_proto_modules.c:1612 Jun 6 09:35:46 otp3 pgpool[2871]: [121-1] 2016-06-06 09:35:46: pid 2871: DEBUG: processing ReadyForQuery Jun 6 09:35:46 otp3 pgpool[2871]: [121-2] 2016-06-06 09:35:46: pid 2871: DETAIL: transaction state 'I'(49) Jun 6 09:35:46 otp3 pgpool[2871]: [121-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_proto_modules.c:1612 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: processing ReadyForQuery Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: transaction state 'I'(49) Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_proto_modules.c:1612 Jun 6 09:35:46 otp3 pgpool[2871]: [122-1] 2016-06-06 09:35:46: pid 2871: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:46 otp3 pgpool[2871]: [122-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:219 Jun 6 09:35:46 otp3 pgpool[2871]: [123-1] 2016-06-06 09:35:46: pid 2871: DEBUG: session context: setting query in progress. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: processing ReadyForQuery Jun 6 09:35:46 otp3 pgpool[2871]: [123-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:208 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: transaction state 'I'(49) Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_proto_modules.c:1612 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:219 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: session context: setting query in progress. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:208 Jun 6 09:35:46 otp3 pgpool[2871]: [124-1] 2016-06-06 09:35:46: pid 2871: DEBUG: Parse: waiting for master completing the query Jun 6 09:35:46 otp3 pgpool[2871]: [124-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_proto_modules.c:1064 Jun 6 09:35:46 otp3 pgpool[2873]: [122-1] 2016-06-06 09:35:46: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:46 otp3 pgpool[2873]: [122-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:35:46 otp3 pgpool[2871]: [125-1] 2016-06-06 09:35:46: pid 2871: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: Parse: waiting for master completing the query Jun 6 09:35:46 otp3 pgpool[2871]: [125-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_query_context.c:854 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_proto_modules.c:1064 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:35:46 otp3 pgpool[2871]: [126-1] 2016-06-06 09:35:46: pid 2871: DEBUG: pool_write: to backend: kind:P Jun 6 09:35:46 otp3 pgpool[2871]: [126-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_query_context.c:854 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:46 otp3 pgpool[2871]: [127-1] 2016-06-06 09:35:46: pid 2871: DEBUG: pool_write: to backend: kind:H Jun 6 09:35:46 otp3 pgpool[2871]: [127-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: pool_write: to backend: kind:P Jun 6 09:35:46 otp3 pgpool[2871]: [128-1] 2016-06-06 09:35:46: pid 2871: DEBUG: waiting for query response Jun 6 09:35:46 otp3 pgpool[2873]: [123-1] 2016-06-06 09:35:46: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:35:46 otp3 pgpool[2871]: [128-2] 2016-06-06 09:35:46: pid 2871: DETAIL: waiting for backend:0 to complete the query Jun 6 09:35:46 otp3 pgpool[2873]: [123-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:35:46 otp3 pgpool[2871]: [128-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:479 Jun 6 09:35:46 otp3 pgpool[2873]: [124-1] 2016-06-06 09:35:46: pid 2873: DEBUG: Parse: waiting for master completing the query Jun 6 09:35:46 otp3 pgpool[2873]: [124-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_proto_modules.c:1064 Jun 6 09:35:46 otp3 pgpool[2873]: [125-1] 2016-06-06 09:35:46: pid 2873: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:35:46 otp3 pgpool[2873]: [125-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_query_context.c:854 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: pool_write: to backend: kind:H Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: waiting for query response Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: waiting for backend:0 to complete the query Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:479 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: Parse: waiting for master completing the query Jun 6 09:35:46 otp3 pgpool[2873]: [126-1] 2016-06-06 09:35:46: pid 2873: DEBUG: pool_write: to backend: kind:P Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_proto_modules.c:1064 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_query_context.c:854 Jun 6 09:35:46 otp3 pgpool[2873]: [126-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool[2873]: [127-1] 2016-06-06 09:35:46: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: pool_write: to backend: kind:P Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool[2873]: [127-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool[2871]: [129-1] 2016-06-06 09:35:46: pid 2871: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:35:46 otp3 pgpool[2871]: [129-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool[2871]: [130-1] 2016-06-06 09:35:46: pid 2871: DEBUG: detect error: kind: 1 Jun 6 09:35:46 otp3 pgpool[2871]: [130-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:4166 Jun 6 09:35:46 otp3 pgpool[2873]: [128-1] 2016-06-06 09:35:46: pid 2873: DEBUG: waiting for query response Jun 6 09:35:46 otp3 pgpool[2873]: [128-2] 2016-06-06 09:35:46: pid 2873: DETAIL: waiting for backend:0 to complete the query Jun 6 09:35:46 otp3 pgpool[2873]: [128-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:479 Jun 6 09:35:46 otp3 pgpool[2871]: [131-1] 2016-06-06 09:35:46: pid 2871: DEBUG: pool_send_and_wait: pool_set_sync_map: 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: detect error: kind: 1 Jun 6 09:35:46 otp3 pgpool[2871]: [131-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_query_context.c:854 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:4166 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: waiting for query response Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: waiting for backend:0 to complete the query Jun 6 09:35:46 otp3 pgpool[2871]: [132-1] 2016-06-06 09:35:46: pid 2871: DEBUG: pool_write: to backend: kind:P Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:479 Jun 6 09:35:46 otp3 pgpool[2871]: [132-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool[2871]: [133-1] 2016-06-06 09:35:46: pid 2871: DEBUG: pool_write: to backend: kind:H Jun 6 09:35:46 otp3 pgpool[2871]: [133-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: pool_send_and_wait: pool_set_sync_map: 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_query_context.c:854 Jun 6 09:35:46 otp3 pgpool[2871]: [134-1] 2016-06-06 09:35:46: pid 2871: DEBUG: waiting for query response Jun 6 09:35:46 otp3 pgpool[2871]: [134-2] 2016-06-06 09:35:46: pid 2871: DETAIL: waiting for backend:1 to complete the query Jun 6 09:35:46 otp3 pgpool[2871]: [134-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:479 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: pool_write: to backend: kind:P Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: pool_write: to backend: kind:H Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool[2873]: [129-1] 2016-06-06 09:35:46: pid 2873: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:35:46 otp3 pgpool[2873]: [129-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: waiting for query response Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: waiting for backend:1 to complete the query Jun 6 09:35:46 otp3 pgpool[2873]: [130-1] 2016-06-06 09:35:46: pid 2873: DEBUG: detect error: kind: 1 Jun 6 09:35:46 otp3 pgpool[2873]: [130-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:479 Jun 6 09:35:46 otp3 pgpool[2873]: [131-1] 2016-06-06 09:35:46: pid 2873: DEBUG: pool_send_and_wait: pool_set_sync_map: 1 Jun 6 09:35:46 otp3 pgpool[2873]: [131-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_query_context.c:854 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:35:46 otp3 pgpool[2873]: [132-1] 2016-06-06 09:35:46: pid 2873: DEBUG: pool_write: to backend: kind:P Jun 6 09:35:46 otp3 pgpool[2873]: [132-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool[2873]: [133-1] 2016-06-06 09:35:46: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: detect error: kind: 1 Jun 6 09:35:46 otp3 pgpool[2873]: [133-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:35:46 otp3 pgpool[2873]: [134-1] 2016-06-06 09:35:46: pid 2873: DEBUG: waiting for query response Jun 6 09:35:46 otp3 pgpool[2873]: [134-2] 2016-06-06 09:35:46: pid 2873: DETAIL: waiting for backend:1 to complete the query Jun 6 09:35:46 otp3 pgpool[2873]: [134-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:479 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: pool_send_and_wait: pool_set_sync_map: 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_query_context.c:854 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: pool_write: to backend: kind:P Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: waiting for query response Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: waiting for backend:1 to complete the query Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:479 Jun 6 09:35:46 otp3 pgpool[2871]: [135-1] 2016-06-06 09:35:46: pid 2871: DEBUG: pool_read: read 5 bytes from backend 1 Jun 6 09:35:46 otp3 pgpool[2871]: [135-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: pool_read: read 5 bytes from backend 1 Jun 6 09:35:46 otp3 pgpool[2871]: [136-1] 2016-06-06 09:35:46: pid 2871: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool[2871]: [136-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool[2871]: [137-1] 2016-06-06 09:35:46: pid 2871: DEBUG: reading backend data packet kind Jun 6 09:35:46 otp3 pgpool[2871]: [137-2] 2016-06-06 09:35:46: pid 2871: DETAIL: backend:0 of 2 kind = '1' Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool[2871]: [137-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:3349 Jun 6 09:35:46 otp3 pgpool[2871]: [138-1] 2016-06-06 09:35:46: pid 2871: DEBUG: reading backend data packet kind Jun 6 09:35:46 otp3 pgpool[2871]: [138-2] 2016-06-06 09:35:46: pid 2871: DETAIL: backend:1 of 2 kind = '1' Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool[2871]: [138-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:3349 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: reading backend data packet kind Jun 6 09:35:46 otp3 pgpool[2871]: [139-1] 2016-06-06 09:35:46: pid 2871: DEBUG: read_kind_from_backend max_count:2.000000 num_executed_nodes:2 Jun 6 09:35:46 otp3 pgpool[2871]: [139-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:3365 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: backend:0 of 2 kind = '1' Jun 6 09:35:46 otp3 pgpool[2871]: [140-1] 2016-06-06 09:35:46: pid 2871: DEBUG: processing backend response Jun 6 09:35:46 otp3 pgpool[2871]: [140-2] 2016-06-06 09:35:46: pid 2871: DETAIL: received kind '1'(31) from backend Jun 6 09:35:46 otp3 pgpool[2871]: [140-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_proto_modules.c:2424 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:3349 Jun 6 09:35:46 otp3 pgpool[2871]: [141-1] 2016-06-06 09:35:46: pid 2871: DEBUG: called by pool_add_sent_message: sent message: address: 2406c80 kind: P name: == Jun 6 09:35:46 otp3 pgpool[2871]: [141-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:436 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: reading backend data packet kind Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: backend:1 of 2 kind = '1' Jun 6 09:35:46 otp3 pgpool[2871]: [142-1] 2016-06-06 09:35:46: pid 2871: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool[2871]: [142-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:3349 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: read_kind_from_backend max_count:2.000000 num_executed_nodes:2 Jun 6 09:35:46 otp3 pgpool[2871]: [143-1] 2016-06-06 09:35:46: pid 2871: DEBUG: SimpleForwardToFrontend: packet:1 length:0 Jun 6 09:35:46 otp3 pgpool[2871]: [143-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:792 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:3365 Jun 6 09:35:46 otp3 pgpool[2871]: [144-1] 2016-06-06 09:35:46: pid 2871: DEBUG: session context: setting command success. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: processing backend response Jun 6 09:35:46 otp3 pgpool[2871]: [144-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:741 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: received kind '1'(31) from backend Jun 6 09:35:46 otp3 pgpool[2871]: [145-1] 2016-06-06 09:35:46: pid 2871: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_proto_modules.c:2424 Jun 6 09:35:46 otp3 pgpool[2871]: [145-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:219 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: called by pool_add_sent_message: sent message: address: 2406c80 kind: P name: == Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:436 Jun 6 09:35:46 otp3 pgpool[2871]: [146-1] 2016-06-06 09:35:46: pid 2871: DEBUG: processing frontend response Jun 6 09:35:46 otp3 pgpool[2871]: [146-2] 2016-06-06 09:35:46: pid 2871: DETAIL: received kind 'B'(42) from frontend Jun 6 09:35:46 otp3 pgpool[2871]: [146-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_proto_modules.c:2188 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool[2871]: [147-1] 2016-06-06 09:35:46: pid 2871: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:35:46 otp3 pgpool[2871]: [147-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:280 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: SimpleForwardToFrontend: packet:1 length:0 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:792 Jun 6 09:35:46 otp3 pgpool[2871]: [148-1] 2016-06-06 09:35:46: pid 2871: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:35:46 otp3 pgpool[2871]: [148-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:269 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: session context: setting command success. DONE Jun 6 09:35:46 otp3 pgpool[2871]: [149-1] 2016-06-06 09:35:46: pid 2871: DEBUG: Bind: checking strict query Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:741 Jun 6 09:35:46 otp3 pgpool[2871]: [149-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_proto_modules.c:1211 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:219 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: processing frontend response Jun 6 09:35:46 otp3 pgpool[2871]: [150-1] 2016-06-06 09:35:46: pid 2871: DEBUG: Bind: checking insert lock Jun 6 09:35:46 otp3 pgpool[2871]: [150-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_proto_modules.c:1221 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: received kind 'B'(42) from frontend Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_proto_modules.c:2188 Jun 6 09:35:46 otp3 pgpool[2871]: [151-1] 2016-06-06 09:35:46: pid 2871: DEBUG: Bind: waiting for master completing the query Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:35:46 otp3 pgpool[2871]: [151-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_proto_modules.c:1237 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:280 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:269 Jun 6 09:35:46 otp3 pgpool[2871]: [152-1] 2016-06-06 09:35:46: pid 2871: DEBUG: session context: setting query in progress. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: Bind: checking strict query Jun 6 09:35:46 otp3 pgpool[2871]: [152-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:208 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_proto_modules.c:1211 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: Bind: checking insert lock Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_proto_modules.c:1221 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: Bind: waiting for master completing the query Jun 6 09:35:46 otp3 pgpool[2871]: [153-1] 2016-06-06 09:35:46: pid 2871: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_proto_modules.c:1237 Jun 6 09:35:46 otp3 pgpool[2871]: [153-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_query_context.c:854 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: session context: setting query in progress. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:208 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_query_context.c:854 Jun 6 09:35:46 otp3 pgpool[2871]: [154-1] 2016-06-06 09:35:46: pid 2871: DEBUG: pool_write: to backend: kind:B Jun 6 09:35:46 otp3 pgpool[2871]: [154-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool[2871]: [155-1] 2016-06-06 09:35:46: pid 2871: DEBUG: pool_write: to backend: kind:H Jun 6 09:35:46 otp3 pgpool[2873]: [135-1] 2016-06-06 09:35:46: pid 2873: DEBUG: pool_read: read 5 bytes from backend 1 Jun 6 09:35:46 otp3 pgpool[2871]: [155-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool[2873]: [135-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool[2871]: [156-1] 2016-06-06 09:35:46: pid 2871: DEBUG: waiting for query response Jun 6 09:35:46 otp3 pgpool[2873]: [136-1] 2016-06-06 09:35:46: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool[2871]: [156-2] 2016-06-06 09:35:46: pid 2871: DETAIL: waiting for backend:0 to complete the query Jun 6 09:35:46 otp3 pgpool[2873]: [136-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool[2871]: [156-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:479 Jun 6 09:35:46 otp3 pgpool[2873]: [137-1] 2016-06-06 09:35:46: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:35:46 otp3 pgpool[2873]: [137-2] 2016-06-06 09:35:46: pid 2873: DETAIL: backend:0 of 2 kind = '1' Jun 6 09:35:46 otp3 pgpool[2873]: [137-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:35:46 otp3 pgpool[2873]: [138-1] 2016-06-06 09:35:46: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: pool_write: to backend: kind:B Jun 6 09:35:46 otp3 pgpool[2873]: [138-2] 2016-06-06 09:35:46: pid 2873: DETAIL: backend:1 of 2 kind = '1' Jun 6 09:35:46 otp3 pgpool[2873]: [138-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: pool_write: to backend: kind:H Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: pool_read: read 5 bytes from backend 1 Jun 6 09:35:46 otp3 pgpool[2873]: [139-1] 2016-06-06 09:35:46: pid 2873: DEBUG: read_kind_from_backend max_count:2.000000 num_executed_nodes:2 Jun 6 09:35:46 otp3 pgpool[2873]: [139-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: waiting for query response Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: waiting for backend:0 to complete the query Jun 6 09:35:46 otp3 pgpool[2873]: [140-1] 2016-06-06 09:35:46: pid 2873: DEBUG: processing backend response Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:479 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:35:46 otp3 pgpool[2873]: [140-2] 2016-06-06 09:35:46: pid 2873: DETAIL: received kind '1'(31) from backend Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: backend:0 of 2 kind = '1' Jun 6 09:35:46 otp3 pgpool[2873]: [140-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: backend:1 of 2 kind = '1' Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:35:46 otp3 pgpool[2873]: [141-1] 2016-06-06 09:35:46: pid 2873: DEBUG: called by pool_add_sent_message: sent message: address: 2406c80 kind: P name: == Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: read_kind_from_backend max_count:2.000000 num_executed_nodes:2 Jun 6 09:35:46 otp3 pgpool[2873]: [141-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:436 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: processing backend response Jun 6 09:35:46 otp3 pgpool[2873]: [142-1] 2016-06-06 09:35:46: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: received kind '1'(31) from backend Jun 6 09:35:46 otp3 pgpool[2873]: [142-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: called by pool_add_sent_message: sent message: address: 2406c80 kind: P name: == Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:436 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool[2873]: [143-1] 2016-06-06 09:35:46: pid 2873: DEBUG: SimpleForwardToFrontend: packet:1 length:0 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool[2873]: [143-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:792 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: SimpleForwardToFrontend: packet:1 length:0 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:792 Jun 6 09:35:46 otp3 pgpool[2873]: [144-1] 2016-06-06 09:35:46: pid 2873: DEBUG: session context: setting command success. DONE Jun 6 09:35:46 otp3 pgpool[2873]: [144-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:741 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: session context: setting command success. DONE Jun 6 09:35:46 otp3 pgpool[2873]: [145-1] 2016-06-06 09:35:46: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:46 otp3 pgpool[2873]: [145-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:741 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:35:46 otp3 pgpool[2873]: [146-1] 2016-06-06 09:35:46: pid 2873: DEBUG: processing frontend response Jun 6 09:35:46 otp3 pgpool[2873]: [146-2] 2016-06-06 09:35:46: pid 2873: DETAIL: received kind 'B'(42) from frontend Jun 6 09:35:46 otp3 pgpool[2873]: [146-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:35:46 otp3 pgpool[2873]: [147-1] 2016-06-06 09:35:46: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:35:46 otp3 pgpool[2873]: [147-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: processing frontend response Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: received kind 'B'(42) from frontend Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:35:46 otp3 pgpool[2873]: [148-1] 2016-06-06 09:35:46: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:35:46 otp3 pgpool[2873]: [148-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:35:46 otp3 pgpool[2873]: [149-1] 2016-06-06 09:35:46: pid 2873: DEBUG: Bind: checking strict query Jun 6 09:35:46 otp3 pgpool[2871]: [157-1] 2016-06-06 09:35:46: pid 2871: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:35:46 otp3 pgpool[2871]: [157-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool[2871]: [158-1] 2016-06-06 09:35:46: pid 2871: DEBUG: pool_send_and_wait: pool_set_sync_map: 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:35:46 otp3 pgpool[2871]: [158-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_query_context.c:854 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: pool_send_and_wait: pool_set_sync_map: 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_query_context.c:854 Jun 6 09:35:46 otp3 pgpool[2871]: [159-1] 2016-06-06 09:35:46: pid 2871: DEBUG: pool_write: to backend: kind:B Jun 6 09:35:46 otp3 pgpool[2871]: [159-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool[2873]: [149-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_proto_modules.c:1211 Jun 6 09:35:46 otp3 pgpool[2871]: [160-1] 2016-06-06 09:35:46: pid 2871: DEBUG: pool_write: to backend: kind:H Jun 6 09:35:46 otp3 pgpool[2871]: [160-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool[2873]: [150-1] 2016-06-06 09:35:46: pid 2873: DEBUG: Bind: checking insert lock Jun 6 09:35:46 otp3 pgpool[2873]: [150-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_proto_modules.c:1221 Jun 6 09:35:46 otp3 pgpool[2871]: [161-1] 2016-06-06 09:35:46: pid 2871: DEBUG: waiting for query response Jun 6 09:35:46 otp3 pgpool[2871]: [161-2] 2016-06-06 09:35:46: pid 2871: DETAIL: waiting for backend:1 to complete the query Jun 6 09:35:46 otp3 pgpool[2871]: [161-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:479 Jun 6 09:35:46 otp3 pgpool[2873]: [151-1] 2016-06-06 09:35:46: pid 2873: DEBUG: Bind: waiting for master completing the query Jun 6 09:35:46 otp3 pgpool[2873]: [151-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_proto_modules.c:1237 Jun 6 09:35:46 otp3 pgpool[2873]: [152-1] 2016-06-06 09:35:46: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:35:46 otp3 pgpool[2873]: [152-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:35:46 otp3 pgpool[2873]: [153-1] 2016-06-06 09:35:46: pid 2873: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:35:46 otp3 pgpool[2873]: [153-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_query_context.c:854 Jun 6 09:35:46 otp3 pgpool[2873]: [154-1] 2016-06-06 09:35:46: pid 2873: DEBUG: pool_write: to backend: kind:B Jun 6 09:35:46 otp3 pgpool[2873]: [154-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: pool_write: to backend: kind:B Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool[2873]: [155-1] 2016-06-06 09:35:46: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: Bind: checking strict query Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_proto_modules.c:1211 Jun 6 09:35:46 otp3 pgpool[2873]: [155-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: pool_write: to backend: kind:H Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: Bind: checking insert lock Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_proto_modules.c:1221 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: waiting for query response Jun 6 09:35:46 otp3 pgpool[2873]: [156-1] 2016-06-06 09:35:46: pid 2873: DEBUG: waiting for query response Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: waiting for backend:1 to complete the query Jun 6 09:35:46 otp3 pgpool[2873]: [156-2] 2016-06-06 09:35:46: pid 2873: DETAIL: waiting for backend:0 to complete the query Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:479 Jun 6 09:35:46 otp3 pgpool[2873]: [156-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:479 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: Bind: waiting for master completing the query Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_proto_modules.c:1237 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_query_context.c:854 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: pool_write: to backend: kind:B Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: waiting for query response Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: waiting for backend:0 to complete the query Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:479 Jun 6 09:35:46 otp3 pgpool[2871]: [162-1] 2016-06-06 09:35:46: pid 2871: DEBUG: pool_read: read 5 bytes from backend 1 Jun 6 09:35:46 otp3 pgpool[2871]: [162-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: pool_read: read 5 bytes from backend 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool[2871]: [163-1] 2016-06-06 09:35:46: pid 2871: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool[2871]: [163-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool[2871]: [164-1] 2016-06-06 09:35:46: pid 2871: DEBUG: reading backend data packet kind Jun 6 09:35:46 otp3 pgpool[2871]: [164-2] 2016-06-06 09:35:46: pid 2871: DETAIL: backend:0 of 2 kind = '2' Jun 6 09:35:46 otp3 pgpool[2871]: [164-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:3349 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: reading backend data packet kind Jun 6 09:35:46 otp3 pgpool[2871]: [165-1] 2016-06-06 09:35:46: pid 2871: DEBUG: reading backend data packet kind Jun 6 09:35:46 otp3 pgpool[2871]: [165-2] 2016-06-06 09:35:46: pid 2871: DETAIL: backend:1 of 2 kind = '2' Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: backend:0 of 2 kind = '2' Jun 6 09:35:46 otp3 pgpool[2871]: [165-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:3349 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:3349 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: reading backend data packet kind Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: backend:1 of 2 kind = '2' Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:3349 Jun 6 09:35:46 otp3 pgpool[2871]: [166-1] 2016-06-06 09:35:46: pid 2871: DEBUG: read_kind_from_backend max_count:2.000000 num_executed_nodes:2 Jun 6 09:35:46 otp3 pgpool[2871]: [166-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:3365 Jun 6 09:35:46 otp3 pgpool[2873]: [157-1] 2016-06-06 09:35:46: pid 2873: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:35:46 otp3 pgpool[2873]: [157-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool[2871]: [167-1] 2016-06-06 09:35:46: pid 2871: DEBUG: processing backend response Jun 6 09:35:46 otp3 pgpool[2871]: [167-2] 2016-06-06 09:35:46: pid 2871: DETAIL: received kind '2'(32) from backend Jun 6 09:35:46 otp3 pgpool[2871]: [167-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_proto_modules.c:2424 Jun 6 09:35:46 otp3 pgpool[2871]: [168-1] 2016-06-06 09:35:46: pid 2871: DEBUG: called by pool_add_sent_message: sent message: address: 2406d18 kind: B name: == Jun 6 09:35:46 otp3 pgpool[2871]: [168-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:436 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: read_kind_from_backend max_count:2.000000 num_executed_nodes:2 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:3365 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:35:46 otp3 pgpool[2871]: [169-1] 2016-06-06 09:35:46: pid 2871: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool[2871]: [169-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: processing backend response Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: received kind '2'(32) from backend Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_proto_modules.c:2424 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: called by pool_add_sent_message: sent message: address: 2406d18 kind: B name: == Jun 6 09:35:46 otp3 pgpool[2871]: [170-1] 2016-06-06 09:35:46: pid 2871: DEBUG: SimpleForwardToFrontend: packet:2 length:0 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:436 Jun 6 09:35:46 otp3 pgpool[2871]: [170-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:792 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: SimpleForwardToFrontend: packet:2 length:0 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:792 Jun 6 09:35:46 otp3 pgpool[2871]: [171-1] 2016-06-06 09:35:46: pid 2871: DEBUG: session context: setting command success. DONE Jun 6 09:35:46 otp3 pgpool[2873]: [158-1] 2016-06-06 09:35:46: pid 2873: DEBUG: pool_send_and_wait: pool_set_sync_map: 1 Jun 6 09:35:46 otp3 pgpool[2871]: [171-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:741 Jun 6 09:35:46 otp3 pgpool[2873]: [158-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_query_context.c:854 Jun 6 09:35:46 otp3 pgpool[2871]: [172-1] 2016-06-06 09:35:46: pid 2871: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:46 otp3 pgpool[2871]: [172-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:219 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: session context: setting command success. DONE Jun 6 09:35:46 otp3 pgpool[2873]: [159-1] 2016-06-06 09:35:46: pid 2873: DEBUG: pool_write: to backend: kind:B Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:741 Jun 6 09:35:46 otp3 pgpool[2873]: [159-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: pool_send_and_wait: pool_set_sync_map: 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_query_context.c:854 Jun 6 09:35:46 otp3 pgpool[2873]: [160-1] 2016-06-06 09:35:46: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:35:46 otp3 pgpool[2873]: [160-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:219 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: pool_write: to backend: kind:B Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool[2873]: [161-1] 2016-06-06 09:35:46: pid 2873: DEBUG: waiting for query response Jun 6 09:35:46 otp3 pgpool[2873]: [161-2] 2016-06-06 09:35:46: pid 2873: DETAIL: waiting for backend:1 to complete the query Jun 6 09:35:46 otp3 pgpool[2873]: [161-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:479 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: waiting for query response Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: waiting for backend:1 to complete the query Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:479 Jun 6 09:35:46 otp3 pgpool[2871]: [173-1] 2016-06-06 09:35:46: pid 2871: DEBUG: processing frontend response Jun 6 09:35:46 otp3 pgpool[2871]: [173-2] 2016-06-06 09:35:46: pid 2871: DETAIL: received kind 'E'(45) from frontend Jun 6 09:35:46 otp3 pgpool[2871]: [173-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_proto_modules.c:2188 Jun 6 09:35:46 otp3 pgpool[2871]: [174-1] 2016-06-06 09:35:46: pid 2871: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:35:46 otp3 pgpool[2871]: [174-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:280 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: processing frontend response Jun 6 09:35:46 otp3 pgpool[2871]: [175-1] 2016-06-06 09:35:46: pid 2871: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: received kind 'E'(45) from frontend Jun 6 09:35:46 otp3 pgpool[2871]: [175-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:269 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_proto_modules.c:2188 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:35:46 otp3 pgpool[2871]: [176-1] 2016-06-06 09:35:46: pid 2871: DEBUG: session context: setting query in progress. DONE Jun 6 09:35:46 otp3 pgpool[2871]: [176-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:208 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:280 Jun 6 09:35:46 otp3 pgpool[2871]: [177-1] 2016-06-06 09:35:46: pid 2871: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:35:46 otp3 pgpool[2871]: [177-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_query_context.c:854 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:269 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: session context: setting query in progress. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:208 Jun 6 09:35:46 otp3 pgpool[2871]: [178-1] 2016-06-06 09:35:46: pid 2871: DEBUG: pool_write: to backend: kind:E Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:35:46 otp3 pgpool[2871]: [178-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_query_context.c:854 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: pool_write: to backend: kind:E Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool[2871]: [179-1] 2016-06-06 09:35:46: pid 2871: DEBUG: pool_write: to backend: kind:H Jun 6 09:35:46 otp3 pgpool[2871]: [179-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: pool_write: to backend: kind:H Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool[2871]: [180-1] 2016-06-06 09:35:46: pid 2871: DEBUG: waiting for query response Jun 6 09:35:46 otp3 pgpool[2873]: [162-1] 2016-06-06 09:35:46: pid 2873: DEBUG: pool_read: read 5 bytes from backend 1 Jun 6 09:35:46 otp3 pgpool[2873]: [162-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool[2873]: [163-1] 2016-06-06 09:35:46: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: pool_read: read 5 bytes from backend 1 Jun 6 09:35:46 otp3 pgpool[2873]: [163-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool[2871]: [180-2] 2016-06-06 09:35:46: pid 2871: DETAIL: waiting for backend:0 to complete the query Jun 6 09:35:46 otp3 pgpool[2873]: [164-1] 2016-06-06 09:35:46: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool[2873]: [164-2] 2016-06-06 09:35:46: pid 2873: DETAIL: backend:0 of 2 kind = '2' Jun 6 09:35:46 otp3 pgpool[2873]: [164-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:35:46 otp3 pgpool[2873]: [165-1] 2016-06-06 09:35:46: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:35:46 otp3 pgpool[2873]: [165-2] 2016-06-06 09:35:46: pid 2873: DETAIL: backend:1 of 2 kind = '2' Jun 6 09:35:46 otp3 pgpool[2871]: [180-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:479 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool[2873]: [165-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:35:46 otp3 pgpool[2871]: [181-1] 2016-06-06 09:35:46: pid 2871: DEBUG: pool_read: read 9 bytes from backend 0 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: backend:0 of 2 kind = '2' Jun 6 09:35:46 otp3 pgpool[2871]: [181-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:35:46 otp3 pgpool[2871]: [182-1] 2016-06-06 09:35:46: pid 2871: DEBUG: detect error: kind: C Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: waiting for query response Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: waiting for backend:0 to complete the query Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:479 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: pool_read: read 9 bytes from backend 0 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: backend:1 of 2 kind = '2' Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:35:46 otp3 pgpool[2873]: [166-1] 2016-06-06 09:35:46: pid 2873: DEBUG: read_kind_from_backend max_count:2.000000 num_executed_nodes:2 Jun 6 09:35:46 otp3 pgpool[2873]: [166-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:35:46 otp3 pgpool[2871]: [182-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:4166 Jun 6 09:35:46 otp3 pgpool[2871]: [183-1] 2016-06-06 09:35:46: pid 2871: DEBUG: detect error: kind: C Jun 6 09:35:46 otp3 pgpool[2871]: [183-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:4166 Jun 6 09:35:46 otp3 pgpool[2873]: [167-1] 2016-06-06 09:35:46: pid 2873: DEBUG: processing backend response Jun 6 09:35:46 otp3 pgpool[2871]: [184-1] 2016-06-06 09:35:46: pid 2871: DEBUG: detect error: kind: C Jun 6 09:35:46 otp3 pgpool[2873]: [167-2] 2016-06-06 09:35:46: pid 2873: DETAIL: received kind '2'(32) from backend Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: read_kind_from_backend max_count:2.000000 num_executed_nodes:2 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: detect error: kind: C Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:4166 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: detect error: kind: C Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:4166 Jun 6 09:35:46 otp3 pgpool[2873]: [167-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:35:46 otp3 pgpool[2871]: [184-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:4166 Jun 6 09:35:46 otp3 pgpool[2871]: [185-1] 2016-06-06 09:35:46: pid 2871: DEBUG: detect error: kind: C Jun 6 09:35:46 otp3 pgpool[2871]: [185-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:4166 Jun 6 09:35:46 otp3 pgpool[2871]: [186-1] 2016-06-06 09:35:46: pid 2871: DEBUG: pool_send_and_wait: pool_set_sync_map: 1 Jun 6 09:35:46 otp3 pgpool[2871]: [186-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_query_context.c:854 Jun 6 09:35:46 otp3 pgpool[2871]: [187-1] 2016-06-06 09:35:46: pid 2871: DEBUG: pool_write: to backend: kind:E Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: processing backend response Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: received kind '2'(32) from backend Jun 6 09:35:46 otp3 pgpool[2873]: [168-1] 2016-06-06 09:35:46: pid 2873: DEBUG: called by pool_add_sent_message: sent message: address: 2406d18 kind: B name: == Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: detect error: kind: C Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:4166 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: detect error: kind: C Jun 6 09:35:46 otp3 pgpool[2871]: [187-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:4166 Jun 6 09:35:46 otp3 pgpool[2871]: [188-1] 2016-06-06 09:35:46: pid 2871: DEBUG: pool_write: to backend: kind:H Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: pool_send_and_wait: pool_set_sync_map: 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_query_context.c:854 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: pool_write: to backend: kind:E Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool[2873]: [168-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:436 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: called by pool_add_sent_message: sent message: address: 2406d18 kind: B name: == Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:436 Jun 6 09:35:46 otp3 pgpool[2871]: [188-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: pool_write: to backend: kind:H Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool[2871]: [189-1] 2016-06-06 09:35:46: pid 2871: DEBUG: waiting for query response Jun 6 09:35:46 otp3 pgpool[2871]: [189-2] 2016-06-06 09:35:46: pid 2871: DETAIL: waiting for backend:1 to complete the query Jun 6 09:35:46 otp3 pgpool[2871]: [189-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:479 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: waiting for query response Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: waiting for backend:1 to complete the query Jun 6 09:35:46 otp3 pgpool[2871]: [190-1] 2016-06-06 09:35:46: pid 2871: DEBUG: pool_read: read 9 bytes from backend 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:479 Jun 6 09:35:46 otp3 pgpool[2871]: [190-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool[2873]: [169-1] 2016-06-06 09:35:46: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: pool_read: read 9 bytes from backend 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool[2873]: [169-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool[2871]: [191-1] 2016-06-06 09:35:46: pid 2871: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool[2871]: [191-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool[2873]: [170-1] 2016-06-06 09:35:46: pid 2873: DEBUG: SimpleForwardToFrontend: packet:2 length:0 Jun 6 09:35:46 otp3 pgpool[2873]: [170-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:792 Jun 6 09:35:46 otp3 pgpool[2873]: [171-1] 2016-06-06 09:35:46: pid 2873: DEBUG: session context: setting command success. DONE Jun 6 09:35:46 otp3 pgpool[2873]: [171-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:741 Jun 6 09:35:46 otp3 pgpool[2873]: [172-1] 2016-06-06 09:35:46: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:46 otp3 pgpool[2873]: [172-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:35:46 otp3 pgpool[2873]: [173-1] 2016-06-06 09:35:46: pid 2873: DEBUG: processing frontend response Jun 6 09:35:46 otp3 pgpool[2873]: [173-2] 2016-06-06 09:35:46: pid 2873: DETAIL: received kind 'E'(45) from frontend Jun 6 09:35:46 otp3 pgpool[2873]: [173-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:35:46 otp3 pgpool[2873]: [174-1] 2016-06-06 09:35:46: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:35:46 otp3 pgpool[2873]: [174-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:35:46 otp3 pgpool[2873]: [175-1] 2016-06-06 09:35:46: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:35:46 otp3 pgpool[2873]: [175-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:35:46 otp3 pgpool[2873]: [176-1] 2016-06-06 09:35:46: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:35:46 otp3 pgpool[2871]: [192-1] 2016-06-06 09:35:46: pid 2871: DEBUG: reading backend data packet kind Jun 6 09:35:46 otp3 pgpool[2871]: [192-2] 2016-06-06 09:35:46: pid 2871: DETAIL: backend:0 of 2 kind = 'C' Jun 6 09:35:46 otp3 pgpool[2871]: [192-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:3349 Jun 6 09:35:46 otp3 pgpool[2871]: [193-1] 2016-06-06 09:35:46: pid 2871: DEBUG: reading backend data packet kind Jun 6 09:35:46 otp3 pgpool[2871]: [193-2] 2016-06-06 09:35:46: pid 2871: DETAIL: backend:1 of 2 kind = 'C' Jun 6 09:35:46 otp3 pgpool[2871]: [193-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:3349 Jun 6 09:35:46 otp3 pgpool[2873]: [176-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool[2873]: [177-1] 2016-06-06 09:35:46: pid 2873: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:35:46 otp3 pgpool[2873]: [177-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_query_context.c:854 Jun 6 09:35:46 otp3 pgpool[2871]: [194-1] 2016-06-06 09:35:46: pid 2871: DEBUG: read_kind_from_backend max_count:2.000000 num_executed_nodes:2 Jun 6 09:35:46 otp3 pgpool[2871]: [194-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:3365 Jun 6 09:35:46 otp3 pgpool[2873]: [178-1] 2016-06-06 09:35:46: pid 2873: DEBUG: pool_write: to backend: kind:E Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: SimpleForwardToFrontend: packet:2 length:0 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:792 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: session context: setting command success. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:741 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: processing frontend response Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: received kind 'E'(45) from frontend Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: reading backend data packet kind Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: backend:0 of 2 kind = 'C' Jun 6 09:35:46 otp3 pgpool[2871]: [195-1] 2016-06-06 09:35:46: pid 2871: DEBUG: processing backend response Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:3349 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: reading backend data packet kind Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: backend:1 of 2 kind = 'C' Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:3349 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:35:46 otp3 pgpool[2871]: [195-2] 2016-06-06 09:35:46: pid 2871: DETAIL: received kind 'C'(43) from backend Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:35:46 otp3 pgpool[2871]: [195-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_proto_modules.c:2424 Jun 6 09:35:46 otp3 pgpool[2873]: [178-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool[2873]: [179-1] 2016-06-06 09:35:46: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_query_context.c:854 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: read_kind_from_backend max_count:2.000000 num_executed_nodes:2 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:3365 Jun 6 09:35:46 otp3 pgpool[2871]: [196-1] 2016-06-06 09:35:46: pid 2871: DEBUG: session context: setting command success. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: processing backend response Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: received kind 'C'(43) from backend Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_proto_modules.c:2424 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: pool_write: to backend: kind:E Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool[2873]: [179-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool[2871]: [196-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:741 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool[2871]: [197-1] 2016-06-06 09:35:46: pid 2871: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: session context: setting command success. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:741 Jun 6 09:35:46 otp3 pgpool[2873]: [180-1] 2016-06-06 09:35:46: pid 2873: DEBUG: waiting for query response Jun 6 09:35:46 otp3 pgpool[2873]: [180-2] 2016-06-06 09:35:46: pid 2873: DETAIL: waiting for backend:0 to complete the query Jun 6 09:35:46 otp3 pgpool[2871]: [197-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:219 Jun 6 09:35:46 otp3 pgpool[2873]: [180-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:479 Jun 6 09:35:46 otp3 pgpool[2873]: [181-1] 2016-06-06 09:35:46: pid 2873: DEBUG: pool_read: read 9 bytes from backend 0 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:46 otp3 pgpool[2871]: [198-1] 2016-06-06 09:35:46: pid 2871: DEBUG: processing frontend response Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:219 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: waiting for query response Jun 6 09:35:46 otp3 pgpool[2871]: [198-2] 2016-06-06 09:35:46: pid 2871: DETAIL: received kind 'S'(53) from frontend Jun 6 09:35:46 otp3 pgpool[2871]: [198-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_proto_modules.c:2188 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: waiting for backend:0 to complete the query Jun 6 09:35:46 otp3 pgpool[2871]: [199-1] 2016-06-06 09:35:46: pid 2871: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:479 Jun 6 09:35:46 otp3 pgpool[2871]: [199-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:280 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: processing frontend response Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: received kind 'S'(53) from frontend Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_proto_modules.c:2188 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:280 Jun 6 09:35:46 otp3 pgpool[2873]: [181-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: pool_read: read 9 bytes from backend 0 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool[2873]: [182-1] 2016-06-06 09:35:46: pid 2873: DEBUG: detect error: kind: C Jun 6 09:35:46 otp3 pgpool[2873]: [182-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:35:46 otp3 pgpool[2871]: [200-1] 2016-06-06 09:35:46: pid 2871: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:35:46 otp3 pgpool[2871]: [200-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:269 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: detect error: kind: C Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:269 Jun 6 09:35:46 otp3 pgpool[2873]: [183-1] 2016-06-06 09:35:46: pid 2873: DEBUG: detect error: kind: C Jun 6 09:35:46 otp3 pgpool[2873]: [183-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:35:46 otp3 pgpool[2871]: [201-1] 2016-06-06 09:35:46: pid 2871: DEBUG: session context: setting query in progress. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: detect error: kind: C Jun 6 09:35:46 otp3 pgpool[2873]: [184-1] 2016-06-06 09:35:46: pid 2873: DEBUG: detect error: kind: C Jun 6 09:35:46 otp3 pgpool[2873]: [184-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: detect error: kind: C Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:35:46 otp3 pgpool[2873]: [185-1] 2016-06-06 09:35:46: pid 2873: DEBUG: detect error: kind: C Jun 6 09:35:46 otp3 pgpool[2873]: [185-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: detect error: kind: C Jun 6 09:35:46 otp3 pgpool[2871]: [201-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:208 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: session context: setting query in progress. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:208 Jun 6 09:35:46 otp3 pgpool[2871]: [202-1] 2016-06-06 09:35:46: pid 2871: DEBUG: pool_write: to backend: kind:S Jun 6 09:35:46 otp3 pgpool[2871]: [202-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: pool_write: to backend: kind:S Jun 6 09:35:46 otp3 pgpool[2871]: [203-1] 2016-06-06 09:35:46: pid 2871: DEBUG: pool_write: to backend: kind:S Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool[2871]: [203-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool[2873]: [186-1] 2016-06-06 09:35:46: pid 2873: DEBUG: pool_send_and_wait: pool_set_sync_map: 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: pool_write: to backend: kind:S Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool[2873]: [186-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_query_context.c:854 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: pool_send_and_wait: pool_set_sync_map: 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_query_context.c:854 Jun 6 09:35:46 otp3 pgpool[2873]: [187-1] 2016-06-06 09:35:46: pid 2873: DEBUG: pool_write: to backend: kind:E Jun 6 09:35:46 otp3 pgpool[2873]: [187-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: pool_write: to backend: kind:E Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool[2873]: [188-1] 2016-06-06 09:35:46: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:35:46 otp3 pgpool[2873]: [188-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool[2871]: [204-1] 2016-06-06 09:35:46: pid 2871: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool[2873]: [189-1] 2016-06-06 09:35:46: pid 2873: DEBUG: waiting for query response Jun 6 09:35:46 otp3 pgpool[2873]: [189-2] 2016-06-06 09:35:46: pid 2873: DETAIL: waiting for backend:1 to complete the query Jun 6 09:35:46 otp3 pgpool[2873]: [189-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:479 Jun 6 09:35:46 otp3 pgpool[2871]: [204-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: waiting for query response Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: waiting for backend:1 to complete the query Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:479 Jun 6 09:35:46 otp3 pgpool[2871]: [205-1] 2016-06-06 09:35:46: pid 2871: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:35:46 otp3 pgpool[2871]: [205-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool[2871]: [206-1] 2016-06-06 09:35:46: pid 2871: DEBUG: reading backend data packet kind Jun 6 09:35:46 otp3 pgpool[2871]: [206-2] 2016-06-06 09:35:46: pid 2871: DETAIL: backend:0 of 2 kind = 'Z' Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool[2871]: [206-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:3349 Jun 6 09:35:46 otp3 pgpool[2873]: [190-1] 2016-06-06 09:35:46: pid 2873: DEBUG: pool_read: read 9 bytes from backend 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: reading backend data packet kind Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: backend:0 of 2 kind = 'Z' Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:3349 Jun 6 09:35:46 otp3 pgpool[2873]: [190-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool[2871]: [207-1] 2016-06-06 09:35:46: pid 2871: DEBUG: pool_read: read 6 bytes from backend 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: pool_read: read 9 bytes from backend 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool[2873]: [191-1] 2016-06-06 09:35:46: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool[2873]: [191-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool[2873]: [192-1] 2016-06-06 09:35:46: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:35:46 otp3 pgpool[2873]: [192-2] 2016-06-06 09:35:46: pid 2873: DETAIL: backend:0 of 2 kind = 'C' Jun 6 09:35:46 otp3 pgpool[2873]: [192-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:35:46 otp3 pgpool[2871]: [207-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: backend:0 of 2 kind = 'C' Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:35:46 otp3 pgpool[2871]: [208-1] 2016-06-06 09:35:46: pid 2871: DEBUG: reading backend data packet kind Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: pool_read: read 6 bytes from backend 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool[2873]: [193-1] 2016-06-06 09:35:46: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:35:46 otp3 pgpool[2873]: [193-2] 2016-06-06 09:35:46: pid 2873: DETAIL: backend:1 of 2 kind = 'C' Jun 6 09:35:46 otp3 pgpool[2873]: [193-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:35:46 otp3 pgpool[2871]: [208-2] 2016-06-06 09:35:46: pid 2871: DETAIL: backend:1 of 2 kind = 'Z' Jun 6 09:35:46 otp3 pgpool[2871]: [208-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:3349 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: backend:1 of 2 kind = 'C' Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: reading backend data packet kind Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: backend:1 of 2 kind = 'Z' Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:3349 Jun 6 09:35:46 otp3 pgpool[2873]: [194-1] 2016-06-06 09:35:46: pid 2873: DEBUG: read_kind_from_backend max_count:2.000000 num_executed_nodes:2 Jun 6 09:35:46 otp3 pgpool[2873]: [194-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: read_kind_from_backend max_count:2.000000 num_executed_nodes:2 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:35:46 otp3 pgpool[2871]: [209-1] 2016-06-06 09:35:46: pid 2871: DEBUG: read_kind_from_backend max_count:2.000000 num_executed_nodes:2 Jun 6 09:35:46 otp3 pgpool[2871]: [209-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:3365 Jun 6 09:35:46 otp3 pgpool[2873]: [195-1] 2016-06-06 09:35:46: pid 2873: DEBUG: processing backend response Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: read_kind_from_backend max_count:2.000000 num_executed_nodes:2 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:3365 Jun 6 09:35:46 otp3 pgpool[2873]: [195-2] 2016-06-06 09:35:46: pid 2873: DETAIL: received kind 'C'(43) from backend Jun 6 09:35:46 otp3 pgpool[2873]: [195-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:35:46 otp3 pgpool[2871]: [210-1] 2016-06-06 09:35:46: pid 2871: DEBUG: processing backend response Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: processing backend response Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: received kind 'C'(43) from backend Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:35:46 otp3 pgpool[2871]: [210-2] 2016-06-06 09:35:46: pid 2871: DETAIL: received kind 'Z'(5a) from backend Jun 6 09:35:46 otp3 pgpool[2871]: [210-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_proto_modules.c:2424 Jun 6 09:35:46 otp3 pgpool[2871]: [211-1] 2016-06-06 09:35:46: pid 2871: DEBUG: processing backend response Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: processing backend response Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: received kind 'Z'(5a) from backend Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_proto_modules.c:2424 Jun 6 09:35:46 otp3 pgpool[2873]: [196-1] 2016-06-06 09:35:46: pid 2873: DEBUG: session context: setting command success. DONE Jun 6 09:35:46 otp3 pgpool[2871]: [211-2] 2016-06-06 09:35:46: pid 2871: DETAIL: Ready For Query received Jun 6 09:35:46 otp3 pgpool[2871]: [211-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_proto_modules.c:2442 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: processing backend response Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: Ready For Query received Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_proto_modules.c:2442 Jun 6 09:35:46 otp3 pgpool[2873]: [196-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:741 Jun 6 09:35:46 otp3 pgpool[2871]: [212-1] 2016-06-06 09:35:46: pid 2871: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: session context: setting command success. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:741 Jun 6 09:35:46 otp3 pgpool[2871]: [212-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:310 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:310 Jun 6 09:35:46 otp3 pgpool[2873]: [197-1] 2016-06-06 09:35:46: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:46 otp3 pgpool[2871]: [213-1] 2016-06-06 09:35:46: pid 2871: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool[2873]: [197-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:35:46 otp3 pgpool[2871]: [213-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool[2873]: [198-1] 2016-06-06 09:35:46: pid 2873: DEBUG: processing frontend response Jun 6 09:35:46 otp3 pgpool[2871]: [214-1] 2016-06-06 09:35:46: pid 2871: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool[2871]: [214-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool[2871]: [215-1] 2016-06-06 09:35:46: pid 2871: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool[2871]: [215-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool[2871]: [216-1] 2016-06-06 09:35:46: pid 2871: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2871]: [216-2] 2016-06-06 09:35:46: pid 2871: DETAIL: slot: 0 length: 5 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool[2873]: [198-2] 2016-06-06 09:35:46: pid 2873: DETAIL: received kind 'S'(53) from frontend Jun 6 09:35:46 otp3 pgpool[2873]: [198-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: processing frontend response Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: received kind 'S'(53) from frontend Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:35:46 otp3 pgpool[2871]: [216-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_auth.c:1107 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: slot: 0 length: 5 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_auth.c:1107 Jun 6 09:35:46 otp3 pgpool[2873]: [199-1] 2016-06-06 09:35:46: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:35:46 otp3 pgpool[2873]: [199-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:35:46 otp3 pgpool[2871]: [217-1] 2016-06-06 09:35:46: pid 2871: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2871]: [217-2] 2016-06-06 09:35:46: pid 2871: DETAIL: slot: 1 length: 5 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:35:46 otp3 pgpool[2871]: [217-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_auth.c:1126 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2873]: [200-1] 2016-06-06 09:35:46: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: slot: 1 length: 5 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_auth.c:1126 Jun 6 09:35:46 otp3 pgpool[2873]: [200-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:35:46 otp3 pgpool[2873]: [201-1] 2016-06-06 09:35:46: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:35:46 otp3 pgpool[2871]: [218-1] 2016-06-06 09:35:46: pid 2871: DEBUG: processing ReadyForQuery Jun 6 09:35:46 otp3 pgpool[2873]: [201-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:35:46 otp3 pgpool[2871]: [218-2] 2016-06-06 09:35:46: pid 2871: DETAIL: transaction state 'I'(49) Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:35:46 otp3 pgpool[2873]: [202-1] 2016-06-06 09:35:46: pid 2873: DEBUG: pool_write: to backend: kind:S Jun 6 09:35:46 otp3 pgpool[2871]: [218-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_proto_modules.c:1612 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: processing ReadyForQuery Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: transaction state 'I'(49) Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_proto_modules.c:1612 Jun 6 09:35:46 otp3 pgpool[2873]: [202-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool[2871]: [219-1] 2016-06-06 09:35:46: pid 2871: DEBUG: processing ReadyForQuery Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: pool_write: to backend: kind:S Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool[2873]: [203-1] 2016-06-06 09:35:46: pid 2873: DEBUG: pool_write: to backend: kind:S Jun 6 09:35:46 otp3 pgpool[2873]: [203-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: pool_write: to backend: kind:S Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool[2871]: [219-2] 2016-06-06 09:35:46: pid 2871: DETAIL: transaction state 'I'(49) Jun 6 09:35:46 otp3 pgpool[2871]: [219-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_proto_modules.c:1612 Jun 6 09:35:46 otp3 pgpool[2873]: [204-1] 2016-06-06 09:35:46: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool[2873]: [204-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: processing ReadyForQuery Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: transaction state 'I'(49) Jun 6 09:35:46 otp3 pgpool[2871]: [220-1] 2016-06-06 09:35:46: pid 2871: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_proto_modules.c:1612 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool[2873]: [205-1] 2016-06-06 09:35:46: pid 2873: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:35:46 otp3 pgpool[2873]: [205-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool[2871]: [220-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:219 Jun 6 09:35:46 otp3 pgpool[2873]: [206-1] 2016-06-06 09:35:46: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:219 Jun 6 09:35:46 otp3 pgpool[2873]: [206-2] 2016-06-06 09:35:46: pid 2873: DETAIL: backend:0 of 2 kind = 'Z' Jun 6 09:35:46 otp3 pgpool[2873]: [206-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: backend:0 of 2 kind = 'Z' Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:35:46 otp3 pgpool[2873]: [207-1] 2016-06-06 09:35:46: pid 2873: DEBUG: pool_read: read 6 bytes from backend 1 Jun 6 09:35:46 otp3 pgpool[2873]: [207-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: pool_read: read 6 bytes from backend 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool[2873]: [208-1] 2016-06-06 09:35:46: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:35:46 otp3 pgpool[2873]: [208-2] 2016-06-06 09:35:46: pid 2873: DETAIL: backend:1 of 2 kind = 'Z' Jun 6 09:35:46 otp3 pgpool[2873]: [208-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: backend:1 of 2 kind = 'Z' Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:35:46 otp3 pgpool[2873]: [209-1] 2016-06-06 09:35:46: pid 2873: DEBUG: read_kind_from_backend max_count:2.000000 num_executed_nodes:2 Jun 6 09:35:46 otp3 pgpool[2873]: [209-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: read_kind_from_backend max_count:2.000000 num_executed_nodes:2 Jun 6 09:35:46 otp3 pgpool[2873]: [210-1] 2016-06-06 09:35:46: pid 2873: DEBUG: processing backend response Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:35:46 otp3 pgpool[2873]: [210-2] 2016-06-06 09:35:46: pid 2873: DETAIL: received kind 'Z'(5a) from backend Jun 6 09:35:46 otp3 pgpool[2873]: [210-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:35:46 otp3 pgpool[2873]: [211-1] 2016-06-06 09:35:46: pid 2873: DEBUG: processing backend response Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: processing backend response Jun 6 09:35:46 otp3 pgpool[2873]: [211-2] 2016-06-06 09:35:46: pid 2873: DETAIL: Ready For Query received Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: received kind 'Z'(5a) from backend Jun 6 09:35:46 otp3 pgpool[2873]: [211-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_proto_modules.c:2442 Jun 6 09:35:46 otp3 pgpool[2873]: [212-1] 2016-06-06 09:35:46: pid 2873: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:35:46 otp3 pgpool[2873]: [212-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:310 Jun 6 09:35:46 otp3 pgpool[2873]: [213-1] 2016-06-06 09:35:46: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:35:46 otp3 pgpool[2873]: [213-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: processing backend response Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: Ready For Query received Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_proto_modules.c:2442 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:310 Jun 6 09:35:46 otp3 pgpool[2873]: [214-1] 2016-06-06 09:35:46: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool[2873]: [214-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool[2873]: [215-1] 2016-06-06 09:35:46: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool[2873]: [215-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool[2873]: [216-1] 2016-06-06 09:35:46: pid 2873: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2873]: [216-2] 2016-06-06 09:35:46: pid 2873: DETAIL: slot: 0 length: 5 Jun 6 09:35:46 otp3 pgpool[2873]: [216-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_auth.c:1107 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: slot: 0 length: 5 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_auth.c:1107 Jun 6 09:35:46 otp3 pgpool[2873]: [217-1] 2016-06-06 09:35:46: pid 2873: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2873]: [217-2] 2016-06-06 09:35:46: pid 2873: DETAIL: slot: 1 length: 5 Jun 6 09:35:46 otp3 pgpool[2873]: [217-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_auth.c:1126 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2873]: [218-1] 2016-06-06 09:35:46: pid 2873: DEBUG: processing ReadyForQuery Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: slot: 1 length: 5 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_auth.c:1126 Jun 6 09:35:46 otp3 pgpool[2873]: [218-2] 2016-06-06 09:35:46: pid 2873: DETAIL: transaction state 'I'(49) Jun 6 09:35:46 otp3 pgpool[2873]: [218-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_proto_modules.c:1612 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: processing ReadyForQuery Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: transaction state 'I'(49) Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_proto_modules.c:1612 Jun 6 09:35:46 otp3 pgpool[2873]: [219-1] 2016-06-06 09:35:46: pid 2873: DEBUG: processing ReadyForQuery Jun 6 09:35:46 otp3 pgpool[2873]: [219-2] 2016-06-06 09:35:46: pid 2873: DETAIL: transaction state 'I'(49) Jun 6 09:35:46 otp3 pgpool[2873]: [219-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_proto_modules.c:1612 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: processing ReadyForQuery Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: transaction state 'I'(49) Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_proto_modules.c:1612 Jun 6 09:35:46 otp3 pgpool[2873]: [220-1] 2016-06-06 09:35:46: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:46 otp3 pgpool[2873]: [220-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:35:46 otp3 pgpool[2873]: [221-1] 2016-06-06 09:35:46: pid 2873: DEBUG: processing frontend response Jun 6 09:35:46 otp3 pgpool[2873]: [221-2] 2016-06-06 09:35:46: pid 2873: DETAIL: received kind 'P'(50) from frontend Jun 6 09:35:46 otp3 pgpool[2873]: [221-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: processing frontend response Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: received kind 'P'(50) from frontend Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:35:46 otp3 pgpool[2873]: [222-1] 2016-06-06 09:35:46: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:35:46 otp3 pgpool[2873]: [222-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:35:46 otp3 pgpool[2873]: [223-1] 2016-06-06 09:35:46: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:35:46 otp3 pgpool[2873]: [223-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:35:46 otp3 pgpool[2873]: [224-1] 2016-06-06 09:35:46: pid 2873: DEBUG: Parse: statement name <> Jun 6 09:35:46 otp3 pgpool[2873]: [224-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_proto_modules.c:817 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: Parse: statement name <> Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_proto_modules.c:817 Jun 6 09:35:46 otp3 pgpool[2873]: [225-1] 2016-06-06 09:35:46: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:35:46 otp3 pgpool[2871]: [221-1] 2016-06-06 09:35:46: pid 2871: DEBUG: processing frontend response Jun 6 09:35:46 otp3 pgpool[2871]: [221-2] 2016-06-06 09:35:46: pid 2871: DETAIL: received kind 'P'(50) from frontend Jun 6 09:35:46 otp3 pgpool[2871]: [221-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_proto_modules.c:2188 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: processing frontend response Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: received kind 'P'(50) from frontend Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_proto_modules.c:2188 Jun 6 09:35:46 otp3 pgpool[2871]: [222-1] 2016-06-06 09:35:46: pid 2871: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:35:46 otp3 pgpool[2871]: [222-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:280 Jun 6 09:35:46 otp3 pgpool[2871]: [223-1] 2016-06-06 09:35:46: pid 2871: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:35:46 otp3 pgpool[2871]: [223-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:269 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:280 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:269 Jun 6 09:35:46 otp3 pgpool[2871]: [224-1] 2016-06-06 09:35:46: pid 2871: DEBUG: Parse: statement name <> Jun 6 09:35:46 otp3 pgpool[2871]: [224-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_proto_modules.c:817 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: Parse: statement name <> Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_proto_modules.c:817 Jun 6 09:35:46 otp3 pgpool[2871]: [225-1] 2016-06-06 09:35:46: pid 2871: DEBUG: session context: setting query in progress. DONE Jun 6 09:35:46 otp3 pgpool[2871]: [225-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:208 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: session context: setting query in progress. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:208 Jun 6 09:35:46 otp3 pgpool[2873]: [225-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:35:46 otp3 pgpool[2871]: [226-1] 2016-06-06 09:35:46: pid 2871: DEBUG: pool_write: to backend: kind:S Jun 6 09:35:46 otp3 pgpool[2873]: [226-1] 2016-06-06 09:35:46: pid 2873: DEBUG: pool_write: to backend: kind:S Jun 6 09:35:46 otp3 pgpool[2873]: [226-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: pool_write: to backend: kind:S Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool[2873]: [227-1] 2016-06-06 09:35:46: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:35:46 otp3 pgpool[2871]: [226-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: pool_write: to backend: kind:S Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool[2873]: [227-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool[2871]: [227-1] 2016-06-06 09:35:46: pid 2871: DEBUG: pool_write: to backend: kind:H Jun 6 09:35:46 otp3 pgpool[2871]: [227-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: pool_write: to backend: kind:H Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool[2871]: [228-1] 2016-06-06 09:35:46: pid 2871: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:35:46 otp3 pgpool[2871]: [228-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool[2871]: [229-1] 2016-06-06 09:35:46: pid 2871: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:35:46 otp3 pgpool[2871]: [229-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:310 Jun 6 09:35:46 otp3 pgpool[2871]: [230-1] 2016-06-06 09:35:46: pid 2871: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool[2871]: [230-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:35:46 otp3 pgpool[2871]: [231-1] 2016-06-06 09:35:46: pid 2871: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool[2871]: [231-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:310 Jun 6 09:35:46 otp3 pgpool[2871]: [232-1] 2016-06-06 09:35:46: pid 2871: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool[2871]: [232-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool[2871]: [233-1] 2016-06-06 09:35:46: pid 2871: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2871]: [233-2] 2016-06-06 09:35:46: pid 2871: DETAIL: slot: 0 length: 5 Jun 6 09:35:46 otp3 pgpool[2871]: [233-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_auth.c:1107 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool[2871]: [234-1] 2016-06-06 09:35:46: pid 2871: DEBUG: processing ReadyForQuery Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool[2871]: [234-2] 2016-06-06 09:35:46: pid 2871: DETAIL: transaction state 'I'(49) Jun 6 09:35:46 otp3 pgpool[2871]: [234-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_proto_modules.c:1612 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool[2871]: [235-1] 2016-06-06 09:35:46: pid 2871: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:46 otp3 pgpool[2871]: [235-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:219 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2871]: [236-1] 2016-06-06 09:35:46: pid 2871: DEBUG: session context: setting query in progress. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: slot: 0 length: 5 Jun 6 09:35:46 otp3 pgpool[2871]: [236-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:208 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_auth.c:1107 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: processing ReadyForQuery Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: transaction state 'I'(49) Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_proto_modules.c:1612 Jun 6 09:35:46 otp3 pgpool[2871]: [237-1] 2016-06-06 09:35:46: pid 2871: DEBUG: Parse: waiting for master completing the query Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:46 otp3 pgpool[2871]: [237-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_proto_modules.c:1064 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:219 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: session context: setting query in progress. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:208 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: Parse: waiting for master completing the query Jun 6 09:35:46 otp3 pgpool[2871]: [238-1] 2016-06-06 09:35:46: pid 2871: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_proto_modules.c:1064 Jun 6 09:35:46 otp3 pgpool[2871]: [238-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_query_context.c:854 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_query_context.c:854 Jun 6 09:35:46 otp3 pgpool[2871]: [239-1] 2016-06-06 09:35:46: pid 2871: DEBUG: pool_write: to backend: kind:P Jun 6 09:35:46 otp3 pgpool[2871]: [239-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool[2871]: [240-1] 2016-06-06 09:35:46: pid 2871: DEBUG: pool_write: to backend: kind:H Jun 6 09:35:46 otp3 pgpool[2871]: [240-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: pool_write: to backend: kind:P Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: pool_write: to backend: kind:H Jun 6 09:35:46 otp3 pgpool[2871]: [241-1] 2016-06-06 09:35:46: pid 2871: DEBUG: waiting for query response Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool[2871]: [241-2] 2016-06-06 09:35:46: pid 2871: DETAIL: waiting for backend:0 to complete the query Jun 6 09:35:46 otp3 pgpool[2871]: [241-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:479 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: waiting for query response Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: waiting for backend:0 to complete the query Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:479 Jun 6 09:35:46 otp3 pgpool[2873]: [228-1] 2016-06-06 09:35:46: pid 2873: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:35:46 otp3 pgpool[2873]: [228-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool[2873]: [229-1] 2016-06-06 09:35:46: pid 2873: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:35:46 otp3 pgpool[2873]: [229-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:310 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:35:46 otp3 pgpool[2873]: [230-1] 2016-06-06 09:35:46: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool[2873]: [230-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:35:46 otp3 pgpool[2873]: [231-1] 2016-06-06 09:35:46: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:310 Jun 6 09:35:46 otp3 pgpool[2873]: [231-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool[2873]: [232-1] 2016-06-06 09:35:46: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool[2873]: [232-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool[2873]: [233-1] 2016-06-06 09:35:46: pid 2873: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2873]: [233-2] 2016-06-06 09:35:46: pid 2873: DETAIL: slot: 0 length: 5 Jun 6 09:35:46 otp3 pgpool[2873]: [233-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_auth.c:1107 Jun 6 09:35:46 otp3 pgpool[2871]: [242-1] 2016-06-06 09:35:46: pid 2871: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:35:46 otp3 pgpool[2871]: [242-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool[2871]: [243-1] 2016-06-06 09:35:46: pid 2871: DEBUG: detect error: kind: 1 Jun 6 09:35:46 otp3 pgpool[2871]: [243-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:4166 Jun 6 09:35:46 otp3 pgpool[2871]: [244-1] 2016-06-06 09:35:46: pid 2871: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool[2871]: [244-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool[2871]: [245-1] 2016-06-06 09:35:46: pid 2871: DEBUG: reading backend data packet kind Jun 6 09:35:46 otp3 pgpool[2871]: [245-2] 2016-06-06 09:35:46: pid 2871: DETAIL: backend:0 of 2 kind = '1' Jun 6 09:35:46 otp3 pgpool[2871]: [245-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:3349 Jun 6 09:35:46 otp3 pgpool[2871]: [246-1] 2016-06-06 09:35:46: pid 2871: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:35:46 otp3 pgpool[2871]: [246-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:3365 Jun 6 09:35:46 otp3 pgpool[2871]: [247-1] 2016-06-06 09:35:46: pid 2871: DEBUG: processing backend response Jun 6 09:35:46 otp3 pgpool[2871]: [247-2] 2016-06-06 09:35:46: pid 2871: DETAIL: received kind '1'(31) from backend Jun 6 09:35:46 otp3 pgpool[2871]: [247-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_proto_modules.c:2424 Jun 6 09:35:46 otp3 pgpool[2871]: [248-1] 2016-06-06 09:35:46: pid 2871: DEBUG: called by pool_add_sent_message: sent message: address: 2406d98 kind: P name: == Jun 6 09:35:46 otp3 pgpool[2871]: [248-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:436 Jun 6 09:35:46 otp3 pgpool[2871]: [249-1] 2016-06-06 09:35:46: pid 2871: DEBUG: adding sent message to list Jun 6 09:35:46 otp3 pgpool[2871]: [249-2] 2016-06-06 09:35:46: pid 2871: DETAIL: prepared statement "" already exists Jun 6 09:35:46 otp3 pgpool[2871]: [249-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:516 Jun 6 09:35:46 otp3 pgpool[2871]: [250-1] 2016-06-06 09:35:46: pid 2871: DEBUG: called by pool_sent_message_destroy: sent message: address: 2406c80 kind: P name: == Jun 6 09:35:46 otp3 pgpool[2871]: [250-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:436 Jun 6 09:35:46 otp3 pgpool[2871]: [251-1] 2016-06-06 09:35:46: pid 2871: DEBUG: checking if query context can be safely destroyed Jun 6 09:35:46 otp3 pgpool[2871]: [251-2] 2016-06-06 09:35:46: pid 2871: DETAIL: query context 0x802481830 is still used 2 times. query:"SET extra_float_digits = 3" Jun 6 09:35:46 otp3 pgpool[2871]: [251-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:873 Jun 6 09:35:46 otp3 pgpool[2871]: [252-1] 2016-06-06 09:35:46: pid 2871: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool[2871]: [252-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool[2871]: [253-1] 2016-06-06 09:35:46: pid 2871: DEBUG: SimpleForwardToFrontend: packet:1 length:0 Jun 6 09:35:46 otp3 pgpool[2871]: [253-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:792 Jun 6 09:35:46 otp3 pgpool[2871]: [254-1] 2016-06-06 09:35:46: pid 2871: DEBUG: session context: setting command success. DONE Jun 6 09:35:46 otp3 pgpool[2871]: [254-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:741 Jun 6 09:35:46 otp3 pgpool[2871]: [255-1] 2016-06-06 09:35:46: pid 2871: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:46 otp3 pgpool[2871]: [255-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:219 Jun 6 09:35:46 otp3 pgpool[2871]: [256-1] 2016-06-06 09:35:46: pid 2871: DEBUG: processing frontend response Jun 6 09:35:46 otp3 pgpool[2871]: [256-2] 2016-06-06 09:35:46: pid 2871: DETAIL: received kind 'B'(42) from frontend Jun 6 09:35:46 otp3 pgpool[2871]: [256-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_proto_modules.c:2188 Jun 6 09:35:46 otp3 pgpool[2871]: [257-1] 2016-06-06 09:35:46: pid 2871: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:35:46 otp3 pgpool[2871]: [257-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:280 Jun 6 09:35:46 otp3 pgpool[2871]: [258-1] 2016-06-06 09:35:46: pid 2871: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:35:46 otp3 pgpool[2871]: [258-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:269 Jun 6 09:35:46 otp3 pgpool[2871]: [259-1] 2016-06-06 09:35:46: pid 2871: DEBUG: Bind: checking strict query Jun 6 09:35:46 otp3 pgpool[2871]: [259-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_proto_modules.c:1211 Jun 6 09:35:46 otp3 pgpool[2871]: [260-1] 2016-06-06 09:35:46: pid 2871: DEBUG: Bind: checking insert lock Jun 6 09:35:46 otp3 pgpool[2871]: [260-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_proto_modules.c:1221 Jun 6 09:35:46 otp3 pgpool[2871]: [261-1] 2016-06-06 09:35:46: pid 2871: DEBUG: Bind: waiting for master completing the query Jun 6 09:35:46 otp3 pgpool[2871]: [261-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_proto_modules.c:1237 Jun 6 09:35:46 otp3 pgpool[2871]: [262-1] 2016-06-06 09:35:46: pid 2871: DEBUG: session context: setting query in progress. DONE Jun 6 09:35:46 otp3 pgpool[2871]: [262-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:208 Jun 6 09:35:46 otp3 pgpool[2871]: [263-1] 2016-06-06 09:35:46: pid 2871: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:35:46 otp3 pgpool[2871]: [263-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_query_context.c:854 Jun 6 09:35:46 otp3 pgpool[2871]: [264-1] 2016-06-06 09:35:46: pid 2871: DEBUG: pool_write: to backend: kind:B Jun 6 09:35:46 otp3 pgpool[2871]: [264-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool[2871]: [265-1] 2016-06-06 09:35:46: pid 2871: DEBUG: pool_write: to backend: kind:H Jun 6 09:35:46 otp3 pgpool[2871]: [265-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool[2871]: [266-1] 2016-06-06 09:35:46: pid 2871: DEBUG: waiting for query response Jun 6 09:35:46 otp3 pgpool[2871]: [266-2] 2016-06-06 09:35:46: pid 2871: DETAIL: waiting for backend:0 to complete the query Jun 6 09:35:46 otp3 pgpool[2871]: [266-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:479 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: slot: 0 length: 5 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_auth.c:1107 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: detect error: kind: 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:4166 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: reading backend data packet kind Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: backend:0 of 2 kind = '1' Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:3349 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:3365 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: processing backend response Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: received kind '1'(31) from backend Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_proto_modules.c:2424 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: called by pool_add_sent_message: sent message: address: 2406d98 kind: P name: == Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:436 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: adding sent message to list Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: prepared statement "" already exists Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:516 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: called by pool_sent_message_destroy: sent message: address: 2406c80 kind: P name: == Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:436 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: checking if query context can be safely destroyed Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: query context 0x802481830 is still used 2 times. query:"SET extra_float_digits = 3" Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:873 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: SimpleForwardToFrontend: packet:1 length:0 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:792 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: session context: setting command success. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:741 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:219 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: processing frontend response Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: received kind 'B'(42) from frontend Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_proto_modules.c:2188 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:280 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:269 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: Bind: checking strict query Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_proto_modules.c:1211 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: Bind: checking insert lock Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_proto_modules.c:1221 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: Bind: waiting for master completing the query Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_proto_modules.c:1237 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: session context: setting query in progress. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:208 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_query_context.c:854 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: pool_write: to backend: kind:B Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: pool_write: to backend: kind:H Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: waiting for query response Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: waiting for backend:0 to complete the query Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:479 Jun 6 09:35:46 otp3 pgpool[2871]: [267-1] 2016-06-06 09:35:46: pid 2871: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:35:46 otp3 pgpool[2871]: [267-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool[2871]: [268-1] 2016-06-06 09:35:46: pid 2871: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool[2871]: [268-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool[2871]: [269-1] 2016-06-06 09:35:46: pid 2871: DEBUG: reading backend data packet kind Jun 6 09:35:46 otp3 pgpool[2871]: [269-2] 2016-06-06 09:35:46: pid 2871: DETAIL: backend:0 of 2 kind = '2' Jun 6 09:35:46 otp3 pgpool[2871]: [269-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:3349 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: reading backend data packet kind Jun 6 09:35:46 otp3 pgpool[2871]: [270-1] 2016-06-06 09:35:46: pid 2871: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:35:46 otp3 pgpool[2871]: [270-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:3365 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: backend:0 of 2 kind = '2' Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:3349 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:3365 Jun 6 09:35:46 otp3 pgpool[2871]: [271-1] 2016-06-06 09:35:46: pid 2871: DEBUG: processing backend response Jun 6 09:35:46 otp3 pgpool[2871]: [271-2] 2016-06-06 09:35:46: pid 2871: DETAIL: received kind '2'(32) from backend Jun 6 09:35:46 otp3 pgpool[2871]: [271-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_proto_modules.c:2424 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: processing backend response Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: received kind '2'(32) from backend Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_proto_modules.c:2424 Jun 6 09:35:46 otp3 pgpool[2871]: [272-1] 2016-06-06 09:35:46: pid 2871: DEBUG: called by pool_add_sent_message: sent message: address: 2406c80 kind: B name: == Jun 6 09:35:46 otp3 pgpool[2871]: [272-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:436 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: called by pool_add_sent_message: sent message: address: 2406c80 kind: B name: == Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:436 Jun 6 09:35:46 otp3 pgpool[2871]: [273-1] 2016-06-06 09:35:46: pid 2871: DEBUG: adding sent message to list Jun 6 09:35:46 otp3 pgpool[2871]: [273-2] 2016-06-06 09:35:46: pid 2871: DETAIL: portal "" already exists Jun 6 09:35:46 otp3 pgpool[2871]: [273-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:512 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: adding sent message to list Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: portal "" already exists Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:512 Jun 6 09:35:46 otp3 pgpool[2871]: [274-1] 2016-06-06 09:35:46: pid 2871: DEBUG: called by pool_sent_message_destroy: sent message: address: 2406d18 kind: B name: == Jun 6 09:35:46 otp3 pgpool[2871]: [274-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:436 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: called by pool_sent_message_destroy: sent message: address: 2406d18 kind: B name: == Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:436 Jun 6 09:35:46 otp3 pgpool[2871]: [275-1] 2016-06-06 09:35:46: pid 2871: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:46 otp3 pgpool[2871]: [275-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:219 Jun 6 09:35:46 otp3 pgpool[2871]: [276-1] 2016-06-06 09:35:46: pid 2871: DEBUG: session context: setting query in progress. DONE Jun 6 09:35:46 otp3 pgpool[2871]: [276-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:208 Jun 6 09:35:46 otp3 pgpool[2871]: [277-1] 2016-06-06 09:35:46: pid 2871: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool[2871]: [277-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool[2871]: [278-1] 2016-06-06 09:35:46: pid 2871: DEBUG: SimpleForwardToFrontend: packet:2 length:0 Jun 6 09:35:46 otp3 pgpool[2871]: [278-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:792 Jun 6 09:35:46 otp3 pgpool[2871]: [279-1] 2016-06-06 09:35:46: pid 2871: DEBUG: session context: setting command success. DONE Jun 6 09:35:46 otp3 pgpool[2871]: [279-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:741 Jun 6 09:35:46 otp3 pgpool[2871]: [280-1] 2016-06-06 09:35:46: pid 2871: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:46 otp3 pgpool[2871]: [280-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:219 Jun 6 09:35:46 otp3 pgpool[2871]: [281-1] 2016-06-06 09:35:46: pid 2871: DEBUG: processing frontend response Jun 6 09:35:46 otp3 pgpool[2871]: [281-2] 2016-06-06 09:35:46: pid 2871: DETAIL: received kind 'D'(44) from frontend Jun 6 09:35:46 otp3 pgpool[2871]: [281-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_proto_modules.c:2188 Jun 6 09:35:46 otp3 pgpool[2871]: [282-1] 2016-06-06 09:35:46: pid 2871: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:35:46 otp3 pgpool[2871]: [282-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:280 Jun 6 09:35:46 otp3 pgpool[2871]: [283-1] 2016-06-06 09:35:46: pid 2871: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:35:46 otp3 pgpool[2871]: [283-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:269 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:219 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: session context: setting query in progress. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:208 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: SimpleForwardToFrontend: packet:2 length:0 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:792 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: session context: setting command success. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:741 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:219 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: processing frontend response Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: received kind 'D'(44) from frontend Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_proto_modules.c:2188 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:280 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:269 Jun 6 09:35:46 otp3 pgpool[2871]: [284-1] 2016-06-06 09:35:46: pid 2871: DEBUG: Describe: waiting for master completing the query Jun 6 09:35:46 otp3 pgpool[2871]: [284-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_proto_modules.c:1310 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: Describe: waiting for master completing the query Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_proto_modules.c:1310 Jun 6 09:35:46 otp3 pgpool[2871]: [285-1] 2016-06-06 09:35:46: pid 2871: DEBUG: session context: setting query in progress. DONE Jun 6 09:35:46 otp3 pgpool[2871]: [285-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:208 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: session context: setting query in progress. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:208 Jun 6 09:35:46 otp3 pgpool[2871]: [286-1] 2016-06-06 09:35:46: pid 2871: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:35:46 otp3 pgpool[2871]: [286-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_query_context.c:854 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_query_context.c:854 Jun 6 09:35:46 otp3 pgpool[2871]: [287-1] 2016-06-06 09:35:46: pid 2871: DEBUG: pool_write: to backend: kind:D Jun 6 09:35:46 otp3 pgpool[2871]: [287-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: pool_write: to backend: kind:D Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool[2871]: [288-1] 2016-06-06 09:35:46: pid 2871: DEBUG: pool_write: to backend: kind:H Jun 6 09:35:46 otp3 pgpool[2871]: [288-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: pool_write: to backend: kind:H Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool[2871]: [289-1] 2016-06-06 09:35:46: pid 2871: DEBUG: waiting for query response Jun 6 09:35:46 otp3 pgpool[2871]: [289-2] 2016-06-06 09:35:46: pid 2871: DETAIL: waiting for backend:0 to complete the query Jun 6 09:35:46 otp3 pgpool[2871]: [289-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:479 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: waiting for query response Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: waiting for backend:0 to complete the query Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:479 Jun 6 09:35:46 otp3 pgpool[2871]: [290-1] 2016-06-06 09:35:46: pid 2871: DEBUG: pool_read: read 34 bytes from backend 0 Jun 6 09:35:46 otp3 pgpool[2871]: [290-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: pool_read: read 34 bytes from backend 0 Jun 6 09:35:46 otp3 pgpool[2871]: [291-1] 2016-06-06 09:35:46: pid 2871: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool[2871]: [291-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool[2871]: [292-1] 2016-06-06 09:35:46: pid 2871: DEBUG: reading backend data packet kind Jun 6 09:35:46 otp3 pgpool[2871]: [292-2] 2016-06-06 09:35:46: pid 2871: DETAIL: backend:0 of 2 kind = 'T' Jun 6 09:35:46 otp3 pgpool[2871]: [292-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:3349 Jun 6 09:35:46 otp3 pgpool[2873]: [234-1] 2016-06-06 09:35:46: pid 2873: DEBUG: processing ReadyForQuery Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: reading backend data packet kind Jun 6 09:35:46 otp3 pgpool[2873]: [234-2] 2016-06-06 09:35:46: pid 2873: DETAIL: transaction state 'I'(49) Jun 6 09:35:46 otp3 pgpool[2873]: [234-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_proto_modules.c:1612 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: backend:0 of 2 kind = 'T' Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:3349 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: processing ReadyForQuery Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: transaction state 'I'(49) Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_proto_modules.c:1612 Jun 6 09:35:46 otp3 pgpool[2873]: [235-1] 2016-06-06 09:35:46: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:46 otp3 pgpool[2873]: [235-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:35:46 otp3 pgpool[2873]: [236-1] 2016-06-06 09:35:46: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:35:46 otp3 pgpool[2871]: [293-1] 2016-06-06 09:35:46: pid 2871: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:35:46 otp3 pgpool[2873]: [236-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:35:46 otp3 pgpool[2871]: [293-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:3365 Jun 6 09:35:46 otp3 pgpool[2873]: [237-1] 2016-06-06 09:35:46: pid 2873: DEBUG: Parse: waiting for master completing the query Jun 6 09:35:46 otp3 pgpool[2873]: [237-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_proto_modules.c:1064 Jun 6 09:35:46 otp3 pgpool[2871]: [294-1] 2016-06-06 09:35:46: pid 2871: DEBUG: processing backend response Jun 6 09:35:46 otp3 pgpool[2871]: [294-2] 2016-06-06 09:35:46: pid 2871: DETAIL: received kind 'T'(54) from backend Jun 6 09:35:46 otp3 pgpool[2871]: [294-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_proto_modules.c:2424 Jun 6 09:35:46 otp3 pgpool[2873]: [238-1] 2016-06-06 09:35:46: pid 2873: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:35:46 otp3 pgpool[2873]: [238-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_query_context.c:854 Jun 6 09:35:46 otp3 pgpool[2871]: [295-1] 2016-06-06 09:35:46: pid 2871: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool[2873]: [239-1] 2016-06-06 09:35:46: pid 2873: DEBUG: pool_write: to backend: kind:P Jun 6 09:35:46 otp3 pgpool[2871]: [295-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool[2873]: [239-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool[2873]: [240-1] 2016-06-06 09:35:46: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:35:46 otp3 pgpool[2871]: [296-1] 2016-06-06 09:35:46: pid 2871: DEBUG: SimpleForwardToFrontend: packet:T length:29 Jun 6 09:35:46 otp3 pgpool[2873]: [240-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool[2871]: [296-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:792 Jun 6 09:35:46 otp3 pgpool[2871]: [297-1] 2016-06-06 09:35:46: pid 2871: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:46 otp3 pgpool[2871]: [297-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:219 Jun 6 09:35:46 otp3 pgpool[2873]: [241-1] 2016-06-06 09:35:46: pid 2873: DEBUG: waiting for query response Jun 6 09:35:46 otp3 pgpool[2873]: [241-2] 2016-06-06 09:35:46: pid 2873: DETAIL: waiting for backend:0 to complete the query Jun 6 09:35:46 otp3 pgpool[2873]: [241-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:479 Jun 6 09:35:46 otp3 pgpool[2871]: [298-1] 2016-06-06 09:35:46: pid 2871: DEBUG: processing frontend response Jun 6 09:35:46 otp3 pgpool[2871]: [298-2] 2016-06-06 09:35:46: pid 2871: DETAIL: received kind 'E'(45) from frontend Jun 6 09:35:46 otp3 pgpool[2871]: [298-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_proto_modules.c:2188 Jun 6 09:35:46 otp3 pgpool[2871]: [299-1] 2016-06-06 09:35:46: pid 2871: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:35:46 otp3 pgpool[2871]: [299-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:280 Jun 6 09:35:46 otp3 pgpool[2871]: [300-1] 2016-06-06 09:35:46: pid 2871: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:35:46 otp3 pgpool[2871]: [300-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:269 Jun 6 09:35:46 otp3 pgpool[2871]: [301-1] 2016-06-06 09:35:46: pid 2871: DEBUG: session context: setting query in progress. DONE Jun 6 09:35:46 otp3 pgpool[2871]: [301-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:208 Jun 6 09:35:46 otp3 pgpool[2871]: [302-1] 2016-06-06 09:35:46: pid 2871: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:35:46 otp3 pgpool[2871]: [302-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_query_context.c:854 Jun 6 09:35:46 otp3 pgpool[2871]: [303-1] 2016-06-06 09:35:46: pid 2871: DEBUG: pool_write: to backend: kind:E Jun 6 09:35:46 otp3 pgpool[2871]: [303-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool[2871]: [304-1] 2016-06-06 09:35:46: pid 2871: DEBUG: pool_write: to backend: kind:H Jun 6 09:35:46 otp3 pgpool[2871]: [304-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool[2871]: [305-1] 2016-06-06 09:35:46: pid 2871: DEBUG: waiting for query response Jun 6 09:35:46 otp3 pgpool[2871]: [305-2] 2016-06-06 09:35:46: pid 2871: DETAIL: waiting for backend:0 to complete the query Jun 6 09:35:46 otp3 pgpool[2871]: [305-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:479 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:3365 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: Parse: waiting for master completing the query Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_proto_modules.c:1064 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: processing backend response Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: received kind 'T'(54) from backend Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_proto_modules.c:2424 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_query_context.c:854 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: pool_write: to backend: kind:P Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: SimpleForwardToFrontend: packet:T length:29 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:792 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:219 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: waiting for query response Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: waiting for backend:0 to complete the query Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:479 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: processing frontend response Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: received kind 'E'(45) from frontend Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_proto_modules.c:2188 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:280 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:269 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: session context: setting query in progress. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:208 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_query_context.c:854 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: pool_write: to backend: kind:E Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: pool_write: to backend: kind:H Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: waiting for query response Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: waiting for backend:0 to complete the query Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:479 Jun 6 09:35:46 otp3 pgpool[2871]: [306-1] 2016-06-06 09:35:46: pid 2871: DEBUG: pool_read: read 26 bytes from backend 0 Jun 6 09:35:46 otp3 pgpool[2871]: [306-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: pool_read: read 26 bytes from backend 0 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool[2871]: [307-1] 2016-06-06 09:35:46: pid 2871: DEBUG: detect error: kind: D Jun 6 09:35:46 otp3 pgpool[2871]: [307-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:4166 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: detect error: kind: D Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:4166 Jun 6 09:35:46 otp3 pgpool[2871]: [308-1] 2016-06-06 09:35:46: pid 2871: DEBUG: detect error: kind: D Jun 6 09:35:46 otp3 pgpool[2871]: [308-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:4166 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: detect error: kind: D Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:4166 Jun 6 09:35:46 otp3 pgpool[2871]: [309-1] 2016-06-06 09:35:46: pid 2871: DEBUG: detect error: kind: D Jun 6 09:35:46 otp3 pgpool[2871]: [309-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:4166 Jun 6 09:35:46 otp3 pgpool[2871]: [310-1] 2016-06-06 09:35:46: pid 2871: DEBUG: detect error: kind: D Jun 6 09:35:46 otp3 pgpool[2871]: [310-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:4166 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: detect error: kind: D Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:4166 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: detect error: kind: D Jun 6 09:35:46 otp3 pgpool[2871]: [311-1] 2016-06-06 09:35:46: pid 2871: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:4166 Jun 6 09:35:46 otp3 pgpool[2871]: [311-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool[2871]: [312-1] 2016-06-06 09:35:46: pid 2871: DEBUG: reading backend data packet kind Jun 6 09:35:46 otp3 pgpool[2871]: [312-2] 2016-06-06 09:35:46: pid 2871: DETAIL: backend:0 of 2 kind = 'D' Jun 6 09:35:46 otp3 pgpool[2871]: [312-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:3349 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: reading backend data packet kind Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: backend:0 of 2 kind = 'D' Jun 6 09:35:46 otp3 pgpool[2871]: [313-1] 2016-06-06 09:35:46: pid 2871: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:3349 Jun 6 09:35:46 otp3 pgpool[2871]: [313-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:3365 Jun 6 09:35:46 otp3 pgpool[2871]: [314-1] 2016-06-06 09:35:46: pid 2871: DEBUG: processing backend response Jun 6 09:35:46 otp3 pgpool[2871]: [314-2] 2016-06-06 09:35:46: pid 2871: DETAIL: received kind 'D'(44) from backend Jun 6 09:35:46 otp3 pgpool[2871]: [314-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_proto_modules.c:2424 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:3365 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: processing backend response Jun 6 09:35:46 otp3 pgpool[2871]: [315-1] 2016-06-06 09:35:46: pid 2871: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: received kind 'D'(44) from backend Jun 6 09:35:46 otp3 pgpool[2871]: [315-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_proto_modules.c:2424 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool[2871]: [316-1] 2016-06-06 09:35:46: pid 2871: DEBUG: SimpleForwardToFrontend: packet:D length:7 Jun 6 09:35:46 otp3 pgpool[2871]: [316-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:792 Jun 6 09:35:46 otp3 pgpool[2871]: [317-1] 2016-06-06 09:35:46: pid 2871: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool[2871]: [317-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: SimpleForwardToFrontend: packet:D length:7 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:792 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool[2871]: [318-1] 2016-06-06 09:35:46: pid 2871: DEBUG: reading backend data packet kind Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool[2871]: [318-2] 2016-06-06 09:35:46: pid 2871: DETAIL: backend:0 of 2 kind = 'C' Jun 6 09:35:46 otp3 pgpool[2871]: [318-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:3349 Jun 6 09:35:46 otp3 pgpool[2871]: [319-1] 2016-06-06 09:35:46: pid 2871: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:35:46 otp3 pgpool[2871]: [319-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:3365 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: reading backend data packet kind Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: backend:0 of 2 kind = 'C' Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:3349 Jun 6 09:35:46 otp3 pgpool[2871]: [320-1] 2016-06-06 09:35:46: pid 2871: DEBUG: processing backend response Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:35:46 otp3 pgpool[2871]: [320-2] 2016-06-06 09:35:46: pid 2871: DETAIL: received kind 'C'(43) from backend Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:3365 Jun 6 09:35:46 otp3 pgpool[2871]: [320-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_proto_modules.c:2424 Jun 6 09:35:46 otp3 pgpool[2871]: [321-1] 2016-06-06 09:35:46: pid 2871: DEBUG: session context: setting command success. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: processing backend response Jun 6 09:35:46 otp3 pgpool[2871]: [321-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:741 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: received kind 'C'(43) from backend Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_proto_modules.c:2424 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: session context: setting command success. DONE Jun 6 09:35:46 otp3 pgpool[2871]: [322-1] 2016-06-06 09:35:46: pid 2871: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:741 Jun 6 09:35:46 otp3 pgpool[2871]: [322-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:219 Jun 6 09:35:46 otp3 pgpool[2871]: [323-1] 2016-06-06 09:35:46: pid 2871: DEBUG: processing frontend response Jun 6 09:35:46 otp3 pgpool[2871]: [323-2] 2016-06-06 09:35:46: pid 2871: DETAIL: received kind 'S'(53) from frontend Jun 6 09:35:46 otp3 pgpool[2871]: [323-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_proto_modules.c:2188 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:219 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: processing frontend response Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: received kind 'S'(53) from frontend Jun 6 09:35:46 otp3 pgpool[2871]: [324-1] 2016-06-06 09:35:46: pid 2871: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_proto_modules.c:2188 Jun 6 09:35:46 otp3 pgpool[2871]: [324-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:280 Jun 6 09:35:46 otp3 pgpool[2871]: [325-1] 2016-06-06 09:35:46: pid 2871: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:35:46 otp3 pgpool[2871]: [325-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:269 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:280 Jun 6 09:35:46 otp3 pgpool[2871]: [326-1] 2016-06-06 09:35:46: pid 2871: DEBUG: session context: setting query in progress. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:35:46 otp3 pgpool[2871]: [326-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:208 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:269 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: session context: setting query in progress. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:208 Jun 6 09:35:46 otp3 pgpool[2871]: [327-1] 2016-06-06 09:35:46: pid 2871: DEBUG: pool_write: to backend: kind:S Jun 6 09:35:46 otp3 pgpool[2871]: [327-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool[2871]: [328-1] 2016-06-06 09:35:46: pid 2871: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: pool_write: to backend: kind:S Jun 6 09:35:46 otp3 pgpool[2871]: [328-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool[2873]: [242-1] 2016-06-06 09:35:46: pid 2873: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:35:46 otp3 pgpool[2873]: [242-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool[2873]: [243-1] 2016-06-06 09:35:46: pid 2873: DEBUG: detect error: kind: 1 Jun 6 09:35:46 otp3 pgpool[2873]: [243-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:35:46 otp3 pgpool[2873]: [244-1] 2016-06-06 09:35:46: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool[2873]: [244-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool[2873]: [245-1] 2016-06-06 09:35:46: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:35:46 otp3 pgpool[2873]: [245-2] 2016-06-06 09:35:46: pid 2873: DETAIL: backend:0 of 2 kind = '1' Jun 6 09:35:46 otp3 pgpool[2873]: [245-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:35:46 otp3 pgpool[2873]: [246-1] 2016-06-06 09:35:46: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:35:46 otp3 pgpool[2873]: [246-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:35:46 otp3 pgpool[2873]: [247-1] 2016-06-06 09:35:46: pid 2873: DEBUG: processing backend response Jun 6 09:35:46 otp3 pgpool[2873]: [247-2] 2016-06-06 09:35:46: pid 2873: DETAIL: received kind '1'(31) from backend Jun 6 09:35:46 otp3 pgpool[2873]: [247-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:35:46 otp3 pgpool[2873]: [248-1] 2016-06-06 09:35:46: pid 2873: DEBUG: called by pool_add_sent_message: sent message: address: 2406d98 kind: P name: == Jun 6 09:35:46 otp3 pgpool[2873]: [248-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:436 Jun 6 09:35:46 otp3 pgpool[2873]: [249-1] 2016-06-06 09:35:46: pid 2873: DEBUG: adding sent message to list Jun 6 09:35:46 otp3 pgpool[2873]: [249-2] 2016-06-06 09:35:46: pid 2873: DETAIL: prepared statement "" already exists Jun 6 09:35:46 otp3 pgpool[2873]: [249-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:516 Jun 6 09:35:46 otp3 pgpool[2873]: [250-1] 2016-06-06 09:35:46: pid 2873: DEBUG: called by pool_sent_message_destroy: sent message: address: 2406c80 kind: P name: == Jun 6 09:35:46 otp3 pgpool[2873]: [250-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:436 Jun 6 09:35:46 otp3 pgpool[2873]: [251-1] 2016-06-06 09:35:46: pid 2873: DEBUG: checking if query context can be safely destroyed Jun 6 09:35:46 otp3 pgpool[2873]: [251-2] 2016-06-06 09:35:46: pid 2873: DETAIL: query context 0x802481830 is still used 2 times. query:"SET extra_float_digits = 3" Jun 6 09:35:46 otp3 pgpool[2873]: [251-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:873 Jun 6 09:35:46 otp3 pgpool[2873]: [252-1] 2016-06-06 09:35:46: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool[2873]: [252-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool[2873]: [253-1] 2016-06-06 09:35:46: pid 2873: DEBUG: SimpleForwardToFrontend: packet:1 length:0 Jun 6 09:35:46 otp3 pgpool[2873]: [253-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:792 Jun 6 09:35:46 otp3 pgpool[2873]: [254-1] 2016-06-06 09:35:46: pid 2873: DEBUG: session context: setting command success. DONE Jun 6 09:35:46 otp3 pgpool[2873]: [254-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:741 Jun 6 09:35:46 otp3 pgpool[2873]: [255-1] 2016-06-06 09:35:46: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:46 otp3 pgpool[2873]: [255-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:35:46 otp3 pgpool[2873]: [256-1] 2016-06-06 09:35:46: pid 2873: DEBUG: processing frontend response Jun 6 09:35:46 otp3 pgpool[2873]: [256-2] 2016-06-06 09:35:46: pid 2873: DETAIL: received kind 'B'(42) from frontend Jun 6 09:35:46 otp3 pgpool[2871]: [329-1] 2016-06-06 09:35:46: pid 2871: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: detect error: kind: 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: backend:0 of 2 kind = '1' Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: processing backend response Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: received kind '1'(31) from backend Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: called by pool_add_sent_message: sent message: address: 2406d98 kind: P name: == Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:436 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: adding sent message to list Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: prepared statement "" already exists Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:516 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: called by pool_sent_message_destroy: sent message: address: 2406c80 kind: P name: == Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:436 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: checking if query context can be safely destroyed Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: query context 0x802481830 is still used 2 times. query:"SET extra_float_digits = 3" Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:873 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: SimpleForwardToFrontend: packet:1 length:0 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:792 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: session context: setting command success. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:741 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:35:46 otp3 pgpool[2871]: [329-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool[2871]: [330-1] 2016-06-06 09:35:46: pid 2871: DEBUG: reading backend data packet kind Jun 6 09:35:46 otp3 pgpool[2871]: [330-2] 2016-06-06 09:35:46: pid 2871: DETAIL: backend:0 of 2 kind = 'Z' Jun 6 09:35:46 otp3 pgpool[2871]: [330-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:3349 Jun 6 09:35:46 otp3 pgpool[2871]: [331-1] 2016-06-06 09:35:46: pid 2871: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:35:46 otp3 pgpool[2871]: [331-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:3365 Jun 6 09:35:46 otp3 pgpool[2871]: [332-1] 2016-06-06 09:35:46: pid 2871: DEBUG: processing backend response Jun 6 09:35:46 otp3 pgpool[2871]: [332-2] 2016-06-06 09:35:46: pid 2871: DETAIL: received kind 'Z'(5a) from backend Jun 6 09:35:46 otp3 pgpool[2871]: [332-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_proto_modules.c:2424 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: reading backend data packet kind Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: backend:0 of 2 kind = 'Z' Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:3349 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:35:46 otp3 pgpool[2871]: [333-1] 2016-06-06 09:35:46: pid 2871: DEBUG: processing backend response Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:3365 Jun 6 09:35:46 otp3 pgpool[2871]: [333-2] 2016-06-06 09:35:46: pid 2871: DETAIL: Ready For Query received Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: processing backend response Jun 6 09:35:46 otp3 pgpool[2871]: [333-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_proto_modules.c:2442 Jun 6 09:35:46 otp3 pgpool[2871]: [334-1] 2016-06-06 09:35:46: pid 2871: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:35:46 otp3 pgpool[2871]: [334-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:310 Jun 6 09:35:46 otp3 pgpool[2871]: [335-1] 2016-06-06 09:35:46: pid 2871: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool[2871]: [335-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: received kind 'Z'(5a) from backend Jun 6 09:35:46 otp3 pgpool[2871]: [336-1] 2016-06-06 09:35:46: pid 2871: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool[2871]: [336-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_proto_modules.c:2424 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: processing backend response Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: Ready For Query received Jun 6 09:35:46 otp3 pgpool[2871]: [337-1] 2016-06-06 09:35:46: pid 2871: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool[2871]: [337-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_proto_modules.c:2442 Jun 6 09:35:46 otp3 pgpool[2871]: [338-1] 2016-06-06 09:35:46: pid 2871: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2871]: [338-2] 2016-06-06 09:35:46: pid 2871: DETAIL: slot: 0 length: 5 Jun 6 09:35:46 otp3 pgpool[2871]: [338-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_auth.c:1107 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:310 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool[2871]: [339-1] 2016-06-06 09:35:46: pid 2871: DEBUG: processing ReadyForQuery Jun 6 09:35:46 otp3 pgpool[2871]: [339-2] 2016-06-06 09:35:46: pid 2871: DETAIL: transaction state 'I'(49) Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool[2871]: [339-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_proto_modules.c:1612 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool[2871]: [340-1] 2016-06-06 09:35:46: pid 2871: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:46 otp3 pgpool[2871]: [340-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:219 Jun 6 09:35:46 otp3 pgpool[2873]: [256-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:35:46 otp3 pgpool[2873]: [257-1] 2016-06-06 09:35:46: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:35:46 otp3 pgpool[2873]: [257-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:35:46 otp3 pgpool[2873]: [258-1] 2016-06-06 09:35:46: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:35:46 otp3 pgpool[2873]: [258-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: slot: 0 length: 5 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_auth.c:1107 Jun 6 09:35:46 otp3 pgpool[2873]: [259-1] 2016-06-06 09:35:46: pid 2873: DEBUG: Bind: checking strict query Jun 6 09:35:46 otp3 pgpool[2873]: [259-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_proto_modules.c:1211 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: processing ReadyForQuery Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: transaction state 'I'(49) Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_proto_modules.c:1612 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:46 otp3 pgpool[2873]: [260-1] 2016-06-06 09:35:46: pid 2873: DEBUG: Bind: checking insert lock Jun 6 09:35:46 otp3 pgpool[2873]: [260-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_proto_modules.c:1221 Jun 6 09:35:46 otp3 pgpool[2873]: [261-1] 2016-06-06 09:35:46: pid 2873: DEBUG: Bind: waiting for master completing the query Jun 6 09:35:46 otp3 pgpool[2873]: [261-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_proto_modules.c:1237 Jun 6 09:35:46 otp3 pgpool[2873]: [262-1] 2016-06-06 09:35:46: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:35:46 otp3 pgpool[2873]: [262-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:35:46 otp3 pgpool[2873]: [263-1] 2016-06-06 09:35:46: pid 2873: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:35:46 otp3 pgpool[2873]: [263-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_query_context.c:854 Jun 6 09:35:46 otp3 pgpool[2873]: [264-1] 2016-06-06 09:35:46: pid 2873: DEBUG: pool_write: to backend: kind:B Jun 6 09:35:46 otp3 pgpool[2873]: [264-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool[2873]: [265-1] 2016-06-06 09:35:46: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:35:46 otp3 pgpool[2873]: [265-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool[2873]: [266-1] 2016-06-06 09:35:46: pid 2873: DEBUG: waiting for query response Jun 6 09:35:46 otp3 pgpool[2873]: [266-2] 2016-06-06 09:35:46: pid 2873: DETAIL: waiting for backend:0 to complete the query Jun 6 09:35:46 otp3 pgpool[2873]: [266-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:479 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:219 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: processing frontend response Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: received kind 'B'(42) from frontend Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: Bind: checking strict query Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_proto_modules.c:1211 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: Bind: checking insert lock Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_proto_modules.c:1221 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: Bind: waiting for master completing the query Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_proto_modules.c:1237 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_query_context.c:854 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: pool_write: to backend: kind:B Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: waiting for query response Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: waiting for backend:0 to complete the query Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:479 Jun 6 09:35:46 otp3 pgpool[2873]: [267-1] 2016-06-06 09:35:46: pid 2873: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:35:46 otp3 pgpool[2873]: [267-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool[2873]: [268-1] 2016-06-06 09:35:46: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool[2873]: [268-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool[2873]: [269-1] 2016-06-06 09:35:46: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:35:46 otp3 pgpool[2873]: [269-2] 2016-06-06 09:35:46: pid 2873: DETAIL: backend:0 of 2 kind = '2' Jun 6 09:35:46 otp3 pgpool[2873]: [269-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool[2873]: [270-1] 2016-06-06 09:35:46: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:35:46 otp3 pgpool[2873]: [270-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: backend:0 of 2 kind = '2' Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:35:46 otp3 pgpool[2873]: [271-1] 2016-06-06 09:35:46: pid 2873: DEBUG: processing backend response Jun 6 09:35:46 otp3 pgpool[2873]: [271-2] 2016-06-06 09:35:46: pid 2873: DETAIL: received kind '2'(32) from backend Jun 6 09:35:46 otp3 pgpool[2873]: [271-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: processing backend response Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: received kind '2'(32) from backend Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:35:46 otp3 pgpool[2873]: [272-1] 2016-06-06 09:35:46: pid 2873: DEBUG: called by pool_add_sent_message: sent message: address: 2406c80 kind: B name: == Jun 6 09:35:46 otp3 pgpool[2873]: [272-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:436 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: called by pool_add_sent_message: sent message: address: 2406c80 kind: B name: == Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:436 Jun 6 09:35:46 otp3 pgpool[2873]: [273-1] 2016-06-06 09:35:46: pid 2873: DEBUG: adding sent message to list Jun 6 09:35:46 otp3 pgpool[2873]: [273-2] 2016-06-06 09:35:46: pid 2873: DETAIL: portal "" already exists Jun 6 09:35:46 otp3 pgpool[2873]: [273-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:512 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: adding sent message to list Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: portal "" already exists Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:512 Jun 6 09:35:46 otp3 pgpool[2873]: [274-1] 2016-06-06 09:35:46: pid 2873: DEBUG: called by pool_sent_message_destroy: sent message: address: 2406d18 kind: B name: == Jun 6 09:35:46 otp3 pgpool[2873]: [274-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:436 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: called by pool_sent_message_destroy: sent message: address: 2406d18 kind: B name: == Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:436 Jun 6 09:35:46 otp3 pgpool[2873]: [275-1] 2016-06-06 09:35:46: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:46 otp3 pgpool[2873]: [275-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:35:46 otp3 pgpool[2873]: [276-1] 2016-06-06 09:35:46: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:35:46 otp3 pgpool[2873]: [276-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:35:46 otp3 pgpool[2873]: [277-1] 2016-06-06 09:35:46: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool[2873]: [277-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool[2873]: [278-1] 2016-06-06 09:35:46: pid 2873: DEBUG: SimpleForwardToFrontend: packet:2 length:0 Jun 6 09:35:46 otp3 pgpool[2873]: [278-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:792 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: SimpleForwardToFrontend: packet:2 length:0 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:792 Jun 6 09:35:46 otp3 pgpool[2873]: [279-1] 2016-06-06 09:35:46: pid 2873: DEBUG: session context: setting command success. DONE Jun 6 09:35:46 otp3 pgpool[2873]: [279-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:741 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: session context: setting command success. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:741 Jun 6 09:35:46 otp3 pgpool[2873]: [280-1] 2016-06-06 09:35:46: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:46 otp3 pgpool[2873]: [280-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:35:46 otp3 pgpool[2873]: [281-1] 2016-06-06 09:35:46: pid 2873: DEBUG: processing frontend response Jun 6 09:35:46 otp3 pgpool[2873]: [281-2] 2016-06-06 09:35:46: pid 2873: DETAIL: received kind 'D'(44) from frontend Jun 6 09:35:46 otp3 pgpool[2873]: [281-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: processing frontend response Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: received kind 'D'(44) from frontend Jun 6 09:35:46 otp3 pgpool[2873]: [282-1] 2016-06-06 09:35:46: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:35:46 otp3 pgpool[2873]: [282-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:35:46 otp3 pgpool[2873]: [283-1] 2016-06-06 09:35:46: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:35:46 otp3 pgpool[2873]: [283-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:35:46 otp3 pgpool[2873]: [284-1] 2016-06-06 09:35:46: pid 2873: DEBUG: Describe: waiting for master completing the query Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:35:46 otp3 pgpool[2873]: [284-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_proto_modules.c:1310 Jun 6 09:35:46 otp3 pgpool[2873]: [285-1] 2016-06-06 09:35:46: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:35:46 otp3 pgpool[2873]: [285-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:35:46 otp3 pgpool[2873]: [286-1] 2016-06-06 09:35:46: pid 2873: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:35:46 otp3 pgpool[2873]: [286-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_query_context.c:854 Jun 6 09:35:46 otp3 pgpool[2873]: [287-1] 2016-06-06 09:35:46: pid 2873: DEBUG: pool_write: to backend: kind:D Jun 6 09:35:46 otp3 pgpool[2873]: [287-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool[2873]: [288-1] 2016-06-06 09:35:46: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:35:46 otp3 pgpool[2873]: [288-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool[2873]: [289-1] 2016-06-06 09:35:46: pid 2873: DEBUG: waiting for query response Jun 6 09:35:46 otp3 pgpool[2873]: [289-2] 2016-06-06 09:35:46: pid 2873: DETAIL: waiting for backend:0 to complete the query Jun 6 09:35:46 otp3 pgpool[2873]: [289-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:479 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: Describe: waiting for master completing the query Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_proto_modules.c:1310 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_query_context.c:854 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: pool_write: to backend: kind:D Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: waiting for query response Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: waiting for backend:0 to complete the query Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:479 Jun 6 09:35:46 otp3 pgpool[2873]: [290-1] 2016-06-06 09:35:46: pid 2873: DEBUG: pool_read: read 130 bytes from backend 0 Jun 6 09:35:46 otp3 pgpool[2873]: [290-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: pool_read: read 130 bytes from backend 0 Jun 6 09:35:46 otp3 pgpool[2873]: [291-1] 2016-06-06 09:35:46: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool[2873]: [291-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool[2873]: [292-1] 2016-06-06 09:35:46: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:35:46 otp3 pgpool[2873]: [292-2] 2016-06-06 09:35:46: pid 2873: DETAIL: backend:0 of 2 kind = 'T' Jun 6 09:35:46 otp3 pgpool[2873]: [292-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:35:46 otp3 pgpool[2873]: [293-1] 2016-06-06 09:35:46: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: backend:0 of 2 kind = 'T' Jun 6 09:35:46 otp3 pgpool[2873]: [293-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:35:46 otp3 pgpool[2873]: [294-1] 2016-06-06 09:35:46: pid 2873: DEBUG: processing backend response Jun 6 09:35:46 otp3 pgpool[2873]: [294-2] 2016-06-06 09:35:46: pid 2873: DETAIL: received kind 'T'(54) from backend Jun 6 09:35:46 otp3 pgpool[2873]: [294-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:35:46 otp3 pgpool[2873]: [295-1] 2016-06-06 09:35:46: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: processing backend response Jun 6 09:35:46 otp3 pgpool[2873]: [295-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: received kind 'T'(54) from backend Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool[2873]: [296-1] 2016-06-06 09:35:46: pid 2873: DEBUG: SimpleForwardToFrontend: packet:T length:125 Jun 6 09:35:46 otp3 pgpool[2873]: [296-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:792 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: SimpleForwardToFrontend: packet:T length:125 Jun 6 09:35:46 otp3 pgpool[2873]: [297-1] 2016-06-06 09:35:46: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:792 Jun 6 09:35:46 otp3 pgpool[2873]: [297-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:35:46 otp3 pgpool[2873]: [298-1] 2016-06-06 09:35:46: pid 2873: DEBUG: processing frontend response Jun 6 09:35:46 otp3 pgpool[2873]: [298-2] 2016-06-06 09:35:46: pid 2873: DETAIL: received kind 'E'(45) from frontend Jun 6 09:35:46 otp3 pgpool[2873]: [298-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: processing frontend response Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: received kind 'E'(45) from frontend Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:35:46 otp3 pgpool[2873]: [299-1] 2016-06-06 09:35:46: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:35:46 otp3 pgpool[2873]: [299-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:35:46 otp3 pgpool[2873]: [300-1] 2016-06-06 09:35:46: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:35:46 otp3 pgpool[2873]: [300-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:35:46 otp3 pgpool[2873]: [301-1] 2016-06-06 09:35:46: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:35:46 otp3 pgpool[2873]: [301-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:35:46 otp3 pgpool[2873]: [302-1] 2016-06-06 09:35:46: pid 2873: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:35:46 otp3 pgpool[2873]: [302-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_query_context.c:854 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_query_context.c:854 Jun 6 09:35:46 otp3 pgpool[2873]: [303-1] 2016-06-06 09:35:46: pid 2873: DEBUG: pool_write: to backend: kind:E Jun 6 09:35:46 otp3 pgpool[2873]: [303-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool[2873]: [304-1] 2016-06-06 09:35:46: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:35:46 otp3 pgpool[2873]: [304-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool[2873]: [305-1] 2016-06-06 09:35:46: pid 2873: DEBUG: waiting for query response Jun 6 09:35:46 otp3 pgpool[2873]: [305-2] 2016-06-06 09:35:46: pid 2873: DETAIL: waiting for backend:0 to complete the query Jun 6 09:35:46 otp3 pgpool[2873]: [305-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:479 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: pool_write: to backend: kind:E Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: waiting for query response Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: waiting for backend:0 to complete the query Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:479 Jun 6 09:35:46 otp3 pgpool[2873]: [306-1] 2016-06-06 09:35:46: pid 2873: DEBUG: pool_read: read 59 bytes from backend 0 Jun 6 09:35:46 otp3 pgpool[2873]: [306-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool[2873]: [307-1] 2016-06-06 09:35:46: pid 2873: DEBUG: detect error: kind: D Jun 6 09:35:46 otp3 pgpool[2873]: [307-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: pool_read: read 59 bytes from backend 0 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: detect error: kind: D Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:35:46 otp3 pgpool[2873]: [308-1] 2016-06-06 09:35:46: pid 2873: DEBUG: detect error: kind: D Jun 6 09:35:46 otp3 pgpool[2873]: [308-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: detect error: kind: D Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:35:46 otp3 pgpool[2873]: [309-1] 2016-06-06 09:35:46: pid 2873: DEBUG: detect error: kind: D Jun 6 09:35:46 otp3 pgpool[2873]: [309-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: detect error: kind: D Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:35:46 otp3 pgpool[2873]: [310-1] 2016-06-06 09:35:46: pid 2873: DEBUG: detect error: kind: D Jun 6 09:35:46 otp3 pgpool[2873]: [310-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: detect error: kind: D Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:35:46 otp3 pgpool[2873]: [311-1] 2016-06-06 09:35:46: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool[2873]: [311-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool[2873]: [312-1] 2016-06-06 09:35:46: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:35:46 otp3 pgpool[2873]: [312-2] 2016-06-06 09:35:46: pid 2873: DETAIL: backend:0 of 2 kind = 'D' Jun 6 09:35:46 otp3 pgpool[2873]: [312-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: backend:0 of 2 kind = 'D' Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:35:46 otp3 pgpool[2873]: [313-1] 2016-06-06 09:35:46: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:35:46 otp3 pgpool[2873]: [313-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:35:46 otp3 pgpool[2873]: [314-1] 2016-06-06 09:35:46: pid 2873: DEBUG: processing backend response Jun 6 09:35:46 otp3 pgpool[2873]: [314-2] 2016-06-06 09:35:46: pid 2873: DETAIL: received kind 'D'(44) from backend Jun 6 09:35:46 otp3 pgpool[2873]: [314-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: processing backend response Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: received kind 'D'(44) from backend Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:35:46 otp3 pgpool[2873]: [315-1] 2016-06-06 09:35:46: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool[2873]: [315-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool[2873]: [316-1] 2016-06-06 09:35:46: pid 2873: DEBUG: SimpleForwardToFrontend: packet:D length:40 Jun 6 09:35:46 otp3 pgpool[2873]: [316-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:792 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: SimpleForwardToFrontend: packet:D length:40 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:792 Jun 6 09:35:46 otp3 pgpool[2873]: [317-1] 2016-06-06 09:35:46: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool[2873]: [317-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool[2873]: [318-1] 2016-06-06 09:35:46: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool[2873]: [318-2] 2016-06-06 09:35:46: pid 2873: DETAIL: backend:0 of 2 kind = 'C' Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool[2873]: [318-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:35:46 otp3 pgpool[2873]: [319-1] 2016-06-06 09:35:46: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:35:46 otp3 pgpool[2873]: [319-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:35:46 otp3 pgpool[2873]: [320-1] 2016-06-06 09:35:46: pid 2873: DEBUG: processing backend response Jun 6 09:35:46 otp3 pgpool[2873]: [320-2] 2016-06-06 09:35:46: pid 2873: DETAIL: received kind 'C'(43) from backend Jun 6 09:35:46 otp3 pgpool[2873]: [320-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: backend:0 of 2 kind = 'C' Jun 6 09:35:46 otp3 pgpool[2873]: [321-1] 2016-06-06 09:35:46: pid 2873: DEBUG: session context: setting command success. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:35:46 otp3 pgpool[2873]: [321-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:741 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: processing backend response Jun 6 09:35:46 otp3 pgpool[2873]: [322-1] 2016-06-06 09:35:46: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:46 otp3 pgpool[2873]: [322-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: received kind 'C'(43) from backend Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: session context: setting command success. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:741 Jun 6 09:35:46 otp3 pgpool[2873]: [323-1] 2016-06-06 09:35:46: pid 2873: DEBUG: processing frontend response Jun 6 09:35:46 otp3 pgpool[2873]: [323-2] 2016-06-06 09:35:46: pid 2873: DETAIL: received kind 'S'(53) from frontend Jun 6 09:35:46 otp3 pgpool[2873]: [323-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:46 otp3 pgpool[2873]: [324-1] 2016-06-06 09:35:46: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:35:46 otp3 pgpool[2873]: [324-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:35:46 otp3 pgpool[2873]: [325-1] 2016-06-06 09:35:46: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:35:46 otp3 pgpool[2873]: [325-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:35:46 otp3 pgpool[2873]: [326-1] 2016-06-06 09:35:46: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:35:46 otp3 pgpool[2873]: [326-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:35:46 otp3 pgpool[2873]: [327-1] 2016-06-06 09:35:46: pid 2873: DEBUG: pool_write: to backend: kind:S Jun 6 09:35:46 otp3 pgpool[2873]: [327-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool[2873]: [328-1] 2016-06-06 09:35:46: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool[2873]: [328-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: processing frontend response Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: received kind 'S'(53) from frontend Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: pool_write: to backend: kind:S Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool[2873]: [329-1] 2016-06-06 09:35:46: pid 2873: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:35:46 otp3 pgpool[2873]: [329-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool[2873]: [330-1] 2016-06-06 09:35:46: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:35:46 otp3 pgpool[2873]: [330-2] 2016-06-06 09:35:46: pid 2873: DETAIL: backend:0 of 2 kind = 'Z' Jun 6 09:35:46 otp3 pgpool[2873]: [330-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: backend:0 of 2 kind = 'Z' Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:35:46 otp3 pgpool[2873]: [331-1] 2016-06-06 09:35:46: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:35:46 otp3 pgpool[2873]: [331-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:35:46 otp3 pgpool[2873]: [332-1] 2016-06-06 09:35:46: pid 2873: DEBUG: processing backend response Jun 6 09:35:46 otp3 pgpool[2873]: [332-2] 2016-06-06 09:35:46: pid 2873: DETAIL: received kind 'Z'(5a) from backend Jun 6 09:35:46 otp3 pgpool[2873]: [332-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:35:46 otp3 pgpool[2873]: [333-1] 2016-06-06 09:35:46: pid 2873: DEBUG: processing backend response Jun 6 09:35:46 otp3 pgpool[2873]: [333-2] 2016-06-06 09:35:46: pid 2873: DETAIL: Ready For Query received Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: processing backend response Jun 6 09:35:46 otp3 pgpool[2873]: [333-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_proto_modules.c:2442 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: received kind 'Z'(5a) from backend Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: processing backend response Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: Ready For Query received Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_proto_modules.c:2442 Jun 6 09:35:46 otp3 pgpool[2873]: [334-1] 2016-06-06 09:35:46: pid 2873: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:35:46 otp3 pgpool[2873]: [334-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:310 Jun 6 09:35:46 otp3 pgpool[2873]: [335-1] 2016-06-06 09:35:46: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool[2873]: [335-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:35:46 otp3 pgpool[2873]: [336-1] 2016-06-06 09:35:46: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:310 Jun 6 09:35:46 otp3 pgpool[2873]: [336-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool[2873]: [337-1] 2016-06-06 09:35:46: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool[2873]: [337-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool[2873]: [338-1] 2016-06-06 09:35:46: pid 2873: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2873]: [338-2] 2016-06-06 09:35:46: pid 2873: DETAIL: slot: 0 length: 5 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool[2873]: [338-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_auth.c:1107 Jun 6 09:35:46 otp3 pgpool[2873]: [339-1] 2016-06-06 09:35:46: pid 2873: DEBUG: processing ReadyForQuery Jun 6 09:35:46 otp3 pgpool[2873]: [339-2] 2016-06-06 09:35:46: pid 2873: DETAIL: transaction state 'I'(49) Jun 6 09:35:46 otp3 pgpool[2873]: [339-3] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_proto_modules.c:1612 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: slot: 0 length: 5 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_auth.c:1107 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: processing ReadyForQuery Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DETAIL: transaction state 'I'(49) Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_proto_modules.c:1612 Jun 6 09:35:46 otp3 pgpool[2873]: [340-1] 2016-06-06 09:35:46: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:46 otp3 pgpool[2873]: [340-2] 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:35:46 otp3 pgpool[2871]: [341-1] 2016-06-06 09:35:46: pid 2871: DEBUG: processing frontend response Jun 6 09:35:46 otp3 pgpool[2871]: [341-2] 2016-06-06 09:35:46: pid 2871: DETAIL: received kind 'X'(58) from frontend Jun 6 09:35:46 otp3 pgpool[2871]: [341-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_proto_modules.c:2188 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: processing frontend response Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: received kind 'X'(58) from frontend Jun 6 09:35:46 otp3 pgpool[2871]: [342-1] 2016-06-06 09:35:46: pid 2871: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_proto_modules.c:2188 Jun 6 09:35:46 otp3 pgpool[2871]: [342-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:280 Jun 6 09:35:46 otp3 pgpool[2871]: [343-1] 2016-06-06 09:35:46: pid 2871: DEBUG: Frontend terminated Jun 6 09:35:46 otp3 pgpool[2871]: [343-2] 2016-06-06 09:35:46: pid 2871: DETAIL: received message kind 'X' from frontend Jun 6 09:35:46 otp3 pgpool[2871]: [343-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_proto_modules.c:2263 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:280 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: Frontend terminated Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: received message kind 'X' from frontend Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_proto_modules.c:2263 Jun 6 09:35:46 otp3 pgpool[2871]: [344-1] 2016-06-06 09:35:46: pid 2871: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:35:46 otp3 pgpool[2871]: [344-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:280 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:280 Jun 6 09:35:46 otp3 pgpool[2871]: [345-1] 2016-06-06 09:35:46: pid 2871: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:46 otp3 pgpool[2871]: [345-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:219 Jun 6 09:35:46 otp3 pgpool[2871]: [346-1] 2016-06-06 09:35:46: pid 2871: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:35:46 otp3 pgpool[2871]: [346-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:280 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:219 Jun 6 09:35:46 otp3 pgpool[2871]: [347-1] 2016-06-06 09:35:46: pid 2871: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:46 otp3 pgpool[2871]: [347-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:219 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:280 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:46 otp3 pgpool[2871]: [348-1] 2016-06-06 09:35:46: pid 2871: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:219 Jun 6 09:35:46 otp3 pgpool[2871]: [348-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:219 Jun 6 09:35:46 otp3 pgpool[2871]: [349-1] 2016-06-06 09:35:46: pid 2871: DEBUG: session context: setting query in progress. DONE Jun 6 09:35:46 otp3 pgpool[2871]: [349-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:208 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:219 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: session context: setting query in progress. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:208 Jun 6 09:35:46 otp3 pgpool[2871]: [350-1] 2016-06-06 09:35:46: pid 2871: DEBUG: pool_write: to backend: kind:Q Jun 6 09:35:46 otp3 pgpool[2871]: [350-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool[2871]: [351-1] 2016-06-06 09:35:46: pid 2871: DEBUG: waiting for query response Jun 6 09:35:46 otp3 pgpool[2871]: [351-2] 2016-06-06 09:35:46: pid 2871: DETAIL: waiting for backend:0 to complete the query Jun 6 09:35:46 otp3 pgpool[2871]: [351-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:479 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: pool_write: to backend: kind:Q Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: waiting for query response Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: waiting for backend:0 to complete the query Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:479 Jun 6 09:35:46 otp3 pgpool[2871]: [352-1] 2016-06-06 09:35:46: pid 2871: DEBUG: pool_read: read 84 bytes from backend 0 Jun 6 09:35:46 otp3 pgpool[2871]: [352-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: pool_read: read 84 bytes from backend 0 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool[2871]: [353-1] 2016-06-06 09:35:46: pid 2871: DEBUG: detect error: kind: S Jun 6 09:35:46 otp3 pgpool[2871]: [353-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:4166 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: detect error: kind: S Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:4166 Jun 6 09:35:46 otp3 pgpool[2871]: [354-1] 2016-06-06 09:35:46: pid 2871: DEBUG: detect error: kind: S Jun 6 09:35:46 otp3 pgpool[2871]: [354-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:4166 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: detect error: kind: S Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:4166 Jun 6 09:35:46 otp3 pgpool[2871]: [355-1] 2016-06-06 09:35:46: pid 2871: DEBUG: detect error: kind: S Jun 6 09:35:46 otp3 pgpool[2871]: [355-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:4166 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: detect error: kind: S Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:4166 Jun 6 09:35:46 otp3 pgpool[2871]: [356-1] 2016-06-06 09:35:46: pid 2871: DEBUG: detect error: kind: S Jun 6 09:35:46 otp3 pgpool[2871]: [356-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:4166 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: detect error: kind: S Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:4166 Jun 6 09:35:46 otp3 pgpool[2871]: [357-1] 2016-06-06 09:35:46: pid 2871: DEBUG: pool_write: to backend: kind:Q Jun 6 09:35:46 otp3 pgpool[2871]: [357-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: pool_write: to backend: kind:Q Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool[2871]: [358-1] 2016-06-06 09:35:46: pid 2871: DEBUG: waiting for query response Jun 6 09:35:46 otp3 pgpool[2871]: [358-2] 2016-06-06 09:35:46: pid 2871: DETAIL: waiting for backend:1 to complete the query Jun 6 09:35:46 otp3 pgpool[2871]: [358-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:479 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: waiting for query response Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: waiting for backend:1 to complete the query Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:479 Jun 6 09:35:46 otp3 pgpool[2871]: [359-1] 2016-06-06 09:35:46: pid 2871: DEBUG: pool_read: read 84 bytes from backend 1 Jun 6 09:35:46 otp3 pgpool[2871]: [359-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: pool_read: read 84 bytes from backend 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool[2871]: [360-1] 2016-06-06 09:35:46: pid 2871: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 0 Jun 6 09:35:46 otp3 pgpool[2871]: [360-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 0 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool[2871]: [361-1] 2016-06-06 09:35:46: pid 2871: DEBUG: reading backend data packet kind Jun 6 09:35:46 otp3 pgpool[2871]: [361-2] 2016-06-06 09:35:46: pid 2871: DETAIL: parameter name: is_superuser value: "off" Jun 6 09:35:46 otp3 pgpool[2871]: [361-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:3326 Jun 6 09:35:46 otp3 pgpool[2871]: [362-1] 2016-06-06 09:35:46: pid 2871: DEBUG: reading backend data packet kind Jun 6 09:35:46 otp3 pgpool[2871]: [362-2] 2016-06-06 09:35:46: pid 2871: DETAIL: parameter name: session_authorization value: "sparrowdesk" Jun 6 09:35:46 otp3 pgpool[2871]: [362-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:3326 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: reading backend data packet kind Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: parameter name: is_superuser value: "off" Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:3326 Jun 6 09:35:46 otp3 pgpool[2871]: [363-1] 2016-06-06 09:35:46: pid 2871: DEBUG: reading backend data packet kind Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: reading backend data packet kind Jun 6 09:35:46 otp3 pgpool[2871]: [363-2] 2016-06-06 09:35:46: pid 2871: DETAIL: backend:0 of 2 kind = 'C' Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: parameter name: session_authorization value: "sparrowdesk" Jun 6 09:35:46 otp3 pgpool[2871]: [363-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:3349 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:3326 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: reading backend data packet kind Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: backend:0 of 2 kind = 'C' Jun 6 09:35:46 otp3 pgpool[2871]: [364-1] 2016-06-06 09:35:46: pid 2871: DEBUG: reading backend data packet kind Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:3349 Jun 6 09:35:46 otp3 pgpool[2871]: [364-2] 2016-06-06 09:35:46: pid 2871: DETAIL: parameter name: is_superuser value: "off" Jun 6 09:35:46 otp3 pgpool[2871]: [364-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:3326 Jun 6 09:35:46 otp3 pgpool[2871]: [365-1] 2016-06-06 09:35:46: pid 2871: DEBUG: reading backend data packet kind Jun 6 09:35:46 otp3 pgpool[2871]: [365-2] 2016-06-06 09:35:46: pid 2871: DETAIL: parameter name: session_authorization value: "sparrowdesk" Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: reading backend data packet kind Jun 6 09:35:46 otp3 pgpool[2871]: [365-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:3326 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: parameter name: is_superuser value: "off" Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:3326 Jun 6 09:35:46 otp3 pgpool[2871]: [366-1] 2016-06-06 09:35:46: pid 2871: DEBUG: reading backend data packet kind Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: reading backend data packet kind Jun 6 09:35:46 otp3 pgpool[2871]: [366-2] 2016-06-06 09:35:46: pid 2871: DETAIL: backend:1 of 2 kind = 'C' Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: parameter name: session_authorization value: "sparrowdesk" Jun 6 09:35:46 otp3 pgpool[2871]: [366-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:3349 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:3326 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: reading backend data packet kind Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: backend:1 of 2 kind = 'C' Jun 6 09:35:46 otp3 pgpool[2871]: [367-1] 2016-06-06 09:35:46: pid 2871: DEBUG: read_kind_from_backend max_count:2.000000 num_executed_nodes:2 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:3349 Jun 6 09:35:46 otp3 pgpool[2871]: [367-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:3365 Jun 6 09:35:46 otp3 pgpool[2871]: [368-1] 2016-06-06 09:35:46: pid 2871: DEBUG: processing backend response Jun 6 09:35:46 otp3 pgpool[2871]: [368-2] 2016-06-06 09:35:46: pid 2871: DETAIL: received kind 'C'(43) from backend Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: read_kind_from_backend max_count:2.000000 num_executed_nodes:2 Jun 6 09:35:46 otp3 pgpool[2871]: [368-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_proto_modules.c:2424 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:3365 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: processing backend response Jun 6 09:35:46 otp3 pgpool[2871]: [369-1] 2016-06-06 09:35:46: pid 2871: DEBUG: called by pool_sent_message_destroy: sent message: address: 2406d98 kind: P name: == Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: received kind 'C'(43) from backend Jun 6 09:35:46 otp3 pgpool[2871]: [369-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:436 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_proto_modules.c:2424 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: called by pool_sent_message_destroy: sent message: address: 2406d98 kind: P name: == Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:436 Jun 6 09:35:46 otp3 pgpool[2871]: [370-1] 2016-06-06 09:35:46: pid 2871: DEBUG: checking if query context can be safely destroyed Jun 6 09:35:46 otp3 pgpool[2871]: [370-2] 2016-06-06 09:35:46: pid 2871: DETAIL: query context 0x802482830 is still used 2 times. query:"SELECT 1" Jun 6 09:35:46 otp3 pgpool[2871]: [370-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:873 Jun 6 09:35:46 otp3 pgpool[2871]: [371-1] 2016-06-06 09:35:46: pid 2871: DEBUG: called by pool_sent_message_destroy: sent message: address: 2406c80 kind: B name: == Jun 6 09:35:46 otp3 pgpool[2871]: [371-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:436 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: checking if query context can be safely destroyed Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: query context 0x802482830 is still used 2 times. query:"SELECT 1" Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:873 Jun 6 09:35:46 otp3 pgpool[2871]: [372-1] 2016-06-06 09:35:46: pid 2871: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:46 otp3 pgpool[2871]: [372-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:219 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: called by pool_sent_message_destroy: sent message: address: 2406c80 kind: B name: == Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:436 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:46 otp3 pgpool[2871]: [373-1] 2016-06-06 09:35:46: pid 2871: DEBUG: session context: setting query in progress. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:219 Jun 6 09:35:46 otp3 pgpool[2871]: [373-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:208 Jun 6 09:35:46 otp3 pgpool[2871]: [374-1] 2016-06-06 09:35:46: pid 2871: DEBUG: session context: setting command success. DONE Jun 6 09:35:46 otp3 pgpool[2871]: [374-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:741 Jun 6 09:35:46 otp3 pgpool[2871]: [375-1] 2016-06-06 09:35:46: pid 2871: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 0 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: session context: setting query in progress. DONE Jun 6 09:35:46 otp3 pgpool[2871]: [375-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:208 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: session context: setting command success. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:741 Jun 6 09:35:46 otp3 pgpool[2871]: [376-1] 2016-06-06 09:35:46: pid 2871: DEBUG: reading backend data packet kind Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 0 Jun 6 09:35:46 otp3 pgpool[2871]: [376-2] 2016-06-06 09:35:46: pid 2871: DETAIL: backend:0 of 2 kind = 'Z' Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool[2871]: [376-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:3349 Jun 6 09:35:46 otp3 pgpool[2871]: [377-1] 2016-06-06 09:35:46: pid 2871: DEBUG: reading backend data packet kind Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: reading backend data packet kind Jun 6 09:35:46 otp3 pgpool[2871]: [377-2] 2016-06-06 09:35:46: pid 2871: DETAIL: backend:1 of 2 kind = 'Z' Jun 6 09:35:46 otp3 pgpool[2871]: [377-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:3349 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: backend:0 of 2 kind = 'Z' Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:3349 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: reading backend data packet kind Jun 6 09:35:46 otp3 pgpool[2871]: [378-1] 2016-06-06 09:35:46: pid 2871: DEBUG: read_kind_from_backend max_count:2.000000 num_executed_nodes:2 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: backend:1 of 2 kind = 'Z' Jun 6 09:35:46 otp3 pgpool[2871]: [378-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:3365 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:3349 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: read_kind_from_backend max_count:2.000000 num_executed_nodes:2 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_process_query.c:3365 Jun 6 09:35:46 otp3 pgpool[2871]: [379-1] 2016-06-06 09:35:46: pid 2871: DEBUG: processing backend response Jun 6 09:35:46 otp3 pgpool[2871]: [379-2] 2016-06-06 09:35:46: pid 2871: DETAIL: received kind 'Z'(5a) from backend Jun 6 09:35:46 otp3 pgpool[2871]: [379-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_proto_modules.c:2424 Jun 6 09:35:46 otp3 pgpool[2871]: [380-1] 2016-06-06 09:35:46: pid 2871: DEBUG: processing backend response Jun 6 09:35:46 otp3 pgpool[2871]: [380-2] 2016-06-06 09:35:46: pid 2871: DETAIL: Ready For Query received Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: processing backend response Jun 6 09:35:46 otp3 pgpool[2871]: [380-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_proto_modules.c:2442 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: received kind 'Z'(5a) from backend Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_proto_modules.c:2424 Jun 6 09:35:46 otp3 pgpool[2871]: [381-1] 2016-06-06 09:35:46: pid 2871: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: processing backend response Jun 6 09:35:46 otp3 pgpool[2871]: [381-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:310 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: Ready For Query received Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_proto_modules.c:2442 Jun 6 09:35:46 otp3 pgpool[2871]: [382-1] 2016-06-06 09:35:46: pid 2871: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 0 Jun 6 09:35:46 otp3 pgpool[2871]: [382-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool[2871]: [383-1] 2016-06-06 09:35:46: pid 2871: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 0 Jun 6 09:35:46 otp3 pgpool[2871]: [383-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool[2871]: [384-1] 2016-06-06 09:35:46: pid 2871: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 0 Jun 6 09:35:46 otp3 pgpool[2871]: [384-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool[2871]: [385-1] 2016-06-06 09:35:46: pid 2871: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2871]: [385-2] 2016-06-06 09:35:46: pid 2871: DETAIL: slot: 0 length: 5 Jun 6 09:35:46 otp3 pgpool[2871]: [385-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_auth.c:1107 Jun 6 09:35:46 otp3 pgpool[2871]: [386-1] 2016-06-06 09:35:46: pid 2871: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2871]: [386-2] 2016-06-06 09:35:46: pid 2871: DETAIL: slot: 1 length: 5 Jun 6 09:35:46 otp3 pgpool[2871]: [386-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_auth.c:1126 Jun 6 09:35:46 otp3 pgpool[2871]: [387-1] 2016-06-06 09:35:46: pid 2871: DEBUG: processing ReadyForQuery Jun 6 09:35:46 otp3 pgpool[2871]: [387-2] 2016-06-06 09:35:46: pid 2871: DETAIL: transaction state 'I'(49) Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:35:46 otp3 pgpool[2871]: [387-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_proto_modules.c:1612 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:310 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 0 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool[2871]: [388-1] 2016-06-06 09:35:46: pid 2871: DEBUG: processing ReadyForQuery Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 0 Jun 6 09:35:46 otp3 pgpool[2871]: [388-2] 2016-06-06 09:35:46: pid 2871: DETAIL: transaction state 'I'(49) Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool[2871]: [388-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_proto_modules.c:1612 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 0 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2871]: [389-1] 2016-06-06 09:35:46: pid 2871: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:46 otp3 pgpool[2871]: [389-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:219 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: slot: 0 length: 5 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_auth.c:1107 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2871]: [390-1] 2016-06-06 09:35:46: pid 2871: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: slot: 1 length: 5 Jun 6 09:35:46 otp3 pgpool[2871]: [390-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:219 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_auth.c:1126 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: processing ReadyForQuery Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: transaction state 'I'(49) Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_proto_modules.c:1612 Jun 6 09:35:46 otp3 pgpool[2871]: [391-1] 2016-06-06 09:35:46: pid 2871: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: processing ReadyForQuery Jun 6 09:35:46 otp3 pgpool[2871]: [391-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:280 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: transaction state 'I'(49) Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_proto_modules.c:1612 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:46 otp3 pgpool[2871]: [392-1] 2016-06-06 09:35:46: pid 2871: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:219 Jun 6 09:35:46 otp3 pgpool[2871]: [392-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:219 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:219 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:35:46 otp3 pgpool[2871]: [393-1] 2016-06-06 09:35:46: pid 2871: DEBUG: setting backend connection close timer Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:280 Jun 6 09:35:46 otp3 pgpool[2871]: [393-2] 2016-06-06 09:35:46: pid 2871: DETAIL: close time 1465185946 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:46 otp3 pgpool[2871]: [393-3] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_connection_pool.c:329 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:219 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: setting backend connection close timer Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DETAIL: close time 1465185946 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_connection_pool.c:329 Jun 6 09:35:46 otp3 pgpool[2871]: [394-1] 2016-06-06 09:35:46: pid 2871: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:46 otp3 pgpool[2871]: [394-2] 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:219 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2871: LOCATION: pool_session_context.c:219 Jun 6 09:35:46 otp3 pgpool[2872]: [11-1] 2016-06-06 09:35:46: pid 2872: DEBUG: I am 2872 accept fd 7 Jun 6 09:35:46 otp3 pgpool[2872]: [11-2] 2016-06-06 09:35:46: pid 2872: LOCATION: child.c:2097 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: I am 2872 accept fd 7 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: child.c:2097 Jun 6 09:35:46 otp3 pgpool[2872]: [12-1] 2016-06-06 09:35:46: pid 2872: LOG: new connection received Jun 6 09:35:46 otp3 pgpool[2872]: [12-2] 2016-06-06 09:35:46: pid 2872: DETAIL: connecting host=10.200.1.64 port=29498 Jun 6 09:35:46 otp3 pgpool[2872]: [12-3] 2016-06-06 09:35:46: pid 2872: LOCATION: child.c:2110 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOG: new connection received Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DETAIL: connecting host=10.200.1.64 port=29498 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: child.c:2110 Jun 6 09:35:46 otp3 pgpool[2872]: [13-1] 2016-06-06 09:35:46: pid 2872: DEBUG: reading startup packet Jun 6 09:35:46 otp3 pgpool[2872]: [13-2] 2016-06-06 09:35:46: pid 2872: DETAIL: Protocol Major: 3 Minor: 0 database: ctl user: sparrowdesk Jun 6 09:35:46 otp3 pgpool[2872]: [13-3] 2016-06-06 09:35:46: pid 2872: LOCATION: child.c:614 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: reading startup packet Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DETAIL: Protocol Major: 3 Minor: 0 database: ctl user: sparrowdesk Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: child.c:614 Jun 6 09:35:46 otp3 pgpool[2872]: [14-1] 2016-06-06 09:35:46: pid 2872: DEBUG: creating new connection to backend Jun 6 09:35:46 otp3 pgpool[2872]: [14-2] 2016-06-06 09:35:46: pid 2872: DETAIL: connecting 0 backend Jun 6 09:35:46 otp3 pgpool[2872]: [14-3] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_connection_pool.c:830 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: creating new connection to backend Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DETAIL: connecting 0 backend Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_connection_pool.c:830 Jun 6 09:35:46 otp3 pgpool[2872]: [15-1] 2016-06-06 09:35:46: pid 2872: DEBUG: creating new connection to backend Jun 6 09:35:46 otp3 pgpool[2872]: [15-2] 2016-06-06 09:35:46: pid 2872: DETAIL: connecting 1 backend Jun 6 09:35:46 otp3 pgpool[2872]: [15-3] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_connection_pool.c:830 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: creating new connection to backend Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DETAIL: connecting 1 backend Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_connection_pool.c:830 Jun 6 09:35:46 otp3 pgpool[2872]: [16-1] 2016-06-06 09:35:46: pid 2872: DEBUG: SSL is requested but SSL support is not available Jun 6 09:35:46 otp3 pgpool[2872]: [16-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_ssl.c:333 Jun 6 09:35:46 otp3 pgpool[2872]: [17-1] 2016-06-06 09:35:46: pid 2872: DEBUG: SSL is requested but SSL support is not available Jun 6 09:35:46 otp3 pgpool[2872]: [17-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_ssl.c:333 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: SSL is requested but SSL support is not available Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_ssl.c:333 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: SSL is requested but SSL support is not available Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_ssl.c:333 Jun 6 09:35:46 otp3 pgpool[2872]: [18-1] 2016-06-06 09:35:46: pid 2872: DEBUG: pool_read: read 13 bytes from backend 0 Jun 6 09:35:46 otp3 pgpool[2872]: [18-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool[2872]: [19-1] 2016-06-06 09:35:46: pid 2872: DEBUG: pool_read: read 13 bytes from backend 1 Jun 6 09:35:46 otp3 pgpool[2872]: [19-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool[2872]: [20-1] 2016-06-06 09:35:46: pid 2872: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2872]: [20-2] 2016-06-06 09:35:46: pid 2872: DETAIL: slot: 0 length: 12 Jun 6 09:35:46 otp3 pgpool[2872]: [20-3] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_auth.c:1107 Jun 6 09:35:46 otp3 pgpool[2872]: [21-1] 2016-06-06 09:35:46: pid 2872: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2872]: [21-2] 2016-06-06 09:35:46: pid 2872: DETAIL: slot: 1 length: 12 Jun 6 09:35:46 otp3 pgpool[2872]: [21-3] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_auth.c:1126 Jun 6 09:35:46 otp3 pgpool[2872]: [22-1] 2016-06-06 09:35:46: pid 2872: DEBUG: authentication backend Jun 6 09:35:46 otp3 pgpool[2872]: [22-2] 2016-06-06 09:35:46: pid 2872: DETAIL: auth kind:5 Jun 6 09:35:46 otp3 pgpool[2872]: [22-3] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_auth.c:142 Jun 6 09:35:46 otp3 pgpool[2872]: [23-1] 2016-06-06 09:35:46: pid 2872: DEBUG: authentication backend Jun 6 09:35:46 otp3 pgpool[2872]: [23-2] 2016-06-06 09:35:46: pid 2872: DETAIL: trying md5 authentication Jun 6 09:35:46 otp3 pgpool[2872]: [23-3] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_auth.c:239 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: pool_read: read 13 bytes from backend 0 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: pool_read: read 13 bytes from backend 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DETAIL: slot: 0 length: 12 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_auth.c:1107 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DETAIL: slot: 1 length: 12 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_auth.c:1126 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: authentication backend Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DETAIL: auth kind:5 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_auth.c:142 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: authentication backend Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DETAIL: trying md5 authentication Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_auth.c:239 Jun 6 09:35:46 otp3 pgpool[2872]: [24-1] 2016-06-06 09:35:46: pid 2872: DEBUG: performing md5 authentication Jun 6 09:35:46 otp3 pgpool[2872]: [24-2] 2016-06-06 09:35:46: pid 2872: DETAIL: DB node id: 0 salt: 532a5e10 Jun 6 09:35:46 otp3 pgpool[2872]: [24-3] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_auth.c:855 Jun 6 09:35:46 otp3 pgpool[2872]: [25-1] 2016-06-06 09:35:46: pid 2872: DEBUG: pool_write: to backend: kind:p Jun 6 09:35:46 otp3 pgpool[2872]: [25-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: performing md5 authentication Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DETAIL: DB node id: 0 salt: 532a5e10 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_auth.c:855 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: pool_write: to backend: kind:p Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool[2872]: [26-1] 2016-06-06 09:35:46: pid 2872: DEBUG: pool_read: read 337 bytes from backend 0 Jun 6 09:35:46 otp3 pgpool[2872]: [26-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool[2872]: [27-1] 2016-06-06 09:35:46: pid 2872: DEBUG: authentication backend Jun 6 09:35:46 otp3 pgpool[2872]: [27-2] 2016-06-06 09:35:46: pid 2872: DETAIL: trying md5 authentication Jun 6 09:35:46 otp3 pgpool[2872]: [27-3] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_auth.c:239 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: pool_read: read 337 bytes from backend 0 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: authentication backend Jun 6 09:35:46 otp3 pgpool[2872]: [28-1] 2016-06-06 09:35:46: pid 2872: DEBUG: performing md5 authentication Jun 6 09:35:46 otp3 pgpool[2872]: [28-2] 2016-06-06 09:35:46: pid 2872: DETAIL: DB node id: 1 salt: 13b5c97d Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DETAIL: trying md5 authentication Jun 6 09:35:46 otp3 pgpool[2872]: [28-3] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_auth.c:855 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_auth.c:239 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: performing md5 authentication Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DETAIL: DB node id: 1 salt: 13b5c97d Jun 6 09:35:46 otp3 pgpool[2872]: [29-1] 2016-06-06 09:35:46: pid 2872: DEBUG: pool_write: to backend: kind:p Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_auth.c:855 Jun 6 09:35:46 otp3 pgpool[2872]: [29-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: pool_write: to backend: kind:p Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool[2872]: [30-1] 2016-06-06 09:35:46: pid 2872: DEBUG: pool_read: read 337 bytes from backend 1 Jun 6 09:35:46 otp3 pgpool[2872]: [30-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool[2872]: [31-1] 2016-06-06 09:35:46: pid 2872: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2872]: [31-2] 2016-06-06 09:35:46: pid 2872: DETAIL: master slot: 0 length: 22 Jun 6 09:35:46 otp3 pgpool[2872]: [31-3] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_auth.c:1161 Jun 6 09:35:46 otp3 pgpool[2872]: [32-1] 2016-06-06 09:35:46: pid 2872: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2872]: [32-2] 2016-06-06 09:35:46: pid 2872: DETAIL: master slot: 1 length: 22 Jun 6 09:35:46 otp3 pgpool[2872]: [32-3] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_auth.c:1172 Jun 6 09:35:46 otp3 pgpool[2872]: [33-1] 2016-06-06 09:35:46: pid 2872: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool[2872]: [33-2] 2016-06-06 09:35:46: pid 2872: DETAIL: backend:0 name:"application_name" value:"" Jun 6 09:35:46 otp3 pgpool[2872]: [33-3] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool[2872]: [34-1] 2016-06-06 09:35:46: pid 2872: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool[2872]: [34-2] 2016-06-06 09:35:46: pid 2872: DETAIL: backend:1 name:"application_name" value:"" Jun 6 09:35:46 otp3 pgpool[2872]: [34-3] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool[2872]: [35-1] 2016-06-06 09:35:46: pid 2872: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2872]: [35-2] 2016-06-06 09:35:46: pid 2872: DETAIL: master slot: 0 length: 25 Jun 6 09:35:46 otp3 pgpool[2872]: [35-3] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_auth.c:1161 Jun 6 09:35:46 otp3 pgpool[2872]: [36-1] 2016-06-06 09:35:46: pid 2872: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2872]: [36-2] 2016-06-06 09:35:46: pid 2872: DETAIL: master slot: 1 length: 25 Jun 6 09:35:46 otp3 pgpool[2872]: [36-3] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_auth.c:1172 Jun 6 09:35:46 otp3 pgpool[2872]: [37-1] 2016-06-06 09:35:46: pid 2872: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool[2872]: [37-2] 2016-06-06 09:35:46: pid 2872: DETAIL: backend:0 name:"client_encoding" value:"UTF8" Jun 6 09:35:46 otp3 pgpool[2872]: [37-3] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool[2872]: [38-1] 2016-06-06 09:35:46: pid 2872: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool[2872]: [38-2] 2016-06-06 09:35:46: pid 2872: DETAIL: backend:1 name:"client_encoding" value:"UTF8" Jun 6 09:35:46 otp3 pgpool[2872]: [38-3] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool[2872]: [39-1] 2016-06-06 09:35:46: pid 2872: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2872]: [39-2] 2016-06-06 09:35:46: pid 2872: DETAIL: master slot: 0 length: 23 Jun 6 09:35:46 otp3 pgpool[2872]: [39-3] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_auth.c:1161 Jun 6 09:35:46 otp3 pgpool[2872]: [40-1] 2016-06-06 09:35:46: pid 2872: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2872]: [40-2] 2016-06-06 09:35:46: pid 2872: DETAIL: master slot: 1 length: 23 Jun 6 09:35:46 otp3 pgpool[2872]: [40-3] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_auth.c:1172 Jun 6 09:35:46 otp3 pgpool[2872]: [41-1] 2016-06-06 09:35:46: pid 2872: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool[2872]: [41-2] 2016-06-06 09:35:46: pid 2872: DETAIL: backend:0 name:"DateStyle" value:"ISO, MDY" Jun 6 09:35:46 otp3 pgpool[2872]: [41-3] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool[2872]: [42-1] 2016-06-06 09:35:46: pid 2872: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool[2872]: [42-2] 2016-06-06 09:35:46: pid 2872: DETAIL: backend:1 name:"DateStyle" value:"ISO, MDY" Jun 6 09:35:46 otp3 pgpool[2872]: [42-3] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool[2872]: [43-1] 2016-06-06 09:35:46: pid 2872: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2872]: [43-2] 2016-06-06 09:35:46: pid 2872: DETAIL: master slot: 0 length: 25 Jun 6 09:35:46 otp3 pgpool[2872]: [43-3] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_auth.c:1161 Jun 6 09:35:46 otp3 pgpool[2872]: [44-1] 2016-06-06 09:35:46: pid 2872: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2872]: [44-2] 2016-06-06 09:35:46: pid 2872: DETAIL: master slot: 1 length: 25 Jun 6 09:35:46 otp3 pgpool[2872]: [44-3] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_auth.c:1172 Jun 6 09:35:46 otp3 pgpool[2872]: [45-1] 2016-06-06 09:35:46: pid 2872: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool[2872]: [45-2] 2016-06-06 09:35:46: pid 2872: DETAIL: backend:0 name:"integer_datetimes" value:"on" Jun 6 09:35:46 otp3 pgpool[2872]: [45-3] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool[2872]: [46-1] 2016-06-06 09:35:46: pid 2872: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool[2872]: [46-2] 2016-06-06 09:35:46: pid 2872: DETAIL: backend:1 name:"integer_datetimes" value:"on" Jun 6 09:35:46 otp3 pgpool[2872]: [46-3] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool[2872]: [47-1] 2016-06-06 09:35:46: pid 2872: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2872]: [47-2] 2016-06-06 09:35:46: pid 2872: DETAIL: master slot: 0 length: 27 Jun 6 09:35:46 otp3 pgpool[2872]: [47-3] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_auth.c:1161 Jun 6 09:35:46 otp3 pgpool[2872]: [48-1] 2016-06-06 09:35:46: pid 2872: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2872]: [48-2] 2016-06-06 09:35:46: pid 2872: DETAIL: master slot: 1 length: 27 Jun 6 09:35:46 otp3 pgpool[2872]: [48-3] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_auth.c:1172 Jun 6 09:35:46 otp3 pgpool[2872]: [49-1] 2016-06-06 09:35:46: pid 2872: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool[2872]: [49-2] 2016-06-06 09:35:46: pid 2872: DETAIL: backend:0 name:"IntervalStyle" value:"postgres" Jun 6 09:35:46 otp3 pgpool[2872]: [49-3] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool[2872]: [50-1] 2016-06-06 09:35:46: pid 2872: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool[2872]: [50-2] 2016-06-06 09:35:46: pid 2872: DETAIL: backend:1 name:"IntervalStyle" value:"postgres" Jun 6 09:35:46 otp3 pgpool[2872]: [50-3] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool[2872]: [51-1] 2016-06-06 09:35:46: pid 2872: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2872]: [51-2] 2016-06-06 09:35:46: pid 2872: DETAIL: master slot: 0 length: 21 Jun 6 09:35:46 otp3 pgpool[2872]: [51-3] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_auth.c:1161 Jun 6 09:35:46 otp3 pgpool[2872]: [52-1] 2016-06-06 09:35:46: pid 2872: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2872]: [52-2] 2016-06-06 09:35:46: pid 2872: DETAIL: master slot: 1 length: 21 Jun 6 09:35:46 otp3 pgpool[2872]: [52-3] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_auth.c:1172 Jun 6 09:35:46 otp3 pgpool[2872]: [53-1] 2016-06-06 09:35:46: pid 2872: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool[2872]: [53-2] 2016-06-06 09:35:46: pid 2872: DETAIL: backend:0 name:"is_superuser" value:"off" Jun 6 09:35:46 otp3 pgpool[2872]: [53-3] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool[2872]: [54-1] 2016-06-06 09:35:46: pid 2872: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool[2872]: [54-2] 2016-06-06 09:35:46: pid 2872: DETAIL: backend:1 name:"is_superuser" value:"off" Jun 6 09:35:46 otp3 pgpool[2872]: [54-3] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool[2872]: [55-1] 2016-06-06 09:35:46: pid 2872: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2872]: [55-2] 2016-06-06 09:35:46: pid 2872: DETAIL: master slot: 0 length: 30 Jun 6 09:35:46 otp3 pgpool[2872]: [55-3] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_auth.c:1161 Jun 6 09:35:46 otp3 pgpool[2872]: [56-1] 2016-06-06 09:35:46: pid 2872: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2872]: [56-2] 2016-06-06 09:35:46: pid 2872: DETAIL: master slot: 1 length: 30 Jun 6 09:35:46 otp3 pgpool[2872]: [56-3] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_auth.c:1172 Jun 6 09:35:46 otp3 pgpool[2872]: [57-1] 2016-06-06 09:35:46: pid 2872: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool[2872]: [57-2] 2016-06-06 09:35:46: pid 2872: DETAIL: backend:0 name:"server_encoding" value:"SQL_ASCII" Jun 6 09:35:46 otp3 pgpool[2872]: [57-3] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool[2872]: [58-1] 2016-06-06 09:35:46: pid 2872: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool[2872]: [58-2] 2016-06-06 09:35:46: pid 2872: DETAIL: backend:1 name:"server_encoding" value:"SQL_ASCII" Jun 6 09:35:46 otp3 pgpool[2872]: [58-3] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool[2872]: [59-1] 2016-06-06 09:35:46: pid 2872: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2872]: [59-2] 2016-06-06 09:35:46: pid 2872: DETAIL: master slot: 0 length: 26 Jun 6 09:35:46 otp3 pgpool[2872]: [59-3] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_auth.c:1161 Jun 6 09:35:46 otp3 pgpool[2872]: [60-1] 2016-06-06 09:35:46: pid 2872: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2872]: [60-2] 2016-06-06 09:35:46: pid 2872: DETAIL: master slot: 1 length: 26 Jun 6 09:35:46 otp3 pgpool[2872]: [60-3] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_auth.c:1172 Jun 6 09:35:46 otp3 pgpool[2872]: [61-1] 2016-06-06 09:35:46: pid 2872: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool[2872]: [61-2] 2016-06-06 09:35:46: pid 2872: DETAIL: backend:0 name:"server_version" value:"9.3.12" Jun 6 09:35:46 otp3 pgpool[2872]: [61-3] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool[2872]: [62-1] 2016-06-06 09:35:46: pid 2872: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool[2872]: [62-2] 2016-06-06 09:35:46: pid 2872: DETAIL: backend:1 name:"server_version" value:"9.3.12" Jun 6 09:35:46 otp3 pgpool[2872]: [62-3] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool[2872]: [63-1] 2016-06-06 09:35:46: pid 2872: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2872]: [63-2] 2016-06-06 09:35:46: pid 2872: DETAIL: master slot: 0 length: 38 Jun 6 09:35:46 otp3 pgpool[2872]: [63-3] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_auth.c:1161 Jun 6 09:35:46 otp3 pgpool[2872]: [64-1] 2016-06-06 09:35:46: pid 2872: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2872]: [64-2] 2016-06-06 09:35:46: pid 2872: DETAIL: master slot: 1 length: 38 Jun 6 09:35:46 otp3 pgpool[2872]: [64-3] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_auth.c:1172 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: pool_read: read 337 bytes from backend 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DETAIL: master slot: 0 length: 22 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_auth.c:1161 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DETAIL: master slot: 1 length: 22 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_auth.c:1172 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DETAIL: backend:0 name:"application_name" value:"" Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DETAIL: backend:1 name:"application_name" value:"" Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DETAIL: master slot: 0 length: 25 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_auth.c:1161 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DETAIL: master slot: 1 length: 25 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_auth.c:1172 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DETAIL: backend:0 name:"client_encoding" value:"UTF8" Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DETAIL: backend:1 name:"client_encoding" value:"UTF8" Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DETAIL: master slot: 0 length: 23 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_auth.c:1161 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DETAIL: master slot: 1 length: 23 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_auth.c:1172 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DETAIL: backend:0 name:"DateStyle" value:"ISO, MDY" Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DETAIL: backend:1 name:"DateStyle" value:"ISO, MDY" Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DETAIL: master slot: 0 length: 25 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_auth.c:1161 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DETAIL: master slot: 1 length: 25 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_auth.c:1172 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DETAIL: backend:0 name:"integer_datetimes" value:"on" Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DETAIL: backend:1 name:"integer_datetimes" value:"on" Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DETAIL: master slot: 0 length: 27 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_auth.c:1161 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DETAIL: master slot: 1 length: 27 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_auth.c:1172 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DETAIL: backend:0 name:"IntervalStyle" value:"postgres" Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DETAIL: backend:1 name:"IntervalStyle" value:"postgres" Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DETAIL: master slot: 0 length: 21 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_auth.c:1161 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DETAIL: master slot: 1 length: 21 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_auth.c:1172 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DETAIL: backend:0 name:"is_superuser" value:"off" Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DETAIL: backend:1 name:"is_superuser" value:"off" Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DETAIL: master slot: 0 length: 30 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_auth.c:1161 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DETAIL: master slot: 1 length: 30 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_auth.c:1172 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DETAIL: backend:0 name:"server_encoding" value:"SQL_ASCII" Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DETAIL: backend:1 name:"server_encoding" value:"SQL_ASCII" Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DETAIL: master slot: 0 length: 26 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_auth.c:1161 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DETAIL: master slot: 1 length: 26 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_auth.c:1172 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DETAIL: backend:0 name:"server_version" value:"9.3.12" Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DETAIL: backend:1 name:"server_version" value:"9.3.12" Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DETAIL: master slot: 0 length: 38 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_auth.c:1161 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DETAIL: master slot: 1 length: 38 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_auth.c:1172 Jun 6 09:35:46 otp3 pgpool[2872]: [65-1] 2016-06-06 09:35:46: pid 2872: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool[2872]: [65-2] 2016-06-06 09:35:46: pid 2872: DETAIL: backend:0 name:"session_authorization" value:"sparrowdesk" Jun 6 09:35:46 otp3 pgpool[2872]: [65-3] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DETAIL: backend:0 name:"session_authorization" value:"sparrowdesk" Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool[2872]: [66-1] 2016-06-06 09:35:46: pid 2872: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool[2872]: [66-2] 2016-06-06 09:35:46: pid 2872: DETAIL: backend:1 name:"session_authorization" value:"sparrowdesk" Jun 6 09:35:46 otp3 pgpool[2872]: [66-3] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool[2872]: [67-1] 2016-06-06 09:35:46: pid 2872: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2872]: [67-2] 2016-06-06 09:35:46: pid 2872: DETAIL: master slot: 0 length: 35 Jun 6 09:35:46 otp3 pgpool[2872]: [67-3] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_auth.c:1161 Jun 6 09:35:46 otp3 pgpool[2872]: [68-1] 2016-06-06 09:35:46: pid 2872: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2872]: [68-2] 2016-06-06 09:35:46: pid 2872: DETAIL: master slot: 1 length: 35 Jun 6 09:35:46 otp3 pgpool[2872]: [68-3] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_auth.c:1172 Jun 6 09:35:46 otp3 pgpool[2872]: [69-1] 2016-06-06 09:35:46: pid 2872: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool[2872]: [69-2] 2016-06-06 09:35:46: pid 2872: DETAIL: backend:0 name:"standard_conforming_strings" value:"on" Jun 6 09:35:46 otp3 pgpool[2872]: [69-3] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool[2872]: [70-1] 2016-06-06 09:35:46: pid 2872: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool[2872]: [70-2] 2016-06-06 09:35:46: pid 2872: DETAIL: backend:1 name:"standard_conforming_strings" value:"on" Jun 6 09:35:46 otp3 pgpool[2872]: [70-3] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool[2872]: [71-1] 2016-06-06 09:35:46: pid 2872: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2872]: [71-2] 2016-06-06 09:35:46: pid 2872: DETAIL: master slot: 0 length: 26 Jun 6 09:35:46 otp3 pgpool[2872]: [71-3] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_auth.c:1161 Jun 6 09:35:46 otp3 pgpool[2872]: [72-1] 2016-06-06 09:35:46: pid 2872: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2872]: [72-2] 2016-06-06 09:35:46: pid 2872: DETAIL: master slot: 1 length: 26 Jun 6 09:35:46 otp3 pgpool[2872]: [72-3] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_auth.c:1172 Jun 6 09:35:46 otp3 pgpool[2872]: [73-1] 2016-06-06 09:35:46: pid 2872: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool[2872]: [73-2] 2016-06-06 09:35:46: pid 2872: DETAIL: backend:0 name:"TimeZone" value:"Asia/Kolkata" Jun 6 09:35:46 otp3 pgpool[2872]: [73-3] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool[2872]: [74-1] 2016-06-06 09:35:46: pid 2872: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool[2872]: [74-2] 2016-06-06 09:35:46: pid 2872: DETAIL: backend:1 name:"TimeZone" value:"Asia/Kolkata" Jun 6 09:35:46 otp3 pgpool[2872]: [74-3] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool[2872]: [75-1] 2016-06-06 09:35:46: pid 2872: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2872]: [75-2] 2016-06-06 09:35:46: pid 2872: DETAIL: slot: 0 length: 12 Jun 6 09:35:46 otp3 pgpool[2872]: [75-3] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_auth.c:1107 Jun 6 09:35:46 otp3 pgpool[2872]: [76-1] 2016-06-06 09:35:46: pid 2872: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2872]: [76-2] 2016-06-06 09:35:46: pid 2872: DETAIL: slot: 1 length: 12 Jun 6 09:35:46 otp3 pgpool[2872]: [76-3] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_auth.c:1126 Jun 6 09:35:46 otp3 pgpool[2872]: [77-1] 2016-06-06 09:35:46: pid 2872: DEBUG: authentication backend Jun 6 09:35:46 otp3 pgpool[2872]: [77-2] 2016-06-06 09:35:46: pid 2872: DETAIL: cp->info[i]:0x80078c000 pid:97119 Jun 6 09:35:46 otp3 pgpool[2872]: [77-3] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_auth.c:391 Jun 6 09:35:46 otp3 pgpool[2872]: [78-1] 2016-06-06 09:35:46: pid 2872: DEBUG: authentication backend Jun 6 09:35:46 otp3 pgpool[2872]: [78-2] 2016-06-06 09:35:46: pid 2872: DETAIL: cp->info[i]:0x80078c088 pid:83414 Jun 6 09:35:46 otp3 pgpool[2872]: [78-3] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_auth.c:391 Jun 6 09:35:46 otp3 pgpool[2872]: [79-1] 2016-06-06 09:35:46: pid 2872: DEBUG: sending backend key data Jun 6 09:35:46 otp3 pgpool[2872]: [79-2] 2016-06-06 09:35:46: pid 2872: DETAIL: send pid 83414 to frontend Jun 6 09:35:46 otp3 pgpool[2872]: [79-3] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_auth.c:519 Jun 6 09:35:46 otp3 pgpool[2872]: [80-1] 2016-06-06 09:35:46: pid 2872: DEBUG: selecting load balance node Jun 6 09:35:46 otp3 pgpool[2872]: [80-2] 2016-06-06 09:35:46: pid 2872: DETAIL: selected backend id is 0 Jun 6 09:35:46 otp3 pgpool[2872]: [80-3] 2016-06-06 09:35:46: pid 2872: LOCATION: child.c:1720 Jun 6 09:35:46 otp3 pgpool[2872]: [81-1] 2016-06-06 09:35:46: pid 2872: DEBUG: initializing session context Jun 6 09:35:46 otp3 pgpool[2872]: [81-2] 2016-06-06 09:35:46: pid 2872: DETAIL: selected load balancing node: 0 Jun 6 09:35:46 otp3 pgpool[2872]: [81-3] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_session_context.c:99 Jun 6 09:35:46 otp3 pgpool[2872]: [82-1] 2016-06-06 09:35:46: pid 2872: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:46 otp3 pgpool[2872]: [82-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_session_context.c:219 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DETAIL: backend:1 name:"session_authorization" value:"sparrowdesk" Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool[2872]: [83-1] 2016-06-06 09:35:46: pid 2872: DEBUG: session context: clearing transaction isolation. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2872]: [83-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_session_context.c:731 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DETAIL: master slot: 0 length: 35 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_auth.c:1161 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DETAIL: master slot: 1 length: 35 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_auth.c:1172 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool[2872]: [84-1] 2016-06-06 09:35:46: pid 2872: DEBUG: session context: clearing writing transaction. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DETAIL: backend:0 name:"standard_conforming_strings" value:"on" Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool[2872]: [84-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_session_context.c:565 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DETAIL: backend:1 name:"standard_conforming_strings" value:"on" Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DETAIL: master slot: 0 length: 26 Jun 6 09:35:46 otp3 pgpool[2872]: [85-1] 2016-06-06 09:35:46: pid 2872: DEBUG: session context: clearing failed transaction. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_auth.c:1161 Jun 6 09:35:46 otp3 pgpool[2872]: [85-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_session_context.c:594 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2872]: [86-1] 2016-06-06 09:35:46: pid 2872: DEBUG: session context: clearing failed transaction. DONE Jun 6 09:35:46 otp3 pgpool[2872]: [86-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_session_context.c:624 Jun 6 09:35:46 otp3 pgpool[2872]: [87-1] 2016-06-06 09:35:46: pid 2872: DEBUG: session context: clearing skip reading from backends. DONE Jun 6 09:35:46 otp3 pgpool[2872]: [87-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_session_context.c:250 Jun 6 09:35:46 otp3 pgpool[2872]: [88-1] 2016-06-06 09:35:46: pid 2872: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:35:46 otp3 pgpool[2872]: [88-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_session_context.c:310 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DETAIL: master slot: 1 length: 26 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_auth.c:1172 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DETAIL: backend:0 name:"TimeZone" value:"Asia/Kolkata" Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool[2872]: [89-1] 2016-06-06 09:35:46: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 0 doing extended query: 0 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: process parameter status Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DETAIL: backend:1 name:"TimeZone" value:"Asia/Kolkata" Jun 6 09:35:46 otp3 pgpool[2872]: [89-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_process_query.c:921 Jun 6 09:35:46 otp3 pgpool[2872]: [90-1] 2016-06-06 09:35:46: pid 2872: DEBUG: reading backend data packet kind Jun 6 09:35:46 otp3 pgpool[2872]: [90-2] 2016-06-06 09:35:46: pid 2872: DETAIL: backend:0 of 2 kind = 'Z' Jun 6 09:35:46 otp3 pgpool[2872]: [90-3] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_process_query.c:3349 Jun 6 09:35:46 otp3 pgpool[2872]: [91-1] 2016-06-06 09:35:46: pid 2872: DEBUG: reading backend data packet kind Jun 6 09:35:46 otp3 pgpool[2872]: [91-2] 2016-06-06 09:35:46: pid 2872: DETAIL: backend:1 of 2 kind = 'Z' Jun 6 09:35:46 otp3 pgpool[2872]: [91-3] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_process_query.c:3349 Jun 6 09:35:46 otp3 pgpool[2872]: [92-1] 2016-06-06 09:35:46: pid 2872: DEBUG: read_kind_from_backend max_count:2.000000 num_executed_nodes:2 Jun 6 09:35:46 otp3 pgpool[2872]: [92-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_process_query.c:3365 Jun 6 09:35:46 otp3 pgpool[2872]: [93-1] 2016-06-06 09:35:46: pid 2872: DEBUG: processing backend response Jun 6 09:35:46 otp3 pgpool[2872]: [93-2] 2016-06-06 09:35:46: pid 2872: DETAIL: received kind 'Z'(5a) from backend Jun 6 09:35:46 otp3 pgpool[2872]: [93-3] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_proto_modules.c:2424 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2872]: [94-1] 2016-06-06 09:35:46: pid 2872: DEBUG: processing backend response Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DETAIL: slot: 0 length: 12 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_auth.c:1107 Jun 6 09:35:46 otp3 pgpool[2872]: [94-2] 2016-06-06 09:35:46: pid 2872: DETAIL: Ready For Query received Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2872]: [94-3] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_proto_modules.c:2442 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DETAIL: slot: 1 length: 12 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_auth.c:1126 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: authentication backend Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DETAIL: cp->info[i]:0x80078c000 pid:97119 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_auth.c:391 Jun 6 09:35:46 otp3 pgpool[2872]: [95-1] 2016-06-06 09:35:46: pid 2872: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: authentication backend Jun 6 09:35:46 otp3 pgpool[2872]: [95-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_session_context.c:310 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DETAIL: cp->info[i]:0x80078c088 pid:83414 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_auth.c:391 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: sending backend key data Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DETAIL: send pid 83414 to frontend Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_auth.c:519 Jun 6 09:35:46 otp3 pgpool[2872]: [96-1] 2016-06-06 09:35:46: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 0 doing extended query: 0 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: selecting load balance node Jun 6 09:35:46 otp3 pgpool[2872]: [96-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DETAIL: selected backend id is 0 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: child.c:1720 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: initializing session context Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DETAIL: selected load balancing node: 0 Jun 6 09:35:46 otp3 pgpool[2872]: [97-1] 2016-06-06 09:35:46: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 0 doing extended query: 0 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_session_context.c:99 Jun 6 09:35:46 otp3 pgpool[2872]: [97-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_session_context.c:219 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: session context: clearing transaction isolation. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_session_context.c:731 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: session context: clearing writing transaction. DONE Jun 6 09:35:46 otp3 pgpool[2872]: [98-1] 2016-06-06 09:35:46: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 0 doing extended query: 0 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_session_context.c:565 Jun 6 09:35:46 otp3 pgpool[2872]: [98-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: session context: clearing failed transaction. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_session_context.c:594 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: session context: clearing failed transaction. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_session_context.c:624 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: session context: clearing skip reading from backends. DONE Jun 6 09:35:46 otp3 pgpool[2872]: [99-1] 2016-06-06 09:35:46: pid 2872: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_session_context.c:250 Jun 6 09:35:46 otp3 pgpool[2872]: [99-2] 2016-06-06 09:35:46: pid 2872: DETAIL: slot: 0 length: 5 Jun 6 09:35:46 otp3 pgpool[2872]: [99-3] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_auth.c:1107 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_session_context.c:310 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 0 doing extended query: 0 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: reading backend data packet kind Jun 6 09:35:46 otp3 pgpool[2872]: [100-1] 2016-06-06 09:35:46: pid 2872: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DETAIL: backend:0 of 2 kind = 'Z' Jun 6 09:35:46 otp3 pgpool[2872]: [100-2] 2016-06-06 09:35:46: pid 2872: DETAIL: slot: 1 length: 5 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_process_query.c:3349 Jun 6 09:35:46 otp3 pgpool[2872]: [100-3] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_auth.c:1126 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: reading backend data packet kind Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DETAIL: backend:1 of 2 kind = 'Z' Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_process_query.c:3349 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: read_kind_from_backend max_count:2.000000 num_executed_nodes:2 Jun 6 09:35:46 otp3 pgpool[2872]: [101-1] 2016-06-06 09:35:46: pid 2872: DEBUG: processing ReadyForQuery Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_process_query.c:3365 Jun 6 09:35:46 otp3 pgpool[2872]: [101-2] 2016-06-06 09:35:46: pid 2872: DETAIL: transaction state ' Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: processing backend response Jun 6 09:35:46 otp3 pgpool[2872]: [101-3] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_proto_modules.c:1612 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DETAIL: received kind 'Z'(5a) from backend Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_proto_modules.c:2424 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: processing backend response Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DETAIL: Ready For Query received Jun 6 09:35:46 otp3 pgpool[2872]: [102-1] 2016-06-06 09:35:46: pid 2872: DEBUG: processing ReadyForQuery Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_proto_modules.c:2442 Jun 6 09:35:46 otp3 pgpool[2872]: [102-2] 2016-06-06 09:35:46: pid 2872: DETAIL: transaction state 'I'(49) Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:35:46 otp3 pgpool[2872]: [102-3] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_proto_modules.c:1612 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_session_context.c:310 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 0 doing extended query: 0 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 0 doing extended query: 0 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 0 doing extended query: 0 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DETAIL: slot: 0 length: 5 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_auth.c:1107 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DETAIL: slot: 1 length: 5 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_auth.c:1126 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: processing ReadyForQuery Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DETAIL: transaction state ' Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_proto_modules.c:1612 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: processing ReadyForQuery Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DETAIL: transaction state 'I'(49) Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_proto_modules.c:1612 Jun 6 09:35:46 otp3 pgpool[2872]: [103-1] 2016-06-06 09:35:46: pid 2872: DEBUG: processing frontend response Jun 6 09:35:46 otp3 pgpool[2872]: [103-2] 2016-06-06 09:35:46: pid 2872: DETAIL: received kind 'P'(50) from frontend Jun 6 09:35:46 otp3 pgpool[2872]: [103-3] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_proto_modules.c:2188 Jun 6 09:35:46 otp3 pgpool[2872]: [104-1] 2016-06-06 09:35:46: pid 2872: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:35:46 otp3 pgpool[2872]: [104-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_session_context.c:280 Jun 6 09:35:46 otp3 pgpool[2872]: [105-1] 2016-06-06 09:35:46: pid 2872: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:35:46 otp3 pgpool[2872]: [105-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_session_context.c:269 Jun 6 09:35:46 otp3 pgpool[2872]: [106-1] 2016-06-06 09:35:46: pid 2872: DEBUG: Parse: statement name <> Jun 6 09:35:46 otp3 pgpool[2872]: [106-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_proto_modules.c:817 Jun 6 09:35:46 otp3 pgpool[2872]: [107-1] 2016-06-06 09:35:46: pid 2872: DEBUG: session context: setting query in progress. DONE Jun 6 09:35:46 otp3 pgpool[2872]: [107-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_session_context.c:208 Jun 6 09:35:46 otp3 pgpool[2872]: [108-1] 2016-06-06 09:35:46: pid 2872: DEBUG: pool_write: to backend: kind:S Jun 6 09:35:46 otp3 pgpool[2872]: [108-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool[2872]: [109-1] 2016-06-06 09:35:46: pid 2872: DEBUG: pool_write: to backend: kind:H Jun 6 09:35:46 otp3 pgpool[2872]: [109-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool[2872]: [110-1] 2016-06-06 09:35:46: pid 2872: DEBUG: pool_write: to backend: kind:S Jun 6 09:35:46 otp3 pgpool[2872]: [110-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool[2872]: [111-1] 2016-06-06 09:35:46: pid 2872: DEBUG: pool_write: to backend: kind:H Jun 6 09:35:46 otp3 pgpool[2872]: [111-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: processing frontend response Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DETAIL: received kind 'P'(50) from frontend Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_proto_modules.c:2188 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_session_context.c:280 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_session_context.c:269 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: Parse: statement name <> Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_proto_modules.c:817 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: session context: setting query in progress. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_session_context.c:208 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: pool_write: to backend: kind:S Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: pool_write: to backend: kind:H Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: pool_write: to backend: kind:S Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: pool_write: to backend: kind:H Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool[2872]: [112-1] 2016-06-06 09:35:46: pid 2872: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:35:46 otp3 pgpool[2872]: [112-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool[2872]: [113-1] 2016-06-06 09:35:46: pid 2872: DEBUG: pool_read: read 6 bytes from backend 1 Jun 6 09:35:46 otp3 pgpool[2872]: [113-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool[2872]: [114-1] 2016-06-06 09:35:46: pid 2872: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:35:46 otp3 pgpool[2872]: [114-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_session_context.c:310 Jun 6 09:35:46 otp3 pgpool[2872]: [115-1] 2016-06-06 09:35:46: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool[2872]: [115-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool[2872]: [116-1] 2016-06-06 09:35:46: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool[2872]: [116-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool[2872]: [117-1] 2016-06-06 09:35:46: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool[2872]: [117-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool[2872]: [118-1] 2016-06-06 09:35:46: pid 2872: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2872]: [118-2] 2016-06-06 09:35:46: pid 2872: DETAIL: slot: 0 length: 5 Jun 6 09:35:46 otp3 pgpool[2872]: [118-3] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_auth.c:1107 Jun 6 09:35:46 otp3 pgpool[2872]: [119-1] 2016-06-06 09:35:46: pid 2872: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2872]: [119-2] 2016-06-06 09:35:46: pid 2872: DETAIL: slot: 1 length: 5 Jun 6 09:35:46 otp3 pgpool[2872]: [119-3] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_auth.c:1126 Jun 6 09:35:46 otp3 pgpool[2872]: [120-1] 2016-06-06 09:35:46: pid 2872: DEBUG: processing ReadyForQuery Jun 6 09:35:46 otp3 pgpool[2872]: [120-2] 2016-06-06 09:35:46: pid 2872: DETAIL: transaction state 'I'(49) Jun 6 09:35:46 otp3 pgpool[2872]: [120-3] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_proto_modules.c:1612 Jun 6 09:35:46 otp3 pgpool[2872]: [121-1] 2016-06-06 09:35:46: pid 2872: DEBUG: processing ReadyForQuery Jun 6 09:35:46 otp3 pgpool[2872]: [121-2] 2016-06-06 09:35:46: pid 2872: DETAIL: transaction state 'I'(49) Jun 6 09:35:46 otp3 pgpool[2872]: [121-3] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_proto_modules.c:1612 Jun 6 09:35:46 otp3 pgpool[2872]: [122-1] 2016-06-06 09:35:46: pid 2872: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:46 otp3 pgpool[2872]: [122-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_session_context.c:219 Jun 6 09:35:46 otp3 pgpool[2872]: [123-1] 2016-06-06 09:35:46: pid 2872: DEBUG: session context: setting query in progress. DONE Jun 6 09:35:46 otp3 pgpool[2872]: [123-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_session_context.c:208 Jun 6 09:35:46 otp3 pgpool[2872]: [124-1] 2016-06-06 09:35:46: pid 2872: DEBUG: Parse: waiting for master completing the query Jun 6 09:35:46 otp3 pgpool[2872]: [124-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_proto_modules.c:1064 Jun 6 09:35:46 otp3 pgpool[2872]: [125-1] 2016-06-06 09:35:46: pid 2872: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:35:46 otp3 pgpool[2872]: [125-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_query_context.c:854 Jun 6 09:35:46 otp3 pgpool[2872]: [126-1] 2016-06-06 09:35:46: pid 2872: DEBUG: pool_write: to backend: kind:P Jun 6 09:35:46 otp3 pgpool[2872]: [126-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool[2872]: [127-1] 2016-06-06 09:35:46: pid 2872: DEBUG: pool_write: to backend: kind:H Jun 6 09:35:46 otp3 pgpool[2872]: [127-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool[2872]: [128-1] 2016-06-06 09:35:46: pid 2872: DEBUG: waiting for query response Jun 6 09:35:46 otp3 pgpool[2872]: [128-2] 2016-06-06 09:35:46: pid 2872: DETAIL: waiting for backend:0 to complete the query Jun 6 09:35:46 otp3 pgpool[2872]: [128-3] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_process_query.c:479 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: pool_read: read 6 bytes from backend 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_session_context.c:310 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DETAIL: slot: 0 length: 5 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_auth.c:1107 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DETAIL: slot: 1 length: 5 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_auth.c:1126 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: processing ReadyForQuery Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DETAIL: transaction state 'I'(49) Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_proto_modules.c:1612 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: processing ReadyForQuery Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DETAIL: transaction state 'I'(49) Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_proto_modules.c:1612 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_session_context.c:219 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: session context: setting query in progress. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_session_context.c:208 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: Parse: waiting for master completing the query Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_proto_modules.c:1064 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_query_context.c:854 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: pool_write: to backend: kind:P Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: pool_write: to backend: kind:H Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: waiting for query response Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DETAIL: waiting for backend:0 to complete the query Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_process_query.c:479 Jun 6 09:35:46 otp3 pgpool[2872]: [129-1] 2016-06-06 09:35:46: pid 2872: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:35:46 otp3 pgpool[2872]: [129-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool[2872]: [130-1] 2016-06-06 09:35:46: pid 2872: DEBUG: detect error: kind: 1 Jun 6 09:35:46 otp3 pgpool[2872]: [130-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_process_query.c:4166 Jun 6 09:35:46 otp3 pgpool[2872]: [131-1] 2016-06-06 09:35:46: pid 2872: DEBUG: pool_send_and_wait: pool_set_sync_map: 1 Jun 6 09:35:46 otp3 pgpool[2872]: [131-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_query_context.c:854 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: detect error: kind: 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_process_query.c:4166 Jun 6 09:35:46 otp3 pgpool[2872]: [132-1] 2016-06-06 09:35:46: pid 2872: DEBUG: pool_write: to backend: kind:P Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: pool_send_and_wait: pool_set_sync_map: 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_query_context.c:854 Jun 6 09:35:46 otp3 pgpool[2872]: [132-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: pool_write: to backend: kind:P Jun 6 09:35:46 otp3 pgpool[2872]: [133-1] 2016-06-06 09:35:46: pid 2872: DEBUG: pool_write: to backend: kind:H Jun 6 09:35:46 otp3 pgpool[2872]: [133-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: pool_write: to backend: kind:H Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool[2872]: [134-1] 2016-06-06 09:35:46: pid 2872: DEBUG: waiting for query response Jun 6 09:35:46 otp3 pgpool[2872]: [134-2] 2016-06-06 09:35:46: pid 2872: DETAIL: waiting for backend:1 to complete the query Jun 6 09:35:46 otp3 pgpool[2872]: [134-3] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_process_query.c:479 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: waiting for query response Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DETAIL: waiting for backend:1 to complete the query Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_process_query.c:479 Jun 6 09:35:46 otp3 pgpool[2872]: [135-1] 2016-06-06 09:35:46: pid 2872: DEBUG: pool_read: read 5 bytes from backend 1 Jun 6 09:35:46 otp3 pgpool[2872]: [135-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: pool_read: read 5 bytes from backend 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool[2872]: [136-1] 2016-06-06 09:35:46: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool[2872]: [136-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool[2872]: [137-1] 2016-06-06 09:35:46: pid 2872: DEBUG: reading backend data packet kind Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool[2872]: [137-2] 2016-06-06 09:35:46: pid 2872: DETAIL: backend:0 of 2 kind = '1' Jun 6 09:35:46 otp3 pgpool[2872]: [137-3] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_process_query.c:3349 Jun 6 09:35:46 otp3 pgpool[2872]: [138-1] 2016-06-06 09:35:46: pid 2872: DEBUG: reading backend data packet kind Jun 6 09:35:46 otp3 pgpool[2872]: [138-2] 2016-06-06 09:35:46: pid 2872: DETAIL: backend:1 of 2 kind = '1' Jun 6 09:35:46 otp3 pgpool[2872]: [138-3] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_process_query.c:3349 Jun 6 09:35:46 otp3 pgpool[2872]: [139-1] 2016-06-06 09:35:46: pid 2872: DEBUG: read_kind_from_backend max_count:2.000000 num_executed_nodes:2 Jun 6 09:35:46 otp3 pgpool[2872]: [139-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_process_query.c:3365 Jun 6 09:35:46 otp3 pgpool[2872]: [140-1] 2016-06-06 09:35:46: pid 2872: DEBUG: processing backend response Jun 6 09:35:46 otp3 pgpool[2872]: [140-2] 2016-06-06 09:35:46: pid 2872: DETAIL: received kind '1'(31) from backend Jun 6 09:35:46 otp3 pgpool[2872]: [140-3] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_proto_modules.c:2424 Jun 6 09:35:46 otp3 pgpool[2872]: [141-1] 2016-06-06 09:35:46: pid 2872: DEBUG: called by pool_add_sent_message: sent message: address: 2406c80 kind: P name: == Jun 6 09:35:46 otp3 pgpool[2872]: [141-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_session_context.c:436 Jun 6 09:35:46 otp3 pgpool[2872]: [142-1] 2016-06-06 09:35:46: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool[2872]: [142-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool[2872]: [143-1] 2016-06-06 09:35:46: pid 2872: DEBUG: SimpleForwardToFrontend: packet:1 length:0 Jun 6 09:35:46 otp3 pgpool[2872]: [143-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_process_query.c:792 Jun 6 09:35:46 otp3 pgpool[2872]: [144-1] 2016-06-06 09:35:46: pid 2872: DEBUG: session context: setting command success. DONE Jun 6 09:35:46 otp3 pgpool[2872]: [144-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_session_context.c:741 Jun 6 09:35:46 otp3 pgpool[2872]: [145-1] 2016-06-06 09:35:46: pid 2872: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:46 otp3 pgpool[2872]: [145-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_session_context.c:219 Jun 6 09:35:46 otp3 pgpool[2872]: [146-1] 2016-06-06 09:35:46: pid 2872: DEBUG: processing frontend response Jun 6 09:35:46 otp3 pgpool[2872]: [146-2] 2016-06-06 09:35:46: pid 2872: DETAIL: received kind 'B'(42) from frontend Jun 6 09:35:46 otp3 pgpool[2872]: [146-3] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_proto_modules.c:2188 Jun 6 09:35:46 otp3 pgpool[2872]: [147-1] 2016-06-06 09:35:46: pid 2872: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:35:46 otp3 pgpool[2872]: [147-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_session_context.c:280 Jun 6 09:35:46 otp3 pgpool[2872]: [148-1] 2016-06-06 09:35:46: pid 2872: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:35:46 otp3 pgpool[2872]: [148-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_session_context.c:269 Jun 6 09:35:46 otp3 pgpool[2872]: [149-1] 2016-06-06 09:35:46: pid 2872: DEBUG: Bind: checking strict query Jun 6 09:35:46 otp3 pgpool[2872]: [149-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_proto_modules.c:1211 Jun 6 09:35:46 otp3 pgpool[2872]: [150-1] 2016-06-06 09:35:46: pid 2872: DEBUG: Bind: checking insert lock Jun 6 09:35:46 otp3 pgpool[2872]: [150-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_proto_modules.c:1221 Jun 6 09:35:46 otp3 pgpool[2872]: [151-1] 2016-06-06 09:35:46: pid 2872: DEBUG: Bind: waiting for master completing the query Jun 6 09:35:46 otp3 pgpool[2872]: [151-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_proto_modules.c:1237 Jun 6 09:35:46 otp3 pgpool[2872]: [152-1] 2016-06-06 09:35:46: pid 2872: DEBUG: session context: setting query in progress. DONE Jun 6 09:35:46 otp3 pgpool[2872]: [152-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_session_context.c:208 Jun 6 09:35:46 otp3 pgpool[2872]: [153-1] 2016-06-06 09:35:46: pid 2872: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:35:46 otp3 pgpool[2872]: [153-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_query_context.c:854 Jun 6 09:35:46 otp3 pgpool[2872]: [154-1] 2016-06-06 09:35:46: pid 2872: DEBUG: pool_write: to backend: kind:B Jun 6 09:35:46 otp3 pgpool[2872]: [154-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool[2872]: [155-1] 2016-06-06 09:35:46: pid 2872: DEBUG: pool_write: to backend: kind:H Jun 6 09:35:46 otp3 pgpool[2872]: [155-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool[2872]: [156-1] 2016-06-06 09:35:46: pid 2872: DEBUG: waiting for query response Jun 6 09:35:46 otp3 pgpool[2872]: [156-2] 2016-06-06 09:35:46: pid 2872: DETAIL: waiting for backend:0 to complete the query Jun 6 09:35:46 otp3 pgpool[2872]: [156-3] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_process_query.c:479 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: reading backend data packet kind Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DETAIL: backend:0 of 2 kind = '1' Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_process_query.c:3349 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: reading backend data packet kind Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DETAIL: backend:1 of 2 kind = '1' Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_process_query.c:3349 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: read_kind_from_backend max_count:2.000000 num_executed_nodes:2 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_process_query.c:3365 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: processing backend response Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DETAIL: received kind '1'(31) from backend Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_proto_modules.c:2424 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: called by pool_add_sent_message: sent message: address: 2406c80 kind: P name: == Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_session_context.c:436 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: SimpleForwardToFrontend: packet:1 length:0 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_process_query.c:792 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: session context: setting command success. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_session_context.c:741 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_session_context.c:219 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: processing frontend response Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DETAIL: received kind 'B'(42) from frontend Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_proto_modules.c:2188 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_session_context.c:280 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_session_context.c:269 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: Bind: checking strict query Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_proto_modules.c:1211 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: Bind: checking insert lock Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_proto_modules.c:1221 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: Bind: waiting for master completing the query Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_proto_modules.c:1237 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: session context: setting query in progress. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_session_context.c:208 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_query_context.c:854 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: pool_write: to backend: kind:B Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: pool_write: to backend: kind:H Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: waiting for query response Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DETAIL: waiting for backend:0 to complete the query Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_process_query.c:479 Jun 6 09:35:46 otp3 pgpool[2872]: [157-1] 2016-06-06 09:35:46: pid 2872: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:35:46 otp3 pgpool[2872]: [157-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:35:46 otp3 pgpool[2872]: [158-1] 2016-06-06 09:35:46: pid 2872: DEBUG: pool_send_and_wait: pool_set_sync_map: 1 Jun 6 09:35:46 otp3 pgpool[2872]: [158-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_query_context.c:854 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: pool_send_and_wait: pool_set_sync_map: 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_query_context.c:854 Jun 6 09:35:46 otp3 pgpool[2872]: [159-1] 2016-06-06 09:35:46: pid 2872: DEBUG: pool_write: to backend: kind:B Jun 6 09:35:46 otp3 pgpool[2872]: [159-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: pool_write: to backend: kind:B Jun 6 09:35:46 otp3 pgpool[2872]: [160-1] 2016-06-06 09:35:46: pid 2872: DEBUG: pool_write: to backend: kind:H Jun 6 09:35:46 otp3 pgpool[2872]: [160-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: pool_write: to backend: kind:H Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool[2872]: [161-1] 2016-06-06 09:35:46: pid 2872: DEBUG: waiting for query response Jun 6 09:35:46 otp3 pgpool[2872]: [161-2] 2016-06-06 09:35:46: pid 2872: DETAIL: waiting for backend:1 to complete the query Jun 6 09:35:46 otp3 pgpool[2872]: [161-3] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_process_query.c:479 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: waiting for query response Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DETAIL: waiting for backend:1 to complete the query Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_process_query.c:479 Jun 6 09:35:46 otp3 pgpool[2872]: [162-1] 2016-06-06 09:35:46: pid 2872: DEBUG: pool_read: read 5 bytes from backend 1 Jun 6 09:35:46 otp3 pgpool[2872]: [162-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool[2872]: [163-1] 2016-06-06 09:35:46: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool[2872]: [163-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: pool_read: read 5 bytes from backend 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool[2872]: [164-1] 2016-06-06 09:35:46: pid 2872: DEBUG: reading backend data packet kind Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool[2872]: [164-2] 2016-06-06 09:35:46: pid 2872: DETAIL: backend:0 of 2 kind = '2' Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool[2872]: [164-3] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_process_query.c:3349 Jun 6 09:35:46 otp3 pgpool[2872]: [165-1] 2016-06-06 09:35:46: pid 2872: DEBUG: reading backend data packet kind Jun 6 09:35:46 otp3 pgpool[2872]: [165-2] 2016-06-06 09:35:46: pid 2872: DETAIL: backend:1 of 2 kind = '2' Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: reading backend data packet kind Jun 6 09:35:46 otp3 pgpool[2872]: [165-3] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_process_query.c:3349 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DETAIL: backend:0 of 2 kind = '2' Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_process_query.c:3349 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: reading backend data packet kind Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DETAIL: backend:1 of 2 kind = '2' Jun 6 09:35:46 otp3 pgpool[2872]: [166-1] 2016-06-06 09:35:46: pid 2872: DEBUG: read_kind_from_backend max_count:2.000000 num_executed_nodes:2 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_process_query.c:3349 Jun 6 09:35:46 otp3 pgpool[2872]: [166-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_process_query.c:3365 Jun 6 09:35:46 otp3 pgpool[2872]: [167-1] 2016-06-06 09:35:46: pid 2872: DEBUG: processing backend response Jun 6 09:35:46 otp3 pgpool[2872]: [167-2] 2016-06-06 09:35:46: pid 2872: DETAIL: received kind '2'(32) from backend Jun 6 09:35:46 otp3 pgpool[2872]: [167-3] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_proto_modules.c:2424 Jun 6 09:35:46 otp3 pgpool[2872]: [168-1] 2016-06-06 09:35:46: pid 2872: DEBUG: called by pool_add_sent_message: sent message: address: 2406d18 kind: B name: == Jun 6 09:35:46 otp3 pgpool[2872]: [168-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_session_context.c:436 Jun 6 09:35:46 otp3 pgpool[2872]: [169-1] 2016-06-06 09:35:46: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool[2872]: [169-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool[2872]: [170-1] 2016-06-06 09:35:46: pid 2872: DEBUG: SimpleForwardToFrontend: packet:2 length:0 Jun 6 09:35:46 otp3 pgpool[2872]: [170-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_process_query.c:792 Jun 6 09:35:46 otp3 pgpool[2872]: [171-1] 2016-06-06 09:35:46: pid 2872: DEBUG: session context: setting command success. DONE Jun 6 09:35:46 otp3 pgpool[2872]: [171-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_session_context.c:741 Jun 6 09:35:46 otp3 pgpool[2872]: [172-1] 2016-06-06 09:35:46: pid 2872: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:46 otp3 pgpool[2872]: [172-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_session_context.c:219 Jun 6 09:35:46 otp3 pgpool[2872]: [173-1] 2016-06-06 09:35:46: pid 2872: DEBUG: processing frontend response Jun 6 09:35:46 otp3 pgpool[2872]: [173-2] 2016-06-06 09:35:46: pid 2872: DETAIL: received kind 'E'(45) from frontend Jun 6 09:35:46 otp3 pgpool[2872]: [173-3] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_proto_modules.c:2188 Jun 6 09:35:46 otp3 pgpool[2872]: [174-1] 2016-06-06 09:35:46: pid 2872: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:35:46 otp3 pgpool[2872]: [174-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_session_context.c:280 Jun 6 09:35:46 otp3 pgpool[2872]: [175-1] 2016-06-06 09:35:46: pid 2872: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:35:46 otp3 pgpool[2872]: [175-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_session_context.c:269 Jun 6 09:35:46 otp3 pgpool[2872]: [176-1] 2016-06-06 09:35:46: pid 2872: DEBUG: session context: setting query in progress. DONE Jun 6 09:35:46 otp3 pgpool[2872]: [176-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_session_context.c:208 Jun 6 09:35:46 otp3 pgpool[2872]: [177-1] 2016-06-06 09:35:46: pid 2872: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:35:46 otp3 pgpool[2872]: [177-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_query_context.c:854 Jun 6 09:35:46 otp3 pgpool[2872]: [178-1] 2016-06-06 09:35:46: pid 2872: DEBUG: pool_write: to backend: kind:E Jun 6 09:35:46 otp3 pgpool[2872]: [178-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool[2872]: [179-1] 2016-06-06 09:35:46: pid 2872: DEBUG: pool_write: to backend: kind:H Jun 6 09:35:46 otp3 pgpool[2872]: [179-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool[2872]: [180-1] 2016-06-06 09:35:46: pid 2872: DEBUG: waiting for query response Jun 6 09:35:46 otp3 pgpool[2872]: [180-2] 2016-06-06 09:35:46: pid 2872: DETAIL: waiting for backend:0 to complete the query Jun 6 09:35:46 otp3 pgpool[2872]: [180-3] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_process_query.c:479 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: read_kind_from_backend max_count:2.000000 num_executed_nodes:2 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_process_query.c:3365 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: processing backend response Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DETAIL: received kind '2'(32) from backend Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_proto_modules.c:2424 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: called by pool_add_sent_message: sent message: address: 2406d18 kind: B name: == Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_session_context.c:436 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: SimpleForwardToFrontend: packet:2 length:0 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_process_query.c:792 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: session context: setting command success. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_session_context.c:741 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_session_context.c:219 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: processing frontend response Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DETAIL: received kind 'E'(45) from frontend Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_proto_modules.c:2188 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_session_context.c:280 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_session_context.c:269 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: session context: setting query in progress. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_session_context.c:208 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_query_context.c:854 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: pool_write: to backend: kind:E Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: pool_write: to backend: kind:H Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: waiting for query response Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DETAIL: waiting for backend:0 to complete the query Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_process_query.c:479 Jun 6 09:35:46 otp3 pgpool[2872]: [181-1] 2016-06-06 09:35:46: pid 2872: DEBUG: pool_read: read 9 bytes from backend 0 Jun 6 09:35:46 otp3 pgpool[2872]: [181-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool[2872]: [182-1] 2016-06-06 09:35:46: pid 2872: DEBUG: detect error: kind: C Jun 6 09:35:46 otp3 pgpool[2872]: [182-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_process_query.c:4166 Jun 6 09:35:46 otp3 pgpool[2872]: [183-1] 2016-06-06 09:35:46: pid 2872: DEBUG: detect error: kind: C Jun 6 09:35:46 otp3 pgpool[2872]: [183-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_process_query.c:4166 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: pool_read: read 9 bytes from backend 0 Jun 6 09:35:46 otp3 pgpool[2872]: [184-1] 2016-06-06 09:35:46: pid 2872: DEBUG: detect error: kind: C Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool[2872]: [184-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_process_query.c:4166 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: detect error: kind: C Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_process_query.c:4166 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: detect error: kind: C Jun 6 09:35:46 otp3 pgpool[2872]: [185-1] 2016-06-06 09:35:46: pid 2872: DEBUG: detect error: kind: C Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_process_query.c:4166 Jun 6 09:35:46 otp3 pgpool[2872]: [185-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_process_query.c:4166 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: detect error: kind: C Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_process_query.c:4166 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: detect error: kind: C Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_process_query.c:4166 Jun 6 09:35:46 otp3 pgpool[2872]: [186-1] 2016-06-06 09:35:46: pid 2872: DEBUG: pool_send_and_wait: pool_set_sync_map: 1 Jun 6 09:35:46 otp3 pgpool[2872]: [186-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_query_context.c:854 Jun 6 09:35:46 otp3 pgpool[2872]: [187-1] 2016-06-06 09:35:46: pid 2872: DEBUG: pool_write: to backend: kind:E Jun 6 09:35:46 otp3 pgpool[2872]: [187-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool[2872]: [188-1] 2016-06-06 09:35:46: pid 2872: DEBUG: pool_write: to backend: kind:H Jun 6 09:35:46 otp3 pgpool[2872]: [188-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool[2872]: [189-1] 2016-06-06 09:35:46: pid 2872: DEBUG: waiting for query response Jun 6 09:35:46 otp3 pgpool[2872]: [189-2] 2016-06-06 09:35:46: pid 2872: DETAIL: waiting for backend:1 to complete the query Jun 6 09:35:46 otp3 pgpool[2872]: [189-3] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_process_query.c:479 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: pool_send_and_wait: pool_set_sync_map: 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_query_context.c:854 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: pool_write: to backend: kind:E Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: pool_write: to backend: kind:H Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: waiting for query response Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DETAIL: waiting for backend:1 to complete the query Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_process_query.c:479 Jun 6 09:35:46 otp3 pgpool[2872]: [190-1] 2016-06-06 09:35:46: pid 2872: DEBUG: pool_read: read 9 bytes from backend 1 Jun 6 09:35:46 otp3 pgpool[2872]: [190-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool[2872]: [191-1] 2016-06-06 09:35:46: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool[2872]: [191-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool[2872]: [192-1] 2016-06-06 09:35:46: pid 2872: DEBUG: reading backend data packet kind Jun 6 09:35:46 otp3 pgpool[2872]: [192-2] 2016-06-06 09:35:46: pid 2872: DETAIL: backend:0 of 2 kind = 'C' Jun 6 09:35:46 otp3 pgpool[2872]: [192-3] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_process_query.c:3349 Jun 6 09:35:46 otp3 pgpool[2872]: [193-1] 2016-06-06 09:35:46: pid 2872: DEBUG: reading backend data packet kind Jun 6 09:35:46 otp3 pgpool[2872]: [193-2] 2016-06-06 09:35:46: pid 2872: DETAIL: backend:1 of 2 kind = 'C' Jun 6 09:35:46 otp3 pgpool[2872]: [193-3] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_process_query.c:3349 Jun 6 09:35:46 otp3 pgpool[2872]: [194-1] 2016-06-06 09:35:46: pid 2872: DEBUG: read_kind_from_backend max_count:2.000000 num_executed_nodes:2 Jun 6 09:35:46 otp3 pgpool[2872]: [194-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_process_query.c:3365 Jun 6 09:35:46 otp3 pgpool[2872]: [195-1] 2016-06-06 09:35:46: pid 2872: DEBUG: processing backend response Jun 6 09:35:46 otp3 pgpool[2872]: [195-2] 2016-06-06 09:35:46: pid 2872: DETAIL: received kind 'C'(43) from backend Jun 6 09:35:46 otp3 pgpool[2872]: [195-3] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_proto_modules.c:2424 Jun 6 09:35:46 otp3 pgpool[2872]: [196-1] 2016-06-06 09:35:46: pid 2872: DEBUG: session context: setting command success. DONE Jun 6 09:35:46 otp3 pgpool[2872]: [196-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_session_context.c:741 Jun 6 09:35:46 otp3 pgpool[2872]: [197-1] 2016-06-06 09:35:46: pid 2872: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:46 otp3 pgpool[2872]: [197-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_session_context.c:219 Jun 6 09:35:46 otp3 pgpool[2872]: [198-1] 2016-06-06 09:35:46: pid 2872: DEBUG: processing frontend response Jun 6 09:35:46 otp3 pgpool[2872]: [198-2] 2016-06-06 09:35:46: pid 2872: DETAIL: received kind 'S'(53) from frontend Jun 6 09:35:46 otp3 pgpool[2872]: [198-3] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_proto_modules.c:2188 Jun 6 09:35:46 otp3 pgpool[2872]: [199-1] 2016-06-06 09:35:46: pid 2872: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:35:46 otp3 pgpool[2872]: [199-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_session_context.c:280 Jun 6 09:35:46 otp3 pgpool[2872]: [200-1] 2016-06-06 09:35:46: pid 2872: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:35:46 otp3 pgpool[2872]: [200-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_session_context.c:269 Jun 6 09:35:46 otp3 pgpool[2872]: [201-1] 2016-06-06 09:35:46: pid 2872: DEBUG: session context: setting query in progress. DONE Jun 6 09:35:46 otp3 pgpool[2872]: [201-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_session_context.c:208 Jun 6 09:35:46 otp3 pgpool[2872]: [202-1] 2016-06-06 09:35:46: pid 2872: DEBUG: pool_write: to backend: kind:S Jun 6 09:35:46 otp3 pgpool[2872]: [202-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool[2872]: [203-1] 2016-06-06 09:35:46: pid 2872: DEBUG: pool_write: to backend: kind:S Jun 6 09:35:46 otp3 pgpool[2872]: [203-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool[2872]: [204-1] 2016-06-06 09:35:46: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool[2872]: [204-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: pool_read: read 9 bytes from backend 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: reading backend data packet kind Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DETAIL: backend:0 of 2 kind = 'C' Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_process_query.c:3349 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: reading backend data packet kind Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DETAIL: backend:1 of 2 kind = 'C' Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_process_query.c:3349 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: read_kind_from_backend max_count:2.000000 num_executed_nodes:2 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_process_query.c:3365 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: processing backend response Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DETAIL: received kind 'C'(43) from backend Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_proto_modules.c:2424 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: session context: setting command success. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_session_context.c:741 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_session_context.c:219 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: processing frontend response Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DETAIL: received kind 'S'(53) from frontend Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_proto_modules.c:2188 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_session_context.c:280 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_session_context.c:269 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: session context: setting query in progress. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_session_context.c:208 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: pool_write: to backend: kind:S Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: pool_write: to backend: kind:S Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool[2872]: [205-1] 2016-06-06 09:35:46: pid 2872: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:35:46 otp3 pgpool[2872]: [205-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool[2872]: [206-1] 2016-06-06 09:35:46: pid 2872: DEBUG: reading backend data packet kind Jun 6 09:35:46 otp3 pgpool[2872]: [206-2] 2016-06-06 09:35:46: pid 2872: DETAIL: backend:0 of 2 kind = 'Z' Jun 6 09:35:46 otp3 pgpool[2872]: [206-3] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_process_query.c:3349 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: reading backend data packet kind Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DETAIL: backend:0 of 2 kind = 'Z' Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_process_query.c:3349 Jun 6 09:35:46 otp3 pgpool[2872]: [207-1] 2016-06-06 09:35:46: pid 2872: DEBUG: pool_read: read 6 bytes from backend 1 Jun 6 09:35:46 otp3 pgpool[2872]: [207-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool[2872]: [208-1] 2016-06-06 09:35:46: pid 2872: DEBUG: reading backend data packet kind Jun 6 09:35:46 otp3 pgpool[2872]: [208-2] 2016-06-06 09:35:46: pid 2872: DETAIL: backend:1 of 2 kind = 'Z' Jun 6 09:35:46 otp3 pgpool[2872]: [208-3] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_process_query.c:3349 Jun 6 09:35:46 otp3 pgpool[2872]: [209-1] 2016-06-06 09:35:46: pid 2872: DEBUG: read_kind_from_backend max_count:2.000000 num_executed_nodes:2 Jun 6 09:35:46 otp3 pgpool[2872]: [209-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_process_query.c:3365 Jun 6 09:35:46 otp3 pgpool[2872]: [210-1] 2016-06-06 09:35:46: pid 2872: DEBUG: processing backend response Jun 6 09:35:46 otp3 pgpool[2872]: [210-2] 2016-06-06 09:35:46: pid 2872: DETAIL: received kind 'Z'(5a) from backend Jun 6 09:35:46 otp3 pgpool[2872]: [210-3] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_proto_modules.c:2424 Jun 6 09:35:46 otp3 pgpool[2872]: [211-1] 2016-06-06 09:35:46: pid 2872: DEBUG: processing backend response Jun 6 09:35:46 otp3 pgpool[2872]: [211-2] 2016-06-06 09:35:46: pid 2872: DETAIL: Ready For Query received Jun 6 09:35:46 otp3 pgpool[2872]: [211-3] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_proto_modules.c:2442 Jun 6 09:35:46 otp3 pgpool[2872]: [212-1] 2016-06-06 09:35:46: pid 2872: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:35:46 otp3 pgpool[2872]: [212-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_session_context.c:310 Jun 6 09:35:46 otp3 pgpool[2872]: [213-1] 2016-06-06 09:35:46: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool[2872]: [213-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool[2872]: [214-1] 2016-06-06 09:35:46: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool[2872]: [214-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool[2872]: [215-1] 2016-06-06 09:35:46: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool[2872]: [215-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool[2872]: [216-1] 2016-06-06 09:35:46: pid 2872: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2872]: [216-2] 2016-06-06 09:35:46: pid 2872: DETAIL: slot: 0 length: 5 Jun 6 09:35:46 otp3 pgpool[2872]: [216-3] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_auth.c:1107 Jun 6 09:35:46 otp3 pgpool[2872]: [217-1] 2016-06-06 09:35:46: pid 2872: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool[2872]: [217-2] 2016-06-06 09:35:46: pid 2872: DETAIL: slot: 1 length: 5 Jun 6 09:35:46 otp3 pgpool[2872]: [217-3] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_auth.c:1126 Jun 6 09:35:46 otp3 pgpool[2872]: [218-1] 2016-06-06 09:35:46: pid 2872: DEBUG: processing ReadyForQuery Jun 6 09:35:46 otp3 pgpool[2872]: [218-2] 2016-06-06 09:35:46: pid 2872: DETAIL: transaction state 'I'(49) Jun 6 09:35:46 otp3 pgpool[2872]: [218-3] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_proto_modules.c:1612 Jun 6 09:35:46 otp3 pgpool[2872]: [219-1] 2016-06-06 09:35:46: pid 2872: DEBUG: processing ReadyForQuery Jun 6 09:35:46 otp3 pgpool[2872]: [219-2] 2016-06-06 09:35:46: pid 2872: DETAIL: transaction state 'I'(49) Jun 6 09:35:46 otp3 pgpool[2872]: [219-3] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_proto_modules.c:1612 Jun 6 09:35:46 otp3 pgpool[2872]: [220-1] 2016-06-06 09:35:46: pid 2872: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:46 otp3 pgpool[2872]: [220-2] 2016-06-06 09:35:46: pid 2872: LOCATION: pool_session_context.c:219 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: pool_read: read 6 bytes from backend 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_stream.c:190 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: reading backend data packet kind Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DETAIL: backend:1 of 2 kind = 'Z' Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_process_query.c:3349 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: read_kind_from_backend max_count:2.000000 num_executed_nodes:2 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_process_query.c:3365 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: processing backend response Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DETAIL: received kind 'Z'(5a) from backend Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_proto_modules.c:2424 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: processing backend response Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DETAIL: Ready For Query received Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_proto_modules.c:2442 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_session_context.c:310 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DETAIL: slot: 0 length: 5 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_auth.c:1107 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: reading message length Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DETAIL: slot: 1 length: 5 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_auth.c:1126 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: processing ReadyForQuery Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DETAIL: transaction state 'I'(49) Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_proto_modules.c:1612 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: processing ReadyForQuery Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DETAIL: transaction state 'I'(49) Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_proto_modules.c:1612 Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:46 otp3 pgpool: 2016-06-06 09:35:46: pid 2872: LOCATION: pool_session_context.c:219 Jun 6 09:35:47 otp3 pgpool[2872]: [221-1] 2016-06-06 09:35:47: pid 2872: DEBUG: processing frontend response Jun 6 09:35:47 otp3 pgpool[2872]: [221-2] 2016-06-06 09:35:47: pid 2872: DETAIL: received kind 'P'(50) from frontend Jun 6 09:35:47 otp3 pgpool[2872]: [221-3] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_proto_modules.c:2188 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: processing frontend response Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DETAIL: received kind 'P'(50) from frontend Jun 6 09:35:47 otp3 pgpool[2872]: [222-1] 2016-06-06 09:35:47: pid 2872: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:35:47 otp3 pgpool[2872]: [222-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:280 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_proto_modules.c:2188 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:280 Jun 6 09:35:47 otp3 pgpool[2872]: [223-1] 2016-06-06 09:35:47: pid 2872: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:35:47 otp3 pgpool[2872]: [223-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:269 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:269 Jun 6 09:35:47 otp3 pgpool[2872]: [224-1] 2016-06-06 09:35:47: pid 2872: DEBUG: Parse: statement name <> Jun 6 09:35:47 otp3 pgpool[2872]: [224-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_proto_modules.c:817 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: Parse: statement name <> Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_proto_modules.c:817 Jun 6 09:35:47 otp3 pgpool[2875]: [11-1] 2016-06-06 09:35:47: pid 2875: DEBUG: I am 2875 accept fd 7 Jun 6 09:35:47 otp3 pgpool[2872]: [225-1] 2016-06-06 09:35:47: pid 2872: DEBUG: session context: setting query in progress. DONE Jun 6 09:35:47 otp3 pgpool[2875]: [11-2] 2016-06-06 09:35:47: pid 2875: LOCATION: child.c:2097 Jun 6 09:35:47 otp3 pgpool[2872]: [225-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:208 Jun 6 09:35:47 otp3 pgpool[2872]: [226-1] 2016-06-06 09:35:47: pid 2872: DEBUG: pool_write: to backend: kind:S Jun 6 09:35:47 otp3 pgpool[2872]: [226-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:35:47 otp3 pgpool[2872]: [227-1] 2016-06-06 09:35:47: pid 2872: DEBUG: pool_write: to backend: kind:H Jun 6 09:35:47 otp3 pgpool[2874]: [11-1] 2016-06-06 09:35:47: pid 2874: DEBUG: I am 2874 accept fd 7 Jun 6 09:35:47 otp3 pgpool[2874]: [11-2] 2016-06-06 09:35:47: pid 2874: LOCATION: child.c:2097 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DEBUG: I am 2875 accept fd 7 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: LOCATION: child.c:2097 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: session context: setting query in progress. DONE Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:208 Jun 6 09:35:47 otp3 pgpool[2872]: [227-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: pool_write: to backend: kind:S Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2874: DEBUG: I am 2874 accept fd 7 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2874: LOCATION: child.c:2097 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: pool_write: to backend: kind:H Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:35:47 otp3 pgpool[2872]: [228-1] 2016-06-06 09:35:47: pid 2872: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:35:47 otp3 pgpool[2872]: [228-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_stream.c:190 Jun 6 09:35:47 otp3 pgpool[2872]: [229-1] 2016-06-06 09:35:47: pid 2872: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:35:47 otp3 pgpool[2872]: [229-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:310 Jun 6 09:35:47 otp3 pgpool[2872]: [230-1] 2016-06-06 09:35:47: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:47 otp3 pgpool[2872]: [230-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:35:47 otp3 pgpool[2872]: [231-1] 2016-06-06 09:35:47: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:47 otp3 pgpool[2872]: [231-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_stream.c:190 Jun 6 09:35:47 otp3 pgpool[2872]: [232-1] 2016-06-06 09:35:47: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:35:47 otp3 pgpool[2872]: [232-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:310 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:35:47 otp3 pgpool[2872]: [233-1] 2016-06-06 09:35:47: pid 2872: DEBUG: reading message length Jun 6 09:35:47 otp3 pgpool[2872]: [233-2] 2016-06-06 09:35:47: pid 2872: DETAIL: slot: 0 length: 5 Jun 6 09:35:47 otp3 pgpool[2872]: [233-3] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_auth.c:1107 Jun 6 09:35:47 otp3 pgpool[2872]: [234-1] 2016-06-06 09:35:47: pid 2872: DEBUG: processing ReadyForQuery Jun 6 09:35:47 otp3 pgpool[2872]: [234-2] 2016-06-06 09:35:47: pid 2872: DETAIL: transaction state 'I'(49) Jun 6 09:35:47 otp3 pgpool[2872]: [234-3] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_proto_modules.c:1612 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: reading message length Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DETAIL: slot: 0 length: 5 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_auth.c:1107 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: processing ReadyForQuery Jun 6 09:35:47 otp3 pgpool[2872]: [235-1] 2016-06-06 09:35:47: pid 2872: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DETAIL: transaction state 'I'(49) Jun 6 09:35:47 otp3 pgpool[2872]: [235-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:219 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_proto_modules.c:1612 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:219 Jun 6 09:35:47 otp3 pgpool[2872]: [236-1] 2016-06-06 09:35:47: pid 2872: DEBUG: session context: setting query in progress. DONE Jun 6 09:35:47 otp3 pgpool[2872]: [236-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:208 Jun 6 09:35:47 otp3 pgpool[2872]: [237-1] 2016-06-06 09:35:47: pid 2872: DEBUG: Parse: waiting for master completing the query Jun 6 09:35:47 otp3 pgpool[2872]: [237-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_proto_modules.c:1064 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: session context: setting query in progress. DONE Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:208 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: Parse: waiting for master completing the query Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_proto_modules.c:1064 Jun 6 09:35:47 otp3 pgpool[2872]: [238-1] 2016-06-06 09:35:47: pid 2872: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:35:47 otp3 pgpool[2872]: [238-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_query_context.c:854 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_query_context.c:854 Jun 6 09:35:47 otp3 pgpool[2872]: [239-1] 2016-06-06 09:35:47: pid 2872: DEBUG: pool_write: to backend: kind:P Jun 6 09:35:47 otp3 pgpool[2872]: [239-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: pool_write: to backend: kind:P Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:35:47 otp3 pgpool[2872]: [240-1] 2016-06-06 09:35:47: pid 2872: DEBUG: pool_write: to backend: kind:H Jun 6 09:35:47 otp3 pgpool[2872]: [240-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: pool_write: to backend: kind:H Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:35:47 otp3 pgpool[2872]: [241-1] 2016-06-06 09:35:47: pid 2872: DEBUG: waiting for query response Jun 6 09:35:47 otp3 pgpool[2872]: [241-2] 2016-06-06 09:35:47: pid 2872: DETAIL: waiting for backend:0 to complete the query Jun 6 09:35:47 otp3 pgpool[2872]: [241-3] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_process_query.c:479 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: waiting for query response Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DETAIL: waiting for backend:0 to complete the query Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_process_query.c:479 Jun 6 09:35:47 otp3 pgpool[2872]: [242-1] 2016-06-06 09:35:47: pid 2872: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:35:47 otp3 pgpool[2872]: [242-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_stream.c:190 Jun 6 09:35:47 otp3 pgpool[2872]: [243-1] 2016-06-06 09:35:47: pid 2872: DEBUG: detect error: kind: 1 Jun 6 09:35:47 otp3 pgpool[2872]: [243-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_process_query.c:4166 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_stream.c:190 Jun 6 09:35:47 otp3 pgpool[2872]: [244-1] 2016-06-06 09:35:47: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:47 otp3 pgpool[2872]: [244-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: detect error: kind: 1 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_process_query.c:4166 Jun 6 09:35:47 otp3 pgpool[2872]: [245-1] 2016-06-06 09:35:47: pid 2872: DEBUG: reading backend data packet kind Jun 6 09:35:47 otp3 pgpool[2872]: [245-2] 2016-06-06 09:35:47: pid 2872: DETAIL: backend:0 of 2 kind = '1' Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:35:47 otp3 pgpool[2872]: [245-3] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_process_query.c:3349 Jun 6 09:35:47 otp3 pgpool[2872]: [246-1] 2016-06-06 09:35:47: pid 2872: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:35:47 otp3 pgpool[2872]: [246-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_process_query.c:3365 Jun 6 09:35:47 otp3 pgpool[2872]: [247-1] 2016-06-06 09:35:47: pid 2872: DEBUG: processing backend response Jun 6 09:35:47 otp3 pgpool[2872]: [247-2] 2016-06-06 09:35:47: pid 2872: DETAIL: received kind '1'(31) from backend Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: reading backend data packet kind Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DETAIL: backend:0 of 2 kind = '1' Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_process_query.c:3349 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_process_query.c:3365 Jun 6 09:35:47 otp3 pgpool[2872]: [247-3] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_proto_modules.c:2424 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: processing backend response Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DETAIL: received kind '1'(31) from backend Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_proto_modules.c:2424 Jun 6 09:35:47 otp3 pgpool[2872]: [248-1] 2016-06-06 09:35:47: pid 2872: DEBUG: called by pool_add_sent_message: sent message: address: 2406d98 kind: P name: == Jun 6 09:35:47 otp3 pgpool[2872]: [248-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:436 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: called by pool_add_sent_message: sent message: address: 2406d98 kind: P name: == Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:436 Jun 6 09:35:47 otp3 pgpool[2872]: [249-1] 2016-06-06 09:35:47: pid 2872: DEBUG: adding sent message to list Jun 6 09:35:47 otp3 pgpool[2872]: [249-2] 2016-06-06 09:35:47: pid 2872: DETAIL: prepared statement "" already exists Jun 6 09:35:47 otp3 pgpool[2872]: [249-3] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:516 Jun 6 09:35:47 otp3 pgpool[2872]: [250-1] 2016-06-06 09:35:47: pid 2872: DEBUG: called by pool_sent_message_destroy: sent message: address: 2406c80 kind: P name: == Jun 6 09:35:47 otp3 pgpool[2872]: [250-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:436 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: adding sent message to list Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DETAIL: prepared statement "" already exists Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:516 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: called by pool_sent_message_destroy: sent message: address: 2406c80 kind: P name: == Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:436 Jun 6 09:35:47 otp3 pgpool[2872]: [251-1] 2016-06-06 09:35:47: pid 2872: DEBUG: checking if query context can be safely destroyed Jun 6 09:35:47 otp3 pgpool[2872]: [251-2] 2016-06-06 09:35:47: pid 2872: DETAIL: query context 0x802481830 is still used 2 times. query:"SET extra_float_digits = 3" Jun 6 09:35:47 otp3 pgpool[2872]: [251-3] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:873 Jun 6 09:35:47 otp3 pgpool[2872]: [252-1] 2016-06-06 09:35:47: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:47 otp3 pgpool[2872]: [252-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:35:47 otp3 pgpool[2872]: [253-1] 2016-06-06 09:35:47: pid 2872: DEBUG: SimpleForwardToFrontend: packet:1 length:0 Jun 6 09:35:47 otp3 pgpool[2872]: [253-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_process_query.c:792 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: checking if query context can be safely destroyed Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DETAIL: query context 0x802481830 is still used 2 times. query:"SET extra_float_digits = 3" Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:873 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: SimpleForwardToFrontend: packet:1 length:0 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_process_query.c:792 Jun 6 09:35:47 otp3 pgpool[2872]: [254-1] 2016-06-06 09:35:47: pid 2872: DEBUG: session context: setting command success. DONE Jun 6 09:35:47 otp3 pgpool[2872]: [254-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:741 Jun 6 09:35:47 otp3 pgpool[2872]: [255-1] 2016-06-06 09:35:47: pid 2872: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:47 otp3 pgpool[2872]: [255-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:219 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: session context: setting command success. DONE Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:741 Jun 6 09:35:47 otp3 pgpool[2872]: [256-1] 2016-06-06 09:35:47: pid 2872: DEBUG: processing frontend response Jun 6 09:35:47 otp3 pgpool[2872]: [256-2] 2016-06-06 09:35:47: pid 2872: DETAIL: received kind 'B'(42) from frontend Jun 6 09:35:47 otp3 pgpool[2872]: [256-3] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_proto_modules.c:2188 Jun 6 09:35:47 otp3 pgpool[2872]: [257-1] 2016-06-06 09:35:47: pid 2872: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:35:47 otp3 pgpool[2872]: [257-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:280 Jun 6 09:35:47 otp3 pgpool[2872]: [258-1] 2016-06-06 09:35:47: pid 2872: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:35:47 otp3 pgpool[2872]: [258-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:269 Jun 6 09:35:47 otp3 pgpool[2872]: [259-1] 2016-06-06 09:35:47: pid 2872: DEBUG: Bind: checking strict query Jun 6 09:35:47 otp3 pgpool[2872]: [259-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_proto_modules.c:1211 Jun 6 09:35:47 otp3 pgpool[2872]: [260-1] 2016-06-06 09:35:47: pid 2872: DEBUG: Bind: checking insert lock Jun 6 09:35:47 otp3 pgpool[2872]: [260-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_proto_modules.c:1221 Jun 6 09:35:47 otp3 pgpool[2872]: [261-1] 2016-06-06 09:35:47: pid 2872: DEBUG: Bind: waiting for master completing the query Jun 6 09:35:47 otp3 pgpool[2872]: [261-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_proto_modules.c:1237 Jun 6 09:35:47 otp3 pgpool[2872]: [262-1] 2016-06-06 09:35:47: pid 2872: DEBUG: session context: setting query in progress. DONE Jun 6 09:35:47 otp3 pgpool[2872]: [262-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:208 Jun 6 09:35:47 otp3 pgpool[2872]: [263-1] 2016-06-06 09:35:47: pid 2872: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:35:47 otp3 pgpool[2872]: [263-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_query_context.c:854 Jun 6 09:35:47 otp3 pgpool[2872]: [264-1] 2016-06-06 09:35:47: pid 2872: DEBUG: pool_write: to backend: kind:B Jun 6 09:35:47 otp3 pgpool[2872]: [264-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:35:47 otp3 pgpool[2872]: [265-1] 2016-06-06 09:35:47: pid 2872: DEBUG: pool_write: to backend: kind:H Jun 6 09:35:47 otp3 pgpool[2872]: [265-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:35:47 otp3 pgpool[2872]: [266-1] 2016-06-06 09:35:47: pid 2872: DEBUG: waiting for query response Jun 6 09:35:47 otp3 pgpool[2872]: [266-2] 2016-06-06 09:35:47: pid 2872: DETAIL: waiting for backend:0 to complete the query Jun 6 09:35:47 otp3 pgpool[2872]: [266-3] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_process_query.c:479 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:219 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: processing frontend response Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DETAIL: received kind 'B'(42) from frontend Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_proto_modules.c:2188 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:280 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:269 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: Bind: checking strict query Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_proto_modules.c:1211 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: Bind: checking insert lock Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_proto_modules.c:1221 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: Bind: waiting for master completing the query Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_proto_modules.c:1237 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: session context: setting query in progress. DONE Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:208 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_query_context.c:854 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: pool_write: to backend: kind:B Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: pool_write: to backend: kind:H Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: waiting for query response Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DETAIL: waiting for backend:0 to complete the query Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_process_query.c:479 Jun 6 09:35:47 otp3 pgpool[2875]: [12-1] 2016-06-06 09:35:47: pid 2875: LOG: new connection received Jun 6 09:35:47 otp3 pgpool[2875]: [12-2] 2016-06-06 09:35:47: pid 2875: DETAIL: connecting host=10.200.1.64 port=25994 Jun 6 09:35:47 otp3 pgpool[2875]: [12-3] 2016-06-06 09:35:47: pid 2875: LOCATION: child.c:2110 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: LOG: new connection received Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DETAIL: connecting host=10.200.1.64 port=25994 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: LOCATION: child.c:2110 Jun 6 09:35:47 otp3 pgpool[2872]: [267-1] 2016-06-06 09:35:47: pid 2872: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:35:47 otp3 pgpool[2872]: [267-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_stream.c:190 Jun 6 09:35:47 otp3 pgpool[2872]: [268-1] 2016-06-06 09:35:47: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:47 otp3 pgpool[2872]: [268-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:35:47 otp3 pgpool[2872]: [269-1] 2016-06-06 09:35:47: pid 2872: DEBUG: reading backend data packet kind Jun 6 09:35:47 otp3 pgpool[2872]: [269-2] 2016-06-06 09:35:47: pid 2872: DETAIL: backend:0 of 2 kind = '2' Jun 6 09:35:47 otp3 pgpool[2872]: [269-3] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_process_query.c:3349 Jun 6 09:35:47 otp3 pgpool[2872]: [270-1] 2016-06-06 09:35:47: pid 2872: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:35:47 otp3 pgpool[2872]: [270-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_process_query.c:3365 Jun 6 09:35:47 otp3 pgpool[2872]: [271-1] 2016-06-06 09:35:47: pid 2872: DEBUG: processing backend response Jun 6 09:35:47 otp3 pgpool[2872]: [271-2] 2016-06-06 09:35:47: pid 2872: DETAIL: received kind '2'(32) from backend Jun 6 09:35:47 otp3 pgpool[2872]: [271-3] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_proto_modules.c:2424 Jun 6 09:35:47 otp3 pgpool[2872]: [272-1] 2016-06-06 09:35:47: pid 2872: DEBUG: called by pool_add_sent_message: sent message: address: 2406c80 kind: B name: == Jun 6 09:35:47 otp3 pgpool[2872]: [272-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:436 Jun 6 09:35:47 otp3 pgpool[2872]: [273-1] 2016-06-06 09:35:47: pid 2872: DEBUG: adding sent message to list Jun 6 09:35:47 otp3 pgpool[2872]: [273-2] 2016-06-06 09:35:47: pid 2872: DETAIL: portal "" already exists Jun 6 09:35:47 otp3 pgpool[2872]: [273-3] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:512 Jun 6 09:35:47 otp3 pgpool[2872]: [274-1] 2016-06-06 09:35:47: pid 2872: DEBUG: called by pool_sent_message_destroy: sent message: address: 2406d18 kind: B name: == Jun 6 09:35:47 otp3 pgpool[2872]: [274-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:436 Jun 6 09:35:47 otp3 pgpool[2872]: [275-1] 2016-06-06 09:35:47: pid 2872: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:47 otp3 pgpool[2872]: [275-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:219 Jun 6 09:35:47 otp3 pgpool[2872]: [276-1] 2016-06-06 09:35:47: pid 2872: DEBUG: session context: setting query in progress. DONE Jun 6 09:35:47 otp3 pgpool[2872]: [276-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:208 Jun 6 09:35:47 otp3 pgpool[2872]: [277-1] 2016-06-06 09:35:47: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:47 otp3 pgpool[2872]: [277-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:35:47 otp3 pgpool[2872]: [278-1] 2016-06-06 09:35:47: pid 2872: DEBUG: SimpleForwardToFrontend: packet:2 length:0 Jun 6 09:35:47 otp3 pgpool[2872]: [278-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_process_query.c:792 Jun 6 09:35:47 otp3 pgpool[2872]: [279-1] 2016-06-06 09:35:47: pid 2872: DEBUG: session context: setting command success. DONE Jun 6 09:35:47 otp3 pgpool[2872]: [279-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:741 Jun 6 09:35:47 otp3 pgpool[2872]: [280-1] 2016-06-06 09:35:47: pid 2872: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:47 otp3 pgpool[2872]: [280-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:219 Jun 6 09:35:47 otp3 pgpool[2872]: [281-1] 2016-06-06 09:35:47: pid 2872: DEBUG: processing frontend response Jun 6 09:35:47 otp3 pgpool[2872]: [281-2] 2016-06-06 09:35:47: pid 2872: DETAIL: received kind 'D'(44) from frontend Jun 6 09:35:47 otp3 pgpool[2872]: [281-3] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_proto_modules.c:2188 Jun 6 09:35:47 otp3 pgpool[2872]: [282-1] 2016-06-06 09:35:47: pid 2872: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:35:47 otp3 pgpool[2872]: [282-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:280 Jun 6 09:35:47 otp3 pgpool[2872]: [283-1] 2016-06-06 09:35:47: pid 2872: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:35:47 otp3 pgpool[2872]: [283-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:269 Jun 6 09:35:47 otp3 pgpool[2872]: [284-1] 2016-06-06 09:35:47: pid 2872: DEBUG: Describe: waiting for master completing the query Jun 6 09:35:47 otp3 pgpool[2872]: [284-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_proto_modules.c:1310 Jun 6 09:35:47 otp3 pgpool[2872]: [285-1] 2016-06-06 09:35:47: pid 2872: DEBUG: session context: setting query in progress. DONE Jun 6 09:35:47 otp3 pgpool[2872]: [285-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:208 Jun 6 09:35:47 otp3 pgpool[2872]: [286-1] 2016-06-06 09:35:47: pid 2872: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:35:47 otp3 pgpool[2872]: [286-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_query_context.c:854 Jun 6 09:35:47 otp3 pgpool[2872]: [287-1] 2016-06-06 09:35:47: pid 2872: DEBUG: pool_write: to backend: kind:D Jun 6 09:35:47 otp3 pgpool[2872]: [287-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:35:47 otp3 pgpool[2872]: [288-1] 2016-06-06 09:35:47: pid 2872: DEBUG: pool_write: to backend: kind:H Jun 6 09:35:47 otp3 pgpool[2872]: [288-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:35:47 otp3 pgpool[2872]: [289-1] 2016-06-06 09:35:47: pid 2872: DEBUG: waiting for query response Jun 6 09:35:47 otp3 pgpool[2872]: [289-2] 2016-06-06 09:35:47: pid 2872: DETAIL: waiting for backend:0 to complete the query Jun 6 09:35:47 otp3 pgpool[2872]: [289-3] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_process_query.c:479 Jun 6 09:35:47 otp3 pgpool[2872]: [290-1] 2016-06-06 09:35:47: pid 2872: DEBUG: pool_read: read 34 bytes from backend 0 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:35:47 otp3 pgpool[2872]: [290-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_stream.c:190 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_stream.c:190 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:47 otp3 pgpool[2872]: [291-1] 2016-06-06 09:35:47: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:35:47 otp3 pgpool[2872]: [291-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: reading backend data packet kind Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DETAIL: backend:0 of 2 kind = '2' Jun 6 09:35:47 otp3 pgpool[2872]: [292-1] 2016-06-06 09:35:47: pid 2872: DEBUG: reading backend data packet kind Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_process_query.c:3349 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:35:47 otp3 pgpool[2872]: [292-2] 2016-06-06 09:35:47: pid 2872: DETAIL: backend:0 of 2 kind = 'T' Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_process_query.c:3365 Jun 6 09:35:47 otp3 pgpool[2872]: [292-3] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_process_query.c:3349 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: processing backend response Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DETAIL: received kind '2'(32) from backend Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_proto_modules.c:2424 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: called by pool_add_sent_message: sent message: address: 2406c80 kind: B name: == Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:436 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: adding sent message to list Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DETAIL: portal "" already exists Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:512 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: called by pool_sent_message_destroy: sent message: address: 2406d18 kind: B name: == Jun 6 09:35:47 otp3 pgpool[2872]: [293-1] 2016-06-06 09:35:47: pid 2872: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:436 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:219 Jun 6 09:35:47 otp3 pgpool[2872]: [293-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_process_query.c:3365 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: session context: setting query in progress. DONE Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:208 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:35:47 otp3 pgpool[2872]: [294-1] 2016-06-06 09:35:47: pid 2872: DEBUG: processing backend response Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: SimpleForwardToFrontend: packet:2 length:0 Jun 6 09:35:47 otp3 pgpool[2872]: [294-2] 2016-06-06 09:35:47: pid 2872: DETAIL: received kind 'T'(54) from backend Jun 6 09:35:47 otp3 pgpool[2872]: [294-3] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_proto_modules.c:2424 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_process_query.c:792 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: session context: setting command success. DONE Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:741 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:219 Jun 6 09:35:47 otp3 pgpool[2872]: [295-1] 2016-06-06 09:35:47: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: processing frontend response Jun 6 09:35:47 otp3 pgpool[2872]: [295-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DETAIL: received kind 'D'(44) from frontend Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_proto_modules.c:2188 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:280 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:35:47 otp3 pgpool[2872]: [296-1] 2016-06-06 09:35:47: pid 2872: DEBUG: SimpleForwardToFrontend: packet:T length:29 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:269 Jun 6 09:35:47 otp3 pgpool[2872]: [296-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_process_query.c:792 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: Describe: waiting for master completing the query Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_proto_modules.c:1310 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: session context: setting query in progress. DONE Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:208 Jun 6 09:35:47 otp3 pgpool[2872]: [297-1] 2016-06-06 09:35:47: pid 2872: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_query_context.c:854 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: pool_write: to backend: kind:D Jun 6 09:35:47 otp3 pgpool[2872]: [297-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:219 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: pool_write: to backend: kind:H Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:35:47 otp3 pgpool[2872]: [298-1] 2016-06-06 09:35:47: pid 2872: DEBUG: processing frontend response Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: waiting for query response Jun 6 09:35:47 otp3 pgpool[2872]: [298-2] 2016-06-06 09:35:47: pid 2872: DETAIL: received kind 'E'(45) from frontend Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DETAIL: waiting for backend:0 to complete the query Jun 6 09:35:47 otp3 pgpool[2872]: [298-3] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_proto_modules.c:2188 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_process_query.c:479 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: pool_read: read 34 bytes from backend 0 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_stream.c:190 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:47 otp3 pgpool[2872]: [299-1] 2016-06-06 09:35:47: pid 2872: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:35:47 otp3 pgpool[2872]: [299-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:280 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: reading backend data packet kind Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DETAIL: backend:0 of 2 kind = 'T' Jun 6 09:35:47 otp3 pgpool[2872]: [300-1] 2016-06-06 09:35:47: pid 2872: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:35:47 otp3 pgpool[2872]: [300-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:269 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_process_query.c:3349 Jun 6 09:35:47 otp3 pgpool[2872]: [301-1] 2016-06-06 09:35:47: pid 2872: DEBUG: session context: setting query in progress. DONE Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:35:47 otp3 pgpool[2872]: [301-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:208 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_process_query.c:3365 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: processing backend response Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DETAIL: received kind 'T'(54) from backend Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_proto_modules.c:2424 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:47 otp3 pgpool[2872]: [302-1] 2016-06-06 09:35:47: pid 2872: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:35:47 otp3 pgpool[2872]: [302-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_query_context.c:854 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: SimpleForwardToFrontend: packet:T length:29 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_process_query.c:792 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:219 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: processing frontend response Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DETAIL: received kind 'E'(45) from frontend Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_proto_modules.c:2188 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:280 Jun 6 09:35:47 otp3 pgpool[2872]: [303-1] 2016-06-06 09:35:47: pid 2872: DEBUG: pool_write: to backend: kind:E Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:269 Jun 6 09:35:47 otp3 pgpool[2872]: [303-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: session context: setting query in progress. DONE Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:208 Jun 6 09:35:47 otp3 pgpool[2872]: [304-1] 2016-06-06 09:35:47: pid 2872: DEBUG: pool_write: to backend: kind:H Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:35:47 otp3 pgpool[2872]: [304-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_query_context.c:854 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: pool_write: to backend: kind:E Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: pool_write: to backend: kind:H Jun 6 09:35:47 otp3 pgpool[2872]: [305-1] 2016-06-06 09:35:47: pid 2872: DEBUG: waiting for query response Jun 6 09:35:47 otp3 pgpool[2872]: [305-2] 2016-06-06 09:35:47: pid 2872: DETAIL: waiting for backend:0 to complete the query Jun 6 09:35:47 otp3 pgpool[2872]: [305-3] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_process_query.c:479 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: waiting for query response Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DETAIL: waiting for backend:0 to complete the query Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_process_query.c:479 Jun 6 09:35:47 otp3 pgpool[2875]: [13-1] 2016-06-06 09:35:47: pid 2875: DEBUG: reading startup packet Jun 6 09:35:47 otp3 pgpool[2875]: [13-2] 2016-06-06 09:35:47: pid 2875: DETAIL: Protocol Major: 3 Minor: 0 database: ctl user: sparrowdesk Jun 6 09:35:47 otp3 pgpool[2875]: [13-3] 2016-06-06 09:35:47: pid 2875: LOCATION: child.c:614 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DEBUG: reading startup packet Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DETAIL: Protocol Major: 3 Minor: 0 database: ctl user: sparrowdesk Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: LOCATION: child.c:614 Jun 6 09:35:47 otp3 pgpool[2872]: [306-1] 2016-06-06 09:35:47: pid 2872: DEBUG: pool_read: read 26 bytes from backend 0 Jun 6 09:35:47 otp3 pgpool[2872]: [306-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_stream.c:190 Jun 6 09:35:47 otp3 pgpool[2872]: [307-1] 2016-06-06 09:35:47: pid 2872: DEBUG: detect error: kind: D Jun 6 09:35:47 otp3 pgpool[2872]: [307-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_process_query.c:4166 Jun 6 09:35:47 otp3 pgpool[2872]: [308-1] 2016-06-06 09:35:47: pid 2872: DEBUG: detect error: kind: D Jun 6 09:35:47 otp3 pgpool[2872]: [308-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_process_query.c:4166 Jun 6 09:35:47 otp3 pgpool[2872]: [309-1] 2016-06-06 09:35:47: pid 2872: DEBUG: detect error: kind: D Jun 6 09:35:47 otp3 pgpool[2872]: [309-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_process_query.c:4166 Jun 6 09:35:47 otp3 pgpool[2872]: [310-1] 2016-06-06 09:35:47: pid 2872: DEBUG: detect error: kind: D Jun 6 09:35:47 otp3 pgpool[2872]: [310-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_process_query.c:4166 Jun 6 09:35:47 otp3 pgpool[2872]: [311-1] 2016-06-06 09:35:47: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:47 otp3 pgpool[2872]: [311-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:35:47 otp3 pgpool[2872]: [312-1] 2016-06-06 09:35:47: pid 2872: DEBUG: reading backend data packet kind Jun 6 09:35:47 otp3 pgpool[2872]: [312-2] 2016-06-06 09:35:47: pid 2872: DETAIL: backend:0 of 2 kind = 'D' Jun 6 09:35:47 otp3 pgpool[2872]: [312-3] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_process_query.c:3349 Jun 6 09:35:47 otp3 pgpool[2872]: [313-1] 2016-06-06 09:35:47: pid 2872: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:35:47 otp3 pgpool[2872]: [313-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_process_query.c:3365 Jun 6 09:35:47 otp3 pgpool[2872]: [314-1] 2016-06-06 09:35:47: pid 2872: DEBUG: processing backend response Jun 6 09:35:47 otp3 pgpool[2872]: [314-2] 2016-06-06 09:35:47: pid 2872: DETAIL: received kind 'D'(44) from backend Jun 6 09:35:47 otp3 pgpool[2872]: [314-3] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_proto_modules.c:2424 Jun 6 09:35:47 otp3 pgpool[2872]: [315-1] 2016-06-06 09:35:47: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:47 otp3 pgpool[2872]: [315-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:35:47 otp3 pgpool[2872]: [316-1] 2016-06-06 09:35:47: pid 2872: DEBUG: SimpleForwardToFrontend: packet:D length:7 Jun 6 09:35:47 otp3 pgpool[2872]: [316-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_process_query.c:792 Jun 6 09:35:47 otp3 pgpool[2872]: [317-1] 2016-06-06 09:35:47: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:47 otp3 pgpool[2872]: [317-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:35:47 otp3 pgpool[2872]: [318-1] 2016-06-06 09:35:47: pid 2872: DEBUG: reading backend data packet kind Jun 6 09:35:47 otp3 pgpool[2872]: [318-2] 2016-06-06 09:35:47: pid 2872: DETAIL: backend:0 of 2 kind = 'C' Jun 6 09:35:47 otp3 pgpool[2872]: [318-3] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_process_query.c:3349 Jun 6 09:35:47 otp3 pgpool[2872]: [319-1] 2016-06-06 09:35:47: pid 2872: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:35:47 otp3 pgpool[2872]: [319-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_process_query.c:3365 Jun 6 09:35:47 otp3 pgpool[2872]: [320-1] 2016-06-06 09:35:47: pid 2872: DEBUG: processing backend response Jun 6 09:35:47 otp3 pgpool[2872]: [320-2] 2016-06-06 09:35:47: pid 2872: DETAIL: received kind 'C'(43) from backend Jun 6 09:35:47 otp3 pgpool[2872]: [320-3] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_proto_modules.c:2424 Jun 6 09:35:47 otp3 pgpool[2872]: [321-1] 2016-06-06 09:35:47: pid 2872: DEBUG: session context: setting command success. DONE Jun 6 09:35:47 otp3 pgpool[2872]: [321-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:741 Jun 6 09:35:47 otp3 pgpool[2872]: [322-1] 2016-06-06 09:35:47: pid 2872: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:47 otp3 pgpool[2872]: [322-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:219 Jun 6 09:35:47 otp3 pgpool[2872]: [323-1] 2016-06-06 09:35:47: pid 2872: DEBUG: processing frontend response Jun 6 09:35:47 otp3 pgpool[2872]: [323-2] 2016-06-06 09:35:47: pid 2872: DETAIL: received kind 'S'(53) from frontend Jun 6 09:35:47 otp3 pgpool[2872]: [323-3] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_proto_modules.c:2188 Jun 6 09:35:47 otp3 pgpool[2872]: [324-1] 2016-06-06 09:35:47: pid 2872: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:35:47 otp3 pgpool[2872]: [324-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:280 Jun 6 09:35:47 otp3 pgpool[2872]: [325-1] 2016-06-06 09:35:47: pid 2872: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:35:47 otp3 pgpool[2872]: [325-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:269 Jun 6 09:35:47 otp3 pgpool[2872]: [326-1] 2016-06-06 09:35:47: pid 2872: DEBUG: session context: setting query in progress. DONE Jun 6 09:35:47 otp3 pgpool[2872]: [326-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:208 Jun 6 09:35:47 otp3 pgpool[2872]: [327-1] 2016-06-06 09:35:47: pid 2872: DEBUG: pool_write: to backend: kind:S Jun 6 09:35:47 otp3 pgpool[2872]: [327-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:35:47 otp3 pgpool[2872]: [328-1] 2016-06-06 09:35:47: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:47 otp3 pgpool[2872]: [328-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: pool_read: read 26 bytes from backend 0 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_stream.c:190 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: detect error: kind: D Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_process_query.c:4166 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: detect error: kind: D Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_process_query.c:4166 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: detect error: kind: D Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_process_query.c:4166 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: detect error: kind: D Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_process_query.c:4166 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: reading backend data packet kind Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DETAIL: backend:0 of 2 kind = 'D' Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_process_query.c:3349 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_process_query.c:3365 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: processing backend response Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DETAIL: received kind 'D'(44) from backend Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_proto_modules.c:2424 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: SimpleForwardToFrontend: packet:D length:7 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_process_query.c:792 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: reading backend data packet kind Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DETAIL: backend:0 of 2 kind = 'C' Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_process_query.c:3349 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_process_query.c:3365 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: processing backend response Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DETAIL: received kind 'C'(43) from backend Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_proto_modules.c:2424 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: session context: setting command success. DONE Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:741 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:219 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: processing frontend response Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DETAIL: received kind 'S'(53) from frontend Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_proto_modules.c:2188 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:280 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:269 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: session context: setting query in progress. DONE Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:208 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: pool_write: to backend: kind:S Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:35:47 otp3 pgpool[2872]: [329-1] 2016-06-06 09:35:47: pid 2872: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:35:47 otp3 pgpool[2872]: [329-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_stream.c:190 Jun 6 09:35:47 otp3 pgpool[2872]: [330-1] 2016-06-06 09:35:47: pid 2872: DEBUG: reading backend data packet kind Jun 6 09:35:47 otp3 pgpool[2872]: [330-2] 2016-06-06 09:35:47: pid 2872: DETAIL: backend:0 of 2 kind = 'Z' Jun 6 09:35:47 otp3 pgpool[2872]: [330-3] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_process_query.c:3349 Jun 6 09:35:47 otp3 pgpool[2872]: [331-1] 2016-06-06 09:35:47: pid 2872: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:35:47 otp3 pgpool[2872]: [331-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_process_query.c:3365 Jun 6 09:35:47 otp3 pgpool[2872]: [332-1] 2016-06-06 09:35:47: pid 2872: DEBUG: processing backend response Jun 6 09:35:47 otp3 pgpool[2872]: [332-2] 2016-06-06 09:35:47: pid 2872: DETAIL: received kind 'Z'(5a) from backend Jun 6 09:35:47 otp3 pgpool[2872]: [332-3] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_proto_modules.c:2424 Jun 6 09:35:47 otp3 pgpool[2872]: [333-1] 2016-06-06 09:35:47: pid 2872: DEBUG: processing backend response Jun 6 09:35:47 otp3 pgpool[2872]: [333-2] 2016-06-06 09:35:47: pid 2872: DETAIL: Ready For Query received Jun 6 09:35:47 otp3 pgpool[2872]: [333-3] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_proto_modules.c:2442 Jun 6 09:35:47 otp3 pgpool[2872]: [334-1] 2016-06-06 09:35:47: pid 2872: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:35:47 otp3 pgpool[2872]: [334-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:310 Jun 6 09:35:47 otp3 pgpool[2872]: [335-1] 2016-06-06 09:35:47: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:47 otp3 pgpool[2872]: [335-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:35:47 otp3 pgpool[2872]: [336-1] 2016-06-06 09:35:47: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:47 otp3 pgpool[2872]: [336-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:35:47 otp3 pgpool[2872]: [337-1] 2016-06-06 09:35:47: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:47 otp3 pgpool[2872]: [337-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:35:47 otp3 pgpool[2872]: [338-1] 2016-06-06 09:35:47: pid 2872: DEBUG: reading message length Jun 6 09:35:47 otp3 pgpool[2872]: [338-2] 2016-06-06 09:35:47: pid 2872: DETAIL: slot: 0 length: 5 Jun 6 09:35:47 otp3 pgpool[2872]: [338-3] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_auth.c:1107 Jun 6 09:35:47 otp3 pgpool[2872]: [339-1] 2016-06-06 09:35:47: pid 2872: DEBUG: processing ReadyForQuery Jun 6 09:35:47 otp3 pgpool[2872]: [339-2] 2016-06-06 09:35:47: pid 2872: DETAIL: transaction state 'I'(49) Jun 6 09:35:47 otp3 pgpool[2872]: [339-3] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_proto_modules.c:1612 Jun 6 09:35:47 otp3 pgpool[2872]: [340-1] 2016-06-06 09:35:47: pid 2872: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:47 otp3 pgpool[2872]: [340-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:219 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_stream.c:190 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: reading backend data packet kind Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DETAIL: backend:0 of 2 kind = 'Z' Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_process_query.c:3349 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_process_query.c:3365 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: processing backend response Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DETAIL: received kind 'Z'(5a) from backend Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_proto_modules.c:2424 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: processing backend response Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DETAIL: Ready For Query received Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_proto_modules.c:2442 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:310 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: reading message length Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DETAIL: slot: 0 length: 5 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_auth.c:1107 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: processing ReadyForQuery Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DETAIL: transaction state 'I'(49) Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_proto_modules.c:1612 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:219 Jun 6 09:35:47 otp3 pgpool[2875]: [14-1] 2016-06-06 09:35:47: pid 2875: DEBUG: creating new connection to backend Jun 6 09:35:47 otp3 pgpool[2875]: [14-2] 2016-06-06 09:35:47: pid 2875: DETAIL: connecting 0 backend Jun 6 09:35:47 otp3 pgpool[2875]: [14-3] 2016-06-06 09:35:47: pid 2875: LOCATION: pool_connection_pool.c:830 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DEBUG: creating new connection to backend Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DETAIL: connecting 0 backend Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: LOCATION: pool_connection_pool.c:830 Jun 6 09:35:47 otp3 pgpool[2875]: [15-1] 2016-06-06 09:35:47: pid 2875: DEBUG: creating new connection to backend Jun 6 09:35:47 otp3 pgpool[2875]: [15-2] 2016-06-06 09:35:47: pid 2875: DETAIL: connecting 1 backend Jun 6 09:35:47 otp3 pgpool[2875]: [15-3] 2016-06-06 09:35:47: pid 2875: LOCATION: pool_connection_pool.c:830 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DEBUG: creating new connection to backend Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DETAIL: connecting 1 backend Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: LOCATION: pool_connection_pool.c:830 Jun 6 09:35:47 otp3 pgpool[2872]: [341-1] 2016-06-06 09:35:47: pid 2872: DEBUG: processing frontend response Jun 6 09:35:47 otp3 pgpool[2872]: [341-2] 2016-06-06 09:35:47: pid 2872: DETAIL: received kind 'P'(50) from frontend Jun 6 09:35:47 otp3 pgpool[2872]: [341-3] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_proto_modules.c:2188 Jun 6 09:35:47 otp3 pgpool[2872]: [342-1] 2016-06-06 09:35:47: pid 2872: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:35:47 otp3 pgpool[2872]: [342-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:280 Jun 6 09:35:47 otp3 pgpool[2872]: [343-1] 2016-06-06 09:35:47: pid 2872: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:35:47 otp3 pgpool[2872]: [343-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:269 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: processing frontend response Jun 6 09:35:47 otp3 pgpool[2872]: [344-1] 2016-06-06 09:35:47: pid 2872: DEBUG: Parse: statement name <> Jun 6 09:35:47 otp3 pgpool[2872]: [344-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_proto_modules.c:817 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DETAIL: received kind 'P'(50) from frontend Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_proto_modules.c:2188 Jun 6 09:35:47 otp3 pgpool[2872]: [345-1] 2016-06-06 09:35:47: pid 2872: DEBUG: session context: setting query in progress. DONE Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:35:47 otp3 pgpool[2872]: [345-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:208 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:280 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:35:47 otp3 pgpool[2872]: [346-1] 2016-06-06 09:35:47: pid 2872: DEBUG: pool_write: to backend: kind:S Jun 6 09:35:47 otp3 pgpool[2872]: [346-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:269 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: Parse: statement name <> Jun 6 09:35:47 otp3 pgpool[2872]: [347-1] 2016-06-06 09:35:47: pid 2872: DEBUG: pool_write: to backend: kind:H Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_proto_modules.c:817 Jun 6 09:35:47 otp3 pgpool[2872]: [347-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: session context: setting query in progress. DONE Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:208 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: pool_write: to backend: kind:S Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: pool_write: to backend: kind:H Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:35:47 otp3 pgpool[2872]: [348-1] 2016-06-06 09:35:47: pid 2872: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:35:47 otp3 pgpool[2872]: [348-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_stream.c:190 Jun 6 09:35:47 otp3 pgpool[2872]: [349-1] 2016-06-06 09:35:47: pid 2872: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:35:47 otp3 pgpool[2872]: [349-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:310 Jun 6 09:35:47 otp3 pgpool[2872]: [350-1] 2016-06-06 09:35:47: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:47 otp3 pgpool[2872]: [350-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_stream.c:190 Jun 6 09:35:47 otp3 pgpool[2872]: [351-1] 2016-06-06 09:35:47: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:47 otp3 pgpool[2872]: [351-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:310 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:35:47 otp3 pgpool[2872]: [352-1] 2016-06-06 09:35:47: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:47 otp3 pgpool[2872]: [352-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:35:47 otp3 pgpool[2872]: [353-1] 2016-06-06 09:35:47: pid 2872: DEBUG: reading message length Jun 6 09:35:47 otp3 pgpool[2872]: [353-2] 2016-06-06 09:35:47: pid 2872: DETAIL: slot: 0 length: 5 Jun 6 09:35:47 otp3 pgpool[2872]: [353-3] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_auth.c:1107 Jun 6 09:35:47 otp3 pgpool[2872]: [354-1] 2016-06-06 09:35:47: pid 2872: DEBUG: processing ReadyForQuery Jun 6 09:35:47 otp3 pgpool[2872]: [354-2] 2016-06-06 09:35:47: pid 2872: DETAIL: transaction state 'I'(49) Jun 6 09:35:47 otp3 pgpool[2872]: [354-3] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_proto_modules.c:1612 Jun 6 09:35:47 otp3 pgpool[2872]: [355-1] 2016-06-06 09:35:47: pid 2872: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:47 otp3 pgpool[2872]: [355-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:219 Jun 6 09:35:47 otp3 pgpool[2872]: [356-1] 2016-06-06 09:35:47: pid 2872: DEBUG: session context: setting query in progress. DONE Jun 6 09:35:47 otp3 pgpool[2872]: [356-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:208 Jun 6 09:35:47 otp3 pgpool[2872]: [357-1] 2016-06-06 09:35:47: pid 2872: DEBUG: Parse: waiting for master completing the query Jun 6 09:35:47 otp3 pgpool[2872]: [357-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_proto_modules.c:1064 Jun 6 09:35:47 otp3 pgpool[2872]: [358-1] 2016-06-06 09:35:47: pid 2872: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:35:47 otp3 pgpool[2872]: [358-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_query_context.c:854 Jun 6 09:35:47 otp3 pgpool[2872]: [359-1] 2016-06-06 09:35:47: pid 2872: DEBUG: pool_write: to backend: kind:P Jun 6 09:35:47 otp3 pgpool[2872]: [359-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:35:47 otp3 pgpool[2872]: [360-1] 2016-06-06 09:35:47: pid 2872: DEBUG: pool_write: to backend: kind:H Jun 6 09:35:47 otp3 pgpool[2872]: [360-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:35:47 otp3 pgpool[2872]: [361-1] 2016-06-06 09:35:47: pid 2872: DEBUG: waiting for query response Jun 6 09:35:47 otp3 pgpool[2872]: [361-2] 2016-06-06 09:35:47: pid 2872: DETAIL: waiting for backend:0 to complete the query Jun 6 09:35:47 otp3 pgpool[2872]: [361-3] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_process_query.c:479 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: reading message length Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DETAIL: slot: 0 length: 5 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_auth.c:1107 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: processing ReadyForQuery Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DETAIL: transaction state 'I'(49) Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_proto_modules.c:1612 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:219 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: session context: setting query in progress. DONE Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:208 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: Parse: waiting for master completing the query Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_proto_modules.c:1064 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_query_context.c:854 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: pool_write: to backend: kind:P Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: pool_write: to backend: kind:H Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: waiting for query response Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DETAIL: waiting for backend:0 to complete the query Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_process_query.c:479 Jun 6 09:35:47 otp3 pgpool[2872]: [362-1] 2016-06-06 09:35:47: pid 2872: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:35:47 otp3 pgpool[2872]: [362-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_stream.c:190 Jun 6 09:35:47 otp3 pgpool[2872]: [363-1] 2016-06-06 09:35:47: pid 2872: DEBUG: detect error: kind: 1 Jun 6 09:35:47 otp3 pgpool[2872]: [363-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_process_query.c:4166 Jun 6 09:35:47 otp3 pgpool[2872]: [364-1] 2016-06-06 09:35:47: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:47 otp3 pgpool[2872]: [364-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:35:47 otp3 pgpool[2872]: [365-1] 2016-06-06 09:35:47: pid 2872: DEBUG: reading backend data packet kind Jun 6 09:35:47 otp3 pgpool[2872]: [365-2] 2016-06-06 09:35:47: pid 2872: DETAIL: backend:0 of 2 kind = '1' Jun 6 09:35:47 otp3 pgpool[2872]: [365-3] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_process_query.c:3349 Jun 6 09:35:47 otp3 pgpool[2872]: [366-1] 2016-06-06 09:35:47: pid 2872: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:35:47 otp3 pgpool[2872]: [366-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_process_query.c:3365 Jun 6 09:35:47 otp3 pgpool[2872]: [367-1] 2016-06-06 09:35:47: pid 2872: DEBUG: processing backend response Jun 6 09:35:47 otp3 pgpool[2872]: [367-2] 2016-06-06 09:35:47: pid 2872: DETAIL: received kind '1'(31) from backend Jun 6 09:35:47 otp3 pgpool[2872]: [367-3] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_proto_modules.c:2424 Jun 6 09:35:47 otp3 pgpool[2872]: [368-1] 2016-06-06 09:35:47: pid 2872: DEBUG: called by pool_add_sent_message: sent message: address: 2406d18 kind: P name: == Jun 6 09:35:47 otp3 pgpool[2872]: [368-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:436 Jun 6 09:35:47 otp3 pgpool[2872]: [369-1] 2016-06-06 09:35:47: pid 2872: DEBUG: adding sent message to list Jun 6 09:35:47 otp3 pgpool[2872]: [369-2] 2016-06-06 09:35:47: pid 2872: DETAIL: prepared statement "" already exists Jun 6 09:35:47 otp3 pgpool[2872]: [369-3] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:516 Jun 6 09:35:47 otp3 pgpool[2872]: [370-1] 2016-06-06 09:35:47: pid 2872: DEBUG: called by pool_sent_message_destroy: sent message: address: 2406d98 kind: P name: == Jun 6 09:35:47 otp3 pgpool[2872]: [370-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:436 Jun 6 09:35:47 otp3 pgpool[2872]: [371-1] 2016-06-06 09:35:47: pid 2872: DEBUG: checking if query context can be safely destroyed Jun 6 09:35:47 otp3 pgpool[2872]: [371-2] 2016-06-06 09:35:47: pid 2872: DETAIL: query context 0x802482830 is still used 2 times. query:"SELECT 1" Jun 6 09:35:47 otp3 pgpool[2872]: [371-3] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:873 Jun 6 09:35:47 otp3 pgpool[2872]: [372-1] 2016-06-06 09:35:47: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:47 otp3 pgpool[2872]: [372-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:35:47 otp3 pgpool[2872]: [373-1] 2016-06-06 09:35:47: pid 2872: DEBUG: SimpleForwardToFrontend: packet:1 length:0 Jun 6 09:35:47 otp3 pgpool[2872]: [373-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_process_query.c:792 Jun 6 09:35:47 otp3 pgpool[2872]: [374-1] 2016-06-06 09:35:47: pid 2872: DEBUG: session context: setting command success. DONE Jun 6 09:35:47 otp3 pgpool[2872]: [374-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:741 Jun 6 09:35:47 otp3 pgpool[2872]: [375-1] 2016-06-06 09:35:47: pid 2872: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:47 otp3 pgpool[2872]: [375-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:219 Jun 6 09:35:47 otp3 pgpool[2872]: [376-1] 2016-06-06 09:35:47: pid 2872: DEBUG: processing frontend response Jun 6 09:35:47 otp3 pgpool[2872]: [376-2] 2016-06-06 09:35:47: pid 2872: DETAIL: received kind 'B'(42) from frontend Jun 6 09:35:47 otp3 pgpool[2872]: [376-3] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_proto_modules.c:2188 Jun 6 09:35:47 otp3 pgpool[2872]: [377-1] 2016-06-06 09:35:47: pid 2872: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:35:47 otp3 pgpool[2872]: [377-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:280 Jun 6 09:35:47 otp3 pgpool[2872]: [378-1] 2016-06-06 09:35:47: pid 2872: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:35:47 otp3 pgpool[2872]: [378-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:269 Jun 6 09:35:47 otp3 pgpool[2872]: [379-1] 2016-06-06 09:35:47: pid 2872: DEBUG: Bind: checking strict query Jun 6 09:35:47 otp3 pgpool[2872]: [379-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_proto_modules.c:1211 Jun 6 09:35:47 otp3 pgpool[2872]: [380-1] 2016-06-06 09:35:47: pid 2872: DEBUG: Bind: checking insert lock Jun 6 09:35:47 otp3 pgpool[2872]: [380-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_proto_modules.c:1221 Jun 6 09:35:47 otp3 pgpool[2872]: [381-1] 2016-06-06 09:35:47: pid 2872: DEBUG: Bind: waiting for master completing the query Jun 6 09:35:47 otp3 pgpool[2872]: [381-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_proto_modules.c:1237 Jun 6 09:35:47 otp3 pgpool[2872]: [382-1] 2016-06-06 09:35:47: pid 2872: DEBUG: session context: setting query in progress. DONE Jun 6 09:35:47 otp3 pgpool[2872]: [382-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:208 Jun 6 09:35:47 otp3 pgpool[2872]: [383-1] 2016-06-06 09:35:47: pid 2872: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:35:47 otp3 pgpool[2872]: [383-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_query_context.c:854 Jun 6 09:35:47 otp3 pgpool[2872]: [384-1] 2016-06-06 09:35:47: pid 2872: DEBUG: pool_write: to backend: kind:B Jun 6 09:35:47 otp3 pgpool[2872]: [384-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:35:47 otp3 pgpool[2872]: [385-1] 2016-06-06 09:35:47: pid 2872: DEBUG: pool_write: to backend: kind:H Jun 6 09:35:47 otp3 pgpool[2872]: [385-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:35:47 otp3 pgpool[2872]: [386-1] 2016-06-06 09:35:47: pid 2872: DEBUG: waiting for query response Jun 6 09:35:47 otp3 pgpool[2872]: [386-2] 2016-06-06 09:35:47: pid 2872: DETAIL: waiting for backend:0 to complete the query Jun 6 09:35:47 otp3 pgpool[2872]: [386-3] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_process_query.c:479 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_stream.c:190 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: detect error: kind: 1 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_process_query.c:4166 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: reading backend data packet kind Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DETAIL: backend:0 of 2 kind = '1' Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_process_query.c:3349 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_process_query.c:3365 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: processing backend response Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DETAIL: received kind '1'(31) from backend Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_proto_modules.c:2424 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: called by pool_add_sent_message: sent message: address: 2406d18 kind: P name: == Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:436 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: adding sent message to list Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DETAIL: prepared statement "" already exists Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:516 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: called by pool_sent_message_destroy: sent message: address: 2406d98 kind: P name: == Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:436 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: checking if query context can be safely destroyed Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DETAIL: query context 0x802482830 is still used 2 times. query:"SELECT 1" Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:873 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: SimpleForwardToFrontend: packet:1 length:0 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_process_query.c:792 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: session context: setting command success. DONE Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:741 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:219 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: processing frontend response Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DETAIL: received kind 'B'(42) from frontend Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_proto_modules.c:2188 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:280 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:269 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: Bind: checking strict query Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_proto_modules.c:1211 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: Bind: checking insert lock Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_proto_modules.c:1221 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: Bind: waiting for master completing the query Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_proto_modules.c:1237 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: session context: setting query in progress. DONE Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:208 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_query_context.c:854 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: pool_write: to backend: kind:B Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: pool_write: to backend: kind:H Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: waiting for query response Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DETAIL: waiting for backend:0 to complete the query Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_process_query.c:479 Jun 6 09:35:47 otp3 pgpool[2872]: [387-1] 2016-06-06 09:35:47: pid 2872: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:35:47 otp3 pgpool[2872]: [387-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_stream.c:190 Jun 6 09:35:47 otp3 pgpool[2872]: [388-1] 2016-06-06 09:35:47: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:47 otp3 pgpool[2872]: [388-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:35:47 otp3 pgpool[2872]: [389-1] 2016-06-06 09:35:47: pid 2872: DEBUG: reading backend data packet kind Jun 6 09:35:47 otp3 pgpool[2872]: [389-2] 2016-06-06 09:35:47: pid 2872: DETAIL: backend:0 of 2 kind = '2' Jun 6 09:35:47 otp3 pgpool[2872]: [389-3] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_process_query.c:3349 Jun 6 09:35:47 otp3 pgpool[2872]: [390-1] 2016-06-06 09:35:47: pid 2872: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:35:47 otp3 pgpool[2872]: [390-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_process_query.c:3365 Jun 6 09:35:47 otp3 pgpool[2872]: [391-1] 2016-06-06 09:35:47: pid 2872: DEBUG: processing backend response Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:35:47 otp3 pgpool[2872]: [391-2] 2016-06-06 09:35:47: pid 2872: DETAIL: received kind '2'(32) from backend Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_stream.c:190 Jun 6 09:35:47 otp3 pgpool[2872]: [391-3] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_proto_modules.c:2424 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: reading backend data packet kind Jun 6 09:35:47 otp3 pgpool[2872]: [392-1] 2016-06-06 09:35:47: pid 2872: DEBUG: called by pool_add_sent_message: sent message: address: 2406d98 kind: B name: == Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DETAIL: backend:0 of 2 kind = '2' Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_process_query.c:3349 Jun 6 09:35:47 otp3 pgpool[2872]: [392-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:436 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_process_query.c:3365 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: processing backend response Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DETAIL: received kind '2'(32) from backend Jun 6 09:35:47 otp3 pgpool[2872]: [393-1] 2016-06-06 09:35:47: pid 2872: DEBUG: adding sent message to list Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_proto_modules.c:2424 Jun 6 09:35:47 otp3 pgpool[2872]: [393-2] 2016-06-06 09:35:47: pid 2872: DETAIL: portal "" already exists Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: called by pool_add_sent_message: sent message: address: 2406d98 kind: B name: == Jun 6 09:35:47 otp3 pgpool[2872]: [393-3] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:512 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:436 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: adding sent message to list Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DETAIL: portal "" already exists Jun 6 09:35:47 otp3 pgpool[2872]: [394-1] 2016-06-06 09:35:47: pid 2872: DEBUG: called by pool_sent_message_destroy: sent message: address: 2406c80 kind: B name: == Jun 6 09:35:47 otp3 pgpool[2872]: [394-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:436 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:512 Jun 6 09:35:47 otp3 pgpool[2872]: [395-1] 2016-06-06 09:35:47: pid 2872: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:47 otp3 pgpool[2872]: [395-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:219 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: called by pool_sent_message_destroy: sent message: address: 2406c80 kind: B name: == Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:436 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:47 otp3 pgpool[2872]: [396-1] 2016-06-06 09:35:47: pid 2872: DEBUG: session context: setting query in progress. DONE Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:219 Jun 6 09:35:47 otp3 pgpool[2872]: [396-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:208 Jun 6 09:35:47 otp3 pgpool[2872]: [397-1] 2016-06-06 09:35:47: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:47 otp3 pgpool[2872]: [397-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: session context: setting query in progress. DONE Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:208 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:47 otp3 pgpool[2872]: [398-1] 2016-06-06 09:35:47: pid 2872: DEBUG: SimpleForwardToFrontend: packet:2 length:0 Jun 6 09:35:47 otp3 pgpool[2872]: [398-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_process_query.c:792 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:35:47 otp3 pgpool[2872]: [399-1] 2016-06-06 09:35:47: pid 2872: DEBUG: session context: setting command success. DONE Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: SimpleForwardToFrontend: packet:2 length:0 Jun 6 09:35:47 otp3 pgpool[2872]: [399-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:741 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_process_query.c:792 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: session context: setting command success. DONE Jun 6 09:35:47 otp3 pgpool[2872]: [400-1] 2016-06-06 09:35:47: pid 2872: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:47 otp3 pgpool[2872]: [400-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:219 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:741 Jun 6 09:35:47 otp3 pgpool[2872]: [401-1] 2016-06-06 09:35:47: pid 2872: DEBUG: processing frontend response Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:47 otp3 pgpool[2872]: [401-2] 2016-06-06 09:35:47: pid 2872: DETAIL: received kind 'D'(44) from frontend Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:219 Jun 6 09:35:47 otp3 pgpool[2872]: [401-3] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_proto_modules.c:2188 Jun 6 09:35:47 otp3 pgpool[2872]: [402-1] 2016-06-06 09:35:47: pid 2872: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:35:47 otp3 pgpool[2872]: [402-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:280 Jun 6 09:35:47 otp3 pgpool[2872]: [403-1] 2016-06-06 09:35:47: pid 2872: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:35:47 otp3 pgpool[2872]: [403-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:269 Jun 6 09:35:47 otp3 pgpool[2872]: [404-1] 2016-06-06 09:35:47: pid 2872: DEBUG: Describe: waiting for master completing the query Jun 6 09:35:47 otp3 pgpool[2872]: [404-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_proto_modules.c:1310 Jun 6 09:35:47 otp3 pgpool[2872]: [405-1] 2016-06-06 09:35:47: pid 2872: DEBUG: session context: setting query in progress. DONE Jun 6 09:35:47 otp3 pgpool[2872]: [405-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:208 Jun 6 09:35:47 otp3 pgpool[2872]: [406-1] 2016-06-06 09:35:47: pid 2872: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:35:47 otp3 pgpool[2872]: [406-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_query_context.c:854 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: processing frontend response Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DETAIL: received kind 'D'(44) from frontend Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_proto_modules.c:2188 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:280 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:269 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: Describe: waiting for master completing the query Jun 6 09:35:47 otp3 pgpool[2872]: [407-1] 2016-06-06 09:35:47: pid 2872: DEBUG: pool_write: to backend: kind:D Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_proto_modules.c:1310 Jun 6 09:35:47 otp3 pgpool[2872]: [407-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:35:47 otp3 pgpool[2872]: [408-1] 2016-06-06 09:35:47: pid 2872: DEBUG: pool_write: to backend: kind:H Jun 6 09:35:47 otp3 pgpool[2872]: [408-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:35:47 otp3 pgpool[2872]: [409-1] 2016-06-06 09:35:47: pid 2872: DEBUG: waiting for query response Jun 6 09:35:47 otp3 pgpool[2872]: [409-2] 2016-06-06 09:35:47: pid 2872: DETAIL: waiting for backend:0 to complete the query Jun 6 09:35:47 otp3 pgpool[2872]: [409-3] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_process_query.c:479 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: session context: setting query in progress. DONE Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:208 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_query_context.c:854 Jun 6 09:35:47 otp3 pgpool[2872]: [410-1] 2016-06-06 09:35:47: pid 2872: DEBUG: pool_read: read 94 bytes from backend 0 Jun 6 09:35:47 otp3 pgpool[2872]: [410-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_stream.c:190 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: pool_write: to backend: kind:D Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: pool_write: to backend: kind:H Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: waiting for query response Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DETAIL: waiting for backend:0 to complete the query Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_process_query.c:479 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: pool_read: read 94 bytes from backend 0 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_stream.c:190 Jun 6 09:35:47 otp3 pgpool[2872]: [411-1] 2016-06-06 09:35:47: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:47 otp3 pgpool[2872]: [411-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:35:47 otp3 pgpool[2872]: [412-1] 2016-06-06 09:35:47: pid 2872: DEBUG: reading backend data packet kind Jun 6 09:35:47 otp3 pgpool[2872]: [412-2] 2016-06-06 09:35:47: pid 2872: DETAIL: backend:0 of 2 kind = 'T' Jun 6 09:35:47 otp3 pgpool[2872]: [412-3] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_process_query.c:3349 Jun 6 09:35:47 otp3 pgpool[2872]: [413-1] 2016-06-06 09:35:47: pid 2872: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:35:47 otp3 pgpool[2872]: [413-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_process_query.c:3365 Jun 6 09:35:47 otp3 pgpool[2872]: [414-1] 2016-06-06 09:35:47: pid 2872: DEBUG: processing backend response Jun 6 09:35:47 otp3 pgpool[2872]: [414-2] 2016-06-06 09:35:47: pid 2872: DETAIL: received kind 'T'(54) from backend Jun 6 09:35:47 otp3 pgpool[2872]: [414-3] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_proto_modules.c:2424 Jun 6 09:35:47 otp3 pgpool[2872]: [415-1] 2016-06-06 09:35:47: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:47 otp3 pgpool[2872]: [415-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:35:47 otp3 pgpool[2872]: [416-1] 2016-06-06 09:35:47: pid 2872: DEBUG: SimpleForwardToFrontend: packet:T length:89 Jun 6 09:35:47 otp3 pgpool[2872]: [416-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_process_query.c:792 Jun 6 09:35:47 otp3 pgpool[2872]: [417-1] 2016-06-06 09:35:47: pid 2872: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:47 otp3 pgpool[2872]: [417-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:219 Jun 6 09:35:47 otp3 pgpool[2872]: [418-1] 2016-06-06 09:35:47: pid 2872: DEBUG: processing frontend response Jun 6 09:35:47 otp3 pgpool[2872]: [418-2] 2016-06-06 09:35:47: pid 2872: DETAIL: received kind 'E'(45) from frontend Jun 6 09:35:47 otp3 pgpool[2872]: [418-3] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_proto_modules.c:2188 Jun 6 09:35:47 otp3 pgpool[2872]: [419-1] 2016-06-06 09:35:47: pid 2872: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:35:47 otp3 pgpool[2872]: [419-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:280 Jun 6 09:35:47 otp3 pgpool[2872]: [420-1] 2016-06-06 09:35:47: pid 2872: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:35:47 otp3 pgpool[2872]: [420-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:269 Jun 6 09:35:47 otp3 pgpool[2872]: [421-1] 2016-06-06 09:35:47: pid 2872: DEBUG: session context: setting query in progress. DONE Jun 6 09:35:47 otp3 pgpool[2872]: [421-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:208 Jun 6 09:35:47 otp3 pgpool[2872]: [422-1] 2016-06-06 09:35:47: pid 2872: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:35:47 otp3 pgpool[2872]: [422-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_query_context.c:854 Jun 6 09:35:47 otp3 pgpool[2872]: [423-1] 2016-06-06 09:35:47: pid 2872: DEBUG: pool_write: to backend: kind:E Jun 6 09:35:47 otp3 pgpool[2872]: [423-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:35:47 otp3 pgpool[2872]: [424-1] 2016-06-06 09:35:47: pid 2872: DEBUG: pool_write: to backend: kind:H Jun 6 09:35:47 otp3 pgpool[2872]: [424-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:35:47 otp3 pgpool[2872]: [425-1] 2016-06-06 09:35:47: pid 2872: DEBUG: waiting for query response Jun 6 09:35:47 otp3 pgpool[2872]: [425-2] 2016-06-06 09:35:47: pid 2872: DETAIL: waiting for backend:0 to complete the query Jun 6 09:35:47 otp3 pgpool[2872]: [425-3] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_process_query.c:479 Jun 6 09:35:47 otp3 pgpool[2875]: [16-1] 2016-06-06 09:35:47: pid 2875: DEBUG: SSL is requested but SSL support is not available Jun 6 09:35:47 otp3 pgpool[2875]: [16-2] 2016-06-06 09:35:47: pid 2875: LOCATION: pool_ssl.c:333 Jun 6 09:35:47 otp3 pgpool[2875]: [17-1] 2016-06-06 09:35:47: pid 2875: DEBUG: SSL is requested but SSL support is not available Jun 6 09:35:47 otp3 pgpool[2875]: [17-2] 2016-06-06 09:35:47: pid 2875: LOCATION: pool_ssl.c:333 Jun 6 09:35:47 otp3 pgpool[2872]: [426-1] 2016-06-06 09:35:47: pid 2872: DEBUG: pool_read: read 61 bytes from backend 0 Jun 6 09:35:47 otp3 pgpool[2872]: [426-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_stream.c:190 Jun 6 09:35:47 otp3 pgpool[2875]: [18-1] 2016-06-06 09:35:47: pid 2875: DEBUG: pool_read: read 13 bytes from backend 0 Jun 6 09:35:47 otp3 pgpool[2875]: [18-2] 2016-06-06 09:35:47: pid 2875: LOCATION: pool_stream.c:190 Jun 6 09:35:47 otp3 pgpool[2875]: [19-1] 2016-06-06 09:35:47: pid 2875: DEBUG: pool_read: read 13 bytes from backend 1 Jun 6 09:35:47 otp3 pgpool[2875]: [19-2] 2016-06-06 09:35:47: pid 2875: LOCATION: pool_stream.c:190 Jun 6 09:35:47 otp3 pgpool[2875]: [20-1] 2016-06-06 09:35:47: pid 2875: DEBUG: reading message length Jun 6 09:35:47 otp3 pgpool[2875]: [20-2] 2016-06-06 09:35:47: pid 2875: DETAIL: slot: 0 length: 12 Jun 6 09:35:47 otp3 pgpool[2875]: [20-3] 2016-06-06 09:35:47: pid 2875: LOCATION: pool_auth.c:1107 Jun 6 09:35:47 otp3 pgpool[2875]: [21-1] 2016-06-06 09:35:47: pid 2875: DEBUG: reading message length Jun 6 09:35:47 otp3 pgpool[2875]: [21-2] 2016-06-06 09:35:47: pid 2875: DETAIL: slot: 1 length: 12 Jun 6 09:35:47 otp3 pgpool[2875]: [21-3] 2016-06-06 09:35:47: pid 2875: LOCATION: pool_auth.c:1126 Jun 6 09:35:47 otp3 pgpool[2875]: [22-1] 2016-06-06 09:35:47: pid 2875: DEBUG: authentication backend Jun 6 09:35:47 otp3 pgpool[2875]: [22-2] 2016-06-06 09:35:47: pid 2875: DETAIL: auth kind:5 Jun 6 09:35:47 otp3 pgpool[2875]: [22-3] 2016-06-06 09:35:47: pid 2875: LOCATION: pool_auth.c:142 Jun 6 09:35:47 otp3 pgpool[2872]: [427-1] 2016-06-06 09:35:47: pid 2872: DEBUG: detect error: kind: D Jun 6 09:35:47 otp3 pgpool[2875]: [23-1] 2016-06-06 09:35:47: pid 2875: DEBUG: authentication backend Jun 6 09:35:47 otp3 pgpool[2875]: [23-2] 2016-06-06 09:35:47: pid 2875: DETAIL: trying md5 authentication Jun 6 09:35:47 otp3 pgpool[2872]: [427-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_process_query.c:4166 Jun 6 09:35:47 otp3 pgpool[2875]: [23-3] 2016-06-06 09:35:47: pid 2875: LOCATION: pool_auth.c:239 Jun 6 09:35:47 otp3 pgpool[2872]: [428-1] 2016-06-06 09:35:47: pid 2872: DEBUG: detect error: kind: D Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:47 otp3 pgpool[2872]: [428-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_process_query.c:4166 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: reading backend data packet kind Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DETAIL: backend:0 of 2 kind = 'T' Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_process_query.c:3349 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_process_query.c:3365 Jun 6 09:35:47 otp3 pgpool[2872]: [429-1] 2016-06-06 09:35:47: pid 2872: DEBUG: detect error: kind: D Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: processing backend response Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DETAIL: received kind 'T'(54) from backend Jun 6 09:35:47 otp3 pgpool[2872]: [429-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_process_query.c:4166 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_proto_modules.c:2424 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: SimpleForwardToFrontend: packet:T length:89 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_process_query.c:792 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:219 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: processing frontend response Jun 6 09:35:47 otp3 pgpool[2872]: [430-1] 2016-06-06 09:35:47: pid 2872: DEBUG: detect error: kind: D Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DETAIL: received kind 'E'(45) from frontend Jun 6 09:35:47 otp3 pgpool[2872]: [430-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_process_query.c:4166 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_proto_modules.c:2188 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:280 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:269 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: session context: setting query in progress. DONE Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:208 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_query_context.c:854 Jun 6 09:35:47 otp3 pgpool[2872]: [431-1] 2016-06-06 09:35:47: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: pool_write: to backend: kind:E Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: pool_write: to backend: kind:H Jun 6 09:35:47 otp3 pgpool[2872]: [431-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: waiting for query response Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DETAIL: waiting for backend:0 to complete the query Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_process_query.c:479 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DEBUG: SSL is requested but SSL support is not available Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: LOCATION: pool_ssl.c:333 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DEBUG: SSL is requested but SSL support is not available Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: LOCATION: pool_ssl.c:333 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: pool_read: read 61 bytes from backend 0 Jun 6 09:35:47 otp3 pgpool[2872]: [432-1] 2016-06-06 09:35:47: pid 2872: DEBUG: reading backend data packet kind Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_stream.c:190 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DEBUG: pool_read: read 13 bytes from backend 0 Jun 6 09:35:47 otp3 pgpool[2872]: [432-2] 2016-06-06 09:35:47: pid 2872: DETAIL: backend:0 of 2 kind = 'D' Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: LOCATION: pool_stream.c:190 Jun 6 09:35:47 otp3 pgpool[2872]: [432-3] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_process_query.c:3349 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DEBUG: pool_read: read 13 bytes from backend 1 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: LOCATION: pool_stream.c:190 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DEBUG: reading message length Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DETAIL: slot: 0 length: 12 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: LOCATION: pool_auth.c:1107 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DEBUG: reading message length Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DETAIL: slot: 1 length: 12 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: LOCATION: pool_auth.c:1126 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DEBUG: authentication backend Jun 6 09:35:47 otp3 pgpool[2872]: [433-1] 2016-06-06 09:35:47: pid 2872: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DETAIL: auth kind:5 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: LOCATION: pool_auth.c:142 Jun 6 09:35:47 otp3 pgpool[2872]: [433-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_process_query.c:3365 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: detect error: kind: D Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_process_query.c:4166 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DEBUG: authentication backend Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DETAIL: trying md5 authentication Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: LOCATION: pool_auth.c:239 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: detect error: kind: D Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_process_query.c:4166 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: detect error: kind: D Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_process_query.c:4166 Jun 6 09:35:47 otp3 pgpool[2872]: [434-1] 2016-06-06 09:35:47: pid 2872: DEBUG: processing backend response Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: detect error: kind: D Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_process_query.c:4166 Jun 6 09:35:47 otp3 pgpool[2872]: [434-2] 2016-06-06 09:35:47: pid 2872: DETAIL: received kind 'D'(44) from backend Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:47 otp3 pgpool[2872]: [434-3] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_proto_modules.c:2424 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: reading backend data packet kind Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DETAIL: backend:0 of 2 kind = 'D' Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_process_query.c:3349 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_process_query.c:3365 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: processing backend response Jun 6 09:35:47 otp3 pgpool[2872]: [435-1] 2016-06-06 09:35:47: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DETAIL: received kind 'D'(44) from backend Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_proto_modules.c:2424 Jun 6 09:35:47 otp3 pgpool[2872]: [435-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:35:47 otp3 pgpool[2873]: [341-1] 2016-06-06 09:35:47: pid 2873: DEBUG: processing frontend response Jun 6 09:35:47 otp3 pgpool[2873]: [341-2] 2016-06-06 09:35:47: pid 2873: DETAIL: received kind 'P'(50) from frontend Jun 6 09:35:47 otp3 pgpool[2873]: [341-3] 2016-06-06 09:35:47: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:35:47 otp3 pgpool[2873]: [342-1] 2016-06-06 09:35:47: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:35:47 otp3 pgpool[2873]: [342-2] 2016-06-06 09:35:47: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:35:47 otp3 pgpool[2872]: [436-1] 2016-06-06 09:35:47: pid 2872: DEBUG: SimpleForwardToFrontend: packet:D length:42 Jun 6 09:35:47 otp3 pgpool[2873]: [343-1] 2016-06-06 09:35:47: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:35:47 otp3 pgpool[2873]: [343-2] 2016-06-06 09:35:47: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:35:47 otp3 pgpool[2873]: [344-1] 2016-06-06 09:35:47: pid 2873: DEBUG: Parse: statement name <> Jun 6 09:35:47 otp3 pgpool[2873]: [344-2] 2016-06-06 09:35:47: pid 2873: LOCATION: pool_proto_modules.c:817 Jun 6 09:35:47 otp3 pgpool[2872]: [436-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_process_query.c:792 Jun 6 09:35:47 otp3 pgpool[2872]: [437-1] 2016-06-06 09:35:47: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:47 otp3 pgpool[2872]: [437-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:35:47 otp3 pgpool[2872]: [438-1] 2016-06-06 09:35:47: pid 2872: DEBUG: reading backend data packet kind Jun 6 09:35:47 otp3 pgpool[2872]: [438-2] 2016-06-06 09:35:47: pid 2872: DETAIL: backend:0 of 2 kind = 'C' Jun 6 09:35:47 otp3 pgpool[2872]: [438-3] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_process_query.c:3349 Jun 6 09:35:47 otp3 pgpool[2872]: [439-1] 2016-06-06 09:35:47: pid 2872: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:35:47 otp3 pgpool[2872]: [439-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_process_query.c:3365 Jun 6 09:35:47 otp3 pgpool[2872]: [440-1] 2016-06-06 09:35:47: pid 2872: DEBUG: processing backend response Jun 6 09:35:47 otp3 pgpool[2872]: [440-2] 2016-06-06 09:35:47: pid 2872: DETAIL: received kind 'C'(43) from backend Jun 6 09:35:47 otp3 pgpool[2872]: [440-3] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_proto_modules.c:2424 Jun 6 09:35:47 otp3 pgpool[2872]: [441-1] 2016-06-06 09:35:47: pid 2872: DEBUG: session context: setting command success. DONE Jun 6 09:35:47 otp3 pgpool[2872]: [441-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:741 Jun 6 09:35:47 otp3 pgpool[2872]: [442-1] 2016-06-06 09:35:47: pid 2872: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:47 otp3 pgpool[2872]: [442-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:219 Jun 6 09:35:47 otp3 pgpool[2872]: [443-1] 2016-06-06 09:35:47: pid 2872: DEBUG: processing frontend response Jun 6 09:35:47 otp3 pgpool[2872]: [443-2] 2016-06-06 09:35:47: pid 2872: DETAIL: received kind 'S'(53) from frontend Jun 6 09:35:47 otp3 pgpool[2872]: [443-3] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_proto_modules.c:2188 Jun 6 09:35:47 otp3 pgpool[2872]: [444-1] 2016-06-06 09:35:47: pid 2872: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:35:47 otp3 pgpool[2872]: [444-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:280 Jun 6 09:35:47 otp3 pgpool[2872]: [445-1] 2016-06-06 09:35:47: pid 2872: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:35:47 otp3 pgpool[2872]: [445-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:269 Jun 6 09:35:47 otp3 pgpool[2872]: [446-1] 2016-06-06 09:35:47: pid 2872: DEBUG: session context: setting query in progress. DONE Jun 6 09:35:47 otp3 pgpool[2872]: [446-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:208 Jun 6 09:35:47 otp3 pgpool[2872]: [447-1] 2016-06-06 09:35:47: pid 2872: DEBUG: pool_write: to backend: kind:S Jun 6 09:35:47 otp3 pgpool[2872]: [447-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:35:47 otp3 pgpool[2872]: [448-1] 2016-06-06 09:35:47: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:47 otp3 pgpool[2872]: [448-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:35:47 otp3 pgpool[2872]: [449-1] 2016-06-06 09:35:47: pid 2872: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:35:47 otp3 pgpool[2872]: [449-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_stream.c:190 Jun 6 09:35:47 otp3 pgpool[2872]: [450-1] 2016-06-06 09:35:47: pid 2872: DEBUG: reading backend data packet kind Jun 6 09:35:47 otp3 pgpool[2872]: [450-2] 2016-06-06 09:35:47: pid 2872: DETAIL: backend:0 of 2 kind = 'Z' Jun 6 09:35:47 otp3 pgpool[2872]: [450-3] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_process_query.c:3349 Jun 6 09:35:47 otp3 pgpool[2872]: [451-1] 2016-06-06 09:35:47: pid 2872: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:35:47 otp3 pgpool[2872]: [451-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_process_query.c:3365 Jun 6 09:35:47 otp3 pgpool[2872]: [452-1] 2016-06-06 09:35:47: pid 2872: DEBUG: processing backend response Jun 6 09:35:47 otp3 pgpool[2872]: [452-2] 2016-06-06 09:35:47: pid 2872: DETAIL: received kind 'Z'(5a) from backend Jun 6 09:35:47 otp3 pgpool[2872]: [452-3] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_proto_modules.c:2424 Jun 6 09:35:47 otp3 pgpool[2872]: [453-1] 2016-06-06 09:35:47: pid 2872: DEBUG: processing backend response Jun 6 09:35:47 otp3 pgpool[2872]: [453-2] 2016-06-06 09:35:47: pid 2872: DETAIL: Ready For Query received Jun 6 09:35:47 otp3 pgpool[2872]: [453-3] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_proto_modules.c:2442 Jun 6 09:35:47 otp3 pgpool[2872]: [454-1] 2016-06-06 09:35:47: pid 2872: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:35:47 otp3 pgpool[2872]: [454-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:310 Jun 6 09:35:47 otp3 pgpool[2872]: [455-1] 2016-06-06 09:35:47: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:47 otp3 pgpool[2872]: [455-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:35:47 otp3 pgpool[2872]: [456-1] 2016-06-06 09:35:47: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:47 otp3 pgpool[2872]: [456-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:35:47 otp3 pgpool[2872]: [457-1] 2016-06-06 09:35:47: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:47 otp3 pgpool[2872]: [457-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:35:47 otp3 pgpool[2872]: [458-1] 2016-06-06 09:35:47: pid 2872: DEBUG: reading message length Jun 6 09:35:47 otp3 pgpool[2872]: [458-2] 2016-06-06 09:35:47: pid 2872: DETAIL: slot: 0 length: 5 Jun 6 09:35:47 otp3 pgpool[2872]: [458-3] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_auth.c:1107 Jun 6 09:35:47 otp3 pgpool[2872]: [459-1] 2016-06-06 09:35:47: pid 2872: DEBUG: processing ReadyForQuery Jun 6 09:35:47 otp3 pgpool[2872]: [459-2] 2016-06-06 09:35:47: pid 2872: DETAIL: transaction state 'I'(49) Jun 6 09:35:47 otp3 pgpool[2872]: [459-3] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_proto_modules.c:1612 Jun 6 09:35:47 otp3 pgpool[2872]: [460-1] 2016-06-06 09:35:47: pid 2872: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:47 otp3 pgpool[2872]: [460-2] 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:219 Jun 6 09:35:47 otp3 pgpool[2875]: [24-1] 2016-06-06 09:35:47: pid 2875: DEBUG: performing md5 authentication Jun 6 09:35:47 otp3 pgpool[2875]: [24-2] 2016-06-06 09:35:47: pid 2875: DETAIL: DB node id: 0 salt: a09defeb Jun 6 09:35:47 otp3 pgpool[2875]: [24-3] 2016-06-06 09:35:47: pid 2875: LOCATION: pool_auth.c:855 Jun 6 09:35:47 otp3 pgpool[2875]: [25-1] 2016-06-06 09:35:47: pid 2875: DEBUG: pool_write: to backend: kind:p Jun 6 09:35:47 otp3 pgpool[2875]: [25-2] 2016-06-06 09:35:47: pid 2875: LOCATION: pool_stream.c:431 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2873: DEBUG: processing frontend response Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2873: DETAIL: received kind 'P'(50) from frontend Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2873: DEBUG: Parse: statement name <> Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2873: LOCATION: pool_proto_modules.c:817 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: SimpleForwardToFrontend: packet:D length:42 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_process_query.c:792 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: reading backend data packet kind Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DETAIL: backend:0 of 2 kind = 'C' Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_process_query.c:3349 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_process_query.c:3365 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: processing backend response Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DETAIL: received kind 'C'(43) from backend Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_proto_modules.c:2424 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: session context: setting command success. DONE Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:741 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:219 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: processing frontend response Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DETAIL: received kind 'S'(53) from frontend Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_proto_modules.c:2188 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:280 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:269 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: session context: setting query in progress. DONE Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:208 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: pool_write: to backend: kind:S Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_stream.c:190 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: reading backend data packet kind Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DETAIL: backend:0 of 2 kind = 'Z' Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_process_query.c:3349 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_process_query.c:3365 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: processing backend response Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DETAIL: received kind 'Z'(5a) from backend Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_proto_modules.c:2424 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: processing backend response Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DETAIL: Ready For Query received Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_proto_modules.c:2442 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:310 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: reading message length Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DETAIL: slot: 0 length: 5 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_auth.c:1107 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: processing ReadyForQuery Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DETAIL: transaction state 'I'(49) Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_proto_modules.c:1612 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2872: LOCATION: pool_session_context.c:219 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DEBUG: performing md5 authentication Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DETAIL: DB node id: 0 salt: a09defeb Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: LOCATION: pool_auth.c:855 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DEBUG: pool_write: to backend: kind:p Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: LOCATION: pool_stream.c:431 Jun 6 09:35:47 otp3 pgpool[2875]: [26-1] 2016-06-06 09:35:47: pid 2875: DEBUG: pool_read: read 337 bytes from backend 0 Jun 6 09:35:47 otp3 pgpool[2875]: [26-2] 2016-06-06 09:35:47: pid 2875: LOCATION: pool_stream.c:190 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DEBUG: pool_read: read 337 bytes from backend 0 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: LOCATION: pool_stream.c:190 Jun 6 09:35:47 otp3 pgpool[2875]: [27-1] 2016-06-06 09:35:47: pid 2875: DEBUG: authentication backend Jun 6 09:35:47 otp3 pgpool[2875]: [27-2] 2016-06-06 09:35:47: pid 2875: DETAIL: trying md5 authentication Jun 6 09:35:47 otp3 pgpool[2875]: [27-3] 2016-06-06 09:35:47: pid 2875: LOCATION: pool_auth.c:239 Jun 6 09:35:47 otp3 pgpool[2875]: [28-1] 2016-06-06 09:35:47: pid 2875: DEBUG: performing md5 authentication Jun 6 09:35:47 otp3 pgpool[2875]: [28-2] 2016-06-06 09:35:47: pid 2875: DETAIL: DB node id: 1 salt: e897664e Jun 6 09:35:47 otp3 pgpool[2875]: [28-3] 2016-06-06 09:35:47: pid 2875: LOCATION: pool_auth.c:855 Jun 6 09:35:47 otp3 pgpool[2875]: [29-1] 2016-06-06 09:35:47: pid 2875: DEBUG: pool_write: to backend: kind:p Jun 6 09:35:47 otp3 pgpool[2875]: [29-2] 2016-06-06 09:35:47: pid 2875: LOCATION: pool_stream.c:431 Jun 6 09:35:47 otp3 pgpool[2873]: [345-1] 2016-06-06 09:35:47: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:35:47 otp3 pgpool[2873]: [345-2] 2016-06-06 09:35:47: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DEBUG: authentication backend Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DETAIL: trying md5 authentication Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: LOCATION: pool_auth.c:239 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DEBUG: performing md5 authentication Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DETAIL: DB node id: 1 salt: e897664e Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: LOCATION: pool_auth.c:855 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DEBUG: pool_write: to backend: kind:p Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: LOCATION: pool_stream.c:431 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:35:47 otp3 pgpool[2873]: [346-1] 2016-06-06 09:35:47: pid 2873: DEBUG: pool_write: to backend: kind:S Jun 6 09:35:47 otp3 pgpool[2873]: [346-2] 2016-06-06 09:35:47: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:35:47 otp3 pgpool[2873]: [347-1] 2016-06-06 09:35:47: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:35:47 otp3 pgpool[2873]: [347-2] 2016-06-06 09:35:47: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:35:47 otp3 pgpool[2875]: [30-1] 2016-06-06 09:35:47: pid 2875: DEBUG: pool_read: read 337 bytes from backend 1 Jun 6 09:35:47 otp3 pgpool[2875]: [30-2] 2016-06-06 09:35:47: pid 2875: LOCATION: pool_stream.c:190 Jun 6 09:35:47 otp3 pgpool[2875]: [31-1] 2016-06-06 09:35:47: pid 2875: DEBUG: reading message length Jun 6 09:35:47 otp3 pgpool[2875]: [31-2] 2016-06-06 09:35:47: pid 2875: DETAIL: master slot: 0 length: 22 Jun 6 09:35:47 otp3 pgpool[2875]: [31-3] 2016-06-06 09:35:47: pid 2875: LOCATION: pool_auth.c:1161 Jun 6 09:35:47 otp3 pgpool[2875]: [32-1] 2016-06-06 09:35:47: pid 2875: DEBUG: reading message length Jun 6 09:35:47 otp3 pgpool[2875]: [32-2] 2016-06-06 09:35:47: pid 2875: DETAIL: master slot: 1 length: 22 Jun 6 09:35:47 otp3 pgpool[2875]: [32-3] 2016-06-06 09:35:47: pid 2875: LOCATION: pool_auth.c:1172 Jun 6 09:35:47 otp3 pgpool[2875]: [33-1] 2016-06-06 09:35:47: pid 2875: DEBUG: process parameter status Jun 6 09:35:47 otp3 pgpool[2875]: [33-2] 2016-06-06 09:35:47: pid 2875: DETAIL: backend:0 name:"application_name" value:"" Jun 6 09:35:47 otp3 pgpool[2875]: [33-3] 2016-06-06 09:35:47: pid 2875: LOCATION: pool_process_query.c:921 Jun 6 09:35:47 otp3 pgpool[2875]: [34-1] 2016-06-06 09:35:47: pid 2875: DEBUG: process parameter status Jun 6 09:35:47 otp3 pgpool[2875]: [34-2] 2016-06-06 09:35:47: pid 2875: DETAIL: backend:1 name:"application_name" value:"" Jun 6 09:35:47 otp3 pgpool[2875]: [34-3] 2016-06-06 09:35:47: pid 2875: LOCATION: pool_process_query.c:921 Jun 6 09:35:47 otp3 pgpool[2875]: [35-1] 2016-06-06 09:35:47: pid 2875: DEBUG: reading message length Jun 6 09:35:47 otp3 pgpool[2875]: [35-2] 2016-06-06 09:35:47: pid 2875: DETAIL: master slot: 0 length: 25 Jun 6 09:35:47 otp3 pgpool[2875]: [35-3] 2016-06-06 09:35:47: pid 2875: LOCATION: pool_auth.c:1161 Jun 6 09:35:47 otp3 pgpool[2875]: [36-1] 2016-06-06 09:35:47: pid 2875: DEBUG: reading message length Jun 6 09:35:47 otp3 pgpool[2875]: [36-2] 2016-06-06 09:35:47: pid 2875: DETAIL: master slot: 1 length: 25 Jun 6 09:35:47 otp3 pgpool[2875]: [36-3] 2016-06-06 09:35:47: pid 2875: LOCATION: pool_auth.c:1172 Jun 6 09:35:47 otp3 pgpool[2875]: [37-1] 2016-06-06 09:35:47: pid 2875: DEBUG: process parameter status Jun 6 09:35:47 otp3 pgpool[2875]: [37-2] 2016-06-06 09:35:47: pid 2875: DETAIL: backend:0 name:"client_encoding" value:"UTF8" Jun 6 09:35:47 otp3 pgpool[2875]: [37-3] 2016-06-06 09:35:47: pid 2875: LOCATION: pool_process_query.c:921 Jun 6 09:35:47 otp3 pgpool[2875]: [38-1] 2016-06-06 09:35:47: pid 2875: DEBUG: process parameter status Jun 6 09:35:47 otp3 pgpool[2875]: [38-2] 2016-06-06 09:35:47: pid 2875: DETAIL: backend:1 name:"client_encoding" value:"UTF8" Jun 6 09:35:47 otp3 pgpool[2875]: [38-3] 2016-06-06 09:35:47: pid 2875: LOCATION: pool_process_query.c:921 Jun 6 09:35:47 otp3 pgpool[2875]: [39-1] 2016-06-06 09:35:47: pid 2875: DEBUG: reading message length Jun 6 09:35:47 otp3 pgpool[2875]: [39-2] 2016-06-06 09:35:47: pid 2875: DETAIL: master slot: 0 length: 23 Jun 6 09:35:47 otp3 pgpool[2875]: [39-3] 2016-06-06 09:35:47: pid 2875: LOCATION: pool_auth.c:1161 Jun 6 09:35:47 otp3 pgpool[2875]: [40-1] 2016-06-06 09:35:47: pid 2875: DEBUG: reading message length Jun 6 09:35:47 otp3 pgpool[2875]: [40-2] 2016-06-06 09:35:47: pid 2875: DETAIL: master slot: 1 length: 23 Jun 6 09:35:47 otp3 pgpool[2875]: [40-3] 2016-06-06 09:35:47: pid 2875: LOCATION: pool_auth.c:1172 Jun 6 09:35:47 otp3 pgpool[2875]: [41-1] 2016-06-06 09:35:47: pid 2875: DEBUG: process parameter status Jun 6 09:35:47 otp3 pgpool[2875]: [41-2] 2016-06-06 09:35:47: pid 2875: DETAIL: backend:0 name:"DateStyle" value:"ISO, MDY" Jun 6 09:35:47 otp3 pgpool[2875]: [41-3] 2016-06-06 09:35:47: pid 2875: LOCATION: pool_process_query.c:921 Jun 6 09:35:47 otp3 pgpool[2875]: [42-1] 2016-06-06 09:35:47: pid 2875: DEBUG: process parameter status Jun 6 09:35:47 otp3 pgpool[2875]: [42-2] 2016-06-06 09:35:47: pid 2875: DETAIL: backend:1 name:"DateStyle" value:"ISO, MDY" Jun 6 09:35:47 otp3 pgpool[2875]: [42-3] 2016-06-06 09:35:47: pid 2875: LOCATION: pool_process_query.c:921 Jun 6 09:35:47 otp3 pgpool[2875]: [43-1] 2016-06-06 09:35:47: pid 2875: DEBUG: reading message length Jun 6 09:35:47 otp3 pgpool[2875]: [43-2] 2016-06-06 09:35:47: pid 2875: DETAIL: master slot: 0 length: 25 Jun 6 09:35:47 otp3 pgpool[2875]: [43-3] 2016-06-06 09:35:47: pid 2875: LOCATION: pool_auth.c:1161 Jun 6 09:35:47 otp3 pgpool[2875]: [44-1] 2016-06-06 09:35:47: pid 2875: DEBUG: reading message length Jun 6 09:35:47 otp3 pgpool[2875]: [44-2] 2016-06-06 09:35:47: pid 2875: DETAIL: master slot: 1 length: 25 Jun 6 09:35:47 otp3 pgpool[2875]: [44-3] 2016-06-06 09:35:47: pid 2875: LOCATION: pool_auth.c:1172 Jun 6 09:35:47 otp3 pgpool[2875]: [45-1] 2016-06-06 09:35:47: pid 2875: DEBUG: process parameter status Jun 6 09:35:47 otp3 pgpool[2875]: [45-2] 2016-06-06 09:35:47: pid 2875: DETAIL: backend:0 name:"integer_datetimes" value:"on" Jun 6 09:35:47 otp3 pgpool[2875]: [45-3] 2016-06-06 09:35:47: pid 2875: LOCATION: pool_process_query.c:921 Jun 6 09:35:47 otp3 pgpool[2875]: [46-1] 2016-06-06 09:35:47: pid 2875: DEBUG: process parameter status Jun 6 09:35:47 otp3 pgpool[2875]: [46-2] 2016-06-06 09:35:47: pid 2875: DETAIL: backend:1 name:"integer_datetimes" value:"on" Jun 6 09:35:47 otp3 pgpool[2875]: [46-3] 2016-06-06 09:35:47: pid 2875: LOCATION: pool_process_query.c:921 Jun 6 09:35:47 otp3 pgpool[2875]: [47-1] 2016-06-06 09:35:47: pid 2875: DEBUG: reading message length Jun 6 09:35:47 otp3 pgpool[2875]: [47-2] 2016-06-06 09:35:47: pid 2875: DETAIL: master slot: 0 length: 27 Jun 6 09:35:47 otp3 pgpool[2875]: [47-3] 2016-06-06 09:35:47: pid 2875: LOCATION: pool_auth.c:1161 Jun 6 09:35:47 otp3 pgpool[2875]: [48-1] 2016-06-06 09:35:47: pid 2875: DEBUG: reading message length Jun 6 09:35:47 otp3 pgpool[2875]: [48-2] 2016-06-06 09:35:47: pid 2875: DETAIL: master slot: 1 length: 27 Jun 6 09:35:47 otp3 pgpool[2875]: [48-3] 2016-06-06 09:35:47: pid 2875: LOCATION: pool_auth.c:1172 Jun 6 09:35:47 otp3 pgpool[2875]: [49-1] 2016-06-06 09:35:47: pid 2875: DEBUG: process parameter status Jun 6 09:35:47 otp3 pgpool[2875]: [49-2] 2016-06-06 09:35:47: pid 2875: DETAIL: backend:0 name:"IntervalStyle" value:"postgres" Jun 6 09:35:47 otp3 pgpool[2875]: [49-3] 2016-06-06 09:35:47: pid 2875: LOCATION: pool_process_query.c:921 Jun 6 09:35:47 otp3 pgpool[2875]: [50-1] 2016-06-06 09:35:47: pid 2875: DEBUG: process parameter status Jun 6 09:35:47 otp3 pgpool[2875]: [50-2] 2016-06-06 09:35:47: pid 2875: DETAIL: backend:1 name:"IntervalStyle" value:"postgres" Jun 6 09:35:47 otp3 pgpool[2875]: [50-3] 2016-06-06 09:35:47: pid 2875: LOCATION: pool_process_query.c:921 Jun 6 09:35:47 otp3 pgpool[2875]: [51-1] 2016-06-06 09:35:47: pid 2875: DEBUG: reading message length Jun 6 09:35:47 otp3 pgpool[2875]: [51-2] 2016-06-06 09:35:47: pid 2875: DETAIL: master slot: 0 length: 21 Jun 6 09:35:47 otp3 pgpool[2875]: [51-3] 2016-06-06 09:35:47: pid 2875: LOCATION: pool_auth.c:1161 Jun 6 09:35:47 otp3 pgpool[2875]: [52-1] 2016-06-06 09:35:47: pid 2875: DEBUG: reading message length Jun 6 09:35:47 otp3 pgpool[2875]: [52-2] 2016-06-06 09:35:47: pid 2875: DETAIL: master slot: 1 length: 21 Jun 6 09:35:47 otp3 pgpool[2875]: [52-3] 2016-06-06 09:35:47: pid 2875: LOCATION: pool_auth.c:1172 Jun 6 09:35:47 otp3 pgpool[2875]: [53-1] 2016-06-06 09:35:47: pid 2875: DEBUG: process parameter status Jun 6 09:35:47 otp3 pgpool[2875]: [53-2] 2016-06-06 09:35:47: pid 2875: DETAIL: backend:0 name:"is_superuser" value:"off" Jun 6 09:35:47 otp3 pgpool[2875]: [53-3] 2016-06-06 09:35:47: pid 2875: LOCATION: pool_process_query.c:921 Jun 6 09:35:47 otp3 pgpool[2875]: [54-1] 2016-06-06 09:35:47: pid 2875: DEBUG: process parameter status Jun 6 09:35:47 otp3 pgpool[2875]: [54-2] 2016-06-06 09:35:47: pid 2875: DETAIL: backend:1 name:"is_superuser" value:"off" Jun 6 09:35:47 otp3 pgpool[2875]: [54-3] 2016-06-06 09:35:47: pid 2875: LOCATION: pool_process_query.c:921 Jun 6 09:35:47 otp3 pgpool[2875]: [55-1] 2016-06-06 09:35:47: pid 2875: DEBUG: reading message length Jun 6 09:35:47 otp3 pgpool[2875]: [55-2] 2016-06-06 09:35:47: pid 2875: DETAIL: master slot: 0 length: 30 Jun 6 09:35:47 otp3 pgpool[2875]: [55-3] 2016-06-06 09:35:47: pid 2875: LOCATION: pool_auth.c:1161 Jun 6 09:35:47 otp3 pgpool[2875]: [56-1] 2016-06-06 09:35:47: pid 2875: DEBUG: reading message length Jun 6 09:35:47 otp3 pgpool[2875]: [56-2] 2016-06-06 09:35:47: pid 2875: DETAIL: master slot: 1 length: 30 Jun 6 09:35:47 otp3 pgpool[2875]: [56-3] 2016-06-06 09:35:47: pid 2875: LOCATION: pool_auth.c:1172 Jun 6 09:35:47 otp3 pgpool[2875]: [57-1] 2016-06-06 09:35:47: pid 2875: DEBUG: process parameter status Jun 6 09:35:47 otp3 pgpool[2875]: [57-2] 2016-06-06 09:35:47: pid 2875: DETAIL: backend:0 name:"server_encoding" value:"SQL_ASCII" Jun 6 09:35:47 otp3 pgpool[2875]: [57-3] 2016-06-06 09:35:47: pid 2875: LOCATION: pool_process_query.c:921 Jun 6 09:35:47 otp3 pgpool[2875]: [58-1] 2016-06-06 09:35:47: pid 2875: DEBUG: process parameter status Jun 6 09:35:47 otp3 pgpool[2875]: [58-2] 2016-06-06 09:35:47: pid 2875: DETAIL: backend:1 name:"server_encoding" value:"SQL_ASCII" Jun 6 09:35:47 otp3 pgpool[2875]: [58-3] 2016-06-06 09:35:47: pid 2875: LOCATION: pool_process_query.c:921 Jun 6 09:35:47 otp3 pgpool[2875]: [59-1] 2016-06-06 09:35:47: pid 2875: DEBUG: reading message length Jun 6 09:35:47 otp3 pgpool[2875]: [59-2] 2016-06-06 09:35:47: pid 2875: DETAIL: master slot: 0 length: 26 Jun 6 09:35:47 otp3 pgpool[2875]: [59-3] 2016-06-06 09:35:47: pid 2875: LOCATION: pool_auth.c:1161 Jun 6 09:35:47 otp3 pgpool[2875]: [60-1] 2016-06-06 09:35:47: pid 2875: DEBUG: reading message length Jun 6 09:35:47 otp3 pgpool[2875]: [60-2] 2016-06-06 09:35:47: pid 2875: DETAIL: master slot: 1 length: 26 Jun 6 09:35:47 otp3 pgpool[2875]: [60-3] 2016-06-06 09:35:47: pid 2875: LOCATION: pool_auth.c:1172 Jun 6 09:35:47 otp3 pgpool[2875]: [61-1] 2016-06-06 09:35:47: pid 2875: DEBUG: process parameter status Jun 6 09:35:47 otp3 pgpool[2875]: [61-2] 2016-06-06 09:35:47: pid 2875: DETAIL: backend:0 name:"server_version" value:"9.3.12" Jun 6 09:35:47 otp3 pgpool[2875]: [61-3] 2016-06-06 09:35:47: pid 2875: LOCATION: pool_process_query.c:921 Jun 6 09:35:47 otp3 pgpool[2875]: [62-1] 2016-06-06 09:35:47: pid 2875: DEBUG: process parameter status Jun 6 09:35:47 otp3 pgpool[2875]: [62-2] 2016-06-06 09:35:47: pid 2875: DETAIL: backend:1 name:"server_version" value:"9.3.12" Jun 6 09:35:47 otp3 pgpool[2875]: [62-3] 2016-06-06 09:35:47: pid 2875: LOCATION: pool_process_query.c:921 Jun 6 09:35:47 otp3 pgpool[2875]: [63-1] 2016-06-06 09:35:47: pid 2875: DEBUG: reading message length Jun 6 09:35:47 otp3 pgpool[2875]: [63-2] 2016-06-06 09:35:47: pid 2875: DETAIL: master slot: 0 length: 38 Jun 6 09:35:47 otp3 pgpool[2875]: [63-3] 2016-06-06 09:35:47: pid 2875: LOCATION: pool_auth.c:1161 Jun 6 09:35:47 otp3 pgpool[2875]: [64-1] 2016-06-06 09:35:47: pid 2875: DEBUG: reading message length Jun 6 09:35:47 otp3 pgpool[2875]: [64-2] 2016-06-06 09:35:47: pid 2875: DETAIL: master slot: 1 length: 38 Jun 6 09:35:47 otp3 pgpool[2875]: [64-3] 2016-06-06 09:35:47: pid 2875: LOCATION: pool_auth.c:1172 Jun 6 09:35:47 otp3 pgpool[2875]: [65-1] 2016-06-06 09:35:47: pid 2875: DEBUG: process parameter status Jun 6 09:35:47 otp3 pgpool[2875]: [65-2] 2016-06-06 09:35:47: pid 2875: DETAIL: backend:0 name:"session_authorization" value:"sparrowdesk" Jun 6 09:35:47 otp3 pgpool[2875]: [65-3] 2016-06-06 09:35:47: pid 2875: LOCATION: pool_process_query.c:921 Jun 6 09:35:47 otp3 pgpool[2875]: [66-1] 2016-06-06 09:35:47: pid 2875: DEBUG: process parameter status Jun 6 09:35:47 otp3 pgpool[2875]: [66-2] 2016-06-06 09:35:47: pid 2875: DETAIL: backend:1 name:"session_authorization" value:"sparrowdesk" Jun 6 09:35:47 otp3 pgpool[2875]: [66-3] 2016-06-06 09:35:47: pid 2875: LOCATION: pool_process_query.c:921 Jun 6 09:35:47 otp3 pgpool[2875]: [67-1] 2016-06-06 09:35:47: pid 2875: DEBUG: reading message length Jun 6 09:35:47 otp3 pgpool[2875]: [67-2] 2016-06-06 09:35:47: pid 2875: DETAIL: master slot: 0 length: 35 Jun 6 09:35:47 otp3 pgpool[2875]: [67-3] 2016-06-06 09:35:47: pid 2875: LOCATION: pool_auth.c:1161 Jun 6 09:35:47 otp3 pgpool[2875]: [68-1] 2016-06-06 09:35:47: pid 2875: DEBUG: reading message length Jun 6 09:35:47 otp3 pgpool[2875]: [68-2] 2016-06-06 09:35:47: pid 2875: DETAIL: master slot: 1 length: 35 Jun 6 09:35:47 otp3 pgpool[2875]: [68-3] 2016-06-06 09:35:47: pid 2875: LOCATION: pool_auth.c:1172 Jun 6 09:35:47 otp3 pgpool[2875]: [69-1] 2016-06-06 09:35:47: pid 2875: DEBUG: process parameter status Jun 6 09:35:47 otp3 pgpool[2875]: [69-2] 2016-06-06 09:35:47: pid 2875: DETAIL: backend:0 name:"standard_conforming_strings" value:"on" Jun 6 09:35:47 otp3 pgpool[2875]: [69-3] 2016-06-06 09:35:47: pid 2875: LOCATION: pool_process_query.c:921 Jun 6 09:35:47 otp3 pgpool[2875]: [70-1] 2016-06-06 09:35:47: pid 2875: DEBUG: process parameter status Jun 6 09:35:47 otp3 pgpool[2875]: [70-2] 2016-06-06 09:35:47: pid 2875: DETAIL: backend:1 name:"standard_conforming_strings" value:"on" Jun 6 09:35:47 otp3 pgpool[2875]: [70-3] 2016-06-06 09:35:47: pid 2875: LOCATION: pool_process_query.c:921 Jun 6 09:35:47 otp3 pgpool[2875]: [71-1] 2016-06-06 09:35:47: pid 2875: DEBUG: reading message length Jun 6 09:35:47 otp3 pgpool[2875]: [71-2] 2016-06-06 09:35:47: pid 2875: DETAIL: master slot: 0 length: 26 Jun 6 09:35:47 otp3 pgpool[2875]: [71-3] 2016-06-06 09:35:47: pid 2875: LOCATION: pool_auth.c:1161 Jun 6 09:35:47 otp3 pgpool[2875]: [72-1] 2016-06-06 09:35:47: pid 2875: DEBUG: reading message length Jun 6 09:35:47 otp3 pgpool[2875]: [72-2] 2016-06-06 09:35:47: pid 2875: DETAIL: master slot: 1 length: 26 Jun 6 09:35:47 otp3 pgpool[2875]: [72-3] 2016-06-06 09:35:47: pid 2875: LOCATION: pool_auth.c:1172 Jun 6 09:35:47 otp3 pgpool[2875]: [73-1] 2016-06-06 09:35:47: pid 2875: DEBUG: process parameter status Jun 6 09:35:47 otp3 pgpool[2875]: [73-2] 2016-06-06 09:35:47: pid 2875: DETAIL: backend:0 name:"TimeZone" value:"Asia/Kolkata" Jun 6 09:35:47 otp3 pgpool[2875]: [73-3] 2016-06-06 09:35:47: pid 2875: LOCATION: pool_process_query.c:921 Jun 6 09:35:47 otp3 pgpool[2875]: [74-1] 2016-06-06 09:35:47: pid 2875: DEBUG: process parameter status Jun 6 09:35:47 otp3 pgpool[2875]: [74-2] 2016-06-06 09:35:47: pid 2875: DETAIL: backend:1 name:"TimeZone" value:"Asia/Kolkata" Jun 6 09:35:47 otp3 pgpool[2875]: [74-3] 2016-06-06 09:35:47: pid 2875: LOCATION: pool_process_query.c:921 Jun 6 09:35:47 otp3 pgpool[2875]: [75-1] 2016-06-06 09:35:47: pid 2875: DEBUG: reading message length Jun 6 09:35:47 otp3 pgpool[2875]: [75-2] 2016-06-06 09:35:47: pid 2875: DETAIL: slot: 0 length: 12 Jun 6 09:35:47 otp3 pgpool[2875]: [75-3] 2016-06-06 09:35:47: pid 2875: LOCATION: pool_auth.c:1107 Jun 6 09:35:47 otp3 pgpool[2875]: [76-1] 2016-06-06 09:35:47: pid 2875: DEBUG: reading message length Jun 6 09:35:47 otp3 pgpool[2875]: [76-2] 2016-06-06 09:35:47: pid 2875: DETAIL: slot: 1 length: 12 Jun 6 09:35:47 otp3 pgpool[2875]: [76-3] 2016-06-06 09:35:47: pid 2875: LOCATION: pool_auth.c:1126 Jun 6 09:35:47 otp3 pgpool[2875]: [77-1] 2016-06-06 09:35:47: pid 2875: DEBUG: authentication backend Jun 6 09:35:47 otp3 pgpool[2875]: [77-2] 2016-06-06 09:35:47: pid 2875: DETAIL: cp->info[i]:0x8007bf000 pid:97120 Jun 6 09:35:47 otp3 pgpool[2875]: [77-3] 2016-06-06 09:35:47: pid 2875: LOCATION: pool_auth.c:391 Jun 6 09:35:47 otp3 pgpool[2875]: [78-1] 2016-06-06 09:35:47: pid 2875: DEBUG: authentication backend Jun 6 09:35:47 otp3 pgpool[2875]: [78-2] 2016-06-06 09:35:47: pid 2875: DETAIL: cp->info[i]:0x8007bf088 pid:83415 Jun 6 09:35:47 otp3 pgpool[2875]: [78-3] 2016-06-06 09:35:47: pid 2875: LOCATION: pool_auth.c:391 Jun 6 09:35:47 otp3 pgpool[2875]: [79-1] 2016-06-06 09:35:47: pid 2875: DEBUG: sending backend key data Jun 6 09:35:47 otp3 pgpool[2875]: [79-2] 2016-06-06 09:35:47: pid 2875: DETAIL: send pid 83415 to frontend Jun 6 09:35:47 otp3 pgpool[2875]: [79-3] 2016-06-06 09:35:47: pid 2875: LOCATION: pool_auth.c:519 Jun 6 09:35:47 otp3 pgpool[2875]: [80-1] 2016-06-06 09:35:47: pid 2875: DEBUG: selecting load balance node Jun 6 09:35:47 otp3 pgpool[2875]: [80-2] 2016-06-06 09:35:47: pid 2875: DETAIL: selected backend id is 1 Jun 6 09:35:47 otp3 pgpool[2875]: [80-3] 2016-06-06 09:35:47: pid 2875: LOCATION: child.c:1720 Jun 6 09:35:47 otp3 pgpool[2875]: [81-1] 2016-06-06 09:35:47: pid 2875: DEBUG: initializing session context Jun 6 09:35:47 otp3 pgpool[2875]: [81-2] 2016-06-06 09:35:47: pid 2875: DETAIL: selected load balancing node: 1 Jun 6 09:35:47 otp3 pgpool[2875]: [81-3] 2016-06-06 09:35:47: pid 2875: LOCATION: pool_session_context.c:99 Jun 6 09:35:47 otp3 pgpool[2875]: [82-1] 2016-06-06 09:35:47: pid 2875: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:35:47 otp3 pgpool[2875]: [82-2] 2016-06-06 09:35:47: pid 2875: LOCATION: pool_session_context.c:219 Jun 6 09:35:47 otp3 pgpool[2875]: [83-1] 2016-06-06 09:35:47: pid 2875: DEBUG: session context: clearing transaction isolation. DONE Jun 6 09:35:47 otp3 pgpool[2875]: [83-2] 2016-06-06 09:35:47: pid 2875: LOCATION: pool_session_context.c:731 Jun 6 09:35:47 otp3 pgpool[2875]: [84-1] 2016-06-06 09:35:47: pid 2875: DEBUG: session context: clearing writing transaction. DONE Jun 6 09:35:47 otp3 pgpool[2875]: [84-2] 2016-06-06 09:35:47: pid 2875: LOCATION: pool_session_context.c:565 Jun 6 09:35:47 otp3 pgpool[2875]: [85-1] 2016-06-06 09:35:47: pid 2875: DEBUG: session context: clearing failed transaction. DONE Jun 6 09:35:47 otp3 pgpool[2875]: [85-2] 2016-06-06 09:35:47: pid 2875: LOCATION: pool_session_context.c:594 Jun 6 09:35:47 otp3 pgpool[2875]: [86-1] 2016-06-06 09:35:47: pid 2875: DEBUG: session context: clearing failed transaction. DONE Jun 6 09:35:47 otp3 pgpool[2875]: [86-2] 2016-06-06 09:35:47: pid 2875: LOCATION: pool_session_context.c:624 Jun 6 09:35:47 otp3 pgpool[2875]: [87-1] 2016-06-06 09:35:47: pid 2875: DEBUG: session context: clearing skip reading from backends. DONE Jun 6 09:35:47 otp3 pgpool[2875]: [87-2] 2016-06-06 09:35:47: pid 2875: LOCATION: pool_session_context.c:250 Jun 6 09:35:47 otp3 pgpool[2875]: [88-1] 2016-06-06 09:35:47: pid 2875: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:35:47 otp3 pgpool[2875]: [88-2] 2016-06-06 09:35:47: pid 2875: LOCATION: pool_session_context.c:310 Jun 6 09:35:47 otp3 pgpool[2875]: [89-1] 2016-06-06 09:35:47: pid 2875: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 0 doing extended query: 0 Jun 6 09:35:47 otp3 pgpool[2875]: [89-2] 2016-06-06 09:35:47: pid 2875: LOCATION: pool_session_context.c:969 Jun 6 09:35:47 otp3 pgpool[2875]: [90-1] 2016-06-06 09:35:47: pid 2875: DEBUG: reading backend data packet kind Jun 6 09:35:47 otp3 pgpool[2875]: [90-2] 2016-06-06 09:35:47: pid 2875: DETAIL: backend:0 of 2 kind = 'Z' Jun 6 09:35:47 otp3 pgpool[2875]: [90-3] 2016-06-06 09:35:47: pid 2875: LOCATION: pool_process_query.c:3349 Jun 6 09:35:47 otp3 pgpool[2875]: [91-1] 2016-06-06 09:35:47: pid 2875: DEBUG: reading backend data packet kind Jun 6 09:35:47 otp3 pgpool[2875]: [91-2] 2016-06-06 09:35:47: pid 2875: DETAIL: backend:1 of 2 kind = 'Z' Jun 6 09:35:47 otp3 pgpool[2875]: [91-3] 2016-06-06 09:35:47: pid 2875: LOCATION: pool_process_query.c:3349 Jun 6 09:35:47 otp3 pgpool[2875]: [92-1] 2016-06-06 09:35:47: pid 2875: DEBUG: read_kind_from_backend max_count:2.000000 num_executed_nodes:2 Jun 6 09:35:47 otp3 pgpool[2875]: [92-2] 2016-06-06 09:35:47: pid 2875: LOCATION: pool_process_query.c:3365 Jun 6 09:35:47 otp3 pgpool[2875]: [93-1] 2016-06-06 09:35:47: pid 2875: DEBUG: processing backend response Jun 6 09:35:47 otp3 pgpool[2875]: [93-2] 2016-06-06 09:35:47: pid 2875: DETAIL: received kind 'Z'(5a) from backend Jun 6 09:35:47 otp3 pgpool[2875]: [93-3] 2016-06-06 09:35:47: pid 2875: LOCATION: pool_proto_modules.c:2424 Jun 6 09:35:47 otp3 pgpool[2875]: [94-1] 2016-06-06 09:35:47: pid 2875: DEBUG: processing backend response Jun 6 09:35:47 otp3 pgpool[2875]: [94-2] 2016-06-06 09:35:47: pid 2875: DETAIL: Ready For Query received Jun 6 09:35:47 otp3 pgpool[2875]: [94-3] 2016-06-06 09:35:47: pid 2875: LOCATION: pool_proto_modules.c:2442 Jun 6 09:35:47 otp3 pgpool[2875]: [95-1] 2016-06-06 09:35:47: pid 2875: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:35:47 otp3 pgpool[2875]: [95-2] 2016-06-06 09:35:47: pid 2875: LOCATION: pool_session_context.c:310 Jun 6 09:35:47 otp3 pgpool[2875]: [96-1] 2016-06-06 09:35:47: pid 2875: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 0 doing extended query: 0 Jun 6 09:35:47 otp3 pgpool[2875]: [96-2] 2016-06-06 09:35:47: pid 2875: LOCATION: pool_session_context.c:969 Jun 6 09:35:47 otp3 pgpool[2875]: [97-1] 2016-06-06 09:35:47: pid 2875: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 0 doing extended query: 0 Jun 6 09:35:47 otp3 pgpool[2875]: [97-2] 2016-06-06 09:35:47: pid 2875: LOCATION: pool_session_context.c:969 Jun 6 09:35:47 otp3 pgpool[2875]: [98-1] 2016-06-06 09:35:47: pid 2875: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 0 doing extended query: 0 Jun 6 09:35:47 otp3 pgpool[2875]: [98-2] 2016-06-06 09:35:47: pid 2875: LOCATION: pool_session_context.c:969 Jun 6 09:35:47 otp3 pgpool[2875]: [99-1] 2016-06-06 09:35:47: pid 2875: DEBUG: reading message length Jun 6 09:35:47 otp3 pgpool[2875]: [99-2] 2016-06-06 09:35:47: pid 2875: DETAIL: slot: 0 length: 5 Jun 6 09:35:47 otp3 pgpool[2875]: [99-3] 2016-06-06 09:35:47: pid 2875: LOCATION: pool_auth.c:1107 Jun 6 09:35:47 otp3 pgpool[2875]: [100-1] 2016-06-06 09:35:47: pid 2875: DEBUG: reading message length Jun 6 09:35:47 otp3 pgpool[2875]: [100-2] 2016-06-06 09:35:47: pid 2875: DETAIL: slot: 1 length: 5 Jun 6 09:35:47 otp3 pgpool[2875]: [100-3] 2016-06-06 09:35:47: pid 2875: LOCATION: pool_auth.c:1126 Jun 6 09:35:47 otp3 pgpool[2875]: [101-1] 2016-06-06 09:35:47: pid 2875: DEBUG: processing ReadyForQuery Jun 6 09:35:47 otp3 pgpool[2875]: [101-2] 2016-06-06 09:35:47: pid 2875: DETAIL: transaction state ' Jun 6 09:35:47 otp3 pgpool[2875]: [101-3] 2016-06-06 09:35:47: pid 2875: LOCATION: pool_proto_modules.c:1612 Jun 6 09:35:47 otp3 pgpool[2875]: [102-1] 2016-06-06 09:35:47: pid 2875: DEBUG: processing ReadyForQuery Jun 6 09:35:47 otp3 pgpool[2875]: [102-2] 2016-06-06 09:35:47: pid 2875: DETAIL: transaction state 'I'(49) Jun 6 09:35:47 otp3 pgpool[2875]: [102-3] 2016-06-06 09:35:47: pid 2875: LOCATION: pool_proto_modules.c:1612 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2873: DEBUG: pool_write: to backend: kind:S Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DEBUG: pool_read: read 337 bytes from backend 1 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: LOCATION: pool_stream.c:190 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DEBUG: reading message length Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DETAIL: master slot: 0 length: 22 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: LOCATION: pool_auth.c:1161 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DEBUG: reading message length Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DETAIL: master slot: 1 length: 22 Jun 6 09:35:47 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: LOCATION: pool_auth.c:1172 Jun 6 09:35:48 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DEBUG: process parameter status Jun 6 09:35:47 otp3 pgpool[2873]: [348-1] 2016-06-06 09:35:47: pid 2873: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:35:50 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DETAIL: backend:0 name:"application_name" value:"" Jun 6 09:35:50 otp3 pgpool[2873]: [348-2] 2016-06-06 09:35:47: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:35:48 otp3 pgpool[2872]: [461-1] 2016-06-06 09:35:48: pid 2872: DEBUG: processing frontend response Jun 6 09:35:51 otp3 pgpool[2872]: [461-2] 2016-06-06 09:35:48: pid 2872: DETAIL: received kind 'P'(50) from frontend Jun 6 09:35:53 otp3 pgpool[2872]: [461-3] 2016-06-06 09:35:48: pid 2872: LOCATION: pool_proto_modules.c:2188 Jun 6 09:35:50 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: LOCATION: pool_process_query.c:921 Jun 6 09:35:51 otp3 pgpool[2874]: [12-1] 2016-06-06 09:35:51: pid 2874: LOG: new connection received Jun 6 09:35:53 otp3 pgpool[2872]: [462-1] 2016-06-06 09:35:53: pid 2872: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:35:58 otp3 pgpool[2872]: [462-2] 2016-06-06 09:35:53: pid 2872: LOCATION: pool_session_context.c:280 Jun 6 09:35:58 otp3 pgpool[2872]: [463-1] 2016-06-06 09:35:58: pid 2872: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:35:53 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DEBUG: process parameter status Jun 6 09:35:58 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DETAIL: backend:1 name:"application_name" value:"" Jun 6 09:35:58 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: LOCATION: pool_process_query.c:921 Jun 6 09:35:58 otp3 pgpool[2872]: [463-2] 2016-06-06 09:35:58: pid 2872: LOCATION: pool_session_context.c:269 Jun 6 09:35:58 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DEBUG: reading message length Jun 6 09:35:58 otp3 pgpool[2872]: [464-1] 2016-06-06 09:35:58: pid 2872: DEBUG: Parse: statement name <> Jun 6 09:35:58 otp3 pgpool[2872]: [464-2] 2016-06-06 09:35:58: pid 2872: LOCATION: pool_proto_modules.c:817 Jun 6 09:35:58 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DETAIL: master slot: 0 length: 25 Jun 6 09:35:59 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: LOCATION: pool_auth.c:1161 Jun 6 09:35:59 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DEBUG: reading message length Jun 6 09:36:00 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DETAIL: master slot: 1 length: 25 Jun 6 09:35:59 otp3 pgpool[2872]: [465-1] 2016-06-06 09:35:59: pid 2872: DEBUG: session context: setting query in progress. DONE Jun 6 09:36:01 otp3 pgpool[2872]: [465-2] 2016-06-06 09:35:59: pid 2872: LOCATION: pool_session_context.c:208 Jun 6 09:35:58 otp3 pgpool[2874]: [12-2] 2016-06-06 09:35:51: pid 2874: DETAIL: connecting host=10.200.1.64 port=23726 Jun 6 09:36:01 otp3 pgpool[2872]: [466-1] 2016-06-06 09:36:01: pid 2872: DEBUG: pool_write: to backend: kind:S Jun 6 09:36:01 otp3 pgpool[2872]: [466-2] 2016-06-06 09:36:01: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:36:01 otp3 pgpool[2874]: [12-3] 2016-06-06 09:35:51: pid 2874: LOCATION: child.c:2110 Jun 6 09:36:01 otp3 pgpool[2872]: [467-1] 2016-06-06 09:36:01: pid 2872: DEBUG: pool_write: to backend: kind:H Jun 6 09:36:01 otp3 pgpool[2872]: [467-2] 2016-06-06 09:36:01: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:36:02 otp3 pgpool[2872]: [468-1] 2016-06-06 09:36:02: pid 2872: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:36:01 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: LOCATION: pool_auth.c:1172 Jun 6 09:36:02 otp3 pgpool[2872]: [468-2] 2016-06-06 09:36:02: pid 2872: LOCATION: pool_stream.c:190 Jun 6 09:36:02 otp3 pgpool[2872]: [469-1] 2016-06-06 09:36:02: pid 2872: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:36:02 otp3 pgpool[2872]: [469-2] 2016-06-06 09:36:02: pid 2872: LOCATION: pool_session_context.c:310 Jun 6 09:36:02 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DEBUG: process parameter status Jun 6 09:35:47 otp3 pgpool[2875]: [103-1] 2016-06-06 09:35:47: pid 2875: DEBUG: processing frontend response Jun 6 09:36:03 otp3 pgpool[2875]: [103-2] 2016-06-06 09:35:47: pid 2875: DETAIL: received kind 'P'(50) from frontend Jun 6 09:36:03 otp3 pgpool[2875]: [103-3] 2016-06-06 09:35:47: pid 2875: LOCATION: pool_proto_modules.c:2188 Jun 6 09:36:03 otp3 pgpool[2875]: [104-1] 2016-06-06 09:36:03: pid 2875: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:36:03 otp3 pgpool[2875]: [104-2] 2016-06-06 09:36:03: pid 2875: LOCATION: pool_session_context.c:280 Jun 6 09:36:03 otp3 pgpool[2875]: [105-1] 2016-06-06 09:36:03: pid 2875: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:36:03 otp3 pgpool[2875]: [105-2] 2016-06-06 09:36:03: pid 2875: LOCATION: pool_session_context.c:269 Jun 6 09:36:03 otp3 pgpool[2875]: [106-1] 2016-06-06 09:36:03: pid 2875: DEBUG: Parse: statement name <> Jun 6 09:36:03 otp3 pgpool[2875]: [106-2] 2016-06-06 09:36:03: pid 2875: LOCATION: pool_proto_modules.c:817 Jun 6 09:36:03 otp3 pgpool[2875]: [107-1] 2016-06-06 09:36:03: pid 2875: DEBUG: session context: setting query in progress. DONE Jun 6 09:36:03 otp3 pgpool[2875]: [107-2] 2016-06-06 09:36:03: pid 2875: LOCATION: pool_session_context.c:208 Jun 6 09:36:03 otp3 pgpool[2875]: [108-1] 2016-06-06 09:36:03: pid 2875: DEBUG: pool_write: to backend: kind:S Jun 6 09:36:02 otp3 pgpool[2872]: [470-1] 2016-06-06 09:36:02: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:04 otp3 pgpool[2872]: [470-2] 2016-06-06 09:36:02: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:04 otp3 pgpool[2872]: [471-1] 2016-06-06 09:36:04: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:04 otp3 pgpool[2872]: [471-2] 2016-06-06 09:36:04: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:04 otp3 pgpool[2872]: [472-1] 2016-06-06 09:36:04: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:04 otp3 pgpool[2872]: [472-2] 2016-06-06 09:36:04: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:04 otp3 pgpool[2872]: [473-1] 2016-06-06 09:36:04: pid 2872: DEBUG: reading message length Jun 6 09:36:04 otp3 pgpool[2872]: [473-2] 2016-06-06 09:36:04: pid 2872: DETAIL: slot: 0 length: 5 Jun 6 09:36:04 otp3 pgpool[2872]: [473-3] 2016-06-06 09:36:04: pid 2872: LOCATION: pool_auth.c:1107 Jun 6 09:36:04 otp3 pgpool[2872]: [474-1] 2016-06-06 09:36:04: pid 2872: DEBUG: processing ReadyForQuery Jun 6 09:36:04 otp3 pgpool[2872]: [474-2] 2016-06-06 09:36:04: pid 2872: DETAIL: transaction state 'I'(49) Jun 6 09:36:04 otp3 pgpool[2872]: [474-3] 2016-06-06 09:36:04: pid 2872: LOCATION: pool_proto_modules.c:1612 Jun 6 09:36:04 otp3 pgpool[2872]: [475-1] 2016-06-06 09:36:04: pid 2872: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:04 otp3 pgpool[2872]: [475-2] 2016-06-06 09:36:04: pid 2872: LOCATION: pool_session_context.c:219 Jun 6 09:36:04 otp3 pgpool[2872]: [476-1] 2016-06-06 09:36:04: pid 2872: DEBUG: session context: setting query in progress. DONE Jun 6 09:36:02 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DETAIL: backend:0 name:"client_encoding" value:"UTF8" Jun 6 09:36:04 otp3 pgpool[2872]: [476-2] 2016-06-06 09:36:04: pid 2872: LOCATION: pool_session_context.c:208 Jun 6 09:35:53 otp3 pgpool[2873]: [349-1] 2016-06-06 09:35:53: pid 2873: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:36:04 otp3 pgpool[2873]: [349-2] 2016-06-06 09:35:53: pid 2873: LOCATION: pool_session_context.c:310 Jun 6 09:36:02 otp3 pgpool[2874]: [13-1] 2016-06-06 09:36:02: pid 2874: DEBUG: reading startup packet Jun 6 09:36:04 otp3 pgpool[2874]: [13-2] 2016-06-06 09:36:02: pid 2874: DETAIL: Protocol Major: 3 Minor: 0 database: ctl user: sparrowdesk Jun 6 09:36:04 otp3 pgpool[2874]: [13-3] 2016-06-06 09:36:02: pid 2874: LOCATION: child.c:614 Jun 6 09:36:04 otp3 pgpool[2874]: [14-1] 2016-06-06 09:36:04: pid 2874: DEBUG: creating new connection to backend Jun 6 09:36:04 otp3 pgpool[2874]: [14-2] 2016-06-06 09:36:04: pid 2874: DETAIL: connecting 0 backend Jun 6 09:36:04 otp3 pgpool[2874]: [14-3] 2016-06-06 09:36:04: pid 2874: LOCATION: pool_connection_pool.c:830 Jun 6 09:36:04 otp3 pgpool[2872]: [477-1] 2016-06-06 09:36:04: pid 2872: DEBUG: Parse: waiting for master completing the query Jun 6 09:36:04 otp3 pgpool[2872]: [477-2] 2016-06-06 09:36:04: pid 2872: LOCATION: pool_proto_modules.c:1064 Jun 6 09:36:03 otp3 pgpool[2875]: [108-2] 2016-06-06 09:36:03: pid 2875: LOCATION: pool_stream.c:431 Jun 6 09:36:04 otp3 pgpool[2872]: [478-1] 2016-06-06 09:36:04: pid 2872: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:36:04 otp3 pgpool[2872]: [478-2] 2016-06-06 09:36:04: pid 2872: LOCATION: pool_query_context.c:854 Jun 6 09:36:04 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: LOCATION: pool_process_query.c:921 Jun 6 09:36:04 otp3 pgpool[2872]: [479-1] 2016-06-06 09:36:04: pid 2872: DEBUG: pool_write: to backend: kind:P Jun 6 09:36:04 otp3 pgpool[2872]: [479-2] 2016-06-06 09:36:04: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:36:04 otp3 pgpool[2873]: [350-1] 2016-06-06 09:36:04: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:04 otp3 pgpool[2872]: [480-1] 2016-06-06 09:36:04: pid 2872: DEBUG: pool_write: to backend: kind:H Jun 6 09:36:04 otp3 pgpool[2873]: [350-2] 2016-06-06 09:36:04: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:36:04 otp3 pgpool[2872]: [480-2] 2016-06-06 09:36:04: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:36:04 otp3 pgpool[2872]: [481-1] 2016-06-06 09:36:04: pid 2872: DEBUG: waiting for query response Jun 6 09:36:04 otp3 pgpool[2872]: [481-2] 2016-06-06 09:36:04: pid 2872: DETAIL: waiting for backend:0 to complete the query Jun 6 09:36:04 otp3 pgpool[2872]: [481-3] 2016-06-06 09:36:04: pid 2872: LOCATION: pool_process_query.c:479 Jun 6 09:36:04 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DEBUG: process parameter status Jun 6 09:36:04 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DETAIL: backend:1 name:"client_encoding" value:"UTF8" Jun 6 09:36:04 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: LOCATION: pool_process_query.c:921 Jun 6 09:36:04 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DEBUG: reading message length Jun 6 09:36:04 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DETAIL: master slot: 0 length: 23 Jun 6 09:36:04 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: LOCATION: pool_auth.c:1161 Jun 6 09:36:04 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DEBUG: reading message length Jun 6 09:36:04 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DETAIL: master slot: 1 length: 23 Jun 6 09:36:04 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: LOCATION: pool_auth.c:1172 Jun 6 09:36:04 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DEBUG: process parameter status Jun 6 09:36:04 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DETAIL: backend:0 name:"DateStyle" value:"ISO, MDY" Jun 6 09:36:04 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: LOCATION: pool_process_query.c:921 Jun 6 09:36:04 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DEBUG: process parameter status Jun 6 09:36:04 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DETAIL: backend:1 name:"DateStyle" value:"ISO, MDY" Jun 6 09:36:04 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: LOCATION: pool_process_query.c:921 Jun 6 09:36:04 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DEBUG: reading message length Jun 6 09:36:04 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DETAIL: master slot: 0 length: 25 Jun 6 09:36:04 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: LOCATION: pool_auth.c:1161 Jun 6 09:36:04 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DEBUG: reading message length Jun 6 09:36:04 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DETAIL: master slot: 1 length: 25 Jun 6 09:36:04 otp3 pgpool[2872]: [482-1] 2016-06-06 09:36:04: pid 2872: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:36:04 otp3 pgpool[2872]: [482-2] 2016-06-06 09:36:04: pid 2872: LOCATION: pool_stream.c:190 Jun 6 09:36:04 otp3 pgpool[2872]: [483-1] 2016-06-06 09:36:04: pid 2872: DEBUG: detect error: kind: 1 Jun 6 09:36:04 otp3 pgpool[2872]: [483-2] 2016-06-06 09:36:04: pid 2872: LOCATION: pool_process_query.c:4166 Jun 6 09:36:04 otp3 pgpool[2872]: [484-1] 2016-06-06 09:36:04: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:04 otp3 pgpool[2872]: [484-2] 2016-06-06 09:36:04: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:04 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: LOCATION: pool_auth.c:1172 Jun 6 09:36:04 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DEBUG: process parameter status Jun 6 09:36:04 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DETAIL: backend:0 name:"integer_datetimes" value:"on" Jun 6 09:36:04 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: LOCATION: pool_process_query.c:921 Jun 6 09:36:04 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DEBUG: process parameter status Jun 6 09:36:04 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DETAIL: backend:1 name:"integer_datetimes" value:"on" Jun 6 09:36:04 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: LOCATION: pool_process_query.c:921 Jun 6 09:36:04 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DEBUG: reading message length Jun 6 09:36:04 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DETAIL: master slot: 0 length: 27 Jun 6 09:36:05 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: LOCATION: pool_auth.c:1161 Jun 6 09:36:05 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DEBUG: reading message length Jun 6 09:36:05 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DETAIL: master slot: 1 length: 27 Jun 6 09:36:05 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: LOCATION: pool_auth.c:1172 Jun 6 09:36:05 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DEBUG: process parameter status Jun 6 09:36:05 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DETAIL: backend:0 name:"IntervalStyle" value:"postgres" Jun 6 09:36:05 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: LOCATION: pool_process_query.c:921 Jun 6 09:36:05 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DEBUG: process parameter status Jun 6 09:36:05 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DETAIL: backend:1 name:"IntervalStyle" value:"postgres" Jun 6 09:36:05 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: LOCATION: pool_process_query.c:921 Jun 6 09:36:04 otp3 pgpool[2872]: [485-1] 2016-06-06 09:36:04: pid 2872: DEBUG: reading backend data packet kind Jun 6 09:36:05 otp3 pgpool[2872]: [485-2] 2016-06-06 09:36:04: pid 2872: DETAIL: backend:0 of 2 kind = '1' Jun 6 09:36:05 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DEBUG: reading message length Jun 6 09:36:05 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DETAIL: master slot: 0 length: 21 Jun 6 09:36:05 otp3 pgpool[2872]: [485-3] 2016-06-06 09:36:04: pid 2872: LOCATION: pool_process_query.c:3349 Jun 6 09:36:05 otp3 pgpool[2872]: [486-1] 2016-06-06 09:36:05: pid 2872: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:36:05 otp3 pgpool[2872]: [486-2] 2016-06-06 09:36:05: pid 2872: LOCATION: pool_process_query.c:3365 Jun 6 09:36:04 otp3 pgpool[2875]: [109-1] 2016-06-06 09:36:04: pid 2875: DEBUG: pool_write: to backend: kind:H Jun 6 09:36:05 otp3 pgpool[2872]: [487-1] 2016-06-06 09:36:05: pid 2872: DEBUG: processing backend response Jun 6 09:36:05 otp3 pgpool[2872]: [487-2] 2016-06-06 09:36:05: pid 2872: DETAIL: received kind '1'(31) from backend Jun 6 09:36:05 otp3 pgpool[2872]: [487-3] 2016-06-06 09:36:05: pid 2872: LOCATION: pool_proto_modules.c:2424 Jun 6 09:36:05 otp3 pgpool[2872]: [488-1] 2016-06-06 09:36:05: pid 2872: DEBUG: called by pool_add_sent_message: sent message: address: 2406c80 kind: P name: == Jun 6 09:36:05 otp3 pgpool[2872]: [488-2] 2016-06-06 09:36:05: pid 2872: LOCATION: pool_session_context.c:436 Jun 6 09:36:05 otp3 pgpool[2872]: [489-1] 2016-06-06 09:36:05: pid 2872: DEBUG: adding sent message to list Jun 6 09:36:05 otp3 pgpool[2872]: [489-2] 2016-06-06 09:36:05: pid 2872: DETAIL: prepared statement "" already exists Jun 6 09:36:05 otp3 pgpool[2872]: [489-3] 2016-06-06 09:36:05: pid 2872: LOCATION: pool_session_context.c:516 Jun 6 09:36:05 otp3 pgpool[2872]: [490-1] 2016-06-06 09:36:05: pid 2872: DEBUG: called by pool_sent_message_destroy: sent message: address: 2406d18 kind: P name: == Jun 6 09:36:05 otp3 pgpool[2872]: [490-2] 2016-06-06 09:36:05: pid 2872: LOCATION: pool_session_context.c:436 Jun 6 09:36:05 otp3 pgpool[2872]: [491-1] 2016-06-06 09:36:05: pid 2872: DEBUG: checking if query context can be safely destroyed Jun 6 09:36:05 otp3 pgpool[2872]: [491-2] 2016-06-06 09:36:05: pid 2872: DETAIL: query context 0x802481830 is still used 2 times. query:"select attachment0_.id as id1_6_, attachment0_.attachment_size as attachme2_6_, attachment0_.attachment_file_type as attachme3_6_ from attachment_properties attachment0_" Jun 6 09:36:05 otp3 pgpool[2872]: [491-3] 2016-06-06 09:36:05: pid 2872: LOCATION: pool_session_context.c:873 Jun 6 09:36:05 otp3 pgpool[2875]: [109-2] 2016-06-06 09:36:04: pid 2875: LOCATION: pool_stream.c:431 Jun 6 09:36:05 otp3 pgpool[2872]: [492-1] 2016-06-06 09:36:05: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:05 otp3 pgpool[2872]: [492-2] 2016-06-06 09:36:05: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:05 otp3 pgpool[2872]: [493-1] 2016-06-06 09:36:05: pid 2872: DEBUG: SimpleForwardToFrontend: packet:1 length:0 Jun 6 09:36:06 otp3 pgpool[2872]: [493-2] 2016-06-06 09:36:05: pid 2872: LOCATION: pool_process_query.c:792 Jun 6 09:36:06 otp3 pgpool[2872]: [494-1] 2016-06-06 09:36:06: pid 2872: DEBUG: session context: setting command success. DONE Jun 6 09:36:06 otp3 pgpool[2872]: [494-2] 2016-06-06 09:36:06: pid 2872: LOCATION: pool_session_context.c:741 Jun 6 09:36:04 otp3 pgpool[2873]: [351-1] 2016-06-06 09:36:04: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:06 otp3 pgpool[2873]: [351-2] 2016-06-06 09:36:04: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:36:06 otp3 pgpool[2872]: [495-1] 2016-06-06 09:36:06: pid 2872: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:06 otp3 pgpool[2872]: [495-2] 2016-06-06 09:36:06: pid 2872: LOCATION: pool_session_context.c:219 Jun 6 09:36:06 otp3 pgpool[2872]: [496-1] 2016-06-06 09:36:06: pid 2872: DEBUG: processing frontend response Jun 6 09:36:06 otp3 pgpool[2872]: [496-2] 2016-06-06 09:36:06: pid 2872: DETAIL: received kind 'B'(42) from frontend Jun 6 09:36:05 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: LOCATION: pool_auth.c:1161 Jun 6 09:36:06 otp3 pgpool[2872]: [496-3] 2016-06-06 09:36:06: pid 2872: LOCATION: pool_proto_modules.c:2188 Jun 6 09:36:06 otp3 pgpool[2872]: [497-1] 2016-06-06 09:36:06: pid 2872: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:36:06 otp3 pgpool[2872]: [497-2] 2016-06-06 09:36:06: pid 2872: LOCATION: pool_session_context.c:280 Jun 6 09:36:06 otp3 pgpool[2872]: [498-1] 2016-06-06 09:36:06: pid 2872: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:36:06 otp3 pgpool[2872]: [498-2] 2016-06-06 09:36:06: pid 2872: LOCATION: pool_session_context.c:269 Jun 6 09:36:06 otp3 pgpool[2872]: [499-1] 2016-06-06 09:36:06: pid 2872: DEBUG: Bind: checking strict query Jun 6 09:36:06 otp3 pgpool[2872]: [499-2] 2016-06-06 09:36:06: pid 2872: LOCATION: pool_proto_modules.c:1211 Jun 6 09:36:06 otp3 pgpool[2873]: [352-1] 2016-06-06 09:36:06: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:06 otp3 pgpool[2872]: [500-1] 2016-06-06 09:36:06: pid 2872: DEBUG: Bind: checking insert lock Jun 6 09:36:06 otp3 pgpool[2872]: [500-2] 2016-06-06 09:36:06: pid 2872: LOCATION: pool_proto_modules.c:1221 Jun 6 09:36:06 otp3 pgpool[2873]: [352-2] 2016-06-06 09:36:06: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:36:06 otp3 pgpool[2872]: [501-1] 2016-06-06 09:36:06: pid 2872: DEBUG: Bind: waiting for master completing the query Jun 6 09:36:06 otp3 pgpool[2872]: [501-2] 2016-06-06 09:36:06: pid 2872: LOCATION: pool_proto_modules.c:1237 Jun 6 09:36:06 otp3 pgpool[2872]: [502-1] 2016-06-06 09:36:06: pid 2872: DEBUG: session context: setting query in progress. DONE Jun 6 09:36:06 otp3 pgpool[2872]: [502-2] 2016-06-06 09:36:06: pid 2872: LOCATION: pool_session_context.c:208 Jun 6 09:36:06 otp3 pgpool[2872]: [503-1] 2016-06-06 09:36:06: pid 2872: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:36:06 otp3 pgpool[2872]: [503-2] 2016-06-06 09:36:06: pid 2872: LOCATION: pool_query_context.c:854 Jun 6 09:36:06 otp3 pgpool[2872]: [504-1] 2016-06-06 09:36:06: pid 2872: DEBUG: pool_write: to backend: kind:B Jun 6 09:36:06 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DEBUG: reading message length Jun 6 09:36:06 otp3 pgpool[2872]: [504-2] 2016-06-06 09:36:06: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:36:06 otp3 pgpool[2872]: [505-1] 2016-06-06 09:36:06: pid 2872: DEBUG: pool_write: to backend: kind:H Jun 6 09:36:06 otp3 pgpool[2872]: [505-2] 2016-06-06 09:36:06: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:36:06 otp3 pgpool[2872]: [506-1] 2016-06-06 09:36:06: pid 2872: DEBUG: waiting for query response Jun 6 09:36:06 otp3 pgpool[2873]: [353-1] 2016-06-06 09:36:06: pid 2873: DEBUG: reading message length Jun 6 09:36:06 otp3 pgpool[2872]: [506-2] 2016-06-06 09:36:06: pid 2872: DETAIL: waiting for backend:0 to complete the query Jun 6 09:36:06 otp3 pgpool[2873]: [353-2] 2016-06-06 09:36:06: pid 2873: DETAIL: slot: 0 length: 5 Jun 6 09:36:06 otp3 pgpool[2872]: [506-3] 2016-06-06 09:36:06: pid 2872: LOCATION: pool_process_query.c:479 Jun 6 09:36:06 otp3 pgpool[2873]: [353-3] 2016-06-06 09:36:06: pid 2873: LOCATION: pool_auth.c:1107 Jun 6 09:36:04 otp3 pgpool[2874]: [15-1] 2016-06-06 09:36:04: pid 2874: DEBUG: creating new connection to backend Jun 6 09:36:06 otp3 pgpool[2874]: [15-2] 2016-06-06 09:36:04: pid 2874: DETAIL: connecting 1 backend Jun 6 09:36:06 otp3 pgpool[2874]: [15-3] 2016-06-06 09:36:04: pid 2874: LOCATION: pool_connection_pool.c:830 Jun 6 09:36:06 otp3 pgpool[2873]: [354-1] 2016-06-06 09:36:06: pid 2873: DEBUG: processing ReadyForQuery Jun 6 09:36:06 otp3 pgpool[2873]: [354-2] 2016-06-06 09:36:06: pid 2873: DETAIL: transaction state 'I'(49) Jun 6 09:36:06 otp3 pgpool[2873]: [354-3] 2016-06-06 09:36:06: pid 2873: LOCATION: pool_proto_modules.c:1612 Jun 6 09:36:06 otp3 pgpool[2873]: [355-1] 2016-06-06 09:36:06: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:06 otp3 pgpool[2873]: [355-2] 2016-06-06 09:36:06: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:36:06 otp3 pgpool[2873]: [356-1] 2016-06-06 09:36:06: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:36:06 otp3 pgpool[2873]: [356-2] 2016-06-06 09:36:06: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:36:06 otp3 pgpool[2873]: [357-1] 2016-06-06 09:36:06: pid 2873: DEBUG: Parse: waiting for master completing the query Jun 6 09:36:06 otp3 pgpool[2873]: [357-2] 2016-06-06 09:36:06: pid 2873: LOCATION: pool_proto_modules.c:1064 Jun 6 09:36:06 otp3 pgpool[2873]: [358-1] 2016-06-06 09:36:06: pid 2873: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:36:06 otp3 pgpool[2873]: [358-2] 2016-06-06 09:36:06: pid 2873: LOCATION: pool_query_context.c:854 Jun 6 09:36:06 otp3 pgpool[2873]: [359-1] 2016-06-06 09:36:06: pid 2873: DEBUG: pool_write: to backend: kind:P Jun 6 09:36:06 otp3 pgpool[2873]: [359-2] 2016-06-06 09:36:06: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:36:06 otp3 pgpool[2873]: [360-1] 2016-06-06 09:36:06: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:36:06 otp3 pgpool[2873]: [360-2] 2016-06-06 09:36:06: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:36:06 otp3 pgpool[2873]: [361-1] 2016-06-06 09:36:06: pid 2873: DEBUG: waiting for query response Jun 6 09:36:06 otp3 pgpool[2873]: [361-2] 2016-06-06 09:36:06: pid 2873: DETAIL: waiting for backend:0 to complete the query Jun 6 09:36:06 otp3 pgpool[2873]: [361-3] 2016-06-06 09:36:06: pid 2873: LOCATION: pool_process_query.c:479 Jun 6 09:36:06 otp3 pgpool[2873]: [362-1] 2016-06-06 09:36:06: pid 2873: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:36:06 otp3 pgpool[2872]: [507-1] 2016-06-06 09:36:06: pid 2872: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:36:06 otp3 pgpool[2873]: [362-2] 2016-06-06 09:36:06: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:36:06 otp3 pgpool[2872]: [507-2] 2016-06-06 09:36:06: pid 2872: LOCATION: pool_stream.c:190 Jun 6 09:36:06 otp3 pgpool[2873]: [363-1] 2016-06-06 09:36:06: pid 2873: DEBUG: detect error: kind: 1 Jun 6 09:36:06 otp3 pgpool[2873]: [363-2] 2016-06-06 09:36:06: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:36:06 otp3 pgpool[2872]: [508-1] 2016-06-06 09:36:06: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:06 otp3 pgpool[2872]: [508-2] 2016-06-06 09:36:06: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:06 otp3 pgpool[2872]: [509-1] 2016-06-06 09:36:06: pid 2872: DEBUG: reading backend data packet kind Jun 6 09:36:06 otp3 pgpool[2872]: [509-2] 2016-06-06 09:36:06: pid 2872: DETAIL: backend:0 of 2 kind = '2' Jun 6 09:36:06 otp3 pgpool[2872]: [509-3] 2016-06-06 09:36:06: pid 2872: LOCATION: pool_process_query.c:3349 Jun 6 09:36:06 otp3 pgpool[2873]: [364-1] 2016-06-06 09:36:06: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:06 otp3 pgpool[2873]: [364-2] 2016-06-06 09:36:06: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:36:06 otp3 pgpool[2873]: [365-1] 2016-06-06 09:36:06: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:36:06 otp3 pgpool[2873]: [365-2] 2016-06-06 09:36:06: pid 2873: DETAIL: backend:0 of 2 kind = '1' Jun 6 09:36:06 otp3 pgpool[2873]: [365-3] 2016-06-06 09:36:06: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:36:06 otp3 pgpool[2872]: [510-1] 2016-06-06 09:36:06: pid 2872: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:36:06 otp3 pgpool[2873]: [366-1] 2016-06-06 09:36:06: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:36:06 otp3 pgpool[2873]: [366-2] 2016-06-06 09:36:06: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:36:06 otp3 pgpool[2872]: [510-2] 2016-06-06 09:36:06: pid 2872: LOCATION: pool_process_query.c:3365 Jun 6 09:36:06 otp3 pgpool[2873]: [367-1] 2016-06-06 09:36:06: pid 2873: DEBUG: processing backend response Jun 6 09:36:06 otp3 pgpool[2873]: [367-2] 2016-06-06 09:36:06: pid 2873: DETAIL: received kind '1'(31) from backend Jun 6 09:36:06 otp3 pgpool[2873]: [367-3] 2016-06-06 09:36:06: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:36:06 otp3 pgpool[2872]: [511-1] 2016-06-06 09:36:06: pid 2872: DEBUG: processing backend response Jun 6 09:36:06 otp3 pgpool[2872]: [511-2] 2016-06-06 09:36:06: pid 2872: DETAIL: received kind '2'(32) from backend Jun 6 09:36:06 otp3 pgpool[2872]: [511-3] 2016-06-06 09:36:06: pid 2872: LOCATION: pool_proto_modules.c:2424 Jun 6 09:36:06 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DETAIL: master slot: 1 length: 21 Jun 6 09:36:06 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: LOCATION: pool_auth.c:1172 Jun 6 09:36:06 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DEBUG: process parameter status Jun 6 09:36:06 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DETAIL: backend:0 name:"is_superuser" value:"off" Jun 6 09:36:06 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: LOCATION: pool_process_query.c:921 Jun 6 09:36:06 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DEBUG: process parameter status Jun 6 09:36:06 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DETAIL: backend:1 name:"is_superuser" value:"off" Jun 6 09:36:06 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: LOCATION: pool_process_query.c:921 Jun 6 09:36:06 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DEBUG: reading message length Jun 6 09:36:06 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DETAIL: master slot: 0 length: 30 Jun 6 09:36:06 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: LOCATION: pool_auth.c:1161 Jun 6 09:36:06 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DEBUG: reading message length Jun 6 09:36:06 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DETAIL: master slot: 1 length: 30 Jun 6 09:36:06 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: LOCATION: pool_auth.c:1172 Jun 6 09:36:06 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DEBUG: process parameter status Jun 6 09:36:06 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DETAIL: backend:0 name:"server_encoding" value:"SQL_ASCII" Jun 6 09:36:06 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: LOCATION: pool_process_query.c:921 Jun 6 09:36:06 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DEBUG: process parameter status Jun 6 09:36:06 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DETAIL: backend:1 name:"server_encoding" value:"SQL_ASCII" Jun 6 09:36:06 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: LOCATION: pool_process_query.c:921 Jun 6 09:36:06 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DEBUG: reading message length Jun 6 09:36:06 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DETAIL: master slot: 0 length: 26 Jun 6 09:36:06 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: LOCATION: pool_auth.c:1161 Jun 6 09:36:06 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DEBUG: reading message length Jun 6 09:36:06 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DETAIL: master slot: 1 length: 26 Jun 6 09:36:06 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: LOCATION: pool_auth.c:1172 Jun 6 09:36:06 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DEBUG: process parameter status Jun 6 09:36:06 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DETAIL: backend:0 name:"server_version" value:"9.3.12" Jun 6 09:36:06 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: LOCATION: pool_process_query.c:921 Jun 6 09:36:06 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DEBUG: process parameter status Jun 6 09:36:06 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DETAIL: backend:1 name:"server_version" value:"9.3.12" Jun 6 09:36:06 otp3 pgpool[2872]: [512-1] 2016-06-06 09:36:06: pid 2872: DEBUG: called by pool_add_sent_message: sent message: address: 2406d18 kind: B name: == Jun 6 09:36:07 otp3 pgpool[2872]: [512-2] 2016-06-06 09:36:06: pid 2872: LOCATION: pool_session_context.c:436 Jun 6 09:36:06 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: LOCATION: pool_process_query.c:921 Jun 6 09:36:07 otp3 pgpool[2872]: [513-1] 2016-06-06 09:36:07: pid 2872: DEBUG: adding sent message to list Jun 6 09:36:08 otp3 pgpool[2872]: [513-2] 2016-06-06 09:36:07: pid 2872: DETAIL: portal "" already exists Jun 6 09:36:06 otp3 pgpool[2873]: [368-1] 2016-06-06 09:36:06: pid 2873: DEBUG: called by pool_add_sent_message: sent message: address: 2406d18 kind: P name: == Jun 6 09:36:08 otp3 pgpool[2872]: [513-3] 2016-06-06 09:36:07: pid 2872: LOCATION: pool_session_context.c:512 Jun 6 09:36:08 otp3 pgpool[2872]: [514-1] 2016-06-06 09:36:08: pid 2872: DEBUG: called by pool_sent_message_destroy: sent message: address: 2406d98 kind: B name: == Jun 6 09:36:08 otp3 pgpool[2872]: [514-2] 2016-06-06 09:36:08: pid 2872: LOCATION: pool_session_context.c:436 Jun 6 09:36:08 otp3 pgpool[2872]: [515-1] 2016-06-06 09:36:08: pid 2872: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:08 otp3 pgpool[2872]: [515-2] 2016-06-06 09:36:08: pid 2872: LOCATION: pool_session_context.c:219 Jun 6 09:36:08 otp3 pgpool[2872]: [516-1] 2016-06-06 09:36:08: pid 2872: DEBUG: session context: setting query in progress. DONE Jun 6 09:36:08 otp3 pgpool[2872]: [516-2] 2016-06-06 09:36:08: pid 2872: LOCATION: pool_session_context.c:208 Jun 6 09:36:08 otp3 pgpool[2872]: [517-1] 2016-06-06 09:36:08: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:08 otp3 pgpool[2872]: [517-2] 2016-06-06 09:36:08: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:08 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DEBUG: reading message length Jun 6 09:36:08 otp3 pgpool[2872]: [518-1] 2016-06-06 09:36:08: pid 2872: DEBUG: SimpleForwardToFrontend: packet:2 length:0 Jun 6 09:36:08 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DETAIL: master slot: 0 length: 38 Jun 6 09:36:10 otp3 pgpool[2872]: [518-2] 2016-06-06 09:36:08: pid 2872: LOCATION: pool_process_query.c:792 Jun 6 09:36:10 otp3 pgpool[2872]: [519-1] 2016-06-06 09:36:10: pid 2872: DEBUG: session context: setting command success. DONE Jun 6 09:36:11 otp3 pgpool[2872]: [519-2] 2016-06-06 09:36:10: pid 2872: LOCATION: pool_session_context.c:741 Jun 6 09:36:11 otp3 pgpool[2872]: [520-1] 2016-06-06 09:36:11: pid 2872: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:11 otp3 pgpool[2872]: [520-2] 2016-06-06 09:36:11: pid 2872: LOCATION: pool_session_context.c:219 Jun 6 09:36:10 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: LOCATION: pool_auth.c:1161 Jun 6 09:36:11 otp3 pgpool[2872]: [521-1] 2016-06-06 09:36:11: pid 2872: DEBUG: processing frontend response Jun 6 09:36:11 otp3 pgpool[2872]: [521-2] 2016-06-06 09:36:11: pid 2872: DETAIL: received kind 'D'(44) from frontend Jun 6 09:36:11 otp3 pgpool[2872]: [521-3] 2016-06-06 09:36:11: pid 2872: LOCATION: pool_proto_modules.c:2188 Jun 6 09:36:13 otp3 pgpool[2872]: [522-1] 2016-06-06 09:36:13: pid 2872: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:36:13 otp3 pgpool[2872]: [522-2] 2016-06-06 09:36:13: pid 2872: LOCATION: pool_session_context.c:280 Jun 6 09:36:08 otp3 pgpool[2873]: [368-2] 2016-06-06 09:36:06: pid 2873: LOCATION: pool_session_context.c:436 Jun 6 09:36:11 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DEBUG: reading message length Jun 6 09:36:13 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DETAIL: master slot: 1 length: 38 Jun 6 09:36:13 otp3 pgpool[2872]: [523-1] 2016-06-06 09:36:13: pid 2872: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:36:14 otp3 pgpool[2872]: [523-2] 2016-06-06 09:36:13: pid 2872: LOCATION: pool_session_context.c:269 Jun 6 09:36:14 otp3 pgpool[2872]: [524-1] 2016-06-06 09:36:14: pid 2872: DEBUG: Describe: waiting for master completing the query Jun 6 09:36:13 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: LOCATION: pool_auth.c:1172 Jun 6 09:36:13 otp3 pgpool[2873]: [369-1] 2016-06-06 09:36:13: pid 2873: DEBUG: adding sent message to list Jun 6 09:36:15 otp3 pgpool[2872]: [524-2] 2016-06-06 09:36:14: pid 2872: LOCATION: pool_proto_modules.c:1310 Jun 6 09:36:15 otp3 pgpool[2872]: [525-1] 2016-06-06 09:36:15: pid 2872: DEBUG: session context: setting query in progress. DONE Jun 6 09:36:15 otp3 pgpool[2872]: [525-2] 2016-06-06 09:36:15: pid 2872: LOCATION: pool_session_context.c:208 Jun 6 09:36:15 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DEBUG: process parameter status Jun 6 09:36:15 otp3 pgpool[2872]: [526-1] 2016-06-06 09:36:15: pid 2872: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:36:15 otp3 pgpool[2873]: [369-2] 2016-06-06 09:36:13: pid 2873: DETAIL: prepared statement "" already exists Jun 6 09:36:16 otp3 pgpool[2872]: [526-2] 2016-06-06 09:36:15: pid 2872: LOCATION: pool_query_context.c:854 Jun 6 09:36:16 otp3 pgpool[2873]: [369-3] 2016-06-06 09:36:13: pid 2873: LOCATION: pool_session_context.c:516 Jun 6 09:36:16 otp3 pgpool[2872]: [527-1] 2016-06-06 09:36:16: pid 2872: DEBUG: pool_write: to backend: kind:D Jun 6 09:36:16 otp3 pgpool[2873]: [370-1] 2016-06-06 09:36:16: pid 2873: DEBUG: called by pool_sent_message_destroy: sent message: address: 2406d98 kind: P name: == Jun 6 09:36:16 otp3 pgpool[2872]: [527-2] 2016-06-06 09:36:16: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:36:16 otp3 pgpool[2873]: [370-2] 2016-06-06 09:36:16: pid 2873: LOCATION: pool_session_context.c:436 Jun 6 09:36:16 otp3 pgpool[2872]: [528-1] 2016-06-06 09:36:16: pid 2872: DEBUG: pool_write: to backend: kind:H Jun 6 09:36:16 otp3 pgpool[2872]: [528-2] 2016-06-06 09:36:16: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:36:16 otp3 pgpool[2873]: [371-1] 2016-06-06 09:36:16: pid 2873: DEBUG: checking if query context can be safely destroyed Jun 6 09:36:16 otp3 pgpool[2873]: [371-2] 2016-06-06 09:36:16: pid 2873: DETAIL: query context 0x802482830 is still used 2 times. query:"select clhost0_.host_id as host_id1_2_, clhost0_.host_name as host_nam2_2_, clhost0_.is_https as is_https3_2_, clhost0_.tenant_id as tenant_i4_2_ from cl_host clhost0_ where clhost0_.host_name=$1" Jun 6 09:36:16 otp3 pgpool[2873]: [371-3] 2016-06-06 09:36:16: pid 2873: LOCATION: pool_session_context.c:873 Jun 6 09:36:15 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DETAIL: backend:0 name:"session_authorization" value:"sparrowdesk" Jun 6 09:36:16 otp3 pgpool[2872]: [529-1] 2016-06-06 09:36:16: pid 2872: DEBUG: waiting for query response Jun 6 09:36:18 otp3 pgpool[2872]: [529-2] 2016-06-06 09:36:16: pid 2872: DETAIL: waiting for backend:0 to complete the query Jun 6 09:36:18 otp3 pgpool[2872]: [529-3] 2016-06-06 09:36:16: pid 2872: LOCATION: pool_process_query.c:479 Jun 6 09:36:18 otp3 pgpool[2872]: [530-1] 2016-06-06 09:36:18: pid 2872: DEBUG: pool_read: read 34 bytes from backend 0 Jun 6 09:36:18 otp3 pgpool[2872]: [530-2] 2016-06-06 09:36:18: pid 2872: LOCATION: pool_stream.c:190 Jun 6 09:36:18 otp3 pgpool[2872]: [531-1] 2016-06-06 09:36:18: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:18 otp3 pgpool[2872]: [531-2] 2016-06-06 09:36:18: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:18 otp3 pgpool[2872]: [532-1] 2016-06-06 09:36:18: pid 2872: DEBUG: reading backend data packet kind Jun 6 09:36:18 otp3 pgpool[2872]: [532-2] 2016-06-06 09:36:18: pid 2872: DETAIL: backend:0 of 2 kind = 'T' Jun 6 09:36:18 otp3 pgpool[2872]: [532-3] 2016-06-06 09:36:18: pid 2872: LOCATION: pool_process_query.c:3349 Jun 6 09:36:18 otp3 pgpool[2872]: [533-1] 2016-06-06 09:36:18: pid 2872: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:36:18 otp3 pgpool[2872]: [533-2] 2016-06-06 09:36:18: pid 2872: LOCATION: pool_process_query.c:3365 Jun 6 09:36:18 otp3 pgpool[2872]: [534-1] 2016-06-06 09:36:18: pid 2872: DEBUG: processing backend response Jun 6 09:36:18 otp3 pgpool[2872]: [534-2] 2016-06-06 09:36:18: pid 2872: DETAIL: received kind 'T'(54) from backend Jun 6 09:36:18 otp3 pgpool[2872]: [534-3] 2016-06-06 09:36:18: pid 2872: LOCATION: pool_proto_modules.c:2424 Jun 6 09:36:16 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: LOCATION: pool_process_query.c:921 Jun 6 09:36:18 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DEBUG: process parameter status Jun 6 09:36:18 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DETAIL: backend:1 name:"session_authorization" value:"sparrowdesk" Jun 6 09:36:18 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: LOCATION: pool_process_query.c:921 Jun 6 09:36:18 otp3 pgpool[2872]: [535-1] 2016-06-06 09:36:18: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:18 otp3 pgpool[2872]: [535-2] 2016-06-06 09:36:18: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:18 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DEBUG: reading message length Jun 6 09:36:18 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DETAIL: master slot: 0 length: 35 Jun 6 09:36:18 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: LOCATION: pool_auth.c:1161 Jun 6 09:36:18 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DEBUG: reading message length Jun 6 09:36:18 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DETAIL: master slot: 1 length: 35 Jun 6 09:36:18 otp3 pgpool[2872]: [536-1] 2016-06-06 09:36:18: pid 2872: DEBUG: SimpleForwardToFrontend: packet:T length:29 Jun 6 09:36:18 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: LOCATION: pool_auth.c:1172 Jun 6 09:36:18 otp3 pgpool[2872]: [536-2] 2016-06-06 09:36:18: pid 2872: LOCATION: pool_process_query.c:792 Jun 6 09:36:18 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DEBUG: process parameter status Jun 6 09:36:18 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DETAIL: backend:0 name:"standard_conforming_strings" value:"on" Jun 6 09:36:18 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: LOCATION: pool_process_query.c:921 Jun 6 09:36:18 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DEBUG: process parameter status Jun 6 09:36:18 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DETAIL: backend:1 name:"standard_conforming_strings" value:"on" Jun 6 09:36:21 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: LOCATION: pool_process_query.c:921 Jun 6 09:36:18 otp3 pgpool[2872]: [537-1] 2016-06-06 09:36:18: pid 2872: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:21 otp3 pgpool[2872]: [537-2] 2016-06-06 09:36:18: pid 2872: LOCATION: pool_session_context.c:219 Jun 6 09:36:05 otp3 pgpool[2875]: [110-1] 2016-06-06 09:36:05: pid 2875: DEBUG: pool_write: to backend: kind:S Jun 6 09:36:07 otp3 pgpool[2874]: [16-1] 2016-06-06 09:36:07: pid 2874: DEBUG: SSL is requested but SSL support is not available Jun 6 09:36:21 otp3 pgpool[2872]: [538-1] 2016-06-06 09:36:21: pid 2872: DEBUG: processing frontend response Jun 6 09:36:21 otp3 pgpool[2874]: [16-2] 2016-06-06 09:36:07: pid 2874: LOCATION: pool_ssl.c:333 Jun 6 09:36:21 otp3 pgpool[2872]: [538-2] 2016-06-06 09:36:21: pid 2872: DETAIL: received kind 'E'(45) from frontend Jun 6 09:36:21 otp3 pgpool[2872]: [538-3] 2016-06-06 09:36:21: pid 2872: LOCATION: pool_proto_modules.c:2188 Jun 6 09:36:21 otp3 pgpool[2872]: [539-1] 2016-06-06 09:36:21: pid 2872: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:36:21 otp3 pgpool[2874]: [17-1] 2016-06-06 09:36:21: pid 2874: DEBUG: SSL is requested but SSL support is not available Jun 6 09:36:21 otp3 pgpool[2872]: [539-2] 2016-06-06 09:36:21: pid 2872: LOCATION: pool_session_context.c:280 Jun 6 09:36:21 otp3 pgpool[2874]: [17-2] 2016-06-06 09:36:21: pid 2874: LOCATION: pool_ssl.c:333 Jun 6 09:36:21 otp3 pgpool[2872]: [540-1] 2016-06-06 09:36:21: pid 2872: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:36:21 otp3 pgpool[2875]: [110-2] 2016-06-06 09:36:05: pid 2875: LOCATION: pool_stream.c:431 Jun 6 09:36:21 otp3 pgpool[2872]: [540-2] 2016-06-06 09:36:21: pid 2872: LOCATION: pool_session_context.c:269 Jun 6 09:36:21 otp3 pgpool[2872]: [541-1] 2016-06-06 09:36:21: pid 2872: DEBUG: session context: setting query in progress. DONE Jun 6 09:36:21 otp3 pgpool[2872]: [541-2] 2016-06-06 09:36:21: pid 2872: LOCATION: pool_session_context.c:208 Jun 6 09:36:21 otp3 pgpool[2875]: [111-1] 2016-06-06 09:36:21: pid 2875: DEBUG: pool_write: to backend: kind:H Jun 6 09:36:21 otp3 pgpool[2875]: [111-2] 2016-06-06 09:36:21: pid 2875: LOCATION: pool_stream.c:431 Jun 6 09:36:21 otp3 pgpool[2872]: [542-1] 2016-06-06 09:36:21: pid 2872: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:36:21 otp3 pgpool[2872]: [542-2] 2016-06-06 09:36:21: pid 2872: LOCATION: pool_query_context.c:854 Jun 6 09:36:21 otp3 pgpool[2872]: [543-1] 2016-06-06 09:36:21: pid 2872: DEBUG: pool_write: to backend: kind:E Jun 6 09:36:21 otp3 pgpool[2872]: [543-2] 2016-06-06 09:36:21: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:36:21 otp3 pgpool[2875]: [112-1] 2016-06-06 09:36:21: pid 2875: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:36:21 otp3 pgpool[2875]: [112-2] 2016-06-06 09:36:21: pid 2875: LOCATION: pool_stream.c:190 Jun 6 09:36:21 otp3 pgpool[2872]: [544-1] 2016-06-06 09:36:21: pid 2872: DEBUG: pool_write: to backend: kind:H Jun 6 09:36:21 otp3 pgpool[2872]: [544-2] 2016-06-06 09:36:21: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:36:16 otp3 pgpool[2873]: [372-1] 2016-06-06 09:36:16: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:21 otp3 pgpool[2873]: [372-2] 2016-06-06 09:36:16: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:36:21 otp3 pgpool[2872]: [545-1] 2016-06-06 09:36:21: pid 2872: DEBUG: waiting for query response Jun 6 09:36:21 otp3 pgpool[2872]: [545-2] 2016-06-06 09:36:21: pid 2872: DETAIL: waiting for backend:0 to complete the query Jun 6 09:36:21 otp3 pgpool[2872]: [545-3] 2016-06-06 09:36:21: pid 2872: LOCATION: pool_process_query.c:479 Jun 6 09:36:21 otp3 pgpool[2873]: [373-1] 2016-06-06 09:36:21: pid 2873: DEBUG: SimpleForwardToFrontend: packet:1 length:0 Jun 6 09:36:21 otp3 pgpool[2873]: [373-2] 2016-06-06 09:36:21: pid 2873: LOCATION: pool_process_query.c:792 Jun 6 09:36:21 otp3 pgpool[2873]: [374-1] 2016-06-06 09:36:21: pid 2873: DEBUG: session context: setting command success. DONE Jun 6 09:36:21 otp3 pgpool[2873]: [374-2] 2016-06-06 09:36:21: pid 2873: LOCATION: pool_session_context.c:741 Jun 6 09:36:21 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DEBUG: reading message length Jun 6 09:36:21 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DETAIL: master slot: 0 length: 26 Jun 6 09:36:21 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: LOCATION: pool_auth.c:1161 Jun 6 09:36:21 otp3 pgpool[2873]: [375-1] 2016-06-06 09:36:21: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:21 otp3 pgpool[2873]: [375-2] 2016-06-06 09:36:21: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:36:21 otp3 pgpool[2872]: [546-1] 2016-06-06 09:36:21: pid 2872: DEBUG: pool_read: read 26 bytes from backend 0 Jun 6 09:36:21 otp3 pgpool[2872]: [546-2] 2016-06-06 09:36:21: pid 2872: LOCATION: pool_stream.c:190 Jun 6 09:36:21 otp3 pgpool[2873]: [376-1] 2016-06-06 09:36:21: pid 2873: DEBUG: processing frontend response Jun 6 09:36:21 otp3 pgpool[2873]: [376-2] 2016-06-06 09:36:21: pid 2873: DETAIL: received kind 'B'(42) from frontend Jun 6 09:36:21 otp3 pgpool[2873]: [376-3] 2016-06-06 09:36:21: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:36:21 otp3 pgpool[2872]: [547-1] 2016-06-06 09:36:21: pid 2872: DEBUG: detect error: kind: D Jun 6 09:36:21 otp3 pgpool[2872]: [547-2] 2016-06-06 09:36:21: pid 2872: LOCATION: pool_process_query.c:4166 Jun 6 09:36:21 otp3 pgpool[2872]: [548-1] 2016-06-06 09:36:21: pid 2872: DEBUG: detect error: kind: D Jun 6 09:36:21 otp3 pgpool[2872]: [548-2] 2016-06-06 09:36:21: pid 2872: LOCATION: pool_process_query.c:4166 Jun 6 09:36:21 otp3 pgpool[2873]: [377-1] 2016-06-06 09:36:21: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:36:21 otp3 pgpool[2873]: [377-2] 2016-06-06 09:36:21: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:36:21 otp3 pgpool[2872]: [549-1] 2016-06-06 09:36:21: pid 2872: DEBUG: detect error: kind: D Jun 6 09:36:21 otp3 pgpool[2872]: [549-2] 2016-06-06 09:36:21: pid 2872: LOCATION: pool_process_query.c:4166 Jun 6 09:36:21 otp3 pgpool[2873]: [378-1] 2016-06-06 09:36:21: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:36:21 otp3 pgpool[2873]: [378-2] 2016-06-06 09:36:21: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:36:21 otp3 pgpool[2872]: [550-1] 2016-06-06 09:36:21: pid 2872: DEBUG: detect error: kind: D Jun 6 09:36:21 otp3 pgpool[2873]: [379-1] 2016-06-06 09:36:21: pid 2873: DEBUG: Bind: checking strict query Jun 6 09:36:21 otp3 pgpool[2872]: [550-2] 2016-06-06 09:36:21: pid 2872: LOCATION: pool_process_query.c:4166 Jun 6 09:36:21 otp3 pgpool[2873]: [379-2] 2016-06-06 09:36:21: pid 2873: LOCATION: pool_proto_modules.c:1211 Jun 6 09:36:21 otp3 pgpool[2872]: [551-1] 2016-06-06 09:36:21: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:21 otp3 pgpool[2872]: [551-2] 2016-06-06 09:36:21: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:21 otp3 pgpool[2873]: [380-1] 2016-06-06 09:36:21: pid 2873: DEBUG: Bind: checking insert lock Jun 6 09:36:21 otp3 pgpool[2873]: [380-2] 2016-06-06 09:36:21: pid 2873: LOCATION: pool_proto_modules.c:1221 Jun 6 09:36:21 otp3 pgpool[2872]: [552-1] 2016-06-06 09:36:21: pid 2872: DEBUG: reading backend data packet kind Jun 6 09:36:21 otp3 pgpool[2872]: [552-2] 2016-06-06 09:36:21: pid 2872: DETAIL: backend:0 of 2 kind = 'D' Jun 6 09:36:21 otp3 pgpool[2873]: [381-1] 2016-06-06 09:36:21: pid 2873: DEBUG: Bind: waiting for master completing the query Jun 6 09:36:21 otp3 pgpool[2872]: [552-3] 2016-06-06 09:36:21: pid 2872: LOCATION: pool_process_query.c:3349 Jun 6 09:36:21 otp3 pgpool[2873]: [381-2] 2016-06-06 09:36:21: pid 2873: LOCATION: pool_proto_modules.c:1237 Jun 6 09:36:21 otp3 pgpool[2873]: [382-1] 2016-06-06 09:36:21: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:36:21 otp3 pgpool[2873]: [382-2] 2016-06-06 09:36:21: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:36:21 otp3 pgpool[2872]: [553-1] 2016-06-06 09:36:21: pid 2872: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:36:21 otp3 pgpool[2872]: [553-2] 2016-06-06 09:36:21: pid 2872: LOCATION: pool_process_query.c:3365 Jun 6 09:36:21 otp3 pgpool[2873]: [383-1] 2016-06-06 09:36:21: pid 2873: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:36:21 otp3 pgpool[2873]: [383-2] 2016-06-06 09:36:21: pid 2873: LOCATION: pool_query_context.c:854 Jun 6 09:36:21 otp3 pgpool[2872]: [554-1] 2016-06-06 09:36:21: pid 2872: DEBUG: processing backend response Jun 6 09:36:21 otp3 pgpool[2875]: [113-1] 2016-06-06 09:36:21: pid 2875: DEBUG: pool_read: read 6 bytes from backend 1 Jun 6 09:36:21 otp3 pgpool[2872]: [554-2] 2016-06-06 09:36:21: pid 2872: DETAIL: received kind 'D'(44) from backend Jun 6 09:36:21 otp3 pgpool[2875]: [113-2] 2016-06-06 09:36:21: pid 2875: LOCATION: pool_stream.c:190 Jun 6 09:36:21 otp3 pgpool[2872]: [554-3] 2016-06-06 09:36:21: pid 2872: LOCATION: pool_proto_modules.c:2424 Jun 6 09:36:21 otp3 pgpool[2872]: [555-1] 2016-06-06 09:36:21: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:21 otp3 pgpool[2875]: [114-1] 2016-06-06 09:36:21: pid 2875: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:36:21 otp3 pgpool[2872]: [555-2] 2016-06-06 09:36:21: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:21 otp3 pgpool[2875]: [114-2] 2016-06-06 09:36:21: pid 2875: LOCATION: pool_session_context.c:310 Jun 6 09:36:21 otp3 pgpool[2872]: [556-1] 2016-06-06 09:36:21: pid 2872: DEBUG: SimpleForwardToFrontend: packet:D length:7 Jun 6 09:36:21 otp3 pgpool[2875]: [115-1] 2016-06-06 09:36:21: pid 2875: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:21 otp3 pgpool[2872]: [556-2] 2016-06-06 09:36:21: pid 2872: LOCATION: pool_process_query.c:792 Jun 6 09:36:21 otp3 pgpool[2875]: [115-2] 2016-06-06 09:36:21: pid 2875: LOCATION: pool_session_context.c:969 Jun 6 09:36:21 otp3 pgpool[2872]: [557-1] 2016-06-06 09:36:21: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:21 otp3 pgpool[2872]: [557-2] 2016-06-06 09:36:21: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:21 otp3 pgpool[2875]: [116-1] 2016-06-06 09:36:21: pid 2875: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:21 otp3 pgpool[2875]: [116-2] 2016-06-06 09:36:21: pid 2875: LOCATION: pool_session_context.c:969 Jun 6 09:36:21 otp3 pgpool[2872]: [558-1] 2016-06-06 09:36:21: pid 2872: DEBUG: reading backend data packet kind Jun 6 09:36:21 otp3 pgpool[2872]: [558-2] 2016-06-06 09:36:21: pid 2872: DETAIL: backend:0 of 2 kind = 'C' Jun 6 09:36:21 otp3 pgpool[2872]: [558-3] 2016-06-06 09:36:21: pid 2872: LOCATION: pool_process_query.c:3349 Jun 6 09:36:21 otp3 pgpool[2873]: [384-1] 2016-06-06 09:36:21: pid 2873: DEBUG: pool_write: to backend: kind:B Jun 6 09:36:21 otp3 pgpool[2874]: [18-1] 2016-06-06 09:36:21: pid 2874: DEBUG: pool_read: read 13 bytes from backend 0 Jun 6 09:36:22 otp3 pgpool[2874]: [18-2] 2016-06-06 09:36:21: pid 2874: LOCATION: pool_stream.c:190 Jun 6 09:36:22 otp3 pgpool[2874]: [19-1] 2016-06-06 09:36:22: pid 2874: DEBUG: pool_read: read 13 bytes from backend 1 Jun 6 09:36:22 otp3 pgpool[2874]: [19-2] 2016-06-06 09:36:22: pid 2874: LOCATION: pool_stream.c:190 Jun 6 09:36:22 otp3 pgpool[2874]: [20-1] 2016-06-06 09:36:22: pid 2874: DEBUG: reading message length Jun 6 09:36:22 otp3 pgpool[2874]: [20-2] 2016-06-06 09:36:22: pid 2874: DETAIL: slot: 0 length: 12 Jun 6 09:36:22 otp3 pgpool[2874]: [20-3] 2016-06-06 09:36:22: pid 2874: LOCATION: pool_auth.c:1107 Jun 6 09:36:22 otp3 pgpool[2874]: [21-1] 2016-06-06 09:36:22: pid 2874: DEBUG: reading message length Jun 6 09:36:22 otp3 pgpool[2874]: [21-2] 2016-06-06 09:36:22: pid 2874: DETAIL: slot: 1 length: 12 Jun 6 09:36:22 otp3 pgpool[2874]: [21-3] 2016-06-06 09:36:22: pid 2874: LOCATION: pool_auth.c:1126 Jun 6 09:36:22 otp3 pgpool[2874]: [22-1] 2016-06-06 09:36:22: pid 2874: DEBUG: authentication backend Jun 6 09:36:22 otp3 pgpool[2874]: [22-2] 2016-06-06 09:36:22: pid 2874: DETAIL: auth kind:5 Jun 6 09:36:22 otp3 pgpool[2874]: [22-3] 2016-06-06 09:36:22: pid 2874: LOCATION: pool_auth.c:142 Jun 6 09:36:22 otp3 pgpool[2874]: [23-1] 2016-06-06 09:36:22: pid 2874: DEBUG: authentication backend Jun 6 09:36:22 otp3 pgpool[2874]: [23-2] 2016-06-06 09:36:22: pid 2874: DETAIL: trying md5 authentication Jun 6 09:36:22 otp3 pgpool[2874]: [23-3] 2016-06-06 09:36:22: pid 2874: LOCATION: pool_auth.c:239 Jun 6 09:36:21 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DEBUG: reading message length Jun 6 09:36:22 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DETAIL: master slot: 1 length: 26 Jun 6 09:36:22 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: LOCATION: pool_auth.c:1172 Jun 6 09:36:22 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DEBUG: process parameter status Jun 6 09:36:22 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DETAIL: backend:0 name:"TimeZone" value:"Asia/Kolkata" Jun 6 09:36:22 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: LOCATION: pool_process_query.c:921 Jun 6 09:36:22 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DEBUG: process parameter status Jun 6 09:36:22 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DETAIL: backend:1 name:"TimeZone" value:"Asia/Kolkata" Jun 6 09:36:22 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: LOCATION: pool_process_query.c:921 Jun 6 09:36:22 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DEBUG: reading message length Jun 6 09:36:22 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DETAIL: slot: 0 length: 12 Jun 6 09:36:22 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: LOCATION: pool_auth.c:1107 Jun 6 09:36:22 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DEBUG: reading message length Jun 6 09:36:22 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DETAIL: slot: 1 length: 12 Jun 6 09:36:22 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: LOCATION: pool_auth.c:1126 Jun 6 09:36:22 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DEBUG: authentication backend Jun 6 09:36:22 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DETAIL: cp->info[i]:0x8007bf000 pid:97120 Jun 6 09:36:22 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: LOCATION: pool_auth.c:391 Jun 6 09:36:22 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DEBUG: authentication backend Jun 6 09:36:22 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DETAIL: cp->info[i]:0x8007bf088 pid:83415 Jun 6 09:36:22 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: LOCATION: pool_auth.c:391 Jun 6 09:36:21 otp3 pgpool[2872]: [559-1] 2016-06-06 09:36:21: pid 2872: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:36:24 otp3 pgpool[2872]: [559-2] 2016-06-06 09:36:21: pid 2872: LOCATION: pool_process_query.c:3365 Jun 6 09:36:24 otp3 pgpool[2872]: [560-1] 2016-06-06 09:36:24: pid 2872: DEBUG: processing backend response Jun 6 09:36:24 otp3 pgpool[2872]: [560-2] 2016-06-06 09:36:24: pid 2872: DETAIL: received kind 'C'(43) from backend Jun 6 09:36:24 otp3 pgpool[2872]: [560-3] 2016-06-06 09:36:24: pid 2872: LOCATION: pool_proto_modules.c:2424 Jun 6 09:36:24 otp3 pgpool[2872]: [561-1] 2016-06-06 09:36:24: pid 2872: DEBUG: session context: setting command success. DONE Jun 6 09:36:24 otp3 pgpool[2872]: [561-2] 2016-06-06 09:36:24: pid 2872: LOCATION: pool_session_context.c:741 Jun 6 09:36:24 otp3 pgpool[2872]: [562-1] 2016-06-06 09:36:24: pid 2872: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:24 otp3 pgpool[2872]: [562-2] 2016-06-06 09:36:24: pid 2872: LOCATION: pool_session_context.c:219 Jun 6 09:36:24 otp3 pgpool[2872]: [563-1] 2016-06-06 09:36:24: pid 2872: DEBUG: processing frontend response Jun 6 09:36:24 otp3 pgpool[2872]: [563-2] 2016-06-06 09:36:24: pid 2872: DETAIL: received kind 'S'(53) from frontend Jun 6 09:36:24 otp3 pgpool[2872]: [563-3] 2016-06-06 09:36:24: pid 2872: LOCATION: pool_proto_modules.c:2188 Jun 6 09:36:24 otp3 pgpool[2872]: [564-1] 2016-06-06 09:36:24: pid 2872: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:36:24 otp3 pgpool[2872]: [564-2] 2016-06-06 09:36:24: pid 2872: LOCATION: pool_session_context.c:280 Jun 6 09:36:24 otp3 pgpool[2872]: [565-1] 2016-06-06 09:36:24: pid 2872: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:36:23 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DEBUG: sending backend key data Jun 6 09:36:24 otp3 pgpool[2872]: [565-2] 2016-06-06 09:36:24: pid 2872: LOCATION: pool_session_context.c:269 Jun 6 09:36:24 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DETAIL: send pid 83415 to frontend Jun 6 09:36:24 otp3 pgpool[2872]: [566-1] 2016-06-06 09:36:24: pid 2872: DEBUG: session context: setting query in progress. DONE Jun 6 09:36:24 otp3 pgpool[2872]: [566-2] 2016-06-06 09:36:24: pid 2872: LOCATION: pool_session_context.c:208 Jun 6 09:36:24 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: LOCATION: pool_auth.c:519 Jun 6 09:36:24 otp3 pgpool[2872]: [567-1] 2016-06-06 09:36:24: pid 2872: DEBUG: pool_write: to backend: kind:S Jun 6 09:36:24 otp3 pgpool[2872]: [567-2] 2016-06-06 09:36:24: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:36:24 otp3 pgpool[2872]: [568-1] 2016-06-06 09:36:24: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:24 otp3 pgpool[2872]: [568-2] 2016-06-06 09:36:24: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:24 otp3 pgpool[2872]: [569-1] 2016-06-06 09:36:24: pid 2872: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:36:24 otp3 pgpool[2872]: [569-2] 2016-06-06 09:36:24: pid 2872: LOCATION: pool_stream.c:190 Jun 6 09:36:24 otp3 pgpool[2872]: [570-1] 2016-06-06 09:36:24: pid 2872: DEBUG: reading backend data packet kind Jun 6 09:36:24 otp3 pgpool[2872]: [570-2] 2016-06-06 09:36:24: pid 2872: DETAIL: backend:0 of 2 kind = 'Z' Jun 6 09:36:24 otp3 pgpool[2872]: [570-3] 2016-06-06 09:36:24: pid 2872: LOCATION: pool_process_query.c:3349 Jun 6 09:36:24 otp3 pgpool[2872]: [571-1] 2016-06-06 09:36:24: pid 2872: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:36:24 otp3 pgpool[2872]: [571-2] 2016-06-06 09:36:24: pid 2872: LOCATION: pool_process_query.c:3365 Jun 6 09:36:24 otp3 pgpool[2872]: [572-1] 2016-06-06 09:36:24: pid 2872: DEBUG: processing backend response Jun 6 09:36:24 otp3 pgpool[2872]: [572-2] 2016-06-06 09:36:24: pid 2872: DETAIL: received kind 'Z'(5a) from backend Jun 6 09:36:24 otp3 pgpool[2872]: [572-3] 2016-06-06 09:36:24: pid 2872: LOCATION: pool_proto_modules.c:2424 Jun 6 09:36:24 otp3 pgpool[2872]: [573-1] 2016-06-06 09:36:24: pid 2872: DEBUG: processing backend response Jun 6 09:36:24 otp3 pgpool[2872]: [573-2] 2016-06-06 09:36:24: pid 2872: DETAIL: Ready For Query received Jun 6 09:36:24 otp3 pgpool[2872]: [573-3] 2016-06-06 09:36:24: pid 2872: LOCATION: pool_proto_modules.c:2442 Jun 6 09:36:24 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DEBUG: selecting load balance node Jun 6 09:36:24 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DETAIL: selected backend id is 1 Jun 6 09:36:24 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: LOCATION: child.c:1720 Jun 6 09:36:24 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DEBUG: initializing session context Jun 6 09:36:24 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DETAIL: selected load balancing node: 1 Jun 6 09:36:24 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: LOCATION: pool_session_context.c:99 Jun 6 09:36:24 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:24 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: LOCATION: pool_session_context.c:219 Jun 6 09:36:24 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DEBUG: session context: clearing transaction isolation. DONE Jun 6 09:36:24 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: LOCATION: pool_session_context.c:731 Jun 6 09:36:24 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DEBUG: session context: clearing writing transaction. DONE Jun 6 09:36:24 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: LOCATION: pool_session_context.c:565 Jun 6 09:36:24 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DEBUG: session context: clearing failed transaction. DONE Jun 6 09:36:24 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: LOCATION: pool_session_context.c:594 Jun 6 09:36:24 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DEBUG: session context: clearing failed transaction. DONE Jun 6 09:36:24 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: LOCATION: pool_session_context.c:624 Jun 6 09:36:24 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DEBUG: session context: clearing skip reading from backends. DONE Jun 6 09:36:24 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: LOCATION: pool_session_context.c:250 Jun 6 09:36:24 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:36:24 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: LOCATION: pool_session_context.c:310 Jun 6 09:36:24 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 0 doing extended query: 0 Jun 6 09:36:24 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: LOCATION: pool_session_context.c:969 Jun 6 09:36:24 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DEBUG: reading backend data packet kind Jun 6 09:36:24 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DETAIL: backend:0 of 2 kind = 'Z' Jun 6 09:36:24 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: LOCATION: pool_process_query.c:3349 Jun 6 09:36:24 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DEBUG: reading backend data packet kind Jun 6 09:36:24 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DETAIL: backend:1 of 2 kind = 'Z' Jun 6 09:36:24 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: LOCATION: pool_process_query.c:3349 Jun 6 09:36:24 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DEBUG: read_kind_from_backend max_count:2.000000 num_executed_nodes:2 Jun 6 09:36:24 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: LOCATION: pool_process_query.c:3365 Jun 6 09:36:24 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DEBUG: processing backend response Jun 6 09:36:24 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DETAIL: received kind 'Z'(5a) from backend Jun 6 09:36:24 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: LOCATION: pool_proto_modules.c:2424 Jun 6 09:36:24 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DEBUG: processing backend response Jun 6 09:36:24 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DETAIL: Ready For Query received Jun 6 09:36:24 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: LOCATION: pool_proto_modules.c:2442 Jun 6 09:36:24 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:36:24 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: LOCATION: pool_session_context.c:310 Jun 6 09:36:24 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 0 doing extended query: 0 Jun 6 09:36:24 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: LOCATION: pool_session_context.c:969 Jun 6 09:36:24 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 0 doing extended query: 0 Jun 6 09:36:24 otp3 pgpool[2872]: [574-1] 2016-06-06 09:36:24: pid 2872: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:36:24 otp3 pgpool[2872]: [574-2] 2016-06-06 09:36:24: pid 2872: LOCATION: pool_session_context.c:310 Jun 6 09:36:24 otp3 pgpool[2872]: [575-1] 2016-06-06 09:36:24: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:24 otp3 pgpool[2872]: [575-2] 2016-06-06 09:36:24: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:24 otp3 pgpool[2872]: [576-1] 2016-06-06 09:36:24: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:24 otp3 pgpool[2872]: [576-2] 2016-06-06 09:36:24: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:24 otp3 pgpool[2872]: [577-1] 2016-06-06 09:36:24: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:24 otp3 pgpool[2872]: [577-2] 2016-06-06 09:36:24: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:24 otp3 pgpool[2872]: [578-1] 2016-06-06 09:36:24: pid 2872: DEBUG: reading message length Jun 6 09:36:24 otp3 pgpool[2872]: [578-2] 2016-06-06 09:36:24: pid 2872: DETAIL: slot: 0 length: 5 Jun 6 09:36:24 otp3 pgpool[2872]: [578-3] 2016-06-06 09:36:24: pid 2872: LOCATION: pool_auth.c:1107 Jun 6 09:36:24 otp3 pgpool[2872]: [579-1] 2016-06-06 09:36:24: pid 2872: DEBUG: processing ReadyForQuery Jun 6 09:36:24 otp3 pgpool[2872]: [579-2] 2016-06-06 09:36:24: pid 2872: DETAIL: transaction state 'I'(49) Jun 6 09:36:24 otp3 pgpool[2872]: [579-3] 2016-06-06 09:36:24: pid 2872: LOCATION: pool_proto_modules.c:1612 Jun 6 09:36:24 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: LOCATION: pool_session_context.c:969 Jun 6 09:36:24 otp3 pgpool[2872]: [580-1] 2016-06-06 09:36:24: pid 2872: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:24 otp3 pgpool[2872]: [580-2] 2016-06-06 09:36:24: pid 2872: LOCATION: pool_session_context.c:219 Jun 6 09:36:24 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 0 doing extended query: 0 Jun 6 09:36:24 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: LOCATION: pool_session_context.c:969 Jun 6 09:36:24 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DEBUG: reading message length Jun 6 09:36:24 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DETAIL: slot: 0 length: 5 Jun 6 09:36:24 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: LOCATION: pool_auth.c:1107 Jun 6 09:36:24 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DEBUG: reading message length Jun 6 09:36:24 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DETAIL: slot: 1 length: 5 Jun 6 09:36:21 otp3 pgpool[2875]: [117-1] 2016-06-06 09:36:21: pid 2875: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:24 otp3 pgpool[2875]: [117-2] 2016-06-06 09:36:21: pid 2875: LOCATION: pool_session_context.c:969 Jun 6 09:36:24 otp3 pgpool[2875]: [118-1] 2016-06-06 09:36:24: pid 2875: DEBUG: reading message length Jun 6 09:36:24 otp3 pgpool[2875]: [118-2] 2016-06-06 09:36:24: pid 2875: DETAIL: slot: 0 length: 5 Jun 6 09:36:24 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: LOCATION: pool_auth.c:1126 Jun 6 09:36:24 otp3 pgpool[2875]: [118-3] 2016-06-06 09:36:24: pid 2875: LOCATION: pool_auth.c:1107 Jun 6 09:36:24 otp3 pgpool[2875]: [119-1] 2016-06-06 09:36:24: pid 2875: DEBUG: reading message length Jun 6 09:36:24 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DEBUG: processing ReadyForQuery Jun 6 09:36:24 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DETAIL: transaction state ' Jun 6 09:36:24 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: LOCATION: pool_proto_modules.c:1612 Jun 6 09:36:24 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DEBUG: processing ReadyForQuery Jun 6 09:36:24 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DETAIL: transaction state 'I'(49) Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: LOCATION: pool_proto_modules.c:1612 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:35:47: pid 2873: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:35:47: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:35:48: pid 2872: DEBUG: processing frontend response Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:35:48: pid 2872: DETAIL: received kind 'P'(50) from frontend Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:35:48: pid 2872: LOCATION: pool_proto_modules.c:2188 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:35:53: pid 2872: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:35:53: pid 2872: LOCATION: pool_session_context.c:280 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:35:58: pid 2872: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:35:58: pid 2872: LOCATION: pool_session_context.c:269 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:35:58: pid 2872: DEBUG: Parse: statement name <> Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:35:58: pid 2872: LOCATION: pool_proto_modules.c:817 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:35:59: pid 2872: DEBUG: session context: setting query in progress. DONE Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:35:59: pid 2872: LOCATION: pool_session_context.c:208 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:01: pid 2872: DEBUG: pool_write: to backend: kind:S Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:01: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:35:51: pid 2874: LOG: new connection received Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:35:51: pid 2874: DETAIL: connecting host=10.200.1.64 port=23726 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:35:51: pid 2874: LOCATION: child.c:2110 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:01: pid 2872: DEBUG: pool_write: to backend: kind:H Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:01: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:02: pid 2872: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:02: pid 2872: LOCATION: pool_stream.c:190 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:02: pid 2872: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:02: pid 2872: LOCATION: pool_session_context.c:310 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DEBUG: processing frontend response Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: DETAIL: received kind 'P'(50) from frontend Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:35:47: pid 2875: LOCATION: pool_proto_modules.c:2188 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:03: pid 2875: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:03: pid 2875: LOCATION: pool_session_context.c:280 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:03: pid 2875: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:03: pid 2875: LOCATION: pool_session_context.c:269 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:03: pid 2875: DEBUG: Parse: statement name <> Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:03: pid 2875: LOCATION: pool_proto_modules.c:817 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:03: pid 2875: DEBUG: session context: setting query in progress. DONE Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:03: pid 2875: LOCATION: pool_session_context.c:208 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:02: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:02: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:04: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:04: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:04: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:04: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:04: pid 2872: DEBUG: reading message length Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:04: pid 2872: DETAIL: slot: 0 length: 5 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:04: pid 2872: LOCATION: pool_auth.c:1107 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:04: pid 2872: DEBUG: processing ReadyForQuery Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:04: pid 2872: DETAIL: transaction state 'I'(49) Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:04: pid 2872: LOCATION: pool_proto_modules.c:1612 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:04: pid 2872: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:04: pid 2872: LOCATION: pool_session_context.c:219 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:04: pid 2872: DEBUG: session context: setting query in progress. DONE Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:04: pid 2872: LOCATION: pool_session_context.c:208 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:35:53: pid 2873: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:35:53: pid 2873: LOCATION: pool_session_context.c:310 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:02: pid 2874: DEBUG: reading startup packet Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:02: pid 2874: DETAIL: Protocol Major: 3 Minor: 0 database: ctl user: sparrowdesk Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:02: pid 2874: LOCATION: child.c:614 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:04: pid 2874: DEBUG: creating new connection to backend Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:04: pid 2874: DETAIL: connecting 0 backend Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:04: pid 2874: LOCATION: pool_connection_pool.c:830 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:04: pid 2872: DEBUG: Parse: waiting for master completing the query Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:04: pid 2872: LOCATION: pool_proto_modules.c:1064 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:04: pid 2872: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:04: pid 2872: LOCATION: pool_query_context.c:854 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:04: pid 2872: DEBUG: pool_write: to backend: kind:P Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:04: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:04: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:04: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:04: pid 2872: DEBUG: pool_write: to backend: kind:H Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:04: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:03: pid 2875: DEBUG: pool_write: to backend: kind:S Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:03: pid 2875: LOCATION: pool_stream.c:431 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:04: pid 2872: DEBUG: waiting for query response Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:04: pid 2872: DETAIL: waiting for backend:0 to complete the query Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:04: pid 2872: LOCATION: pool_process_query.c:479 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:04: pid 2872: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:04: pid 2872: LOCATION: pool_stream.c:190 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:04: pid 2872: DEBUG: detect error: kind: 1 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:04: pid 2872: LOCATION: pool_process_query.c:4166 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:04: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:04: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:04: pid 2872: DEBUG: reading backend data packet kind Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:04: pid 2872: DETAIL: backend:0 of 2 kind = '1' Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:04: pid 2872: LOCATION: pool_process_query.c:3349 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:05: pid 2872: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:05: pid 2872: LOCATION: pool_process_query.c:3365 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:05: pid 2872: DEBUG: processing backend response Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:05: pid 2872: DETAIL: received kind '1'(31) from backend Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:05: pid 2872: LOCATION: pool_proto_modules.c:2424 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:05: pid 2872: DEBUG: called by pool_add_sent_message: sent message: address: 2406c80 kind: P name: == Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:05: pid 2872: LOCATION: pool_session_context.c:436 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:05: pid 2872: DEBUG: adding sent message to list Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:05: pid 2872: DETAIL: prepared statement "" already exists Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:05: pid 2872: LOCATION: pool_session_context.c:516 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:05: pid 2872: DEBUG: called by pool_sent_message_destroy: sent message: address: 2406d18 kind: P name: == Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:05: pid 2872: LOCATION: pool_session_context.c:436 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:05: pid 2872: DEBUG: checking if query context can be safely destroyed Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:05: pid 2872: DETAIL: query context 0x802481830 is still used 2 times. query:"select attachment0_.id as id1_6_, attachment0_.attachment_size as attachme2_6_, attachment0_.attachment_file_type as attachme3_6_ from attachment_properties attachment0_" Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:05: pid 2872: LOCATION: pool_session_context.c:873 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:05: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:05: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:04: pid 2875: DEBUG: pool_write: to backend: kind:H Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:04: pid 2875: LOCATION: pool_stream.c:431 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:05: pid 2872: DEBUG: SimpleForwardToFrontend: packet:1 length:0 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:05: pid 2872: LOCATION: pool_process_query.c:792 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:06: pid 2872: DEBUG: session context: setting command success. DONE Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:06: pid 2872: LOCATION: pool_session_context.c:741 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:04: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:04: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:06: pid 2872: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:06: pid 2872: LOCATION: pool_session_context.c:219 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:06: pid 2872: DEBUG: processing frontend response Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:06: pid 2872: DETAIL: received kind 'B'(42) from frontend Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:06: pid 2872: LOCATION: pool_proto_modules.c:2188 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:06: pid 2872: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:06: pid 2872: LOCATION: pool_session_context.c:280 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:06: pid 2872: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:06: pid 2872: LOCATION: pool_session_context.c:269 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:06: pid 2872: DEBUG: Bind: checking strict query Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:06: pid 2872: LOCATION: pool_proto_modules.c:1211 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:06: pid 2872: DEBUG: Bind: checking insert lock Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:06: pid 2872: LOCATION: pool_proto_modules.c:1221 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:06: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:06: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:06: pid 2872: DEBUG: Bind: waiting for master completing the query Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:06: pid 2872: LOCATION: pool_proto_modules.c:1237 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:06: pid 2872: DEBUG: session context: setting query in progress. DONE Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:06: pid 2872: LOCATION: pool_session_context.c:208 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:06: pid 2872: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:06: pid 2872: LOCATION: pool_query_context.c:854 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:06: pid 2872: DEBUG: pool_write: to backend: kind:B Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:06: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:06: pid 2872: DEBUG: pool_write: to backend: kind:H Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:06: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:06: pid 2872: DEBUG: waiting for query response Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:06: pid 2872: DETAIL: waiting for backend:0 to complete the query Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:06: pid 2872: LOCATION: pool_process_query.c:479 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:06: pid 2873: DEBUG: reading message length Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:06: pid 2873: DETAIL: slot: 0 length: 5 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:06: pid 2873: LOCATION: pool_auth.c:1107 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:04: pid 2874: DEBUG: creating new connection to backend Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:04: pid 2874: DETAIL: connecting 1 backend Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:04: pid 2874: LOCATION: pool_connection_pool.c:830 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:06: pid 2873: DEBUG: processing ReadyForQuery Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:06: pid 2873: DETAIL: transaction state 'I'(49) Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:06: pid 2873: LOCATION: pool_proto_modules.c:1612 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:06: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:06: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:06: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:06: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:06: pid 2873: DEBUG: Parse: waiting for master completing the query Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:06: pid 2873: LOCATION: pool_proto_modules.c:1064 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:06: pid 2873: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:06: pid 2873: LOCATION: pool_query_context.c:854 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:06: pid 2873: DEBUG: pool_write: to backend: kind:P Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:06: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:06: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:06: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:06: pid 2873: DEBUG: waiting for query response Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:06: pid 2873: DETAIL: waiting for backend:0 to complete the query Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:06: pid 2873: LOCATION: pool_process_query.c:479 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:06: pid 2873: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:06: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:06: pid 2872: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:06: pid 2872: LOCATION: pool_stream.c:190 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:06: pid 2873: DEBUG: detect error: kind: 1 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:06: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:06: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:06: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:06: pid 2872: DEBUG: reading backend data packet kind Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:06: pid 2872: DETAIL: backend:0 of 2 kind = '2' Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:06: pid 2872: LOCATION: pool_process_query.c:3349 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:06: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:06: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:06: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:06: pid 2873: DETAIL: backend:0 of 2 kind = '1' Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:06: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:06: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:06: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:06: pid 2872: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:06: pid 2872: LOCATION: pool_process_query.c:3365 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:06: pid 2873: DEBUG: processing backend response Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:06: pid 2873: DETAIL: received kind '1'(31) from backend Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:06: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:06: pid 2872: DEBUG: processing backend response Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:06: pid 2872: DETAIL: received kind '2'(32) from backend Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:06: pid 2872: LOCATION: pool_proto_modules.c:2424 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:06: pid 2872: DEBUG: called by pool_add_sent_message: sent message: address: 2406d18 kind: B name: == Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:06: pid 2872: LOCATION: pool_session_context.c:436 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:07: pid 2872: DEBUG: adding sent message to list Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:07: pid 2872: DETAIL: portal "" already exists Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:07: pid 2872: LOCATION: pool_session_context.c:512 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:08: pid 2872: DEBUG: called by pool_sent_message_destroy: sent message: address: 2406d98 kind: B name: == Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:08: pid 2872: LOCATION: pool_session_context.c:436 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:08: pid 2872: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:08: pid 2872: LOCATION: pool_session_context.c:219 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:08: pid 2872: DEBUG: session context: setting query in progress. DONE Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:08: pid 2872: LOCATION: pool_session_context.c:208 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:08: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:08: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:08: pid 2872: DEBUG: SimpleForwardToFrontend: packet:2 length:0 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:08: pid 2872: LOCATION: pool_process_query.c:792 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:10: pid 2872: DEBUG: session context: setting command success. DONE Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:10: pid 2872: LOCATION: pool_session_context.c:741 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:11: pid 2872: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:11: pid 2872: LOCATION: pool_session_context.c:219 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:11: pid 2872: DEBUG: processing frontend response Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:11: pid 2872: DETAIL: received kind 'D'(44) from frontend Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:11: pid 2872: LOCATION: pool_proto_modules.c:2188 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:13: pid 2872: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:13: pid 2872: LOCATION: pool_session_context.c:280 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:06: pid 2873: DEBUG: called by pool_add_sent_message: sent message: address: 2406d18 kind: P name: == Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:06: pid 2873: LOCATION: pool_session_context.c:436 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:13: pid 2872: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:13: pid 2872: LOCATION: pool_session_context.c:269 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:14: pid 2872: DEBUG: Describe: waiting for master completing the query Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:14: pid 2872: LOCATION: pool_proto_modules.c:1310 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:15: pid 2872: DEBUG: session context: setting query in progress. DONE Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:15: pid 2872: LOCATION: pool_session_context.c:208 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:15: pid 2872: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:15: pid 2872: LOCATION: pool_query_context.c:854 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:13: pid 2873: DEBUG: adding sent message to list Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:13: pid 2873: DETAIL: prepared statement "" already exists Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:13: pid 2873: LOCATION: pool_session_context.c:516 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:16: pid 2872: DEBUG: pool_write: to backend: kind:D Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:16: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:16: pid 2873: DEBUG: called by pool_sent_message_destroy: sent message: address: 2406d98 kind: P name: == Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:16: pid 2873: LOCATION: pool_session_context.c:436 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:16: pid 2872: DEBUG: pool_write: to backend: kind:H Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:16: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:16: pid 2873: DEBUG: checking if query context can be safely destroyed Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:16: pid 2873: DETAIL: query context 0x802482830 is still used 2 times. query:"select clhost0_.host_id as host_id1_2_, clhost0_.host_name as host_nam2_2_, clhost0_.is_https as is_https3_2_, clhost0_.tenant_id as tenant_i4_2_ from cl_host clhost0_ where clhost0_.host_name=$1" Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:16: pid 2873: LOCATION: pool_session_context.c:873 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:16: pid 2872: DEBUG: waiting for query response Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:16: pid 2872: DETAIL: waiting for backend:0 to complete the query Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:16: pid 2872: LOCATION: pool_process_query.c:479 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:18: pid 2872: DEBUG: pool_read: read 34 bytes from backend 0 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:18: pid 2872: LOCATION: pool_stream.c:190 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:18: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:18: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:18: pid 2872: DEBUG: reading backend data packet kind Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:18: pid 2872: DETAIL: backend:0 of 2 kind = 'T' Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:18: pid 2872: LOCATION: pool_process_query.c:3349 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:18: pid 2872: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:18: pid 2872: LOCATION: pool_process_query.c:3365 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:18: pid 2872: DEBUG: processing backend response Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:18: pid 2872: DETAIL: received kind 'T'(54) from backend Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:18: pid 2872: LOCATION: pool_proto_modules.c:2424 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:18: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:18: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:18: pid 2872: DEBUG: SimpleForwardToFrontend: packet:T length:29 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:18: pid 2872: LOCATION: pool_process_query.c:792 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:18: pid 2872: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:18: pid 2872: LOCATION: pool_session_context.c:219 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:07: pid 2874: DEBUG: SSL is requested but SSL support is not available Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:07: pid 2874: LOCATION: pool_ssl.c:333 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:21: pid 2872: DEBUG: processing frontend response Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:21: pid 2872: DETAIL: received kind 'E'(45) from frontend Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:21: pid 2872: LOCATION: pool_proto_modules.c:2188 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:21: pid 2872: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:21: pid 2872: LOCATION: pool_session_context.c:280 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:21: pid 2874: DEBUG: SSL is requested but SSL support is not available Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:21: pid 2874: LOCATION: pool_ssl.c:333 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:05: pid 2875: DEBUG: pool_write: to backend: kind:S Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:05: pid 2875: LOCATION: pool_stream.c:431 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:21: pid 2872: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:21: pid 2872: LOCATION: pool_session_context.c:269 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:21: pid 2872: DEBUG: session context: setting query in progress. DONE Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:21: pid 2872: LOCATION: pool_session_context.c:208 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:21: pid 2875: DEBUG: pool_write: to backend: kind:H Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:21: pid 2875: LOCATION: pool_stream.c:431 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:21: pid 2872: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:21: pid 2872: LOCATION: pool_query_context.c:854 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:21: pid 2872: DEBUG: pool_write: to backend: kind:E Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:21: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:21: pid 2875: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:21: pid 2875: LOCATION: pool_stream.c:190 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:21: pid 2872: DEBUG: pool_write: to backend: kind:H Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:21: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:16: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:16: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:21: pid 2872: DEBUG: waiting for query response Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:21: pid 2872: DETAIL: waiting for backend:0 to complete the query Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:21: pid 2872: LOCATION: pool_process_query.c:479 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:21: pid 2873: DEBUG: SimpleForwardToFrontend: packet:1 length:0 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:21: pid 2873: LOCATION: pool_process_query.c:792 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:21: pid 2873: DEBUG: session context: setting command success. DONE Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:21: pid 2873: LOCATION: pool_session_context.c:741 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:21: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:21: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:21: pid 2872: DEBUG: pool_read: read 26 bytes from backend 0 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:21: pid 2872: LOCATION: pool_stream.c:190 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:21: pid 2873: DEBUG: processing frontend response Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:21: pid 2873: DETAIL: received kind 'B'(42) from frontend Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:21: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:21: pid 2872: DEBUG: detect error: kind: D Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:21: pid 2872: LOCATION: pool_process_query.c:4166 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:21: pid 2872: DEBUG: detect error: kind: D Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:21: pid 2872: LOCATION: pool_process_query.c:4166 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:21: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:21: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:21: pid 2872: DEBUG: detect error: kind: D Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:21: pid 2872: LOCATION: pool_process_query.c:4166 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:21: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:21: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:21: pid 2872: DEBUG: detect error: kind: D Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:21: pid 2872: LOCATION: pool_process_query.c:4166 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:21: pid 2873: DEBUG: Bind: checking strict query Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:21: pid 2873: LOCATION: pool_proto_modules.c:1211 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:21: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:21: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:21: pid 2873: DEBUG: Bind: checking insert lock Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:21: pid 2873: LOCATION: pool_proto_modules.c:1221 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:21: pid 2872: DEBUG: reading backend data packet kind Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:21: pid 2872: DETAIL: backend:0 of 2 kind = 'D' Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:21: pid 2872: LOCATION: pool_process_query.c:3349 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:21: pid 2873: DEBUG: Bind: waiting for master completing the query Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:21: pid 2873: LOCATION: pool_proto_modules.c:1237 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:21: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:21: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:21: pid 2872: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:21: pid 2872: LOCATION: pool_process_query.c:3365 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:21: pid 2875: DEBUG: pool_read: read 6 bytes from backend 1 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:21: pid 2875: LOCATION: pool_stream.c:190 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:21: pid 2872: DEBUG: processing backend response Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:21: pid 2872: DETAIL: received kind 'D'(44) from backend Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:21: pid 2872: LOCATION: pool_proto_modules.c:2424 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:21: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:21: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:21: pid 2875: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:21: pid 2875: LOCATION: pool_session_context.c:310 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:21: pid 2872: DEBUG: SimpleForwardToFrontend: packet:D length:7 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:21: pid 2872: LOCATION: pool_process_query.c:792 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:21: pid 2875: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:21: pid 2875: LOCATION: pool_session_context.c:969 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:21: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:21: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:21: pid 2875: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:21: pid 2875: LOCATION: pool_session_context.c:969 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:21: pid 2872: DEBUG: reading backend data packet kind Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:21: pid 2872: DETAIL: backend:0 of 2 kind = 'C' Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:21: pid 2872: LOCATION: pool_process_query.c:3349 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:21: pid 2873: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:21: pid 2873: LOCATION: pool_query_context.c:854 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:21: pid 2874: DEBUG: pool_read: read 13 bytes from backend 0 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:21: pid 2874: LOCATION: pool_stream.c:190 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:22: pid 2874: DEBUG: pool_read: read 13 bytes from backend 1 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:22: pid 2874: LOCATION: pool_stream.c:190 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:22: pid 2874: DEBUG: reading message length Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:22: pid 2874: DETAIL: slot: 0 length: 12 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:22: pid 2874: LOCATION: pool_auth.c:1107 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:22: pid 2874: DEBUG: reading message length Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:22: pid 2874: DETAIL: slot: 1 length: 12 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:22: pid 2874: LOCATION: pool_auth.c:1126 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:22: pid 2874: DEBUG: authentication backend Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:22: pid 2874: DETAIL: auth kind:5 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:22: pid 2874: LOCATION: pool_auth.c:142 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:22: pid 2874: DEBUG: authentication backend Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:22: pid 2874: DETAIL: trying md5 authentication Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:22: pid 2874: LOCATION: pool_auth.c:239 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:21: pid 2872: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:21: pid 2872: LOCATION: pool_process_query.c:3365 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:24: pid 2872: DEBUG: processing backend response Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:24: pid 2872: DETAIL: received kind 'C'(43) from backend Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:24: pid 2872: LOCATION: pool_proto_modules.c:2424 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:24: pid 2872: DEBUG: session context: setting command success. DONE Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:24: pid 2872: LOCATION: pool_session_context.c:741 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:24: pid 2872: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:24: pid 2872: LOCATION: pool_session_context.c:219 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:24: pid 2872: DEBUG: processing frontend response Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:24: pid 2872: DETAIL: received kind 'S'(53) from frontend Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:24: pid 2872: LOCATION: pool_proto_modules.c:2188 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:24: pid 2872: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:24: pid 2872: LOCATION: pool_session_context.c:280 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:24: pid 2872: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:24: pid 2872: LOCATION: pool_session_context.c:269 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:24: pid 2872: DEBUG: session context: setting query in progress. DONE Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:24: pid 2872: LOCATION: pool_session_context.c:208 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:24: pid 2872: DEBUG: pool_write: to backend: kind:S Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:24: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:24: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:24: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:24: pid 2872: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:24: pid 2872: LOCATION: pool_stream.c:190 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:24: pid 2872: DEBUG: reading backend data packet kind Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:24: pid 2872: DETAIL: backend:0 of 2 kind = 'Z' Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:24: pid 2872: LOCATION: pool_process_query.c:3349 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:24: pid 2872: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:24: pid 2872: LOCATION: pool_process_query.c:3365 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:24: pid 2872: DEBUG: processing backend response Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:24: pid 2872: DETAIL: received kind 'Z'(5a) from backend Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:24: pid 2872: LOCATION: pool_proto_modules.c:2424 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:24: pid 2872: DEBUG: processing backend response Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:24: pid 2872: DETAIL: Ready For Query received Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:24: pid 2872: LOCATION: pool_proto_modules.c:2442 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:24: pid 2872: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:24: pid 2872: LOCATION: pool_session_context.c:310 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:24: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:24: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:24: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:24: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:24: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:24: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:24: pid 2872: DEBUG: reading message length Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:24: pid 2872: DETAIL: slot: 0 length: 5 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:24: pid 2872: LOCATION: pool_auth.c:1107 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:24: pid 2872: DEBUG: processing ReadyForQuery Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:24: pid 2872: DETAIL: transaction state 'I'(49) Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:24: pid 2872: LOCATION: pool_proto_modules.c:1612 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:24: pid 2872: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:24: pid 2872: LOCATION: pool_session_context.c:219 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:21: pid 2875: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:21: pid 2875: LOCATION: pool_session_context.c:969 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:24: pid 2875: DEBUG: reading message length Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:24: pid 2875: DETAIL: slot: 0 length: 5 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:24: pid 2875: LOCATION: pool_auth.c:1107 Jun 6 09:36:24 otp3 pgpool[2875]: [119-2] 2016-06-06 09:36:24: pid 2875: DETAIL: slot: 1 length: 5 Jun 6 09:36:24 otp3 pgpool[2872]: [581-1] 2016-06-06 09:36:24: pid 2872: DEBUG: processing frontend response Jun 6 09:36:26 otp3 pgpool[2872]: [581-2] 2016-06-06 09:36:24: pid 2872: DETAIL: received kind 'P'(50) from frontend Jun 6 09:36:26 otp3 pgpool[2872]: [581-3] 2016-06-06 09:36:24: pid 2872: LOCATION: pool_proto_modules.c:2188 Jun 6 09:36:21 otp3 pgpool[2873]: [384-2] 2016-06-06 09:36:21: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:36:26 otp3 pgpool[2872]: [582-1] 2016-06-06 09:36:26: pid 2872: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:36:26 otp3 pgpool[2872]: [582-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:280 Jun 6 09:36:26 otp3 pgpool[2872]: [583-1] 2016-06-06 09:36:26: pid 2872: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:36:26 otp3 pgpool[2872]: [583-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:269 Jun 6 09:36:26 otp3 pgpool[2872]: [584-1] 2016-06-06 09:36:26: pid 2872: DEBUG: Parse: statement name <> Jun 6 09:36:26 otp3 pgpool[2872]: [584-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_proto_modules.c:817 Jun 6 09:36:22 otp3 pgpool[2874]: [24-1] 2016-06-06 09:36:22: pid 2874: DEBUG: performing md5 authentication Jun 6 09:36:26 otp3 pgpool[2872]: [585-1] 2016-06-06 09:36:26: pid 2872: DEBUG: session context: setting query in progress. DONE Jun 6 09:36:26 otp3 pgpool[2872]: [585-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:208 Jun 6 09:36:26 otp3 pgpool[2874]: [24-2] 2016-06-06 09:36:22: pid 2874: DETAIL: DB node id: 0 salt: 499621b3 Jun 6 09:36:26 otp3 pgpool[2874]: [24-3] 2016-06-06 09:36:22: pid 2874: LOCATION: pool_auth.c:855 Jun 6 09:36:26 otp3 pgpool[2872]: [586-1] 2016-06-06 09:36:26: pid 2872: DEBUG: pool_write: to backend: kind:S Jun 6 09:36:26 otp3 pgpool[2872]: [586-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:36:26 otp3 pgpool[2872]: [587-1] 2016-06-06 09:36:26: pid 2872: DEBUG: pool_write: to backend: kind:H Jun 6 09:36:26 otp3 pgpool[2872]: [587-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:36:26 otp3 pgpool[2874]: [25-1] 2016-06-06 09:36:26: pid 2874: DEBUG: pool_write: to backend: kind:p Jun 6 09:36:26 otp3 pgpool[2874]: [25-2] 2016-06-06 09:36:26: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:36:26 otp3 pgpool[2875]: [119-3] 2016-06-06 09:36:24: pid 2875: LOCATION: pool_auth.c:1126 Jun 6 09:36:26 otp3 pgpool[2873]: [385-1] 2016-06-06 09:36:26: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:36:26 otp3 pgpool[2873]: [385-2] 2016-06-06 09:36:26: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:36:26 otp3 pgpool[2873]: [386-1] 2016-06-06 09:36:26: pid 2873: DEBUG: waiting for query response Jun 6 09:36:26 otp3 pgpool[2873]: [386-2] 2016-06-06 09:36:26: pid 2873: DETAIL: waiting for backend:0 to complete the query Jun 6 09:36:26 otp3 pgpool[2875]: [120-1] 2016-06-06 09:36:26: pid 2875: DEBUG: processing ReadyForQuery Jun 6 09:36:26 otp3 pgpool[2873]: [386-3] 2016-06-06 09:36:26: pid 2873: LOCATION: pool_process_query.c:479 Jun 6 09:36:26 otp3 pgpool[2875]: [120-2] 2016-06-06 09:36:26: pid 2875: DETAIL: transaction state 'I'(49) Jun 6 09:36:26 otp3 pgpool[2875]: [120-3] 2016-06-06 09:36:26: pid 2875: LOCATION: pool_proto_modules.c:1612 Jun 6 09:36:26 otp3 pgpool[2872]: [588-1] 2016-06-06 09:36:26: pid 2872: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:36:26 otp3 pgpool[2872]: [588-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_stream.c:190 Jun 6 09:36:26 otp3 pgpool[2872]: [589-1] 2016-06-06 09:36:26: pid 2872: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:36:26 otp3 pgpool[2872]: [589-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:310 Jun 6 09:36:26 otp3 pgpool[2872]: [590-1] 2016-06-06 09:36:26: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:26 otp3 pgpool[2872]: [590-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:26 otp3 pgpool[2872]: [591-1] 2016-06-06 09:36:26: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:26 otp3 pgpool[2872]: [591-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:26 otp3 pgpool[2872]: [592-1] 2016-06-06 09:36:26: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:26 otp3 pgpool[2872]: [592-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:26 otp3 pgpool[2872]: [593-1] 2016-06-06 09:36:26: pid 2872: DEBUG: reading message length Jun 6 09:36:26 otp3 pgpool[2872]: [593-2] 2016-06-06 09:36:26: pid 2872: DETAIL: slot: 0 length: 5 Jun 6 09:36:26 otp3 pgpool[2872]: [593-3] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_auth.c:1107 Jun 6 09:36:26 otp3 pgpool[2872]: [594-1] 2016-06-06 09:36:26: pid 2872: DEBUG: processing ReadyForQuery Jun 6 09:36:26 otp3 pgpool[2872]: [594-2] 2016-06-06 09:36:26: pid 2872: DETAIL: transaction state 'I'(49) Jun 6 09:36:26 otp3 pgpool[2872]: [594-3] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_proto_modules.c:1612 Jun 6 09:36:26 otp3 pgpool[2872]: [595-1] 2016-06-06 09:36:26: pid 2872: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:26 otp3 pgpool[2872]: [595-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:219 Jun 6 09:36:26 otp3 pgpool[2872]: [596-1] 2016-06-06 09:36:26: pid 2872: DEBUG: session context: setting query in progress. DONE Jun 6 09:36:26 otp3 pgpool[2872]: [596-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:208 Jun 6 09:36:26 otp3 pgpool[2872]: [597-1] 2016-06-06 09:36:26: pid 2872: DEBUG: Parse: waiting for master completing the query Jun 6 09:36:26 otp3 pgpool[2872]: [597-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_proto_modules.c:1064 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:24: pid 2872: DEBUG: processing frontend response Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:24: pid 2872: DETAIL: received kind 'P'(50) from frontend Jun 6 09:36:26 otp3 pgpool[2872]: [598-1] 2016-06-06 09:36:26: pid 2872: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:36:26 otp3 pgpool[2872]: [598-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_query_context.c:854 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:24: pid 2872: LOCATION: pool_proto_modules.c:2188 Jun 6 09:36:26 otp3 pgpool[2872]: [599-1] 2016-06-06 09:36:26: pid 2872: DEBUG: pool_write: to backend: kind:P Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:36:26 otp3 pgpool[2872]: [599-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:280 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:36:26 otp3 pgpool[2872]: [600-1] 2016-06-06 09:36:26: pid 2872: DEBUG: pool_write: to backend: kind:H Jun 6 09:36:26 otp3 pgpool[2872]: [600-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:269 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: Parse: statement name <> Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_proto_modules.c:817 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: session context: setting query in progress. DONE Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:208 Jun 6 09:36:26 otp3 pgpool[2872]: [601-1] 2016-06-06 09:36:26: pid 2872: DEBUG: waiting for query response Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: pool_write: to backend: kind:S Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:36:26 otp3 pgpool[2872]: [601-2] 2016-06-06 09:36:26: pid 2872: DETAIL: waiting for backend:0 to complete the query Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:22: pid 2874: DEBUG: performing md5 authentication Jun 6 09:36:26 otp3 pgpool[2872]: [601-3] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_process_query.c:479 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:22: pid 2874: DETAIL: DB node id: 0 salt: 499621b3 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:22: pid 2874: LOCATION: pool_auth.c:855 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: pool_write: to backend: kind:H Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: DEBUG: pool_write: to backend: kind:p Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:21: pid 2873: DEBUG: pool_write: to backend: kind:B Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:21: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:24: pid 2875: DEBUG: reading message length Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:24: pid 2875: DETAIL: slot: 1 length: 5 Jun 6 09:36:26 otp3 pgpool[2875]: [121-1] 2016-06-06 09:36:26: pid 2875: DEBUG: processing ReadyForQuery Jun 6 09:36:26 otp3 pgpool[2875]: [121-2] 2016-06-06 09:36:26: pid 2875: DETAIL: transaction state 'I'(49) Jun 6 09:36:26 otp3 pgpool[2875]: [121-3] 2016-06-06 09:36:26: pid 2875: LOCATION: pool_proto_modules.c:1612 Jun 6 09:36:26 otp3 pgpool[2875]: [122-1] 2016-06-06 09:36:26: pid 2875: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:24: pid 2875: LOCATION: pool_auth.c:1126 Jun 6 09:36:26 otp3 pgpool[2875]: [122-2] 2016-06-06 09:36:26: pid 2875: LOCATION: pool_session_context.c:219 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:36:26 otp3 pgpool[2875]: [123-1] 2016-06-06 09:36:26: pid 2875: DEBUG: session context: setting query in progress. DONE Jun 6 09:36:26 otp3 pgpool[2875]: [123-2] 2016-06-06 09:36:26: pid 2875: LOCATION: pool_session_context.c:208 Jun 6 09:36:26 otp3 pgpool[2875]: [124-1] 2016-06-06 09:36:26: pid 2875: DEBUG: Parse: waiting for master completing the query Jun 6 09:36:26 otp3 pgpool[2875]: [124-2] 2016-06-06 09:36:26: pid 2875: LOCATION: pool_proto_modules.c:1064 Jun 6 09:36:26 otp3 pgpool[2875]: [125-1] 2016-06-06 09:36:26: pid 2875: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:36:26 otp3 pgpool[2875]: [125-2] 2016-06-06 09:36:26: pid 2875: LOCATION: pool_query_context.c:854 Jun 6 09:36:26 otp3 pgpool[2875]: [126-1] 2016-06-06 09:36:26: pid 2875: DEBUG: pool_write: to backend: kind:P Jun 6 09:36:26 otp3 pgpool[2875]: [126-2] 2016-06-06 09:36:26: pid 2875: LOCATION: pool_stream.c:431 Jun 6 09:36:26 otp3 pgpool[2875]: [127-1] 2016-06-06 09:36:26: pid 2875: DEBUG: pool_write: to backend: kind:H Jun 6 09:36:26 otp3 pgpool[2875]: [127-2] 2016-06-06 09:36:26: pid 2875: LOCATION: pool_stream.c:431 Jun 6 09:36:26 otp3 pgpool[2875]: [128-1] 2016-06-06 09:36:26: pid 2875: DEBUG: waiting for query response Jun 6 09:36:26 otp3 pgpool[2875]: [128-2] 2016-06-06 09:36:26: pid 2875: DETAIL: waiting for backend:0 to complete the query Jun 6 09:36:26 otp3 pgpool[2875]: [128-3] 2016-06-06 09:36:26: pid 2875: LOCATION: pool_process_query.c:479 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DEBUG: waiting for query response Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DETAIL: waiting for backend:0 to complete the query Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: LOCATION: pool_process_query.c:479 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2875: DEBUG: processing ReadyForQuery Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2875: DETAIL: transaction state 'I'(49) Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2875: LOCATION: pool_proto_modules.c:1612 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_stream.c:190 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:310 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: reading message length Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DETAIL: slot: 0 length: 5 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_auth.c:1107 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: processing ReadyForQuery Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DETAIL: transaction state 'I'(49) Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_proto_modules.c:1612 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:219 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: session context: setting query in progress. DONE Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:208 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: Parse: waiting for master completing the query Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_proto_modules.c:1064 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_query_context.c:854 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: pool_write: to backend: kind:P Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: pool_write: to backend: kind:H Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: waiting for query response Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DETAIL: waiting for backend:0 to complete the query Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_process_query.c:479 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2875: DEBUG: processing ReadyForQuery Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2875: DETAIL: transaction state 'I'(49) Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2875: LOCATION: pool_proto_modules.c:1612 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2875: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2875: LOCATION: pool_session_context.c:219 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2875: DEBUG: session context: setting query in progress. DONE Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2875: LOCATION: pool_session_context.c:208 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2875: DEBUG: Parse: waiting for master completing the query Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2875: LOCATION: pool_proto_modules.c:1064 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2875: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2875: LOCATION: pool_query_context.c:854 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2875: DEBUG: pool_write: to backend: kind:P Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2875: LOCATION: pool_stream.c:431 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2875: DEBUG: pool_write: to backend: kind:H Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2875: LOCATION: pool_stream.c:431 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2875: DEBUG: waiting for query response Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2875: DETAIL: waiting for backend:0 to complete the query Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2875: LOCATION: pool_process_query.c:479 Jun 6 09:36:26 otp3 pgpool[2872]: [602-1] 2016-06-06 09:36:26: pid 2872: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:36:26 otp3 pgpool[2872]: [602-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_stream.c:190 Jun 6 09:36:26 otp3 pgpool[2872]: [603-1] 2016-06-06 09:36:26: pid 2872: DEBUG: detect error: kind: 1 Jun 6 09:36:26 otp3 pgpool[2872]: [603-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_process_query.c:4166 Jun 6 09:36:26 otp3 pgpool[2872]: [604-1] 2016-06-06 09:36:26: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:26 otp3 pgpool[2872]: [604-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:26 otp3 pgpool[2872]: [605-1] 2016-06-06 09:36:26: pid 2872: DEBUG: reading backend data packet kind Jun 6 09:36:26 otp3 pgpool[2872]: [605-2] 2016-06-06 09:36:26: pid 2872: DETAIL: backend:0 of 2 kind = '1' Jun 6 09:36:26 otp3 pgpool[2872]: [605-3] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_process_query.c:3349 Jun 6 09:36:26 otp3 pgpool[2872]: [606-1] 2016-06-06 09:36:26: pid 2872: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:36:26 otp3 pgpool[2872]: [606-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_process_query.c:3365 Jun 6 09:36:26 otp3 pgpool[2872]: [607-1] 2016-06-06 09:36:26: pid 2872: DEBUG: processing backend response Jun 6 09:36:26 otp3 pgpool[2872]: [607-2] 2016-06-06 09:36:26: pid 2872: DETAIL: received kind '1'(31) from backend Jun 6 09:36:26 otp3 pgpool[2872]: [607-3] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_proto_modules.c:2424 Jun 6 09:36:26 otp3 pgpool[2872]: [608-1] 2016-06-06 09:36:26: pid 2872: DEBUG: called by pool_add_sent_message: sent message: address: 2406d98 kind: P name: == Jun 6 09:36:26 otp3 pgpool[2872]: [608-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:436 Jun 6 09:36:26 otp3 pgpool[2872]: [609-1] 2016-06-06 09:36:26: pid 2872: DEBUG: adding sent message to list Jun 6 09:36:26 otp3 pgpool[2872]: [609-2] 2016-06-06 09:36:26: pid 2872: DETAIL: prepared statement "" already exists Jun 6 09:36:26 otp3 pgpool[2872]: [609-3] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:516 Jun 6 09:36:26 otp3 pgpool[2872]: [610-1] 2016-06-06 09:36:26: pid 2872: DEBUG: called by pool_sent_message_destroy: sent message: address: 2406c80 kind: P name: == Jun 6 09:36:26 otp3 pgpool[2872]: [610-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:436 Jun 6 09:36:26 otp3 pgpool[2872]: [611-1] 2016-06-06 09:36:26: pid 2872: DEBUG: checking if query context can be safely destroyed Jun 6 09:36:26 otp3 pgpool[2872]: [611-2] 2016-06-06 09:36:26: pid 2872: DETAIL: query context 0x802482830 is still used 2 times. query:"SELECT 1" Jun 6 09:36:26 otp3 pgpool[2872]: [611-3] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:873 Jun 6 09:36:26 otp3 pgpool[2872]: [612-1] 2016-06-06 09:36:26: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:26 otp3 pgpool[2872]: [612-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:26 otp3 pgpool[2872]: [613-1] 2016-06-06 09:36:26: pid 2872: DEBUG: SimpleForwardToFrontend: packet:1 length:0 Jun 6 09:36:26 otp3 pgpool[2872]: [613-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_process_query.c:792 Jun 6 09:36:26 otp3 pgpool[2872]: [614-1] 2016-06-06 09:36:26: pid 2872: DEBUG: session context: setting command success. DONE Jun 6 09:36:26 otp3 pgpool[2872]: [614-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:741 Jun 6 09:36:26 otp3 pgpool[2872]: [615-1] 2016-06-06 09:36:26: pid 2872: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:26 otp3 pgpool[2872]: [615-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:219 Jun 6 09:36:26 otp3 pgpool[2872]: [616-1] 2016-06-06 09:36:26: pid 2872: DEBUG: processing frontend response Jun 6 09:36:26 otp3 pgpool[2872]: [616-2] 2016-06-06 09:36:26: pid 2872: DETAIL: received kind 'B'(42) from frontend Jun 6 09:36:26 otp3 pgpool[2872]: [616-3] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_proto_modules.c:2188 Jun 6 09:36:26 otp3 pgpool[2872]: [617-1] 2016-06-06 09:36:26: pid 2872: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:36:26 otp3 pgpool[2872]: [617-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:280 Jun 6 09:36:26 otp3 pgpool[2872]: [618-1] 2016-06-06 09:36:26: pid 2872: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:36:26 otp3 pgpool[2872]: [618-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:269 Jun 6 09:36:26 otp3 pgpool[2872]: [619-1] 2016-06-06 09:36:26: pid 2872: DEBUG: Bind: checking strict query Jun 6 09:36:26 otp3 pgpool[2872]: [619-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_proto_modules.c:1211 Jun 6 09:36:26 otp3 pgpool[2872]: [620-1] 2016-06-06 09:36:26: pid 2872: DEBUG: Bind: checking insert lock Jun 6 09:36:26 otp3 pgpool[2872]: [620-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_proto_modules.c:1221 Jun 6 09:36:26 otp3 pgpool[2872]: [621-1] 2016-06-06 09:36:26: pid 2872: DEBUG: Bind: waiting for master completing the query Jun 6 09:36:26 otp3 pgpool[2872]: [621-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_proto_modules.c:1237 Jun 6 09:36:26 otp3 pgpool[2872]: [622-1] 2016-06-06 09:36:26: pid 2872: DEBUG: session context: setting query in progress. DONE Jun 6 09:36:26 otp3 pgpool[2872]: [622-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:208 Jun 6 09:36:26 otp3 pgpool[2872]: [623-1] 2016-06-06 09:36:26: pid 2872: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:36:26 otp3 pgpool[2872]: [623-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_query_context.c:854 Jun 6 09:36:26 otp3 pgpool[2872]: [624-1] 2016-06-06 09:36:26: pid 2872: DEBUG: pool_write: to backend: kind:B Jun 6 09:36:26 otp3 pgpool[2872]: [624-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:36:26 otp3 pgpool[2872]: [625-1] 2016-06-06 09:36:26: pid 2872: DEBUG: pool_write: to backend: kind:H Jun 6 09:36:26 otp3 pgpool[2872]: [625-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:36:26 otp3 pgpool[2872]: [626-1] 2016-06-06 09:36:26: pid 2872: DEBUG: waiting for query response Jun 6 09:36:26 otp3 pgpool[2872]: [626-2] 2016-06-06 09:36:26: pid 2872: DETAIL: waiting for backend:0 to complete the query Jun 6 09:36:26 otp3 pgpool[2872]: [626-3] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_process_query.c:479 Jun 6 09:36:26 otp3 pgpool[2875]: [129-1] 2016-06-06 09:36:26: pid 2875: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:36:26 otp3 pgpool[2875]: [129-2] 2016-06-06 09:36:26: pid 2875: LOCATION: pool_stream.c:190 Jun 6 09:36:26 otp3 pgpool[2874]: [26-1] 2016-06-06 09:36:26: pid 2874: DEBUG: pool_read: read 337 bytes from backend 0 Jun 6 09:36:26 otp3 pgpool[2874]: [26-2] 2016-06-06 09:36:26: pid 2874: LOCATION: pool_stream.c:190 Jun 6 09:36:26 otp3 pgpool[2874]: [27-1] 2016-06-06 09:36:26: pid 2874: DEBUG: authentication backend Jun 6 09:36:26 otp3 pgpool[2874]: [27-2] 2016-06-06 09:36:26: pid 2874: DETAIL: trying md5 authentication Jun 6 09:36:26 otp3 pgpool[2874]: [27-3] 2016-06-06 09:36:26: pid 2874: LOCATION: pool_auth.c:239 Jun 6 09:36:26 otp3 pgpool[2874]: [28-1] 2016-06-06 09:36:26: pid 2874: DEBUG: performing md5 authentication Jun 6 09:36:26 otp3 pgpool[2874]: [28-2] 2016-06-06 09:36:26: pid 2874: DETAIL: DB node id: 1 salt: 986af9a8 Jun 6 09:36:26 otp3 pgpool[2874]: [28-3] 2016-06-06 09:36:26: pid 2874: LOCATION: pool_auth.c:855 Jun 6 09:36:26 otp3 pgpool[2874]: [29-1] 2016-06-06 09:36:26: pid 2874: DEBUG: pool_write: to backend: kind:p Jun 6 09:36:26 otp3 pgpool[2874]: [29-2] 2016-06-06 09:36:26: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:36:26 otp3 pgpool[2873]: [387-1] 2016-06-06 09:36:26: pid 2873: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:36:26 otp3 pgpool[2873]: [387-2] 2016-06-06 09:36:26: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:36:26 otp3 pgpool[2873]: [388-1] 2016-06-06 09:36:26: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:26 otp3 pgpool[2873]: [388-2] 2016-06-06 09:36:26: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:36:26 otp3 pgpool[2873]: [389-1] 2016-06-06 09:36:26: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:36:26 otp3 pgpool[2873]: [389-2] 2016-06-06 09:36:26: pid 2873: DETAIL: backend:0 of 2 kind = '2' Jun 6 09:36:26 otp3 pgpool[2873]: [389-3] 2016-06-06 09:36:26: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:36:26 otp3 pgpool[2873]: [390-1] 2016-06-06 09:36:26: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:36:26 otp3 pgpool[2873]: [390-2] 2016-06-06 09:36:26: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:36:26 otp3 pgpool[2873]: [391-1] 2016-06-06 09:36:26: pid 2873: DEBUG: processing backend response Jun 6 09:36:26 otp3 pgpool[2873]: [391-2] 2016-06-06 09:36:26: pid 2873: DETAIL: received kind '2'(32) from backend Jun 6 09:36:26 otp3 pgpool[2873]: [391-3] 2016-06-06 09:36:26: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:36:26 otp3 pgpool[2873]: [392-1] 2016-06-06 09:36:26: pid 2873: DEBUG: called by pool_add_sent_message: sent message: address: 2406d98 kind: B name: == Jun 6 09:36:26 otp3 pgpool[2873]: [392-2] 2016-06-06 09:36:26: pid 2873: LOCATION: pool_session_context.c:436 Jun 6 09:36:26 otp3 pgpool[2873]: [393-1] 2016-06-06 09:36:26: pid 2873: DEBUG: adding sent message to list Jun 6 09:36:26 otp3 pgpool[2873]: [393-2] 2016-06-06 09:36:26: pid 2873: DETAIL: portal "" already exists Jun 6 09:36:26 otp3 pgpool[2873]: [393-3] 2016-06-06 09:36:26: pid 2873: LOCATION: pool_session_context.c:512 Jun 6 09:36:26 otp3 pgpool[2873]: [394-1] 2016-06-06 09:36:26: pid 2873: DEBUG: called by pool_sent_message_destroy: sent message: address: 2406c80 kind: B name: == Jun 6 09:36:26 otp3 pgpool[2873]: [394-2] 2016-06-06 09:36:26: pid 2873: LOCATION: pool_session_context.c:436 Jun 6 09:36:26 otp3 pgpool[2873]: [395-1] 2016-06-06 09:36:26: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:26 otp3 pgpool[2873]: [395-2] 2016-06-06 09:36:26: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:36:26 otp3 pgpool[2873]: [396-1] 2016-06-06 09:36:26: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:36:26 otp3 pgpool[2873]: [396-2] 2016-06-06 09:36:26: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:36:26 otp3 pgpool[2873]: [397-1] 2016-06-06 09:36:26: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:26 otp3 pgpool[2873]: [397-2] 2016-06-06 09:36:26: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:36:26 otp3 pgpool[2873]: [398-1] 2016-06-06 09:36:26: pid 2873: DEBUG: SimpleForwardToFrontend: packet:2 length:0 Jun 6 09:36:26 otp3 pgpool[2873]: [398-2] 2016-06-06 09:36:26: pid 2873: LOCATION: pool_process_query.c:792 Jun 6 09:36:26 otp3 pgpool[2873]: [399-1] 2016-06-06 09:36:26: pid 2873: DEBUG: session context: setting command success. DONE Jun 6 09:36:26 otp3 pgpool[2873]: [399-2] 2016-06-06 09:36:26: pid 2873: LOCATION: pool_session_context.c:741 Jun 6 09:36:26 otp3 pgpool[2873]: [400-1] 2016-06-06 09:36:26: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:26 otp3 pgpool[2873]: [400-2] 2016-06-06 09:36:26: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:36:26 otp3 pgpool[2873]: [401-1] 2016-06-06 09:36:26: pid 2873: DEBUG: processing frontend response Jun 6 09:36:26 otp3 pgpool[2873]: [401-2] 2016-06-06 09:36:26: pid 2873: DETAIL: received kind 'D'(44) from frontend Jun 6 09:36:26 otp3 pgpool[2873]: [401-3] 2016-06-06 09:36:26: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:36:26 otp3 pgpool[2873]: [402-1] 2016-06-06 09:36:26: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:36:26 otp3 pgpool[2873]: [402-2] 2016-06-06 09:36:26: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:36:26 otp3 pgpool[2873]: [403-1] 2016-06-06 09:36:26: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:36:26 otp3 pgpool[2873]: [403-2] 2016-06-06 09:36:26: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:36:26 otp3 pgpool[2873]: [404-1] 2016-06-06 09:36:26: pid 2873: DEBUG: Describe: waiting for master completing the query Jun 6 09:36:26 otp3 pgpool[2873]: [404-2] 2016-06-06 09:36:26: pid 2873: LOCATION: pool_proto_modules.c:1310 Jun 6 09:36:26 otp3 pgpool[2873]: [405-1] 2016-06-06 09:36:26: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:36:26 otp3 pgpool[2873]: [405-2] 2016-06-06 09:36:26: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:36:26 otp3 pgpool[2873]: [406-1] 2016-06-06 09:36:26: pid 2873: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:36:26 otp3 pgpool[2873]: [406-2] 2016-06-06 09:36:26: pid 2873: LOCATION: pool_query_context.c:854 Jun 6 09:36:26 otp3 pgpool[2873]: [407-1] 2016-06-06 09:36:26: pid 2873: DEBUG: pool_write: to backend: kind:D Jun 6 09:36:26 otp3 pgpool[2873]: [407-2] 2016-06-06 09:36:26: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:36:26 otp3 pgpool[2873]: [408-1] 2016-06-06 09:36:26: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:36:26 otp3 pgpool[2873]: [408-2] 2016-06-06 09:36:26: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:36:26 otp3 pgpool[2873]: [409-1] 2016-06-06 09:36:26: pid 2873: DEBUG: waiting for query response Jun 6 09:36:26 otp3 pgpool[2873]: [409-2] 2016-06-06 09:36:26: pid 2873: DETAIL: waiting for backend:0 to complete the query Jun 6 09:36:26 otp3 pgpool[2873]: [409-3] 2016-06-06 09:36:26: pid 2873: LOCATION: pool_process_query.c:479 Jun 6 09:36:26 otp3 pgpool[2872]: [627-1] 2016-06-06 09:36:26: pid 2872: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:36:26 otp3 pgpool[2872]: [627-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_stream.c:190 Jun 6 09:36:26 otp3 pgpool[2872]: [628-1] 2016-06-06 09:36:26: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:26 otp3 pgpool[2872]: [628-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:26 otp3 pgpool[2872]: [629-1] 2016-06-06 09:36:26: pid 2872: DEBUG: reading backend data packet kind Jun 6 09:36:26 otp3 pgpool[2872]: [629-2] 2016-06-06 09:36:26: pid 2872: DETAIL: backend:0 of 2 kind = '2' Jun 6 09:36:26 otp3 pgpool[2872]: [629-3] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_process_query.c:3349 Jun 6 09:36:26 otp3 pgpool[2872]: [630-1] 2016-06-06 09:36:26: pid 2872: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:36:26 otp3 pgpool[2872]: [630-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_process_query.c:3365 Jun 6 09:36:26 otp3 pgpool[2872]: [631-1] 2016-06-06 09:36:26: pid 2872: DEBUG: processing backend response Jun 6 09:36:26 otp3 pgpool[2872]: [631-2] 2016-06-06 09:36:26: pid 2872: DETAIL: received kind '2'(32) from backend Jun 6 09:36:26 otp3 pgpool[2872]: [631-3] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_proto_modules.c:2424 Jun 6 09:36:26 otp3 pgpool[2872]: [632-1] 2016-06-06 09:36:26: pid 2872: DEBUG: called by pool_add_sent_message: sent message: address: 2406c80 kind: B name: == Jun 6 09:36:26 otp3 pgpool[2872]: [632-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:436 Jun 6 09:36:26 otp3 pgpool[2872]: [633-1] 2016-06-06 09:36:26: pid 2872: DEBUG: adding sent message to list Jun 6 09:36:26 otp3 pgpool[2872]: [633-2] 2016-06-06 09:36:26: pid 2872: DETAIL: portal "" already exists Jun 6 09:36:26 otp3 pgpool[2872]: [633-3] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:512 Jun 6 09:36:26 otp3 pgpool[2872]: [634-1] 2016-06-06 09:36:26: pid 2872: DEBUG: called by pool_sent_message_destroy: sent message: address: 2406d18 kind: B name: == Jun 6 09:36:26 otp3 pgpool[2872]: [634-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:436 Jun 6 09:36:26 otp3 pgpool[2872]: [635-1] 2016-06-06 09:36:26: pid 2872: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:26 otp3 pgpool[2872]: [635-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:219 Jun 6 09:36:26 otp3 pgpool[2872]: [636-1] 2016-06-06 09:36:26: pid 2872: DEBUG: session context: setting query in progress. DONE Jun 6 09:36:26 otp3 pgpool[2872]: [636-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:208 Jun 6 09:36:26 otp3 pgpool[2872]: [637-1] 2016-06-06 09:36:26: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:26 otp3 pgpool[2872]: [637-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:26 otp3 pgpool[2872]: [638-1] 2016-06-06 09:36:26: pid 2872: DEBUG: SimpleForwardToFrontend: packet:2 length:0 Jun 6 09:36:26 otp3 pgpool[2872]: [638-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_process_query.c:792 Jun 6 09:36:26 otp3 pgpool[2872]: [639-1] 2016-06-06 09:36:26: pid 2872: DEBUG: session context: setting command success. DONE Jun 6 09:36:26 otp3 pgpool[2872]: [639-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:741 Jun 6 09:36:26 otp3 pgpool[2872]: [640-1] 2016-06-06 09:36:26: pid 2872: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:26 otp3 pgpool[2872]: [640-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:219 Jun 6 09:36:26 otp3 pgpool[2872]: [641-1] 2016-06-06 09:36:26: pid 2872: DEBUG: processing frontend response Jun 6 09:36:26 otp3 pgpool[2872]: [641-2] 2016-06-06 09:36:26: pid 2872: DETAIL: received kind 'D'(44) from frontend Jun 6 09:36:26 otp3 pgpool[2872]: [641-3] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_proto_modules.c:2188 Jun 6 09:36:26 otp3 pgpool[2872]: [642-1] 2016-06-06 09:36:26: pid 2872: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:36:26 otp3 pgpool[2872]: [642-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:280 Jun 6 09:36:26 otp3 pgpool[2872]: [643-1] 2016-06-06 09:36:26: pid 2872: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:36:26 otp3 pgpool[2872]: [643-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:269 Jun 6 09:36:26 otp3 pgpool[2872]: [644-1] 2016-06-06 09:36:26: pid 2872: DEBUG: Describe: waiting for master completing the query Jun 6 09:36:26 otp3 pgpool[2872]: [644-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_proto_modules.c:1310 Jun 6 09:36:26 otp3 pgpool[2873]: [410-1] 2016-06-06 09:36:26: pid 2873: DEBUG: pool_read: read 976 bytes from backend 0 Jun 6 09:36:26 otp3 pgpool[2873]: [410-2] 2016-06-06 09:36:26: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:36:26 otp3 pgpool[2872]: [645-1] 2016-06-06 09:36:26: pid 2872: DEBUG: session context: setting query in progress. DONE Jun 6 09:36:26 otp3 pgpool[2872]: [645-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:208 Jun 6 09:36:26 otp3 pgpool[2872]: [646-1] 2016-06-06 09:36:26: pid 2872: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:36:26 otp3 pgpool[2872]: [646-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_query_context.c:854 Jun 6 09:36:26 otp3 pgpool[2873]: [411-1] 2016-06-06 09:36:26: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:26 otp3 pgpool[2873]: [411-2] 2016-06-06 09:36:26: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:36:26 otp3 pgpool[2872]: [647-1] 2016-06-06 09:36:26: pid 2872: DEBUG: pool_write: to backend: kind:D Jun 6 09:36:26 otp3 pgpool[2872]: [647-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:36:26 otp3 pgpool[2873]: [412-1] 2016-06-06 09:36:26: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:36:26 otp3 pgpool[2873]: [412-2] 2016-06-06 09:36:26: pid 2873: DETAIL: backend:0 of 2 kind = 'T' Jun 6 09:36:26 otp3 pgpool[2873]: [412-3] 2016-06-06 09:36:26: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:36:26 otp3 pgpool[2872]: [648-1] 2016-06-06 09:36:26: pid 2872: DEBUG: pool_write: to backend: kind:H Jun 6 09:36:26 otp3 pgpool[2872]: [648-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:36:26 otp3 pgpool[2873]: [413-1] 2016-06-06 09:36:26: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:36:26 otp3 pgpool[2873]: [413-2] 2016-06-06 09:36:26: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:36:26 otp3 pgpool[2872]: [649-1] 2016-06-06 09:36:26: pid 2872: DEBUG: waiting for query response Jun 6 09:36:26 otp3 pgpool[2872]: [649-2] 2016-06-06 09:36:26: pid 2872: DETAIL: waiting for backend:0 to complete the query Jun 6 09:36:26 otp3 pgpool[2872]: [649-3] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_process_query.c:479 Jun 6 09:36:26 otp3 pgpool[2873]: [414-1] 2016-06-06 09:36:26: pid 2873: DEBUG: processing backend response Jun 6 09:36:26 otp3 pgpool[2873]: [414-2] 2016-06-06 09:36:26: pid 2873: DETAIL: received kind 'T'(54) from backend Jun 6 09:36:26 otp3 pgpool[2873]: [414-3] 2016-06-06 09:36:26: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:36:26 otp3 pgpool[2873]: [415-1] 2016-06-06 09:36:26: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:26 otp3 pgpool[2873]: [415-2] 2016-06-06 09:36:26: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:36:26 otp3 pgpool[2873]: [416-1] 2016-06-06 09:36:26: pid 2873: DEBUG: SimpleForwardToFrontend: packet:T length:971 Jun 6 09:36:26 otp3 pgpool[2873]: [416-2] 2016-06-06 09:36:26: pid 2873: LOCATION: pool_process_query.c:792 Jun 6 09:36:26 otp3 pgpool[2873]: [417-1] 2016-06-06 09:36:26: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:26 otp3 pgpool[2873]: [417-2] 2016-06-06 09:36:26: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:36:26 otp3 pgpool[2873]: [418-1] 2016-06-06 09:36:26: pid 2873: DEBUG: processing frontend response Jun 6 09:36:26 otp3 pgpool[2873]: [418-2] 2016-06-06 09:36:26: pid 2873: DETAIL: received kind 'E'(45) from frontend Jun 6 09:36:26 otp3 pgpool[2873]: [418-3] 2016-06-06 09:36:26: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:36:26 otp3 pgpool[2873]: [419-1] 2016-06-06 09:36:26: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:36:26 otp3 pgpool[2873]: [419-2] 2016-06-06 09:36:26: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:36:26 otp3 pgpool[2873]: [420-1] 2016-06-06 09:36:26: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:36:26 otp3 pgpool[2873]: [420-2] 2016-06-06 09:36:26: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:36:26 otp3 pgpool[2873]: [421-1] 2016-06-06 09:36:26: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:36:26 otp3 pgpool[2873]: [421-2] 2016-06-06 09:36:26: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:36:26 otp3 pgpool[2873]: [422-1] 2016-06-06 09:36:26: pid 2873: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:36:26 otp3 pgpool[2873]: [422-2] 2016-06-06 09:36:26: pid 2873: LOCATION: pool_query_context.c:854 Jun 6 09:36:26 otp3 pgpool[2873]: [423-1] 2016-06-06 09:36:26: pid 2873: DEBUG: pool_write: to backend: kind:E Jun 6 09:36:26 otp3 pgpool[2873]: [423-2] 2016-06-06 09:36:26: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:36:26 otp3 pgpool[2873]: [424-1] 2016-06-06 09:36:26: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:36:26 otp3 pgpool[2873]: [424-2] 2016-06-06 09:36:26: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:36:26 otp3 pgpool[2873]: [425-1] 2016-06-06 09:36:26: pid 2873: DEBUG: waiting for query response Jun 6 09:36:26 otp3 pgpool[2873]: [425-2] 2016-06-06 09:36:26: pid 2873: DETAIL: waiting for backend:0 to complete the query Jun 6 09:36:26 otp3 pgpool[2873]: [425-3] 2016-06-06 09:36:26: pid 2873: LOCATION: pool_process_query.c:479 Jun 6 09:36:26 otp3 pgpool[2874]: [30-1] 2016-06-06 09:36:26: pid 2874: DEBUG: pool_read: read 337 bytes from backend 1 Jun 6 09:36:26 otp3 pgpool[2874]: [30-2] 2016-06-06 09:36:26: pid 2874: LOCATION: pool_stream.c:190 Jun 6 09:36:26 otp3 pgpool[2874]: [31-1] 2016-06-06 09:36:26: pid 2874: DEBUG: reading message length Jun 6 09:36:26 otp3 pgpool[2874]: [31-2] 2016-06-06 09:36:26: pid 2874: DETAIL: master slot: 0 length: 22 Jun 6 09:36:26 otp3 pgpool[2874]: [31-3] 2016-06-06 09:36:26: pid 2874: LOCATION: pool_auth.c:1161 Jun 6 09:36:26 otp3 pgpool[2874]: [32-1] 2016-06-06 09:36:26: pid 2874: DEBUG: reading message length Jun 6 09:36:26 otp3 pgpool[2874]: [32-2] 2016-06-06 09:36:26: pid 2874: DETAIL: master slot: 1 length: 22 Jun 6 09:36:26 otp3 pgpool[2874]: [32-3] 2016-06-06 09:36:26: pid 2874: LOCATION: pool_auth.c:1172 Jun 6 09:36:26 otp3 pgpool[2874]: [33-1] 2016-06-06 09:36:26: pid 2874: DEBUG: process parameter status Jun 6 09:36:26 otp3 pgpool[2874]: [33-2] 2016-06-06 09:36:26: pid 2874: DETAIL: backend:0 name:"application_name" value:"" Jun 6 09:36:26 otp3 pgpool[2874]: [33-3] 2016-06-06 09:36:26: pid 2874: LOCATION: pool_process_query.c:921 Jun 6 09:36:26 otp3 pgpool[2874]: [34-1] 2016-06-06 09:36:26: pid 2874: DEBUG: process parameter status Jun 6 09:36:26 otp3 pgpool[2874]: [34-2] 2016-06-06 09:36:26: pid 2874: DETAIL: backend:1 name:"application_name" value:"" Jun 6 09:36:26 otp3 pgpool[2874]: [34-3] 2016-06-06 09:36:26: pid 2874: LOCATION: pool_process_query.c:921 Jun 6 09:36:26 otp3 pgpool[2874]: [35-1] 2016-06-06 09:36:26: pid 2874: DEBUG: reading message length Jun 6 09:36:26 otp3 pgpool[2874]: [35-2] 2016-06-06 09:36:26: pid 2874: DETAIL: master slot: 0 length: 25 Jun 6 09:36:26 otp3 pgpool[2874]: [35-3] 2016-06-06 09:36:26: pid 2874: LOCATION: pool_auth.c:1161 Jun 6 09:36:26 otp3 pgpool[2874]: [36-1] 2016-06-06 09:36:26: pid 2874: DEBUG: reading message length Jun 6 09:36:26 otp3 pgpool[2874]: [36-2] 2016-06-06 09:36:26: pid 2874: DETAIL: master slot: 1 length: 25 Jun 6 09:36:26 otp3 pgpool[2874]: [36-3] 2016-06-06 09:36:26: pid 2874: LOCATION: pool_auth.c:1172 Jun 6 09:36:26 otp3 pgpool[2874]: [37-1] 2016-06-06 09:36:26: pid 2874: DEBUG: process parameter status Jun 6 09:36:26 otp3 pgpool[2874]: [37-2] 2016-06-06 09:36:26: pid 2874: DETAIL: backend:0 name:"client_encoding" value:"UTF8" Jun 6 09:36:26 otp3 pgpool[2874]: [37-3] 2016-06-06 09:36:26: pid 2874: LOCATION: pool_process_query.c:921 Jun 6 09:36:26 otp3 pgpool[2874]: [38-1] 2016-06-06 09:36:26: pid 2874: DEBUG: process parameter status Jun 6 09:36:26 otp3 pgpool[2874]: [38-2] 2016-06-06 09:36:26: pid 2874: DETAIL: backend:1 name:"client_encoding" value:"UTF8" Jun 6 09:36:26 otp3 pgpool[2874]: [38-3] 2016-06-06 09:36:26: pid 2874: LOCATION: pool_process_query.c:921 Jun 6 09:36:26 otp3 pgpool[2874]: [39-1] 2016-06-06 09:36:26: pid 2874: DEBUG: reading message length Jun 6 09:36:26 otp3 pgpool[2874]: [39-2] 2016-06-06 09:36:26: pid 2874: DETAIL: master slot: 0 length: 23 Jun 6 09:36:26 otp3 pgpool[2874]: [39-3] 2016-06-06 09:36:26: pid 2874: LOCATION: pool_auth.c:1161 Jun 6 09:36:26 otp3 pgpool[2874]: [40-1] 2016-06-06 09:36:26: pid 2874: DEBUG: reading message length Jun 6 09:36:26 otp3 pgpool[2874]: [40-2] 2016-06-06 09:36:26: pid 2874: DETAIL: master slot: 1 length: 23 Jun 6 09:36:26 otp3 pgpool[2874]: [40-3] 2016-06-06 09:36:26: pid 2874: LOCATION: pool_auth.c:1172 Jun 6 09:36:26 otp3 pgpool[2874]: [41-1] 2016-06-06 09:36:26: pid 2874: DEBUG: process parameter status Jun 6 09:36:26 otp3 pgpool[2874]: [41-2] 2016-06-06 09:36:26: pid 2874: DETAIL: backend:0 name:"DateStyle" value:"ISO, MDY" Jun 6 09:36:26 otp3 pgpool[2874]: [41-3] 2016-06-06 09:36:26: pid 2874: LOCATION: pool_process_query.c:921 Jun 6 09:36:26 otp3 pgpool[2874]: [42-1] 2016-06-06 09:36:26: pid 2874: DEBUG: process parameter status Jun 6 09:36:26 otp3 pgpool[2874]: [42-2] 2016-06-06 09:36:26: pid 2874: DETAIL: backend:1 name:"DateStyle" value:"ISO, MDY" Jun 6 09:36:26 otp3 pgpool[2874]: [42-3] 2016-06-06 09:36:26: pid 2874: LOCATION: pool_process_query.c:921 Jun 6 09:36:26 otp3 pgpool[2874]: [43-1] 2016-06-06 09:36:26: pid 2874: DEBUG: reading message length Jun 6 09:36:26 otp3 pgpool[2874]: [43-2] 2016-06-06 09:36:26: pid 2874: DETAIL: master slot: 0 length: 25 Jun 6 09:36:26 otp3 pgpool[2874]: [43-3] 2016-06-06 09:36:26: pid 2874: LOCATION: pool_auth.c:1161 Jun 6 09:36:26 otp3 pgpool[2874]: [44-1] 2016-06-06 09:36:26: pid 2874: DEBUG: reading message length Jun 6 09:36:26 otp3 pgpool[2874]: [44-2] 2016-06-06 09:36:26: pid 2874: DETAIL: master slot: 1 length: 25 Jun 6 09:36:26 otp3 pgpool[2874]: [44-3] 2016-06-06 09:36:26: pid 2874: LOCATION: pool_auth.c:1172 Jun 6 09:36:26 otp3 pgpool[2874]: [45-1] 2016-06-06 09:36:26: pid 2874: DEBUG: process parameter status Jun 6 09:36:26 otp3 pgpool[2874]: [45-2] 2016-06-06 09:36:26: pid 2874: DETAIL: backend:0 name:"integer_datetimes" value:"on" Jun 6 09:36:26 otp3 pgpool[2874]: [45-3] 2016-06-06 09:36:26: pid 2874: LOCATION: pool_process_query.c:921 Jun 6 09:36:26 otp3 pgpool[2874]: [46-1] 2016-06-06 09:36:26: pid 2874: DEBUG: process parameter status Jun 6 09:36:26 otp3 pgpool[2874]: [46-2] 2016-06-06 09:36:26: pid 2874: DETAIL: backend:1 name:"integer_datetimes" value:"on" Jun 6 09:36:26 otp3 pgpool[2874]: [46-3] 2016-06-06 09:36:26: pid 2874: LOCATION: pool_process_query.c:921 Jun 6 09:36:26 otp3 pgpool[2874]: [47-1] 2016-06-06 09:36:26: pid 2874: DEBUG: reading message length Jun 6 09:36:26 otp3 pgpool[2874]: [47-2] 2016-06-06 09:36:26: pid 2874: DETAIL: master slot: 0 length: 27 Jun 6 09:36:26 otp3 pgpool[2874]: [47-3] 2016-06-06 09:36:26: pid 2874: LOCATION: pool_auth.c:1161 Jun 6 09:36:26 otp3 pgpool[2874]: [48-1] 2016-06-06 09:36:26: pid 2874: DEBUG: reading message length Jun 6 09:36:26 otp3 pgpool[2874]: [48-2] 2016-06-06 09:36:26: pid 2874: DETAIL: master slot: 1 length: 27 Jun 6 09:36:26 otp3 pgpool[2874]: [48-3] 2016-06-06 09:36:26: pid 2874: LOCATION: pool_auth.c:1172 Jun 6 09:36:26 otp3 pgpool[2874]: [49-1] 2016-06-06 09:36:26: pid 2874: DEBUG: process parameter status Jun 6 09:36:26 otp3 pgpool[2874]: [49-2] 2016-06-06 09:36:26: pid 2874: DETAIL: backend:0 name:"IntervalStyle" value:"postgres" Jun 6 09:36:26 otp3 pgpool[2874]: [49-3] 2016-06-06 09:36:26: pid 2874: LOCATION: pool_process_query.c:921 Jun 6 09:36:26 otp3 pgpool[2874]: [50-1] 2016-06-06 09:36:26: pid 2874: DEBUG: process parameter status Jun 6 09:36:26 otp3 pgpool[2874]: [50-2] 2016-06-06 09:36:26: pid 2874: DETAIL: backend:1 name:"IntervalStyle" value:"postgres" Jun 6 09:36:26 otp3 pgpool[2874]: [50-3] 2016-06-06 09:36:26: pid 2874: LOCATION: pool_process_query.c:921 Jun 6 09:36:26 otp3 pgpool[2874]: [51-1] 2016-06-06 09:36:26: pid 2874: DEBUG: reading message length Jun 6 09:36:26 otp3 pgpool[2874]: [51-2] 2016-06-06 09:36:26: pid 2874: DETAIL: master slot: 0 length: 21 Jun 6 09:36:26 otp3 pgpool[2874]: [51-3] 2016-06-06 09:36:26: pid 2874: LOCATION: pool_auth.c:1161 Jun 6 09:36:26 otp3 pgpool[2874]: [52-1] 2016-06-06 09:36:26: pid 2874: DEBUG: reading message length Jun 6 09:36:26 otp3 pgpool[2874]: [52-2] 2016-06-06 09:36:26: pid 2874: DETAIL: master slot: 1 length: 21 Jun 6 09:36:26 otp3 pgpool[2874]: [52-3] 2016-06-06 09:36:26: pid 2874: LOCATION: pool_auth.c:1172 Jun 6 09:36:26 otp3 pgpool[2874]: [53-1] 2016-06-06 09:36:26: pid 2874: DEBUG: process parameter status Jun 6 09:36:26 otp3 pgpool[2874]: [53-2] 2016-06-06 09:36:26: pid 2874: DETAIL: backend:0 name:"is_superuser" value:"off" Jun 6 09:36:26 otp3 pgpool[2873]: [426-1] 2016-06-06 09:36:26: pid 2873: DEBUG: pool_read: read 737 bytes from backend 0 Jun 6 09:36:26 otp3 pgpool[2873]: [426-2] 2016-06-06 09:36:26: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:36:26 otp3 pgpool[2873]: [427-1] 2016-06-06 09:36:26: pid 2873: DEBUG: detect error: kind: D Jun 6 09:36:26 otp3 pgpool[2873]: [427-2] 2016-06-06 09:36:26: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:36:26 otp3 pgpool[2873]: [428-1] 2016-06-06 09:36:26: pid 2873: DEBUG: detect error: kind: D Jun 6 09:36:26 otp3 pgpool[2873]: [428-2] 2016-06-06 09:36:26: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:36:26 otp3 pgpool[2873]: [429-1] 2016-06-06 09:36:26: pid 2873: DEBUG: detect error: kind: D Jun 6 09:36:26 otp3 pgpool[2873]: [429-2] 2016-06-06 09:36:26: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:36:26 otp3 pgpool[2873]: [430-1] 2016-06-06 09:36:26: pid 2873: DEBUG: detect error: kind: D Jun 6 09:36:26 otp3 pgpool[2873]: [430-2] 2016-06-06 09:36:26: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:36:26 otp3 pgpool[2873]: [431-1] 2016-06-06 09:36:26: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:26 otp3 pgpool[2873]: [431-2] 2016-06-06 09:36:26: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:36:26 otp3 pgpool[2873]: [432-1] 2016-06-06 09:36:26: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:36:26 otp3 pgpool[2873]: [432-2] 2016-06-06 09:36:26: pid 2873: DETAIL: backend:0 of 2 kind = 'D' Jun 6 09:36:26 otp3 pgpool[2873]: [432-3] 2016-06-06 09:36:26: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:36:26 otp3 pgpool[2873]: [433-1] 2016-06-06 09:36:26: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:36:26 otp3 pgpool[2873]: [433-2] 2016-06-06 09:36:26: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:36:26 otp3 pgpool[2873]: [434-1] 2016-06-06 09:36:26: pid 2873: DEBUG: processing backend response Jun 6 09:36:26 otp3 pgpool[2873]: [434-2] 2016-06-06 09:36:26: pid 2873: DETAIL: received kind 'D'(44) from backend Jun 6 09:36:26 otp3 pgpool[2873]: [434-3] 2016-06-06 09:36:26: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:36:26 otp3 pgpool[2873]: [435-1] 2016-06-06 09:36:26: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:26 otp3 pgpool[2873]: [435-2] 2016-06-06 09:36:26: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:36:26 otp3 pgpool[2873]: [436-1] 2016-06-06 09:36:26: pid 2873: DEBUG: SimpleForwardToFrontend: packet:D length:238 Jun 6 09:36:26 otp3 pgpool[2873]: [436-2] 2016-06-06 09:36:26: pid 2873: LOCATION: pool_process_query.c:792 Jun 6 09:36:26 otp3 pgpool[2873]: [437-1] 2016-06-06 09:36:26: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:26 otp3 pgpool[2873]: [437-2] 2016-06-06 09:36:26: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:36:26 otp3 pgpool[2873]: [438-1] 2016-06-06 09:36:26: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:36:26 otp3 pgpool[2873]: [438-2] 2016-06-06 09:36:26: pid 2873: DETAIL: backend:0 of 2 kind = 'D' Jun 6 09:36:26 otp3 pgpool[2873]: [438-3] 2016-06-06 09:36:26: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:36:26 otp3 pgpool[2873]: [439-1] 2016-06-06 09:36:26: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:36:26 otp3 pgpool[2873]: [439-2] 2016-06-06 09:36:26: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:36:26 otp3 pgpool[2873]: [440-1] 2016-06-06 09:36:26: pid 2873: DEBUG: processing backend response Jun 6 09:36:26 otp3 pgpool[2873]: [440-2] 2016-06-06 09:36:26: pid 2873: DETAIL: received kind 'D'(44) from backend Jun 6 09:36:26 otp3 pgpool[2873]: [440-3] 2016-06-06 09:36:26: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:36:26 otp3 pgpool[2873]: [441-1] 2016-06-06 09:36:26: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:26 otp3 pgpool[2873]: [441-2] 2016-06-06 09:36:26: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:36:26 otp3 pgpool[2873]: [442-1] 2016-06-06 09:36:26: pid 2873: DEBUG: SimpleForwardToFrontend: packet:D length:239 Jun 6 09:36:26 otp3 pgpool[2873]: [442-2] 2016-06-06 09:36:26: pid 2873: LOCATION: pool_process_query.c:792 Jun 6 09:36:26 otp3 pgpool[2873]: [443-1] 2016-06-06 09:36:26: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:26 otp3 pgpool[2873]: [443-2] 2016-06-06 09:36:26: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:36:26 otp3 pgpool[2873]: [444-1] 2016-06-06 09:36:26: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:36:26 otp3 pgpool[2873]: [444-2] 2016-06-06 09:36:26: pid 2873: DETAIL: backend:0 of 2 kind = 'D' Jun 6 09:36:26 otp3 pgpool[2873]: [444-3] 2016-06-06 09:36:26: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:36:26 otp3 pgpool[2873]: [445-1] 2016-06-06 09:36:26: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:36:26 otp3 pgpool[2873]: [445-2] 2016-06-06 09:36:26: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:36:26 otp3 pgpool[2873]: [446-1] 2016-06-06 09:36:26: pid 2873: DEBUG: processing backend response Jun 6 09:36:26 otp3 pgpool[2873]: [446-2] 2016-06-06 09:36:26: pid 2873: DETAIL: received kind 'D'(44) from backend Jun 6 09:36:26 otp3 pgpool[2873]: [446-3] 2016-06-06 09:36:26: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:36:26 otp3 pgpool[2873]: [447-1] 2016-06-06 09:36:26: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:26 otp3 pgpool[2873]: [447-2] 2016-06-06 09:36:26: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:36:26 otp3 pgpool[2873]: [448-1] 2016-06-06 09:36:26: pid 2873: DEBUG: SimpleForwardToFrontend: packet:D length:231 Jun 6 09:36:26 otp3 pgpool[2873]: [448-2] 2016-06-06 09:36:26: pid 2873: LOCATION: pool_process_query.c:792 Jun 6 09:36:26 otp3 pgpool[2873]: [449-1] 2016-06-06 09:36:26: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:26 otp3 pgpool[2873]: [449-2] 2016-06-06 09:36:26: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:36:26 otp3 pgpool[2872]: [650-1] 2016-06-06 09:36:26: pid 2872: DEBUG: pool_read: read 95 bytes from backend 0 Jun 6 09:36:26 otp3 pgpool[2872]: [650-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_stream.c:190 Jun 6 09:36:26 otp3 pgpool[2872]: [651-1] 2016-06-06 09:36:26: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:26 otp3 pgpool[2872]: [651-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:26 otp3 pgpool[2872]: [652-1] 2016-06-06 09:36:26: pid 2872: DEBUG: reading backend data packet kind Jun 6 09:36:26 otp3 pgpool[2872]: [652-2] 2016-06-06 09:36:26: pid 2872: DETAIL: backend:0 of 2 kind = 'T' Jun 6 09:36:26 otp3 pgpool[2872]: [652-3] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_process_query.c:3349 Jun 6 09:36:26 otp3 pgpool[2872]: [653-1] 2016-06-06 09:36:26: pid 2872: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:36:26 otp3 pgpool[2872]: [653-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_process_query.c:3365 Jun 6 09:36:26 otp3 pgpool[2872]: [654-1] 2016-06-06 09:36:26: pid 2872: DEBUG: processing backend response Jun 6 09:36:26 otp3 pgpool[2872]: [654-2] 2016-06-06 09:36:26: pid 2872: DETAIL: received kind 'T'(54) from backend Jun 6 09:36:26 otp3 pgpool[2872]: [654-3] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_proto_modules.c:2424 Jun 6 09:36:26 otp3 pgpool[2872]: [655-1] 2016-06-06 09:36:26: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:26 otp3 pgpool[2872]: [655-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:26 otp3 pgpool[2872]: [656-1] 2016-06-06 09:36:26: pid 2872: DEBUG: SimpleForwardToFrontend: packet:T length:90 Jun 6 09:36:26 otp3 pgpool[2872]: [656-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_process_query.c:792 Jun 6 09:36:26 otp3 pgpool[2872]: [657-1] 2016-06-06 09:36:26: pid 2872: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:26 otp3 pgpool[2872]: [657-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:219 Jun 6 09:36:26 otp3 pgpool[2872]: [658-1] 2016-06-06 09:36:26: pid 2872: DEBUG: processing frontend response Jun 6 09:36:26 otp3 pgpool[2872]: [658-2] 2016-06-06 09:36:26: pid 2872: DETAIL: received kind 'E'(45) from frontend Jun 6 09:36:26 otp3 pgpool[2872]: [658-3] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_proto_modules.c:2188 Jun 6 09:36:26 otp3 pgpool[2872]: [659-1] 2016-06-06 09:36:26: pid 2872: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:36:26 otp3 pgpool[2872]: [659-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:280 Jun 6 09:36:26 otp3 pgpool[2872]: [660-1] 2016-06-06 09:36:26: pid 2872: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:36:26 otp3 pgpool[2872]: [660-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:269 Jun 6 09:36:26 otp3 pgpool[2872]: [661-1] 2016-06-06 09:36:26: pid 2872: DEBUG: session context: setting query in progress. DONE Jun 6 09:36:26 otp3 pgpool[2872]: [661-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:208 Jun 6 09:36:26 otp3 pgpool[2872]: [662-1] 2016-06-06 09:36:26: pid 2872: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:36:26 otp3 pgpool[2872]: [662-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_query_context.c:854 Jun 6 09:36:26 otp3 pgpool[2872]: [663-1] 2016-06-06 09:36:26: pid 2872: DEBUG: pool_write: to backend: kind:E Jun 6 09:36:26 otp3 pgpool[2872]: [663-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:36:26 otp3 pgpool[2872]: [664-1] 2016-06-06 09:36:26: pid 2872: DEBUG: pool_write: to backend: kind:H Jun 6 09:36:26 otp3 pgpool[2872]: [664-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:36:26 otp3 pgpool[2872]: [665-1] 2016-06-06 09:36:26: pid 2872: DEBUG: waiting for query response Jun 6 09:36:26 otp3 pgpool[2872]: [665-2] 2016-06-06 09:36:26: pid 2872: DETAIL: waiting for backend:0 to complete the query Jun 6 09:36:26 otp3 pgpool[2872]: [665-3] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_process_query.c:479 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_stream.c:190 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: detect error: kind: 1 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_process_query.c:4166 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: reading backend data packet kind Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DETAIL: backend:0 of 2 kind = '1' Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_process_query.c:3349 Jun 6 09:36:26 otp3 pgpool[2874]: [53-3] 2016-06-06 09:36:26: pid 2874: LOCATION: pool_process_query.c:921 Jun 6 09:36:26 otp3 pgpool[2874]: [54-1] 2016-06-06 09:36:26: pid 2874: DEBUG: process parameter status Jun 6 09:36:26 otp3 pgpool[2874]: [54-2] 2016-06-06 09:36:26: pid 2874: DETAIL: backend:1 name:"is_superuser" value:"off" Jun 6 09:36:26 otp3 pgpool[2874]: [54-3] 2016-06-06 09:36:26: pid 2874: LOCATION: pool_process_query.c:921 Jun 6 09:36:26 otp3 pgpool[2874]: [55-1] 2016-06-06 09:36:26: pid 2874: DEBUG: reading message length Jun 6 09:36:26 otp3 pgpool[2874]: [55-2] 2016-06-06 09:36:26: pid 2874: DETAIL: master slot: 0 length: 30 Jun 6 09:36:26 otp3 pgpool[2872]: [666-1] 2016-06-06 09:36:26: pid 2872: DEBUG: pool_read: read 194 bytes from backend 0 Jun 6 09:36:26 otp3 pgpool[2873]: [450-1] 2016-06-06 09:36:26: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:36:26 otp3 pgpool[2872]: [666-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_stream.c:190 Jun 6 09:36:26 otp3 pgpool[2873]: [450-2] 2016-06-06 09:36:26: pid 2873: DETAIL: backend:0 of 2 kind = 'C' Jun 6 09:36:26 otp3 pgpool[2873]: [450-3] 2016-06-06 09:36:26: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:36:26 otp3 pgpool[2872]: [667-1] 2016-06-06 09:36:26: pid 2872: DEBUG: detect error: kind: D Jun 6 09:36:26 otp3 pgpool[2872]: [667-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_process_query.c:4166 Jun 6 09:36:26 otp3 pgpool[2872]: [668-1] 2016-06-06 09:36:26: pid 2872: DEBUG: detect error: kind: D Jun 6 09:36:26 otp3 pgpool[2872]: [668-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_process_query.c:4166 Jun 6 09:36:26 otp3 pgpool[2873]: [451-1] 2016-06-06 09:36:26: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:36:26 otp3 pgpool[2872]: [669-1] 2016-06-06 09:36:26: pid 2872: DEBUG: detect error: kind: D Jun 6 09:36:26 otp3 pgpool[2872]: [669-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_process_query.c:4166 Jun 6 09:36:26 otp3 pgpool[2872]: [670-1] 2016-06-06 09:36:26: pid 2872: DEBUG: detect error: kind: D Jun 6 09:36:26 otp3 pgpool[2872]: [670-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_process_query.c:4166 Jun 6 09:36:26 otp3 pgpool[2873]: [451-2] 2016-06-06 09:36:26: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:36:26 otp3 pgpool[2872]: [671-1] 2016-06-06 09:36:26: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:26 otp3 pgpool[2872]: [671-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:26 otp3 pgpool[2872]: [672-1] 2016-06-06 09:36:26: pid 2872: DEBUG: reading backend data packet kind Jun 6 09:36:26 otp3 pgpool[2872]: [672-2] 2016-06-06 09:36:26: pid 2872: DETAIL: backend:0 of 2 kind = 'D' Jun 6 09:36:26 otp3 pgpool[2872]: [672-3] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_process_query.c:3349 Jun 6 09:36:26 otp3 pgpool[2873]: [452-1] 2016-06-06 09:36:26: pid 2873: DEBUG: processing backend response Jun 6 09:36:26 otp3 pgpool[2873]: [452-2] 2016-06-06 09:36:26: pid 2873: DETAIL: received kind 'C'(43) from backend Jun 6 09:36:26 otp3 pgpool[2872]: [673-1] 2016-06-06 09:36:26: pid 2872: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:36:26 otp3 pgpool[2873]: [452-3] 2016-06-06 09:36:26: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:36:26 otp3 pgpool[2872]: [673-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_process_query.c:3365 Jun 6 09:36:26 otp3 pgpool[2872]: [674-1] 2016-06-06 09:36:26: pid 2872: DEBUG: processing backend response Jun 6 09:36:26 otp3 pgpool[2872]: [674-2] 2016-06-06 09:36:26: pid 2872: DETAIL: received kind 'D'(44) from backend Jun 6 09:36:26 otp3 pgpool[2872]: [674-3] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_proto_modules.c:2424 Jun 6 09:36:26 otp3 pgpool[2873]: [453-1] 2016-06-06 09:36:26: pid 2873: DEBUG: session context: setting command success. DONE Jun 6 09:36:26 otp3 pgpool[2873]: [453-2] 2016-06-06 09:36:26: pid 2873: LOCATION: pool_session_context.c:741 Jun 6 09:36:26 otp3 pgpool[2872]: [675-1] 2016-06-06 09:36:26: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:26 otp3 pgpool[2872]: [675-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:26 otp3 pgpool[2872]: [676-1] 2016-06-06 09:36:26: pid 2872: DEBUG: SimpleForwardToFrontend: packet:D length:175 Jun 6 09:36:26 otp3 pgpool[2873]: [454-1] 2016-06-06 09:36:26: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:26 otp3 pgpool[2872]: [676-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_process_query.c:792 Jun 6 09:36:26 otp3 pgpool[2873]: [454-2] 2016-06-06 09:36:26: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:36:26 otp3 pgpool[2872]: [677-1] 2016-06-06 09:36:26: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:26 otp3 pgpool[2872]: [677-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:26 otp3 pgpool[2873]: [455-1] 2016-06-06 09:36:26: pid 2873: DEBUG: processing frontend response Jun 6 09:36:26 otp3 pgpool[2872]: [678-1] 2016-06-06 09:36:26: pid 2872: DEBUG: reading backend data packet kind Jun 6 09:36:26 otp3 pgpool[2872]: [678-2] 2016-06-06 09:36:26: pid 2872: DETAIL: backend:0 of 2 kind = 'C' Jun 6 09:36:26 otp3 pgpool[2873]: [455-2] 2016-06-06 09:36:26: pid 2873: DETAIL: received kind 'S'(53) from frontend Jun 6 09:36:26 otp3 pgpool[2872]: [678-3] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_process_query.c:3349 Jun 6 09:36:26 otp3 pgpool[2873]: [455-3] 2016-06-06 09:36:26: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:36:26 otp3 pgpool[2872]: [679-1] 2016-06-06 09:36:26: pid 2872: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:36:26 otp3 pgpool[2872]: [679-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_process_query.c:3365 Jun 6 09:36:26 otp3 pgpool[2873]: [456-1] 2016-06-06 09:36:26: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:36:26 otp3 pgpool[2873]: [456-2] 2016-06-06 09:36:26: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:36:26 otp3 pgpool[2872]: [680-1] 2016-06-06 09:36:26: pid 2872: DEBUG: processing backend response Jun 6 09:36:26 otp3 pgpool[2872]: [680-2] 2016-06-06 09:36:26: pid 2872: DETAIL: received kind 'C'(43) from backend Jun 6 09:36:26 otp3 pgpool[2872]: [680-3] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_proto_modules.c:2424 Jun 6 09:36:26 otp3 pgpool[2873]: [457-1] 2016-06-06 09:36:26: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:36:26 otp3 pgpool[2872]: [681-1] 2016-06-06 09:36:26: pid 2872: DEBUG: session context: setting command success. DONE Jun 6 09:36:26 otp3 pgpool[2873]: [457-2] 2016-06-06 09:36:26: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:36:26 otp3 pgpool[2872]: [681-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:741 Jun 6 09:36:26 otp3 pgpool[2872]: [682-1] 2016-06-06 09:36:26: pid 2872: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:26 otp3 pgpool[2872]: [682-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:219 Jun 6 09:36:26 otp3 pgpool[2873]: [458-1] 2016-06-06 09:36:26: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:36:26 otp3 pgpool[2873]: [458-2] 2016-06-06 09:36:26: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:36:26 otp3 pgpool[2872]: [683-1] 2016-06-06 09:36:26: pid 2872: DEBUG: processing frontend response Jun 6 09:36:26 otp3 pgpool[2872]: [683-2] 2016-06-06 09:36:26: pid 2872: DETAIL: received kind 'S'(53) from frontend Jun 6 09:36:26 otp3 pgpool[2872]: [683-3] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_proto_modules.c:2188 Jun 6 09:36:26 otp3 pgpool[2873]: [459-1] 2016-06-06 09:36:26: pid 2873: DEBUG: pool_write: to backend: kind:S Jun 6 09:36:26 otp3 pgpool[2872]: [684-1] 2016-06-06 09:36:26: pid 2872: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:36:26 otp3 pgpool[2873]: [459-2] 2016-06-06 09:36:26: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:36:26 otp3 pgpool[2872]: [684-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:280 Jun 6 09:36:26 otp3 pgpool[2872]: [685-1] 2016-06-06 09:36:26: pid 2872: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:36:26 otp3 pgpool[2872]: [685-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:269 Jun 6 09:36:26 otp3 pgpool[2873]: [460-1] 2016-06-06 09:36:26: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:26 otp3 pgpool[2872]: [686-1] 2016-06-06 09:36:26: pid 2872: DEBUG: session context: setting query in progress. DONE Jun 6 09:36:26 otp3 pgpool[2872]: [686-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:208 Jun 6 09:36:26 otp3 pgpool[2873]: [460-2] 2016-06-06 09:36:26: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:36:26 otp3 pgpool[2872]: [687-1] 2016-06-06 09:36:26: pid 2872: DEBUG: pool_write: to backend: kind:S Jun 6 09:36:26 otp3 pgpool[2872]: [687-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:36:26 otp3 pgpool[2872]: [688-1] 2016-06-06 09:36:26: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:26 otp3 pgpool[2872]: [688-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:26 otp3 pgpool[2874]: [55-3] 2016-06-06 09:36:26: pid 2874: LOCATION: pool_auth.c:1161 Jun 6 09:36:26 otp3 pgpool[2874]: [56-1] 2016-06-06 09:36:26: pid 2874: DEBUG: reading message length Jun 6 09:36:26 otp3 pgpool[2874]: [56-2] 2016-06-06 09:36:26: pid 2874: DETAIL: master slot: 1 length: 30 Jun 6 09:36:26 otp3 pgpool[2874]: [56-3] 2016-06-06 09:36:26: pid 2874: LOCATION: pool_auth.c:1172 Jun 6 09:36:26 otp3 pgpool[2874]: [57-1] 2016-06-06 09:36:26: pid 2874: DEBUG: process parameter status Jun 6 09:36:26 otp3 pgpool[2874]: [57-2] 2016-06-06 09:36:26: pid 2874: DETAIL: backend:0 name:"server_encoding" value:"SQL_ASCII" Jun 6 09:36:26 otp3 pgpool[2874]: [57-3] 2016-06-06 09:36:26: pid 2874: LOCATION: pool_process_query.c:921 Jun 6 09:36:26 otp3 pgpool[2874]: [58-1] 2016-06-06 09:36:26: pid 2874: DEBUG: process parameter status Jun 6 09:36:26 otp3 pgpool[2874]: [58-2] 2016-06-06 09:36:26: pid 2874: DETAIL: backend:1 name:"server_encoding" value:"SQL_ASCII" Jun 6 09:36:26 otp3 pgpool[2874]: [58-3] 2016-06-06 09:36:26: pid 2874: LOCATION: pool_process_query.c:921 Jun 6 09:36:26 otp3 pgpool[2874]: [59-1] 2016-06-06 09:36:26: pid 2874: DEBUG: reading message length Jun 6 09:36:26 otp3 pgpool[2874]: [59-2] 2016-06-06 09:36:26: pid 2874: DETAIL: master slot: 0 length: 26 Jun 6 09:36:26 otp3 pgpool[2874]: [59-3] 2016-06-06 09:36:26: pid 2874: LOCATION: pool_auth.c:1161 Jun 6 09:36:26 otp3 pgpool[2874]: [60-1] 2016-06-06 09:36:26: pid 2874: DEBUG: reading message length Jun 6 09:36:26 otp3 pgpool[2874]: [60-2] 2016-06-06 09:36:26: pid 2874: DETAIL: master slot: 1 length: 26 Jun 6 09:36:26 otp3 pgpool[2874]: [60-3] 2016-06-06 09:36:26: pid 2874: LOCATION: pool_auth.c:1172 Jun 6 09:36:26 otp3 pgpool[2874]: [61-1] 2016-06-06 09:36:26: pid 2874: DEBUG: process parameter status Jun 6 09:36:26 otp3 pgpool[2874]: [61-2] 2016-06-06 09:36:26: pid 2874: DETAIL: backend:0 name:"server_version" value:"9.3.12" Jun 6 09:36:26 otp3 pgpool[2874]: [61-3] 2016-06-06 09:36:26: pid 2874: LOCATION: pool_process_query.c:921 Jun 6 09:36:26 otp3 pgpool[2874]: [62-1] 2016-06-06 09:36:26: pid 2874: DEBUG: process parameter status Jun 6 09:36:26 otp3 pgpool[2874]: [62-2] 2016-06-06 09:36:26: pid 2874: DETAIL: backend:1 name:"server_version" value:"9.3.12" Jun 6 09:36:26 otp3 pgpool[2874]: [62-3] 2016-06-06 09:36:26: pid 2874: LOCATION: pool_process_query.c:921 Jun 6 09:36:26 otp3 pgpool[2874]: [63-1] 2016-06-06 09:36:26: pid 2874: DEBUG: reading message length Jun 6 09:36:26 otp3 pgpool[2874]: [63-2] 2016-06-06 09:36:26: pid 2874: DETAIL: master slot: 0 length: 38 Jun 6 09:36:26 otp3 pgpool[2874]: [63-3] 2016-06-06 09:36:26: pid 2874: LOCATION: pool_auth.c:1161 Jun 6 09:36:26 otp3 pgpool[2874]: [64-1] 2016-06-06 09:36:26: pid 2874: DEBUG: reading message length Jun 6 09:36:26 otp3 pgpool[2874]: [64-2] 2016-06-06 09:36:26: pid 2874: DETAIL: master slot: 1 length: 38 Jun 6 09:36:26 otp3 pgpool[2874]: [64-3] 2016-06-06 09:36:26: pid 2874: LOCATION: pool_auth.c:1172 Jun 6 09:36:26 otp3 pgpool[2874]: [65-1] 2016-06-06 09:36:26: pid 2874: DEBUG: process parameter status Jun 6 09:36:26 otp3 pgpool[2874]: [65-2] 2016-06-06 09:36:26: pid 2874: DETAIL: backend:0 name:"session_authorization" value:"sparrowdesk" Jun 6 09:36:26 otp3 pgpool[2874]: [65-3] 2016-06-06 09:36:26: pid 2874: LOCATION: pool_process_query.c:921 Jun 6 09:36:26 otp3 pgpool[2874]: [66-1] 2016-06-06 09:36:26: pid 2874: DEBUG: process parameter status Jun 6 09:36:26 otp3 pgpool[2874]: [66-2] 2016-06-06 09:36:26: pid 2874: DETAIL: backend:1 name:"session_authorization" value:"sparrowdesk" Jun 6 09:36:26 otp3 pgpool[2874]: [66-3] 2016-06-06 09:36:26: pid 2874: LOCATION: pool_process_query.c:921 Jun 6 09:36:26 otp3 pgpool[2874]: [67-1] 2016-06-06 09:36:26: pid 2874: DEBUG: reading message length Jun 6 09:36:26 otp3 pgpool[2874]: [67-2] 2016-06-06 09:36:26: pid 2874: DETAIL: master slot: 0 length: 35 Jun 6 09:36:26 otp3 pgpool[2874]: [67-3] 2016-06-06 09:36:26: pid 2874: LOCATION: pool_auth.c:1161 Jun 6 09:36:26 otp3 pgpool[2874]: [68-1] 2016-06-06 09:36:26: pid 2874: DEBUG: reading message length Jun 6 09:36:26 otp3 pgpool[2874]: [68-2] 2016-06-06 09:36:26: pid 2874: DETAIL: master slot: 1 length: 35 Jun 6 09:36:26 otp3 pgpool[2874]: [68-3] 2016-06-06 09:36:26: pid 2874: LOCATION: pool_auth.c:1172 Jun 6 09:36:26 otp3 pgpool[2874]: [69-1] 2016-06-06 09:36:26: pid 2874: DEBUG: process parameter status Jun 6 09:36:26 otp3 pgpool[2874]: [69-2] 2016-06-06 09:36:26: pid 2874: DETAIL: backend:0 name:"standard_conforming_strings" value:"on" Jun 6 09:36:26 otp3 pgpool[2874]: [69-3] 2016-06-06 09:36:26: pid 2874: LOCATION: pool_process_query.c:921 Jun 6 09:36:26 otp3 pgpool[2873]: [461-1] 2016-06-06 09:36:26: pid 2873: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:36:26 otp3 pgpool[2873]: [461-2] 2016-06-06 09:36:26: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:36:26 otp3 pgpool[2872]: [689-1] 2016-06-06 09:36:26: pid 2872: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:36:26 otp3 pgpool[2872]: [689-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_stream.c:190 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_process_query.c:3365 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: processing backend response Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DETAIL: received kind '1'(31) from backend Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_proto_modules.c:2424 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: called by pool_add_sent_message: sent message: address: 2406d98 kind: P name: == Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:436 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: adding sent message to list Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DETAIL: prepared statement "" already exists Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:516 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: called by pool_sent_message_destroy: sent message: address: 2406c80 kind: P name: == Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:436 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: checking if query context can be safely destroyed Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DETAIL: query context 0x802482830 is still used 2 times. query:"SELECT 1" Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:873 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: SimpleForwardToFrontend: packet:1 length:0 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_process_query.c:792 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: session context: setting command success. DONE Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:741 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:219 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: processing frontend response Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DETAIL: received kind 'B'(42) from frontend Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_proto_modules.c:2188 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:280 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:269 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: Bind: checking strict query Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_proto_modules.c:1211 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: Bind: checking insert lock Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_proto_modules.c:1221 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: Bind: waiting for master completing the query Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_proto_modules.c:1237 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: session context: setting query in progress. DONE Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:208 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_query_context.c:854 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: pool_write: to backend: kind:B Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: pool_write: to backend: kind:H Jun 6 09:36:26 otp3 pgpool[2875]: [130-1] 2016-06-06 09:36:26: pid 2875: DEBUG: detect error: kind: 1 Jun 6 09:36:26 otp3 pgpool[2875]: [130-2] 2016-06-06 09:36:26: pid 2875: LOCATION: pool_process_query.c:4166 Jun 6 09:36:26 otp3 pgpool[2872]: [690-1] 2016-06-06 09:36:26: pid 2872: DEBUG: reading backend data packet kind Jun 6 09:36:26 otp3 pgpool[2872]: [690-2] 2016-06-06 09:36:26: pid 2872: DETAIL: backend:0 of 2 kind = 'Z' Jun 6 09:36:26 otp3 pgpool[2872]: [690-3] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_process_query.c:3349 Jun 6 09:36:26 otp3 pgpool[2872]: [691-1] 2016-06-06 09:36:26: pid 2872: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:36:26 otp3 pgpool[2872]: [691-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_process_query.c:3365 Jun 6 09:36:26 otp3 pgpool[2872]: [692-1] 2016-06-06 09:36:26: pid 2872: DEBUG: processing backend response Jun 6 09:36:26 otp3 pgpool[2872]: [692-2] 2016-06-06 09:36:26: pid 2872: DETAIL: received kind 'Z'(5a) from backend Jun 6 09:36:26 otp3 pgpool[2872]: [692-3] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_proto_modules.c:2424 Jun 6 09:36:26 otp3 pgpool[2872]: [693-1] 2016-06-06 09:36:26: pid 2872: DEBUG: processing backend response Jun 6 09:36:26 otp3 pgpool[2872]: [693-2] 2016-06-06 09:36:26: pid 2872: DETAIL: Ready For Query received Jun 6 09:36:26 otp3 pgpool[2872]: [693-3] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_proto_modules.c:2442 Jun 6 09:36:26 otp3 pgpool[2872]: [694-1] 2016-06-06 09:36:26: pid 2872: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:36:26 otp3 pgpool[2872]: [694-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:310 Jun 6 09:36:26 otp3 pgpool[2872]: [695-1] 2016-06-06 09:36:26: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:26 otp3 pgpool[2872]: [695-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:26 otp3 pgpool[2872]: [696-1] 2016-06-06 09:36:26: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:26 otp3 pgpool[2872]: [696-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:26 otp3 pgpool[2872]: [697-1] 2016-06-06 09:36:26: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:26 otp3 pgpool[2872]: [697-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:26 otp3 pgpool[2872]: [698-1] 2016-06-06 09:36:26: pid 2872: DEBUG: reading message length Jun 6 09:36:26 otp3 pgpool[2872]: [698-2] 2016-06-06 09:36:26: pid 2872: DETAIL: slot: 0 length: 5 Jun 6 09:36:26 otp3 pgpool[2872]: [698-3] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_auth.c:1107 Jun 6 09:36:26 otp3 pgpool[2872]: [699-1] 2016-06-06 09:36:26: pid 2872: DEBUG: processing ReadyForQuery Jun 6 09:36:26 otp3 pgpool[2872]: [699-2] 2016-06-06 09:36:26: pid 2872: DETAIL: transaction state 'I'(49) Jun 6 09:36:26 otp3 pgpool[2872]: [699-3] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_proto_modules.c:1612 Jun 6 09:36:26 otp3 pgpool[2872]: [700-1] 2016-06-06 09:36:26: pid 2872: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:26 otp3 pgpool[2872]: [700-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:219 Jun 6 09:36:26 otp3 pgpool[2873]: [462-1] 2016-06-06 09:36:26: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:36:26 otp3 pgpool[2873]: [462-2] 2016-06-06 09:36:26: pid 2873: DETAIL: backend:0 of 2 kind = 'Z' Jun 6 09:36:26 otp3 pgpool[2873]: [462-3] 2016-06-06 09:36:26: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:36:26 otp3 pgpool[2873]: [463-1] 2016-06-06 09:36:26: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:36:26 otp3 pgpool[2873]: [463-2] 2016-06-06 09:36:26: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:36:26 otp3 pgpool[2873]: [464-1] 2016-06-06 09:36:26: pid 2873: DEBUG: processing backend response Jun 6 09:36:26 otp3 pgpool[2873]: [464-2] 2016-06-06 09:36:26: pid 2873: DETAIL: received kind 'Z'(5a) from backend Jun 6 09:36:26 otp3 pgpool[2873]: [464-3] 2016-06-06 09:36:26: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:36:26 otp3 pgpool[2873]: [465-1] 2016-06-06 09:36:26: pid 2873: DEBUG: processing backend response Jun 6 09:36:26 otp3 pgpool[2873]: [465-2] 2016-06-06 09:36:26: pid 2873: DETAIL: Ready For Query received Jun 6 09:36:26 otp3 pgpool[2873]: [465-3] 2016-06-06 09:36:26: pid 2873: LOCATION: pool_proto_modules.c:2442 Jun 6 09:36:26 otp3 pgpool[2873]: [466-1] 2016-06-06 09:36:26: pid 2873: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:36:26 otp3 pgpool[2873]: [466-2] 2016-06-06 09:36:26: pid 2873: LOCATION: pool_session_context.c:310 Jun 6 09:36:26 otp3 pgpool[2873]: [467-1] 2016-06-06 09:36:26: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:26 otp3 pgpool[2873]: [467-2] 2016-06-06 09:36:26: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:36:26 otp3 pgpool[2873]: [468-1] 2016-06-06 09:36:26: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:26 otp3 pgpool[2873]: [468-2] 2016-06-06 09:36:26: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:36:26 otp3 pgpool[2873]: [469-1] 2016-06-06 09:36:26: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:26 otp3 pgpool[2873]: [469-2] 2016-06-06 09:36:26: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: waiting for query response Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DETAIL: waiting for backend:0 to complete the query Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_process_query.c:479 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2875: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2875: LOCATION: pool_stream.c:190 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: DEBUG: pool_read: read 337 bytes from backend 0 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: LOCATION: pool_stream.c:190 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: DEBUG: authentication backend Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: DETAIL: trying md5 authentication Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: LOCATION: pool_auth.c:239 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: DEBUG: performing md5 authentication Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: DETAIL: DB node id: 1 salt: 986af9a8 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: LOCATION: pool_auth.c:855 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: DEBUG: pool_write: to backend: kind:p Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DETAIL: backend:0 of 2 kind = '2' Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DEBUG: processing backend response Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DETAIL: received kind '2'(32) from backend Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DEBUG: called by pool_add_sent_message: sent message: address: 2406d98 kind: B name: == Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: LOCATION: pool_session_context.c:436 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DEBUG: adding sent message to list Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DETAIL: portal "" already exists Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: LOCATION: pool_session_context.c:512 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DEBUG: called by pool_sent_message_destroy: sent message: address: 2406c80 kind: B name: == Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: LOCATION: pool_session_context.c:436 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DEBUG: SimpleForwardToFrontend: packet:2 length:0 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: LOCATION: pool_process_query.c:792 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DEBUG: session context: setting command success. DONE Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: LOCATION: pool_session_context.c:741 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DEBUG: processing frontend response Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DETAIL: received kind 'D'(44) from frontend Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DEBUG: Describe: waiting for master completing the query Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: LOCATION: pool_proto_modules.c:1310 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: LOCATION: pool_query_context.c:854 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DEBUG: pool_write: to backend: kind:D Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DEBUG: waiting for query response Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DETAIL: waiting for backend:0 to complete the query Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: LOCATION: pool_process_query.c:479 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_stream.c:190 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: reading backend data packet kind Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DETAIL: backend:0 of 2 kind = '2' Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_process_query.c:3349 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_process_query.c:3365 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: processing backend response Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DETAIL: received kind '2'(32) from backend Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_proto_modules.c:2424 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: called by pool_add_sent_message: sent message: address: 2406c80 kind: B name: == Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:436 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: adding sent message to list Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DETAIL: portal "" already exists Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:512 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: called by pool_sent_message_destroy: sent message: address: 2406d18 kind: B name: == Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:436 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:219 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: session context: setting query in progress. DONE Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:208 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: SimpleForwardToFrontend: packet:2 length:0 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_process_query.c:792 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: session context: setting command success. DONE Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:741 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:219 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: processing frontend response Jun 6 09:36:26 otp3 pgpool[2872]: [701-1] 2016-06-06 09:36:26: pid 2872: DEBUG: processing frontend response Jun 6 09:36:26 otp3 pgpool[2872]: [701-2] 2016-06-06 09:36:26: pid 2872: DETAIL: received kind 'P'(50) from frontend Jun 6 09:36:26 otp3 pgpool[2872]: [701-3] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_proto_modules.c:2188 Jun 6 09:36:26 otp3 pgpool[2872]: [702-1] 2016-06-06 09:36:26: pid 2872: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:36:26 otp3 pgpool[2872]: [702-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:280 Jun 6 09:36:26 otp3 pgpool[2872]: [703-1] 2016-06-06 09:36:26: pid 2872: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:36:26 otp3 pgpool[2872]: [703-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:269 Jun 6 09:36:26 otp3 pgpool[2872]: [704-1] 2016-06-06 09:36:26: pid 2872: DEBUG: Parse: statement name <> Jun 6 09:36:26 otp3 pgpool[2874]: [70-1] 2016-06-06 09:36:26: pid 2874: DEBUG: process parameter status Jun 6 09:36:26 otp3 pgpool[2872]: [704-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_proto_modules.c:817 Jun 6 09:36:26 otp3 pgpool[2872]: [705-1] 2016-06-06 09:36:26: pid 2872: DEBUG: session context: setting query in progress. DONE Jun 6 09:36:26 otp3 pgpool[2872]: [705-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:208 Jun 6 09:36:26 otp3 pgpool[2872]: [706-1] 2016-06-06 09:36:26: pid 2872: DEBUG: pool_write: to backend: kind:S Jun 6 09:36:26 otp3 pgpool[2872]: [706-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:36:26 otp3 pgpool[2872]: [707-1] 2016-06-06 09:36:26: pid 2872: DEBUG: pool_write: to backend: kind:H Jun 6 09:36:26 otp3 pgpool[2872]: [707-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:36:26 otp3 pgpool[2873]: [470-1] 2016-06-06 09:36:26: pid 2873: DEBUG: reading message length Jun 6 09:36:26 otp3 pgpool[2873]: [470-2] 2016-06-06 09:36:26: pid 2873: DETAIL: slot: 0 length: 5 Jun 6 09:36:26 otp3 pgpool[2873]: [470-3] 2016-06-06 09:36:26: pid 2873: LOCATION: pool_auth.c:1107 Jun 6 09:36:26 otp3 pgpool[2873]: [471-1] 2016-06-06 09:36:26: pid 2873: DEBUG: processing ReadyForQuery Jun 6 09:36:26 otp3 pgpool[2873]: [471-2] 2016-06-06 09:36:26: pid 2873: DETAIL: transaction state 'I'(49) Jun 6 09:36:26 otp3 pgpool[2873]: [471-3] 2016-06-06 09:36:26: pid 2873: LOCATION: pool_proto_modules.c:1612 Jun 6 09:36:26 otp3 pgpool[2872]: [708-1] 2016-06-06 09:36:26: pid 2872: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:36:26 otp3 pgpool[2872]: [708-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_stream.c:190 Jun 6 09:36:26 otp3 pgpool[2872]: [709-1] 2016-06-06 09:36:26: pid 2872: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:36:26 otp3 pgpool[2872]: [709-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:310 Jun 6 09:36:26 otp3 pgpool[2872]: [710-1] 2016-06-06 09:36:26: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:26 otp3 pgpool[2872]: [710-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:26 otp3 pgpool[2872]: [711-1] 2016-06-06 09:36:26: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:26 otp3 pgpool[2872]: [711-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:26 otp3 pgpool[2872]: [712-1] 2016-06-06 09:36:26: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:26 otp3 pgpool[2872]: [712-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:26 otp3 pgpool[2872]: [713-1] 2016-06-06 09:36:26: pid 2872: DEBUG: reading message length Jun 6 09:36:26 otp3 pgpool[2872]: [713-2] 2016-06-06 09:36:26: pid 2872: DETAIL: slot: 0 length: 5 Jun 6 09:36:26 otp3 pgpool[2872]: [713-3] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_auth.c:1107 Jun 6 09:36:26 otp3 pgpool[2872]: [714-1] 2016-06-06 09:36:26: pid 2872: DEBUG: processing ReadyForQuery Jun 6 09:36:26 otp3 pgpool[2872]: [714-2] 2016-06-06 09:36:26: pid 2872: DETAIL: transaction state 'I'(49) Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DETAIL: received kind 'D'(44) from frontend Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_proto_modules.c:2188 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:280 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:269 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: Describe: waiting for master completing the query Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_proto_modules.c:1310 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DEBUG: pool_read: read 976 bytes from backend 0 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: session context: setting query in progress. DONE Jun 6 09:36:26 otp3 pgpool[2875]: [131-1] 2016-06-06 09:36:26: pid 2875: DEBUG: pool_send_and_wait: pool_set_sync_map: 1 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:208 Jun 6 09:36:26 otp3 pgpool[2872]: [714-3] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_proto_modules.c:1612 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_query_context.c:854 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: pool_write: to backend: kind:D Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DETAIL: backend:0 of 2 kind = 'T' Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:36:26 otp3 pgpool[2872]: [715-1] 2016-06-06 09:36:26: pid 2872: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: pool_write: to backend: kind:H Jun 6 09:36:26 otp3 pgpool[2872]: [715-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:219 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: waiting for query response Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DETAIL: waiting for backend:0 to complete the query Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_process_query.c:479 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DEBUG: processing backend response Jun 6 09:36:26 otp3 pgpool[2872]: [716-1] 2016-06-06 09:36:26: pid 2872: DEBUG: session context: setting query in progress. DONE Jun 6 09:36:26 otp3 pgpool[2872]: [716-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:208 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DETAIL: received kind 'T'(54) from backend Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DEBUG: SimpleForwardToFrontend: packet:T length:971 Jun 6 09:36:26 otp3 pgpool[2872]: [717-1] 2016-06-06 09:36:26: pid 2872: DEBUG: Parse: waiting for master completing the query Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: LOCATION: pool_process_query.c:792 Jun 6 09:36:26 otp3 pgpool[2872]: [717-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_proto_modules.c:1064 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DEBUG: processing frontend response Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DETAIL: received kind 'E'(45) from frontend Jun 6 09:36:26 otp3 pgpool[2872]: [718-1] 2016-06-06 09:36:26: pid 2872: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:36:26 otp3 pgpool[2872]: [718-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_query_context.c:854 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:36:26 otp3 pgpool[2872]: [719-1] 2016-06-06 09:36:26: pid 2872: DEBUG: pool_write: to backend: kind:P Jun 6 09:36:26 otp3 pgpool[2872]: [719-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:36:26 otp3 pgpool[2872]: [720-1] 2016-06-06 09:36:26: pid 2872: DEBUG: pool_write: to backend: kind:H Jun 6 09:36:27 otp3 pgpool[2872]: [720-2] 2016-06-06 09:36:26: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:36:27 otp3 pgpool[2875]: [131-2] 2016-06-06 09:36:26: pid 2875: LOCATION: pool_query_context.c:854 Jun 6 09:36:27 otp3 pgpool[2872]: [721-1] 2016-06-06 09:36:27: pid 2872: DEBUG: waiting for query response Jun 6 09:36:27 otp3 pgpool[2872]: [721-2] 2016-06-06 09:36:27: pid 2872: DETAIL: waiting for backend:0 to complete the query Jun 6 09:36:27 otp3 pgpool[2872]: [721-3] 2016-06-06 09:36:27: pid 2872: LOCATION: pool_process_query.c:479 Jun 6 09:36:26 otp3 pgpool[2873]: [472-1] 2016-06-06 09:36:26: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:27 otp3 pgpool[2873]: [472-2] 2016-06-06 09:36:26: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:36:27 otp3 pgpool[2875]: [132-1] 2016-06-06 09:36:27: pid 2875: DEBUG: pool_write: to backend: kind:P Jun 6 09:36:27 otp3 pgpool[2875]: [132-2] 2016-06-06 09:36:27: pid 2875: LOCATION: pool_stream.c:431 Jun 6 09:36:26 otp3 pgpool[2874]: [70-2] 2016-06-06 09:36:26: pid 2874: DETAIL: backend:1 name:"standard_conforming_strings" value:"on" Jun 6 09:36:26 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:36:27 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:36:27 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:36:27 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: LOCATION: pool_query_context.c:854 Jun 6 09:36:27 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DEBUG: pool_write: to backend: kind:E Jun 6 09:36:27 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:36:27 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:36:27 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:36:27 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DEBUG: waiting for query response Jun 6 09:36:27 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DETAIL: waiting for backend:0 to complete the query Jun 6 09:36:27 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: LOCATION: pool_process_query.c:479 Jun 6 09:36:27 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: DEBUG: pool_read: read 337 bytes from backend 1 Jun 6 09:36:27 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: LOCATION: pool_stream.c:190 Jun 6 09:36:27 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: DEBUG: reading message length Jun 6 09:36:27 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: DETAIL: master slot: 0 length: 22 Jun 6 09:36:27 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: LOCATION: pool_auth.c:1161 Jun 6 09:36:27 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: DEBUG: reading message length Jun 6 09:36:27 otp3 pgpool[2874]: [70-3] 2016-06-06 09:36:26: pid 2874: LOCATION: pool_process_query.c:921 Jun 6 09:36:27 otp3 pgpool[2875]: [133-1] 2016-06-06 09:36:27: pid 2875: DEBUG: pool_write: to backend: kind:H Jun 6 09:36:27 otp3 pgpool[2875]: [133-2] 2016-06-06 09:36:27: pid 2875: LOCATION: pool_stream.c:431 Jun 6 09:36:27 otp3 pgpool[2875]: [134-1] 2016-06-06 09:36:27: pid 2875: DEBUG: waiting for query response Jun 6 09:36:27 otp3 pgpool[2875]: [134-2] 2016-06-06 09:36:27: pid 2875: DETAIL: waiting for backend:1 to complete the query Jun 6 09:36:27 otp3 pgpool[2875]: [134-3] 2016-06-06 09:36:27: pid 2875: LOCATION: pool_process_query.c:479 Jun 6 09:36:27 otp3 pgpool[2874]: [71-1] 2016-06-06 09:36:27: pid 2874: DEBUG: reading message length Jun 6 09:36:27 otp3 pgpool[2874]: [71-2] 2016-06-06 09:36:27: pid 2874: DETAIL: master slot: 0 length: 26 Jun 6 09:36:27 otp3 pgpool[2874]: [71-3] 2016-06-06 09:36:27: pid 2874: LOCATION: pool_auth.c:1161 Jun 6 09:36:27 otp3 pgpool[2874]: [72-1] 2016-06-06 09:36:27: pid 2874: DEBUG: reading message length Jun 6 09:36:27 otp3 pgpool[2874]: [72-2] 2016-06-06 09:36:27: pid 2874: DETAIL: master slot: 1 length: 26 Jun 6 09:36:27 otp3 pgpool[2874]: [72-3] 2016-06-06 09:36:27: pid 2874: LOCATION: pool_auth.c:1172 Jun 6 09:36:27 otp3 pgpool[2874]: [73-1] 2016-06-06 09:36:27: pid 2874: DEBUG: process parameter status Jun 6 09:36:27 otp3 pgpool[2874]: [73-2] 2016-06-06 09:36:27: pid 2874: DETAIL: backend:0 name:"TimeZone" value:"Asia/Kolkata" Jun 6 09:36:27 otp3 pgpool[2874]: [73-3] 2016-06-06 09:36:27: pid 2874: LOCATION: pool_process_query.c:921 Jun 6 09:36:27 otp3 pgpool[2874]: [74-1] 2016-06-06 09:36:27: pid 2874: DEBUG: process parameter status Jun 6 09:36:27 otp3 pgpool[2874]: [74-2] 2016-06-06 09:36:27: pid 2874: DETAIL: backend:1 name:"TimeZone" value:"Asia/Kolkata" Jun 6 09:36:27 otp3 pgpool[2874]: [74-3] 2016-06-06 09:36:27: pid 2874: LOCATION: pool_process_query.c:921 Jun 6 09:36:27 otp3 pgpool[2874]: [75-1] 2016-06-06 09:36:27: pid 2874: DEBUG: reading message length Jun 6 09:36:27 otp3 pgpool[2874]: [75-2] 2016-06-06 09:36:27: pid 2874: DETAIL: slot: 0 length: 12 Jun 6 09:36:27 otp3 pgpool[2874]: [75-3] 2016-06-06 09:36:27: pid 2874: LOCATION: pool_auth.c:1107 Jun 6 09:36:27 otp3 pgpool[2874]: [76-1] 2016-06-06 09:36:27: pid 2874: DEBUG: reading message length Jun 6 09:36:27 otp3 pgpool[2874]: [76-2] 2016-06-06 09:36:27: pid 2874: DETAIL: slot: 1 length: 12 Jun 6 09:36:27 otp3 pgpool[2874]: [76-3] 2016-06-06 09:36:27: pid 2874: LOCATION: pool_auth.c:1126 Jun 6 09:36:27 otp3 pgpool[2874]: [77-1] 2016-06-06 09:36:27: pid 2874: DEBUG: authentication backend Jun 6 09:36:27 otp3 pgpool[2874]: [77-2] 2016-06-06 09:36:27: pid 2874: DETAIL: cp->info[i]:0x8007ae000 pid:97122 Jun 6 09:36:27 otp3 pgpool[2874]: [77-3] 2016-06-06 09:36:27: pid 2874: LOCATION: pool_auth.c:391 Jun 6 09:36:27 otp3 pgpool[2874]: [78-1] 2016-06-06 09:36:27: pid 2874: DEBUG: authentication backend Jun 6 09:36:27 otp3 pgpool[2874]: [78-2] 2016-06-06 09:36:27: pid 2874: DETAIL: cp->info[i]:0x8007ae088 pid:83418 Jun 6 09:36:27 otp3 pgpool[2874]: [78-3] 2016-06-06 09:36:27: pid 2874: LOCATION: pool_auth.c:391 Jun 6 09:36:27 otp3 pgpool[2874]: [79-1] 2016-06-06 09:36:27: pid 2874: DEBUG: sending backend key data Jun 6 09:36:27 otp3 pgpool[2874]: [79-2] 2016-06-06 09:36:27: pid 2874: DETAIL: send pid 83418 to frontend Jun 6 09:36:27 otp3 pgpool[2874]: [79-3] 2016-06-06 09:36:27: pid 2874: LOCATION: pool_auth.c:519 Jun 6 09:36:27 otp3 pgpool[2874]: [80-1] 2016-06-06 09:36:27: pid 2874: DEBUG: selecting load balance node Jun 6 09:36:27 otp3 pgpool[2874]: [80-2] 2016-06-06 09:36:27: pid 2874: DETAIL: selected backend id is 0 Jun 6 09:36:27 otp3 pgpool[2872]: [722-1] 2016-06-06 09:36:27: pid 2872: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:36:27 otp3 pgpool[2872]: [722-2] 2016-06-06 09:36:27: pid 2872: LOCATION: pool_stream.c:190 Jun 6 09:36:27 otp3 pgpool[2872]: [723-1] 2016-06-06 09:36:27: pid 2872: DEBUG: detect error: kind: 1 Jun 6 09:36:27 otp3 pgpool[2872]: [723-2] 2016-06-06 09:36:27: pid 2872: LOCATION: pool_process_query.c:4166 Jun 6 09:36:27 otp3 pgpool[2873]: [473-1] 2016-06-06 09:36:27: pid 2873: DEBUG: processing frontend response Jun 6 09:36:27 otp3 pgpool[2874]: [80-3] 2016-06-06 09:36:27: pid 2874: LOCATION: child.c:1720 Jun 6 09:36:27 otp3 pgpool[2874]: [81-1] 2016-06-06 09:36:27: pid 2874: DEBUG: initializing session context Jun 6 09:36:27 otp3 pgpool[2872]: [724-1] 2016-06-06 09:36:27: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:27 otp3 pgpool[2872]: [724-2] 2016-06-06 09:36:27: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:27 otp3 pgpool[2872]: [725-1] 2016-06-06 09:36:27: pid 2872: DEBUG: reading backend data packet kind Jun 6 09:36:27 otp3 pgpool[2872]: [725-2] 2016-06-06 09:36:27: pid 2872: DETAIL: backend:0 of 2 kind = '1' Jun 6 09:36:27 otp3 pgpool[2872]: [725-3] 2016-06-06 09:36:27: pid 2872: LOCATION: pool_process_query.c:3349 Jun 6 09:36:27 otp3 pgpool[2872]: [726-1] 2016-06-06 09:36:27: pid 2872: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:36:27 otp3 pgpool[2872]: [726-2] 2016-06-06 09:36:27: pid 2872: LOCATION: pool_process_query.c:3365 Jun 6 09:36:27 otp3 pgpool[2872]: [727-1] 2016-06-06 09:36:27: pid 2872: DEBUG: processing backend response Jun 6 09:36:27 otp3 pgpool[2872]: [727-2] 2016-06-06 09:36:27: pid 2872: DETAIL: received kind '1'(31) from backend Jun 6 09:36:27 otp3 pgpool[2874]: [81-2] 2016-06-06 09:36:27: pid 2874: DETAIL: selected load balancing node: 0 Jun 6 09:36:27 otp3 pgpool[2872]: [727-3] 2016-06-06 09:36:27: pid 2872: LOCATION: pool_proto_modules.c:2424 Jun 6 09:36:27 otp3 pgpool[2872]: [728-1] 2016-06-06 09:36:27: pid 2872: DEBUG: called by pool_add_sent_message: sent message: address: 2406d18 kind: P name: == Jun 6 09:36:27 otp3 pgpool[2872]: [728-2] 2016-06-06 09:36:27: pid 2872: LOCATION: pool_session_context.c:436 Jun 6 09:36:27 otp3 pgpool[2873]: [473-2] 2016-06-06 09:36:27: pid 2873: DETAIL: received kind 'P'(50) from frontend Jun 6 09:36:27 otp3 pgpool[2872]: [729-1] 2016-06-06 09:36:27: pid 2872: DEBUG: adding sent message to list Jun 6 09:36:28 otp3 pgpool[2873]: [473-3] 2016-06-06 09:36:27: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:36:27 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: DETAIL: master slot: 1 length: 22 Jun 6 09:36:29 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: LOCATION: pool_auth.c:1172 Jun 6 09:36:29 otp3 pgpool[2872]: [729-2] 2016-06-06 09:36:27: pid 2872: DETAIL: prepared statement "" already exists Jun 6 09:36:29 otp3 pgpool[2872]: [729-3] 2016-06-06 09:36:27: pid 2872: LOCATION: pool_session_context.c:516 Jun 6 09:36:29 otp3 pgpool[2873]: [474-1] 2016-06-06 09:36:29: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:36:29 otp3 pgpool[2872]: [730-1] 2016-06-06 09:36:29: pid 2872: DEBUG: called by pool_sent_message_destroy: sent message: address: 2406d98 kind: P name: == Jun 6 09:36:29 otp3 pgpool[2872]: [730-2] 2016-06-06 09:36:29: pid 2872: LOCATION: pool_session_context.c:436 Jun 6 09:36:29 otp3 pgpool[2873]: [474-2] 2016-06-06 09:36:29: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:36:29 otp3 pgpool[2872]: [731-1] 2016-06-06 09:36:29: pid 2872: DEBUG: checking if query context can be safely destroyed Jun 6 09:36:27 otp3 pgpool[2874]: [81-3] 2016-06-06 09:36:27: pid 2874: LOCATION: pool_session_context.c:99 Jun 6 09:36:29 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: DEBUG: process parameter status Jun 6 09:36:29 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: DETAIL: backend:0 name:"application_name" value:"" Jun 6 09:36:29 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: LOCATION: pool_process_query.c:921 Jun 6 09:36:29 otp3 pgpool[2872]: [731-2] 2016-06-06 09:36:29: pid 2872: DETAIL: query context 0x802481830 is still used 2 times. query:"select welcomemes0_.id as id1_30_, welcomemes0_.heading as heading2_30_, welcomemes0_.message as message3_30_ from welcome_message welcomemes0_" Jun 6 09:36:29 otp3 pgpool[2872]: [731-3] 2016-06-06 09:36:29: pid 2872: LOCATION: pool_session_context.c:873 Jun 6 09:36:29 otp3 pgpool[2872]: [732-1] 2016-06-06 09:36:29: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:29 otp3 pgpool[2872]: [732-2] 2016-06-06 09:36:29: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:29 otp3 pgpool[2872]: [733-1] 2016-06-06 09:36:29: pid 2872: DEBUG: SimpleForwardToFrontend: packet:1 length:0 Jun 6 09:36:29 otp3 pgpool[2872]: [733-2] 2016-06-06 09:36:29: pid 2872: LOCATION: pool_process_query.c:792 Jun 6 09:36:29 otp3 pgpool[2872]: [734-1] 2016-06-06 09:36:29: pid 2872: DEBUG: session context: setting command success. DONE Jun 6 09:36:29 otp3 pgpool[2872]: [734-2] 2016-06-06 09:36:29: pid 2872: LOCATION: pool_session_context.c:741 Jun 6 09:36:29 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: DEBUG: process parameter status Jun 6 09:36:29 otp3 pgpool[2872]: [735-1] 2016-06-06 09:36:29: pid 2872: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:29 otp3 pgpool[2872]: [735-2] 2016-06-06 09:36:29: pid 2872: LOCATION: pool_session_context.c:219 Jun 6 09:36:29 otp3 pgpool[2872]: [736-1] 2016-06-06 09:36:29: pid 2872: DEBUG: processing frontend response Jun 6 09:36:29 otp3 pgpool[2872]: [736-2] 2016-06-06 09:36:29: pid 2872: DETAIL: received kind 'B'(42) from frontend Jun 6 09:36:29 otp3 pgpool[2872]: [736-3] 2016-06-06 09:36:29: pid 2872: LOCATION: pool_proto_modules.c:2188 Jun 6 09:36:29 otp3 pgpool[2872]: [737-1] 2016-06-06 09:36:29: pid 2872: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:36:29 otp3 pgpool[2872]: [737-2] 2016-06-06 09:36:29: pid 2872: LOCATION: pool_session_context.c:280 Jun 6 09:36:29 otp3 pgpool[2872]: [738-1] 2016-06-06 09:36:29: pid 2872: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:36:29 otp3 pgpool[2872]: [738-2] 2016-06-06 09:36:29: pid 2872: LOCATION: pool_session_context.c:269 Jun 6 09:36:29 otp3 pgpool[2872]: [739-1] 2016-06-06 09:36:29: pid 2872: DEBUG: Bind: checking strict query Jun 6 09:36:29 otp3 pgpool[2872]: [739-2] 2016-06-06 09:36:29: pid 2872: LOCATION: pool_proto_modules.c:1211 Jun 6 09:36:29 otp3 pgpool[2872]: [740-1] 2016-06-06 09:36:29: pid 2872: DEBUG: Bind: checking insert lock Jun 6 09:36:29 otp3 pgpool[2872]: [740-2] 2016-06-06 09:36:29: pid 2872: LOCATION: pool_proto_modules.c:1221 Jun 6 09:36:29 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: DETAIL: backend:1 name:"application_name" value:"" Jun 6 09:36:29 otp3 pgpool[2872]: [741-1] 2016-06-06 09:36:29: pid 2872: DEBUG: Bind: waiting for master completing the query Jun 6 09:36:29 otp3 pgpool[2872]: [741-2] 2016-06-06 09:36:29: pid 2872: LOCATION: pool_proto_modules.c:1237 Jun 6 09:36:29 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: LOCATION: pool_process_query.c:921 Jun 6 09:36:29 otp3 pgpool[2872]: [742-1] 2016-06-06 09:36:29: pid 2872: DEBUG: session context: setting query in progress. DONE Jun 6 09:36:29 otp3 pgpool[2872]: [742-2] 2016-06-06 09:36:29: pid 2872: LOCATION: pool_session_context.c:208 Jun 6 09:36:29 otp3 pgpool[2872]: [743-1] 2016-06-06 09:36:29: pid 2872: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:36:29 otp3 pgpool[2872]: [743-2] 2016-06-06 09:36:29: pid 2872: LOCATION: pool_query_context.c:854 Jun 6 09:36:29 otp3 pgpool[2872]: [744-1] 2016-06-06 09:36:29: pid 2872: DEBUG: pool_write: to backend: kind:B Jun 6 09:36:29 otp3 pgpool[2872]: [744-2] 2016-06-06 09:36:29: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:36:29 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: DEBUG: reading message length Jun 6 09:36:29 otp3 pgpool[2872]: [745-1] 2016-06-06 09:36:29: pid 2872: DEBUG: pool_write: to backend: kind:H Jun 6 09:36:29 otp3 pgpool[2872]: [745-2] 2016-06-06 09:36:29: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:36:29 otp3 pgpool[2872]: [746-1] 2016-06-06 09:36:29: pid 2872: DEBUG: waiting for query response Jun 6 09:36:29 otp3 pgpool[2872]: [746-2] 2016-06-06 09:36:29: pid 2872: DETAIL: waiting for backend:0 to complete the query Jun 6 09:36:29 otp3 pgpool[2872]: [746-3] 2016-06-06 09:36:29: pid 2872: LOCATION: pool_process_query.c:479 Jun 6 09:36:29 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: DETAIL: master slot: 0 length: 25 Jun 6 09:36:29 otp3 pgpool[2873]: [475-1] 2016-06-06 09:36:29: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:36:29 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: LOCATION: pool_auth.c:1161 Jun 6 09:36:29 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: DEBUG: reading message length Jun 6 09:36:29 otp3 pgpool[2872]: [747-1] 2016-06-06 09:36:29: pid 2872: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:36:29 otp3 pgpool[2872]: [747-2] 2016-06-06 09:36:29: pid 2872: LOCATION: pool_stream.c:190 Jun 6 09:36:29 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: DETAIL: master slot: 1 length: 25 Jun 6 09:36:29 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: LOCATION: pool_auth.c:1172 Jun 6 09:36:29 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: DEBUG: process parameter status Jun 6 09:36:29 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: DETAIL: backend:0 name:"client_encoding" value:"UTF8" Jun 6 09:36:29 otp3 pgpool[2872]: [748-1] 2016-06-06 09:36:29: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:29 otp3 pgpool[2872]: [748-2] 2016-06-06 09:36:29: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:29 otp3 pgpool[2872]: [749-1] 2016-06-06 09:36:29: pid 2872: DEBUG: reading backend data packet kind Jun 6 09:36:29 otp3 pgpool[2872]: [749-2] 2016-06-06 09:36:29: pid 2872: DETAIL: backend:0 of 2 kind = '2' Jun 6 09:36:29 otp3 pgpool[2872]: [749-3] 2016-06-06 09:36:29: pid 2872: LOCATION: pool_process_query.c:3349 Jun 6 09:36:29 otp3 pgpool[2872]: [750-1] 2016-06-06 09:36:29: pid 2872: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:36:29 otp3 pgpool[2872]: [750-2] 2016-06-06 09:36:29: pid 2872: LOCATION: pool_process_query.c:3365 Jun 6 09:36:29 otp3 pgpool[2872]: [751-1] 2016-06-06 09:36:29: pid 2872: DEBUG: processing backend response Jun 6 09:36:29 otp3 pgpool[2872]: [751-2] 2016-06-06 09:36:29: pid 2872: DETAIL: received kind '2'(32) from backend Jun 6 09:36:29 otp3 pgpool[2872]: [751-3] 2016-06-06 09:36:29: pid 2872: LOCATION: pool_proto_modules.c:2424 Jun 6 09:36:29 otp3 pgpool[2872]: [752-1] 2016-06-06 09:36:29: pid 2872: DEBUG: called by pool_add_sent_message: sent message: address: 2406d98 kind: B name: == Jun 6 09:36:29 otp3 pgpool[2873]: [475-2] 2016-06-06 09:36:29: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:36:29 otp3 pgpool[2872]: [752-2] 2016-06-06 09:36:29: pid 2872: LOCATION: pool_session_context.c:436 Jun 6 09:36:29 otp3 pgpool[2872]: [753-1] 2016-06-06 09:36:29: pid 2872: DEBUG: adding sent message to list Jun 6 09:36:27 otp3 pgpool[2875]: [135-1] 2016-06-06 09:36:27: pid 2875: DEBUG: pool_read: read 5 bytes from backend 1 Jun 6 09:36:30 otp3 pgpool[2875]: [135-2] 2016-06-06 09:36:27: pid 2875: LOCATION: pool_stream.c:190 Jun 6 09:36:29 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: LOCATION: pool_process_query.c:921 Jun 6 09:36:30 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: DEBUG: process parameter status Jun 6 09:36:30 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: DETAIL: backend:1 name:"client_encoding" value:"UTF8" Jun 6 09:36:30 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: LOCATION: pool_process_query.c:921 Jun 6 09:36:30 otp3 pgpool[2875]: [136-1] 2016-06-06 09:36:30: pid 2875: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:30 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: DEBUG: reading message length Jun 6 09:36:30 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: DETAIL: master slot: 0 length: 23 Jun 6 09:36:30 otp3 pgpool[2875]: [136-2] 2016-06-06 09:36:30: pid 2875: LOCATION: pool_session_context.c:969 Jun 6 09:36:29 otp3 pgpool[2873]: [476-1] 2016-06-06 09:36:29: pid 2873: DEBUG: Parse: statement name <> Jun 6 09:36:30 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: LOCATION: pool_auth.c:1161 Jun 6 09:36:30 otp3 pgpool[2873]: [476-2] 2016-06-06 09:36:29: pid 2873: LOCATION: pool_proto_modules.c:817 Jun 6 09:36:30 otp3 pgpool[2873]: [477-1] 2016-06-06 09:36:30: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:36:30 otp3 pgpool[2873]: [477-2] 2016-06-06 09:36:30: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:36:30 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: DEBUG: reading message length Jun 6 09:36:30 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: DETAIL: master slot: 1 length: 23 Jun 6 09:36:30 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: LOCATION: pool_auth.c:1172 Jun 6 09:36:30 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: DEBUG: process parameter status Jun 6 09:36:30 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: DETAIL: backend:0 name:"DateStyle" value:"ISO, MDY" Jun 6 09:36:30 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: LOCATION: pool_process_query.c:921 Jun 6 09:36:30 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: DEBUG: process parameter status Jun 6 09:36:30 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: DETAIL: backend:1 name:"DateStyle" value:"ISO, MDY" Jun 6 09:36:30 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: LOCATION: pool_process_query.c:921 Jun 6 09:36:30 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: DEBUG: reading message length Jun 6 09:36:30 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: DETAIL: master slot: 0 length: 25 Jun 6 09:36:30 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: LOCATION: pool_auth.c:1161 Jun 6 09:36:30 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: DEBUG: reading message length Jun 6 09:36:30 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: DETAIL: master slot: 1 length: 25 Jun 6 09:36:30 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: LOCATION: pool_auth.c:1172 Jun 6 09:36:30 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: DEBUG: process parameter status Jun 6 09:36:30 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: DETAIL: backend:0 name:"integer_datetimes" value:"on" Jun 6 09:36:30 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: LOCATION: pool_process_query.c:921 Jun 6 09:36:30 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: DEBUG: process parameter status Jun 6 09:36:30 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: DETAIL: backend:1 name:"integer_datetimes" value:"on" Jun 6 09:36:30 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: LOCATION: pool_process_query.c:921 Jun 6 09:36:30 otp3 pgpool[2875]: [137-1] 2016-06-06 09:36:30: pid 2875: DEBUG: reading backend data packet kind Jun 6 09:36:30 otp3 pgpool[2875]: [137-2] 2016-06-06 09:36:30: pid 2875: DETAIL: backend:0 of 2 kind = '1' Jun 6 09:36:31 otp3 pgpool[2875]: [137-3] 2016-06-06 09:36:30: pid 2875: LOCATION: pool_process_query.c:3349 Jun 6 09:36:31 otp3 pgpool[2875]: [138-1] 2016-06-06 09:36:31: pid 2875: DEBUG: reading backend data packet kind Jun 6 09:36:31 otp3 pgpool[2875]: [138-2] 2016-06-06 09:36:31: pid 2875: DETAIL: backend:1 of 2 kind = '1' Jun 6 09:36:31 otp3 pgpool[2875]: [138-3] 2016-06-06 09:36:31: pid 2875: LOCATION: pool_process_query.c:3349 Jun 6 09:36:31 otp3 pgpool[2875]: [139-1] 2016-06-06 09:36:31: pid 2875: DEBUG: read_kind_from_backend max_count:2.000000 num_executed_nodes:2 Jun 6 09:36:31 otp3 pgpool[2875]: [139-2] 2016-06-06 09:36:31: pid 2875: LOCATION: pool_process_query.c:3365 Jun 6 09:36:31 otp3 pgpool[2875]: [140-1] 2016-06-06 09:36:31: pid 2875: DEBUG: processing backend response Jun 6 09:36:31 otp3 pgpool[2875]: [140-2] 2016-06-06 09:36:31: pid 2875: DETAIL: received kind '1'(31) from backend Jun 6 09:36:31 otp3 pgpool[2875]: [140-3] 2016-06-06 09:36:31: pid 2875: LOCATION: pool_proto_modules.c:2424 Jun 6 09:36:29 otp3 pgpool[2872]: [753-2] 2016-06-06 09:36:29: pid 2872: DETAIL: portal "" already exists Jun 6 09:36:30 otp3 pgpool[2873]: [478-1] 2016-06-06 09:36:30: pid 2873: DEBUG: pool_write: to backend: kind:S Jun 6 09:36:31 otp3 pgpool[2872]: [753-3] 2016-06-06 09:36:29: pid 2872: LOCATION: pool_session_context.c:512 Jun 6 09:36:31 otp3 pgpool[2873]: [478-2] 2016-06-06 09:36:30: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:36:31 otp3 pgpool[2872]: [754-1] 2016-06-06 09:36:31: pid 2872: DEBUG: called by pool_sent_message_destroy: sent message: address: 2406c80 kind: B name: == Jun 6 09:36:31 otp3 pgpool[2873]: [479-1] 2016-06-06 09:36:31: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:36:31 otp3 pgpool[2872]: [754-2] 2016-06-06 09:36:31: pid 2872: LOCATION: pool_session_context.c:436 Jun 6 09:36:31 otp3 pgpool[2873]: [479-2] 2016-06-06 09:36:31: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:36:31 otp3 pgpool[2872]: [755-1] 2016-06-06 09:36:31: pid 2872: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:31 otp3 pgpool[2872]: [755-2] 2016-06-06 09:36:31: pid 2872: LOCATION: pool_session_context.c:219 Jun 6 09:36:31 otp3 pgpool[2875]: [141-1] 2016-06-06 09:36:31: pid 2875: DEBUG: called by pool_add_sent_message: sent message: address: 2406c80 kind: P name: == Jun 6 09:36:31 otp3 pgpool[2875]: [141-2] 2016-06-06 09:36:31: pid 2875: LOCATION: pool_session_context.c:436 Jun 6 09:36:31 otp3 pgpool[2872]: [756-1] 2016-06-06 09:36:31: pid 2872: DEBUG: session context: setting query in progress. DONE Jun 6 09:36:31 otp3 pgpool[2872]: [756-2] 2016-06-06 09:36:31: pid 2872: LOCATION: pool_session_context.c:208 Jun 6 09:36:31 otp3 pgpool[2875]: [142-1] 2016-06-06 09:36:31: pid 2875: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:31 otp3 pgpool[2875]: [142-2] 2016-06-06 09:36:31: pid 2875: LOCATION: pool_session_context.c:969 Jun 6 09:36:31 otp3 pgpool[2872]: [757-1] 2016-06-06 09:36:31: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:31 otp3 pgpool[2872]: [757-2] 2016-06-06 09:36:31: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:31 otp3 pgpool[2875]: [143-1] 2016-06-06 09:36:31: pid 2875: DEBUG: SimpleForwardToFrontend: packet:1 length:0 Jun 6 09:36:31 otp3 pgpool[2875]: [143-2] 2016-06-06 09:36:31: pid 2875: LOCATION: pool_process_query.c:792 Jun 6 09:36:30 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: DEBUG: reading message length Jun 6 09:36:31 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: DETAIL: master slot: 0 length: 27 Jun 6 09:36:31 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: LOCATION: pool_auth.c:1161 Jun 6 09:36:31 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: DEBUG: reading message length Jun 6 09:36:31 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: DETAIL: master slot: 1 length: 27 Jun 6 09:36:31 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: LOCATION: pool_auth.c:1172 Jun 6 09:36:31 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: DEBUG: process parameter status Jun 6 09:36:31 otp3 pgpool[2872]: [758-1] 2016-06-06 09:36:31: pid 2872: DEBUG: SimpleForwardToFrontend: packet:2 length:0 Jun 6 09:36:32 otp3 pgpool[2872]: [758-2] 2016-06-06 09:36:31: pid 2872: LOCATION: pool_process_query.c:792 Jun 6 09:36:32 otp3 pgpool[2872]: [759-1] 2016-06-06 09:36:32: pid 2872: DEBUG: session context: setting command success. DONE Jun 6 09:36:32 otp3 pgpool[2872]: [759-2] 2016-06-06 09:36:32: pid 2872: LOCATION: pool_session_context.c:741 Jun 6 09:36:32 otp3 pgpool[2872]: [760-1] 2016-06-06 09:36:32: pid 2872: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:32 otp3 pgpool[2872]: [760-2] 2016-06-06 09:36:32: pid 2872: LOCATION: pool_session_context.c:219 Jun 6 09:36:32 otp3 pgpool[2872]: [761-1] 2016-06-06 09:36:32: pid 2872: DEBUG: processing frontend response Jun 6 09:36:32 otp3 pgpool[2872]: [761-2] 2016-06-06 09:36:32: pid 2872: DETAIL: received kind 'D'(44) from frontend Jun 6 09:36:29 otp3 pgpool[2874]: [82-1] 2016-06-06 09:36:29: pid 2874: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:32 otp3 pgpool[2872]: [761-3] 2016-06-06 09:36:32: pid 2872: LOCATION: pool_proto_modules.c:2188 Jun 6 09:36:31 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: DETAIL: backend:0 name:"IntervalStyle" value:"postgres" Jun 6 09:36:31 otp3 pgpool[2873]: [480-1] 2016-06-06 09:36:31: pid 2873: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:36:32 otp3 pgpool[2872]: [762-1] 2016-06-06 09:36:32: pid 2872: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:36:32 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: LOCATION: pool_process_query.c:921 Jun 6 09:36:32 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: DEBUG: process parameter status Jun 6 09:36:32 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: DETAIL: backend:1 name:"IntervalStyle" value:"postgres" Jun 6 09:36:32 otp3 pgpool[2872]: [762-2] 2016-06-06 09:36:32: pid 2872: LOCATION: pool_session_context.c:280 Jun 6 09:36:32 otp3 pgpool[2873]: [480-2] 2016-06-06 09:36:31: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:36:32 otp3 pgpool[2872]: [763-1] 2016-06-06 09:36:32: pid 2872: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:36:32 otp3 pgpool[2873]: [481-1] 2016-06-06 09:36:32: pid 2873: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:36:33 otp3 pgpool[2873]: [481-2] 2016-06-06 09:36:32: pid 2873: LOCATION: pool_session_context.c:310 Jun 6 09:36:32 otp3 pgpool[2872]: [763-2] 2016-06-06 09:36:32: pid 2872: LOCATION: pool_session_context.c:269 Jun 6 09:36:32 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: LOCATION: pool_process_query.c:921 Jun 6 09:36:33 otp3 pgpool[2872]: [764-1] 2016-06-06 09:36:33: pid 2872: DEBUG: Describe: waiting for master completing the query Jun 6 09:36:33 otp3 pgpool[2872]: [764-2] 2016-06-06 09:36:33: pid 2872: LOCATION: pool_proto_modules.c:1310 Jun 6 09:36:33 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: DEBUG: reading message length Jun 6 09:36:33 otp3 pgpool[2872]: [765-1] 2016-06-06 09:36:33: pid 2872: DEBUG: session context: setting query in progress. DONE Jun 6 09:36:33 otp3 pgpool[2872]: [765-2] 2016-06-06 09:36:33: pid 2872: LOCATION: pool_session_context.c:208 Jun 6 09:36:33 otp3 pgpool[2872]: [766-1] 2016-06-06 09:36:33: pid 2872: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:36:33 otp3 pgpool[2872]: [766-2] 2016-06-06 09:36:33: pid 2872: LOCATION: pool_query_context.c:854 Jun 6 09:36:33 otp3 pgpool[2872]: [767-1] 2016-06-06 09:36:33: pid 2872: DEBUG: pool_write: to backend: kind:D Jun 6 09:36:33 otp3 pgpool[2872]: [767-2] 2016-06-06 09:36:33: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:36:33 otp3 pgpool[2872]: [768-1] 2016-06-06 09:36:33: pid 2872: DEBUG: pool_write: to backend: kind:H Jun 6 09:36:33 otp3 pgpool[2872]: [768-2] 2016-06-06 09:36:33: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:36:33 otp3 pgpool[2872]: [769-1] 2016-06-06 09:36:33: pid 2872: DEBUG: waiting for query response Jun 6 09:36:33 otp3 pgpool[2872]: [769-2] 2016-06-06 09:36:33: pid 2872: DETAIL: waiting for backend:0 to complete the query Jun 6 09:36:33 otp3 pgpool[2872]: [769-3] 2016-06-06 09:36:33: pid 2872: LOCATION: pool_process_query.c:479 Jun 6 09:36:33 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: DETAIL: master slot: 0 length: 21 Jun 6 09:36:33 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: LOCATION: pool_auth.c:1161 Jun 6 09:36:33 otp3 pgpool[2872]: [770-1] 2016-06-06 09:36:33: pid 2872: DEBUG: pool_read: read 34 bytes from backend 0 Jun 6 09:36:33 otp3 pgpool[2872]: [770-2] 2016-06-06 09:36:33: pid 2872: LOCATION: pool_stream.c:190 Jun 6 09:36:33 otp3 pgpool[2872]: [771-1] 2016-06-06 09:36:33: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:33 otp3 pgpool[2872]: [771-2] 2016-06-06 09:36:33: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:33 otp3 pgpool[2872]: [772-1] 2016-06-06 09:36:33: pid 2872: DEBUG: reading backend data packet kind Jun 6 09:36:33 otp3 pgpool[2872]: [772-2] 2016-06-06 09:36:33: pid 2872: DETAIL: backend:0 of 2 kind = 'T' Jun 6 09:36:33 otp3 pgpool[2872]: [772-3] 2016-06-06 09:36:33: pid 2872: LOCATION: pool_process_query.c:3349 Jun 6 09:36:33 otp3 pgpool[2872]: [773-1] 2016-06-06 09:36:33: pid 2872: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:36:33 otp3 pgpool[2872]: [773-2] 2016-06-06 09:36:33: pid 2872: LOCATION: pool_process_query.c:3365 Jun 6 09:36:33 otp3 pgpool[2872]: [774-1] 2016-06-06 09:36:33: pid 2872: DEBUG: processing backend response Jun 6 09:36:33 otp3 pgpool[2872]: [774-2] 2016-06-06 09:36:33: pid 2872: DETAIL: received kind 'T'(54) from backend Jun 6 09:36:33 otp3 pgpool[2872]: [774-3] 2016-06-06 09:36:33: pid 2872: LOCATION: pool_proto_modules.c:2424 Jun 6 09:36:33 otp3 pgpool[2872]: [775-1] 2016-06-06 09:36:33: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:33 otp3 pgpool[2872]: [775-2] 2016-06-06 09:36:33: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:33 otp3 pgpool[2872]: [776-1] 2016-06-06 09:36:33: pid 2872: DEBUG: SimpleForwardToFrontend: packet:T length:29 Jun 6 09:36:33 otp3 pgpool[2872]: [776-2] 2016-06-06 09:36:33: pid 2872: LOCATION: pool_process_query.c:792 Jun 6 09:36:33 otp3 pgpool[2872]: [777-1] 2016-06-06 09:36:33: pid 2872: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:33 otp3 pgpool[2872]: [777-2] 2016-06-06 09:36:33: pid 2872: LOCATION: pool_session_context.c:219 Jun 6 09:36:33 otp3 pgpool[2872]: [778-1] 2016-06-06 09:36:33: pid 2872: DEBUG: processing frontend response Jun 6 09:36:33 otp3 pgpool[2872]: [778-2] 2016-06-06 09:36:33: pid 2872: DETAIL: received kind 'E'(45) from frontend Jun 6 09:36:33 otp3 pgpool[2872]: [778-3] 2016-06-06 09:36:33: pid 2872: LOCATION: pool_proto_modules.c:2188 Jun 6 09:36:33 otp3 pgpool[2872]: [779-1] 2016-06-06 09:36:33: pid 2872: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:36:33 otp3 pgpool[2872]: [779-2] 2016-06-06 09:36:33: pid 2872: LOCATION: pool_session_context.c:280 Jun 6 09:36:33 otp3 pgpool[2872]: [780-1] 2016-06-06 09:36:33: pid 2872: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:36:33 otp3 pgpool[2872]: [780-2] 2016-06-06 09:36:33: pid 2872: LOCATION: pool_session_context.c:269 Jun 6 09:36:33 otp3 pgpool[2872]: [781-1] 2016-06-06 09:36:33: pid 2872: DEBUG: session context: setting query in progress. DONE Jun 6 09:36:33 otp3 pgpool[2872]: [781-2] 2016-06-06 09:36:33: pid 2872: LOCATION: pool_session_context.c:208 Jun 6 09:36:33 otp3 pgpool[2872]: [782-1] 2016-06-06 09:36:33: pid 2872: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:36:33 otp3 pgpool[2872]: [782-2] 2016-06-06 09:36:33: pid 2872: LOCATION: pool_query_context.c:854 Jun 6 09:36:33 otp3 pgpool[2872]: [783-1] 2016-06-06 09:36:33: pid 2872: DEBUG: pool_write: to backend: kind:E Jun 6 09:36:33 otp3 pgpool[2872]: [783-2] 2016-06-06 09:36:33: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:36:33 otp3 pgpool[2872]: [784-1] 2016-06-06 09:36:33: pid 2872: DEBUG: pool_write: to backend: kind:H Jun 6 09:36:33 otp3 pgpool[2872]: [784-2] 2016-06-06 09:36:33: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:36:33 otp3 pgpool[2872]: [785-1] 2016-06-06 09:36:33: pid 2872: DEBUG: waiting for query response Jun 6 09:36:33 otp3 pgpool[2872]: [785-2] 2016-06-06 09:36:33: pid 2872: DETAIL: waiting for backend:0 to complete the query Jun 6 09:36:33 otp3 pgpool[2872]: [785-3] 2016-06-06 09:36:33: pid 2872: LOCATION: pool_process_query.c:479 Jun 6 09:36:33 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: DEBUG: reading message length Jun 6 09:36:33 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: DETAIL: master slot: 1 length: 21 Jun 6 09:36:33 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: LOCATION: pool_auth.c:1172 Jun 6 09:36:33 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DEBUG: pool_read: read 737 bytes from backend 0 Jun 6 09:36:33 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:36:33 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DEBUG: detect error: kind: D Jun 6 09:36:33 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:36:33 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DEBUG: detect error: kind: D Jun 6 09:36:33 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:36:33 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DEBUG: detect error: kind: D Jun 6 09:36:33 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:36:33 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DEBUG: detect error: kind: D Jun 6 09:36:33 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:36:33 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:33 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:36:33 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:36:33 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DETAIL: backend:0 of 2 kind = 'D' Jun 6 09:36:33 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:36:33 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:36:33 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:36:33 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DEBUG: processing backend response Jun 6 09:36:33 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DETAIL: received kind 'D'(44) from backend Jun 6 09:36:33 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:36:33 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:33 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:36:33 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DEBUG: SimpleForwardToFrontend: packet:D length:238 Jun 6 09:36:33 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: LOCATION: pool_process_query.c:792 Jun 6 09:36:33 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:33 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:36:33 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:36:33 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DETAIL: backend:0 of 2 kind = 'D' Jun 6 09:36:33 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:36:33 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:36:33 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:36:33 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DEBUG: processing backend response Jun 6 09:36:33 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DETAIL: received kind 'D'(44) from backend Jun 6 09:36:33 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:36:33 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:33 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:36:33 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DEBUG: SimpleForwardToFrontend: packet:D length:239 Jun 6 09:36:34 otp3 pgpool[2872]: [786-1] 2016-06-06 09:36:34: pid 2872: DEBUG: pool_read: read 26 bytes from backend 0 Jun 6 09:36:34 otp3 pgpool[2872]: [786-2] 2016-06-06 09:36:34: pid 2872: LOCATION: pool_stream.c:190 Jun 6 09:36:34 otp3 pgpool[2872]: [787-1] 2016-06-06 09:36:34: pid 2872: DEBUG: detect error: kind: D Jun 6 09:36:34 otp3 pgpool[2872]: [787-2] 2016-06-06 09:36:34: pid 2872: LOCATION: pool_process_query.c:4166 Jun 6 09:36:34 otp3 pgpool[2872]: [788-1] 2016-06-06 09:36:34: pid 2872: DEBUG: detect error: kind: D Jun 6 09:36:34 otp3 pgpool[2872]: [788-2] 2016-06-06 09:36:34: pid 2872: LOCATION: pool_process_query.c:4166 Jun 6 09:36:34 otp3 pgpool[2872]: [789-1] 2016-06-06 09:36:34: pid 2872: DEBUG: detect error: kind: D Jun 6 09:36:34 otp3 pgpool[2872]: [789-2] 2016-06-06 09:36:34: pid 2872: LOCATION: pool_process_query.c:4166 Jun 6 09:36:34 otp3 pgpool[2872]: [790-1] 2016-06-06 09:36:34: pid 2872: DEBUG: detect error: kind: D Jun 6 09:36:34 otp3 pgpool[2872]: [790-2] 2016-06-06 09:36:34: pid 2872: LOCATION: pool_process_query.c:4166 Jun 6 09:36:34 otp3 pgpool[2872]: [791-1] 2016-06-06 09:36:34: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:34 otp3 pgpool[2872]: [791-2] 2016-06-06 09:36:34: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:34 otp3 pgpool[2872]: [792-1] 2016-06-06 09:36:34: pid 2872: DEBUG: reading backend data packet kind Jun 6 09:36:34 otp3 pgpool[2872]: [792-2] 2016-06-06 09:36:34: pid 2872: DETAIL: backend:0 of 2 kind = 'D' Jun 6 09:36:34 otp3 pgpool[2872]: [792-3] 2016-06-06 09:36:34: pid 2872: LOCATION: pool_process_query.c:3349 Jun 6 09:36:34 otp3 pgpool[2872]: [793-1] 2016-06-06 09:36:34: pid 2872: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:36:34 otp3 pgpool[2872]: [793-2] 2016-06-06 09:36:34: pid 2872: LOCATION: pool_process_query.c:3365 Jun 6 09:36:34 otp3 pgpool[2872]: [794-1] 2016-06-06 09:36:34: pid 2872: DEBUG: processing backend response Jun 6 09:36:34 otp3 pgpool[2872]: [794-2] 2016-06-06 09:36:34: pid 2872: DETAIL: received kind 'D'(44) from backend Jun 6 09:36:34 otp3 pgpool[2872]: [794-3] 2016-06-06 09:36:34: pid 2872: LOCATION: pool_proto_modules.c:2424 Jun 6 09:36:34 otp3 pgpool[2872]: [795-1] 2016-06-06 09:36:34: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:34 otp3 pgpool[2872]: [795-2] 2016-06-06 09:36:34: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:34 otp3 pgpool[2872]: [796-1] 2016-06-06 09:36:34: pid 2872: DEBUG: SimpleForwardToFrontend: packet:D length:7 Jun 6 09:36:34 otp3 pgpool[2872]: [796-2] 2016-06-06 09:36:34: pid 2872: LOCATION: pool_process_query.c:792 Jun 6 09:36:34 otp3 pgpool[2872]: [797-1] 2016-06-06 09:36:34: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:34 otp3 pgpool[2872]: [797-2] 2016-06-06 09:36:34: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:33 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: LOCATION: pool_process_query.c:792 Jun 6 09:36:34 otp3 pgpool[2872]: [798-1] 2016-06-06 09:36:34: pid 2872: DEBUG: reading backend data packet kind Jun 6 09:36:34 otp3 pgpool[2872]: [798-2] 2016-06-06 09:36:34: pid 2872: DETAIL: backend:0 of 2 kind = 'C' Jun 6 09:36:34 otp3 pgpool[2872]: [798-3] 2016-06-06 09:36:34: pid 2872: LOCATION: pool_process_query.c:3349 Jun 6 09:36:34 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:34 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:36:34 otp3 pgpool[2872]: [799-1] 2016-06-06 09:36:34: pid 2872: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:36:34 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:36:34 otp3 pgpool[2872]: [799-2] 2016-06-06 09:36:34: pid 2872: LOCATION: pool_process_query.c:3365 Jun 6 09:36:34 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DETAIL: backend:0 of 2 kind = 'D' Jun 6 09:36:34 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:36:34 otp3 pgpool[2872]: [800-1] 2016-06-06 09:36:34: pid 2872: DEBUG: processing backend response Jun 6 09:36:34 otp3 pgpool[2872]: [800-2] 2016-06-06 09:36:34: pid 2872: DETAIL: received kind 'C'(43) from backend Jun 6 09:36:34 otp3 pgpool[2872]: [800-3] 2016-06-06 09:36:34: pid 2872: LOCATION: pool_proto_modules.c:2424 Jun 6 09:36:32 otp3 pgpool[2874]: [82-2] 2016-06-06 09:36:29: pid 2874: LOCATION: pool_session_context.c:219 Jun 6 09:36:34 otp3 pgpool[2872]: [801-1] 2016-06-06 09:36:34: pid 2872: DEBUG: session context: setting command success. DONE Jun 6 09:36:34 otp3 pgpool[2872]: [801-2] 2016-06-06 09:36:34: pid 2872: LOCATION: pool_session_context.c:741 Jun 6 09:36:34 otp3 pgpool[2872]: [802-1] 2016-06-06 09:36:34: pid 2872: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:34 otp3 pgpool[2872]: [802-2] 2016-06-06 09:36:34: pid 2872: LOCATION: pool_session_context.c:219 Jun 6 09:36:34 otp3 pgpool[2872]: [803-1] 2016-06-06 09:36:34: pid 2872: DEBUG: processing frontend response Jun 6 09:36:34 otp3 pgpool[2872]: [803-2] 2016-06-06 09:36:34: pid 2872: DETAIL: received kind 'S'(53) from frontend Jun 6 09:36:34 otp3 pgpool[2872]: [803-3] 2016-06-06 09:36:34: pid 2872: LOCATION: pool_proto_modules.c:2188 Jun 6 09:36:34 otp3 pgpool[2872]: [804-1] 2016-06-06 09:36:34: pid 2872: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:36:34 otp3 pgpool[2872]: [804-2] 2016-06-06 09:36:34: pid 2872: LOCATION: pool_session_context.c:280 Jun 6 09:36:34 otp3 pgpool[2872]: [805-1] 2016-06-06 09:36:34: pid 2872: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:36:34 otp3 pgpool[2872]: [805-2] 2016-06-06 09:36:34: pid 2872: LOCATION: pool_session_context.c:269 Jun 6 09:36:34 otp3 pgpool[2872]: [806-1] 2016-06-06 09:36:34: pid 2872: DEBUG: session context: setting query in progress. DONE Jun 6 09:36:34 otp3 pgpool[2872]: [806-2] 2016-06-06 09:36:34: pid 2872: LOCATION: pool_session_context.c:208 Jun 6 09:36:34 otp3 pgpool[2872]: [807-1] 2016-06-06 09:36:34: pid 2872: DEBUG: pool_write: to backend: kind:S Jun 6 09:36:34 otp3 pgpool[2872]: [807-2] 2016-06-06 09:36:34: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:36:34 otp3 pgpool[2872]: [808-1] 2016-06-06 09:36:34: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:34 otp3 pgpool[2872]: [808-2] 2016-06-06 09:36:34: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:34 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:36:34 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:36:34 otp3 pgpool[2874]: [83-1] 2016-06-06 09:36:34: pid 2874: DEBUG: session context: clearing transaction isolation. DONE Jun 6 09:36:34 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DEBUG: processing backend response Jun 6 09:36:34 otp3 pgpool[2874]: [83-2] 2016-06-06 09:36:34: pid 2874: LOCATION: pool_session_context.c:731 Jun 6 09:36:34 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DETAIL: received kind 'D'(44) from backend Jun 6 09:36:34 otp3 pgpool[2872]: [809-1] 2016-06-06 09:36:34: pid 2872: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:36:34 otp3 pgpool[2872]: [809-2] 2016-06-06 09:36:34: pid 2872: LOCATION: pool_stream.c:190 Jun 6 09:36:34 otp3 pgpool[2872]: [810-1] 2016-06-06 09:36:34: pid 2872: DEBUG: reading backend data packet kind Jun 6 09:36:34 otp3 pgpool[2872]: [810-2] 2016-06-06 09:36:34: pid 2872: DETAIL: backend:0 of 2 kind = 'Z' Jun 6 09:36:34 otp3 pgpool[2872]: [810-3] 2016-06-06 09:36:34: pid 2872: LOCATION: pool_process_query.c:3349 Jun 6 09:36:34 otp3 pgpool[2872]: [811-1] 2016-06-06 09:36:34: pid 2872: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:36:34 otp3 pgpool[2872]: [811-2] 2016-06-06 09:36:34: pid 2872: LOCATION: pool_process_query.c:3365 Jun 6 09:36:34 otp3 pgpool[2872]: [812-1] 2016-06-06 09:36:34: pid 2872: DEBUG: processing backend response Jun 6 09:36:34 otp3 pgpool[2872]: [812-2] 2016-06-06 09:36:34: pid 2872: DETAIL: received kind 'Z'(5a) from backend Jun 6 09:36:34 otp3 pgpool[2872]: [812-3] 2016-06-06 09:36:34: pid 2872: LOCATION: pool_proto_modules.c:2424 Jun 6 09:36:34 otp3 pgpool[2872]: [813-1] 2016-06-06 09:36:34: pid 2872: DEBUG: processing backend response Jun 6 09:36:34 otp3 pgpool[2872]: [813-2] 2016-06-06 09:36:34: pid 2872: DETAIL: Ready For Query received Jun 6 09:36:34 otp3 pgpool[2872]: [813-3] 2016-06-06 09:36:34: pid 2872: LOCATION: pool_proto_modules.c:2442 Jun 6 09:36:34 otp3 pgpool[2872]: [814-1] 2016-06-06 09:36:34: pid 2872: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:36:34 otp3 pgpool[2872]: [814-2] 2016-06-06 09:36:34: pid 2872: LOCATION: pool_session_context.c:310 Jun 6 09:36:34 otp3 pgpool[2872]: [815-1] 2016-06-06 09:36:34: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:34 otp3 pgpool[2872]: [815-2] 2016-06-06 09:36:34: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:31 otp3 pgpool[2875]: [144-1] 2016-06-06 09:36:31: pid 2875: DEBUG: session context: setting command success. DONE Jun 6 09:36:34 otp3 pgpool[2875]: [144-2] 2016-06-06 09:36:31: pid 2875: LOCATION: pool_session_context.c:741 Jun 6 09:36:34 otp3 pgpool[2875]: [145-1] 2016-06-06 09:36:34: pid 2875: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:34 otp3 pgpool[2875]: [145-2] 2016-06-06 09:36:34: pid 2875: LOCATION: pool_session_context.c:219 Jun 6 09:36:33 otp3 pgpool[2873]: [482-1] 2016-06-06 09:36:33: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:34 otp3 pgpool[2875]: [146-1] 2016-06-06 09:36:34: pid 2875: DEBUG: processing frontend response Jun 6 09:36:34 otp3 pgpool[2874]: [84-1] 2016-06-06 09:36:34: pid 2874: DEBUG: session context: clearing writing transaction. DONE Jun 6 09:36:35 otp3 pgpool[2874]: [84-2] 2016-06-06 09:36:34: pid 2874: LOCATION: pool_session_context.c:565 Jun 6 09:36:34 otp3 pgpool[2873]: [482-2] 2016-06-06 09:36:33: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:36:34 otp3 pgpool[2875]: [146-2] 2016-06-06 09:36:34: pid 2875: DETAIL: received kind 'B'(42) from frontend Jun 6 09:36:34 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:36:36 otp3 pgpool[2875]: [146-3] 2016-06-06 09:36:34: pid 2875: LOCATION: pool_proto_modules.c:2188 Jun 6 09:36:34 otp3 pgpool[2872]: [816-1] 2016-06-06 09:36:34: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:39 otp3 pgpool[2872]: [816-2] 2016-06-06 09:36:34: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:39 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:39 otp3 pgpool[2872]: [817-1] 2016-06-06 09:36:39: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:39 otp3 pgpool[2872]: [817-2] 2016-06-06 09:36:39: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:39 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:36:39 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DEBUG: SimpleForwardToFrontend: packet:D length:231 Jun 6 09:36:39 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: LOCATION: pool_process_query.c:792 Jun 6 09:36:39 otp3 pgpool[2872]: [818-1] 2016-06-06 09:36:39: pid 2872: DEBUG: reading message length Jun 6 09:36:39 otp3 pgpool[2872]: [818-2] 2016-06-06 09:36:39: pid 2872: DETAIL: slot: 0 length: 5 Jun 6 09:36:39 otp3 pgpool[2872]: [818-3] 2016-06-06 09:36:39: pid 2872: LOCATION: pool_auth.c:1107 Jun 6 09:36:40 otp3 pgpool[2872]: [819-1] 2016-06-06 09:36:40: pid 2872: DEBUG: processing ReadyForQuery Jun 6 09:36:40 otp3 pgpool[2872]: [819-2] 2016-06-06 09:36:40: pid 2872: DETAIL: transaction state 'I'(49) Jun 6 09:36:40 otp3 pgpool[2872]: [819-3] 2016-06-06 09:36:40: pid 2872: LOCATION: pool_proto_modules.c:1612 Jun 6 09:36:40 otp3 pgpool[2872]: [820-1] 2016-06-06 09:36:40: pid 2872: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:40 otp3 pgpool[2872]: [820-2] 2016-06-06 09:36:40: pid 2872: LOCATION: pool_session_context.c:219 Jun 6 09:36:39 otp3 pgpool[2875]: [147-1] 2016-06-06 09:36:39: pid 2875: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:36:40 otp3 pgpool[2872]: [821-1] 2016-06-06 09:36:40: pid 2872: DEBUG: processing frontend response Jun 6 09:36:40 otp3 pgpool[2872]: [821-2] 2016-06-06 09:36:40: pid 2872: DETAIL: received kind 'P'(50) from frontend Jun 6 09:36:40 otp3 pgpool[2872]: [821-3] 2016-06-06 09:36:40: pid 2872: LOCATION: pool_proto_modules.c:2188 Jun 6 09:36:40 otp3 pgpool[2875]: [147-2] 2016-06-06 09:36:39: pid 2875: LOCATION: pool_session_context.c:280 Jun 6 09:36:40 otp3 pgpool[2872]: [822-1] 2016-06-06 09:36:40: pid 2872: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:36:40 otp3 pgpool[2872]: [822-2] 2016-06-06 09:36:40: pid 2872: LOCATION: pool_session_context.c:280 Jun 6 09:36:39 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:40 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:36:40 otp3 pgpool[2872]: [823-1] 2016-06-06 09:36:40: pid 2872: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:36:40 otp3 pgpool[2872]: [823-2] 2016-06-06 09:36:40: pid 2872: LOCATION: pool_session_context.c:269 Jun 6 09:36:40 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: pool_read: read 95 bytes from backend 0 Jun 6 09:36:40 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_stream.c:190 Jun 6 09:36:40 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:40 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:40 otp3 pgpool[2872]: [824-1] 2016-06-06 09:36:40: pid 2872: DEBUG: Parse: statement name <> Jun 6 09:36:40 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: reading backend data packet kind Jun 6 09:36:40 otp3 pgpool[2872]: [824-2] 2016-06-06 09:36:40: pid 2872: LOCATION: pool_proto_modules.c:817 Jun 6 09:36:40 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DETAIL: backend:0 of 2 kind = 'T' Jun 6 09:36:40 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_process_query.c:3349 Jun 6 09:36:40 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:36:40 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_process_query.c:3365 Jun 6 09:36:40 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: processing backend response Jun 6 09:36:40 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DETAIL: received kind 'T'(54) from backend Jun 6 09:36:40 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_proto_modules.c:2424 Jun 6 09:36:40 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:40 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:40 otp3 pgpool[2872]: [825-1] 2016-06-06 09:36:40: pid 2872: DEBUG: session context: setting query in progress. DONE Jun 6 09:36:40 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: SimpleForwardToFrontend: packet:T length:90 Jun 6 09:36:40 otp3 pgpool[2872]: [825-2] 2016-06-06 09:36:40: pid 2872: LOCATION: pool_session_context.c:208 Jun 6 09:36:40 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_process_query.c:792 Jun 6 09:36:40 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:40 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:219 Jun 6 09:36:40 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: processing frontend response Jun 6 09:36:40 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DETAIL: received kind 'E'(45) from frontend Jun 6 09:36:40 otp3 pgpool[2872]: [826-1] 2016-06-06 09:36:40: pid 2872: DEBUG: pool_write: to backend: kind:S Jun 6 09:36:40 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_proto_modules.c:2188 Jun 6 09:36:40 otp3 pgpool[2872]: [826-2] 2016-06-06 09:36:40: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:36:40 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:36:40 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:280 Jun 6 09:36:40 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:36:40 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:269 Jun 6 09:36:40 otp3 pgpool[2872]: [827-1] 2016-06-06 09:36:40: pid 2872: DEBUG: pool_write: to backend: kind:H Jun 6 09:36:40 otp3 pgpool[2872]: [827-2] 2016-06-06 09:36:40: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:36:40 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: session context: setting query in progress. DONE Jun 6 09:36:40 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:208 Jun 6 09:36:35 otp3 pgpool[2874]: [85-1] 2016-06-06 09:36:35: pid 2874: DEBUG: session context: clearing failed transaction. DONE Jun 6 09:36:35 otp3 pgpool[2873]: [483-1] 2016-06-06 09:36:35: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:40 otp3 pgpool[2873]: [483-2] 2016-06-06 09:36:35: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:36:40 otp3 pgpool[2872]: [828-1] 2016-06-06 09:36:40: pid 2872: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:36:40 otp3 pgpool[2872]: [828-2] 2016-06-06 09:36:40: pid 2872: LOCATION: pool_stream.c:190 Jun 6 09:36:40 otp3 pgpool[2872]: [829-1] 2016-06-06 09:36:40: pid 2872: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:36:40 otp3 pgpool[2872]: [829-2] 2016-06-06 09:36:40: pid 2872: LOCATION: pool_session_context.c:310 Jun 6 09:36:40 otp3 pgpool[2872]: [830-1] 2016-06-06 09:36:40: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:40 otp3 pgpool[2872]: [830-2] 2016-06-06 09:36:40: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:40 otp3 pgpool[2872]: [831-1] 2016-06-06 09:36:40: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:40 otp3 pgpool[2872]: [831-2] 2016-06-06 09:36:40: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:40 otp3 pgpool[2872]: [832-1] 2016-06-06 09:36:40: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:40 otp3 pgpool[2872]: [832-2] 2016-06-06 09:36:40: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:40 otp3 pgpool[2872]: [833-1] 2016-06-06 09:36:40: pid 2872: DEBUG: reading message length Jun 6 09:36:40 otp3 pgpool[2872]: [833-2] 2016-06-06 09:36:40: pid 2872: DETAIL: slot: 0 length: 5 Jun 6 09:36:40 otp3 pgpool[2872]: [833-3] 2016-06-06 09:36:40: pid 2872: LOCATION: pool_auth.c:1107 Jun 6 09:36:40 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:36:40 otp3 pgpool[2872]: [834-1] 2016-06-06 09:36:40: pid 2872: DEBUG: processing ReadyForQuery Jun 6 09:36:40 otp3 pgpool[2872]: [834-2] 2016-06-06 09:36:40: pid 2872: DETAIL: transaction state 'I'(49) Jun 6 09:36:40 otp3 pgpool[2872]: [834-3] 2016-06-06 09:36:40: pid 2872: LOCATION: pool_proto_modules.c:1612 Jun 6 09:36:40 otp3 pgpool[2872]: [835-1] 2016-06-06 09:36:40: pid 2872: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:40 otp3 pgpool[2872]: [835-2] 2016-06-06 09:36:40: pid 2872: LOCATION: pool_session_context.c:219 Jun 6 09:36:40 otp3 pgpool[2872]: [836-1] 2016-06-06 09:36:40: pid 2872: DEBUG: session context: setting query in progress. DONE Jun 6 09:36:40 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_query_context.c:854 Jun 6 09:36:41 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: pool_write: to backend: kind:E Jun 6 09:36:40 otp3 pgpool[2872]: [836-2] 2016-06-06 09:36:40: pid 2872: LOCATION: pool_session_context.c:208 Jun 6 09:36:40 otp3 pgpool[2875]: [148-1] 2016-06-06 09:36:40: pid 2875: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:36:41 otp3 pgpool[2875]: [148-2] 2016-06-06 09:36:40: pid 2875: LOCATION: pool_session_context.c:269 Jun 6 09:36:41 otp3 pgpool[2875]: [149-1] 2016-06-06 09:36:41: pid 2875: DEBUG: Bind: checking strict query Jun 6 09:36:41 otp3 pgpool[2875]: [149-2] 2016-06-06 09:36:41: pid 2875: LOCATION: pool_proto_modules.c:1211 Jun 6 09:36:41 otp3 pgpool[2872]: [837-1] 2016-06-06 09:36:41: pid 2872: DEBUG: Parse: waiting for master completing the query Jun 6 09:36:41 otp3 pgpool[2872]: [837-2] 2016-06-06 09:36:41: pid 2872: LOCATION: pool_proto_modules.c:1064 Jun 6 09:36:40 otp3 pgpool[2873]: [484-1] 2016-06-06 09:36:40: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:41 otp3 pgpool[2873]: [484-2] 2016-06-06 09:36:40: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:36:41 otp3 pgpool[2872]: [838-1] 2016-06-06 09:36:41: pid 2872: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:36:41 otp3 pgpool[2872]: [838-2] 2016-06-06 09:36:41: pid 2872: LOCATION: pool_query_context.c:854 Jun 6 09:36:40 otp3 pgpool[2874]: [85-2] 2016-06-06 09:36:35: pid 2874: LOCATION: pool_session_context.c:594 Jun 6 09:36:41 otp3 pgpool[2872]: [839-1] 2016-06-06 09:36:41: pid 2872: DEBUG: pool_write: to backend: kind:P Jun 6 09:36:41 otp3 pgpool[2872]: [839-2] 2016-06-06 09:36:41: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:36:41 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:36:41 otp3 pgpool[2872]: [840-1] 2016-06-06 09:36:41: pid 2872: DEBUG: pool_write: to backend: kind:H Jun 6 09:36:41 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: pool_write: to backend: kind:H Jun 6 09:36:41 otp3 pgpool[2872]: [840-2] 2016-06-06 09:36:41: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:36:42 otp3 pgpool[2872]: [841-1] 2016-06-06 09:36:42: pid 2872: DEBUG: waiting for query response Jun 6 09:36:42 otp3 pgpool[2872]: [841-2] 2016-06-06 09:36:42: pid 2872: DETAIL: waiting for backend:0 to complete the query Jun 6 09:36:42 otp3 pgpool[2872]: [841-3] 2016-06-06 09:36:42: pid 2872: LOCATION: pool_process_query.c:479 Jun 6 09:36:42 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:36:42 otp3 pgpool[2872]: [842-1] 2016-06-06 09:36:42: pid 2872: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:36:42 otp3 pgpool[2872]: [842-2] 2016-06-06 09:36:42: pid 2872: LOCATION: pool_stream.c:190 Jun 6 09:36:42 otp3 pgpool[2872]: [843-1] 2016-06-06 09:36:42: pid 2872: DEBUG: detect error: kind: 1 Jun 6 09:36:42 otp3 pgpool[2872]: [843-2] 2016-06-06 09:36:42: pid 2872: LOCATION: pool_process_query.c:4166 Jun 6 09:36:42 otp3 pgpool[2872]: [844-1] 2016-06-06 09:36:42: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:42 otp3 pgpool[2872]: [844-2] 2016-06-06 09:36:42: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:42 otp3 pgpool[2872]: [845-1] 2016-06-06 09:36:42: pid 2872: DEBUG: reading backend data packet kind Jun 6 09:36:42 otp3 pgpool[2872]: [845-2] 2016-06-06 09:36:42: pid 2872: DETAIL: backend:0 of 2 kind = '1' Jun 6 09:36:42 otp3 pgpool[2872]: [845-3] 2016-06-06 09:36:42: pid 2872: LOCATION: pool_process_query.c:3349 Jun 6 09:36:42 otp3 pgpool[2872]: [846-1] 2016-06-06 09:36:42: pid 2872: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:36:42 otp3 pgpool[2872]: [846-2] 2016-06-06 09:36:42: pid 2872: LOCATION: pool_process_query.c:3365 Jun 6 09:36:42 otp3 pgpool[2872]: [847-1] 2016-06-06 09:36:42: pid 2872: DEBUG: processing backend response Jun 6 09:36:42 otp3 pgpool[2872]: [847-2] 2016-06-06 09:36:42: pid 2872: DETAIL: received kind '1'(31) from backend Jun 6 09:36:42 otp3 pgpool[2872]: [847-3] 2016-06-06 09:36:42: pid 2872: LOCATION: pool_proto_modules.c:2424 Jun 6 09:36:42 otp3 pgpool[2872]: [848-1] 2016-06-06 09:36:42: pid 2872: DEBUG: called by pool_add_sent_message: sent message: address: 2406c80 kind: P name: == Jun 6 09:36:42 otp3 pgpool[2872]: [848-2] 2016-06-06 09:36:42: pid 2872: LOCATION: pool_session_context.c:436 Jun 6 09:36:42 otp3 pgpool[2872]: [849-1] 2016-06-06 09:36:42: pid 2872: DEBUG: adding sent message to list Jun 6 09:36:42 otp3 pgpool[2872]: [849-2] 2016-06-06 09:36:42: pid 2872: DETAIL: prepared statement "" already exists Jun 6 09:36:42 otp3 pgpool[2872]: [849-3] 2016-06-06 09:36:42: pid 2872: LOCATION: pool_session_context.c:516 Jun 6 09:36:42 otp3 pgpool[2872]: [850-1] 2016-06-06 09:36:42: pid 2872: DEBUG: called by pool_sent_message_destroy: sent message: address: 2406d18 kind: P name: == Jun 6 09:36:42 otp3 pgpool[2872]: [850-2] 2016-06-06 09:36:42: pid 2872: LOCATION: pool_session_context.c:436 Jun 6 09:36:42 otp3 pgpool[2872]: [851-1] 2016-06-06 09:36:42: pid 2872: DEBUG: checking if query context can be safely destroyed Jun 6 09:36:42 otp3 pgpool[2872]: [851-2] 2016-06-06 09:36:42: pid 2872: DETAIL: query context 0x802482830 is still used 2 times. query:"SELECT 1" Jun 6 09:36:42 otp3 pgpool[2872]: [851-3] 2016-06-06 09:36:42: pid 2872: LOCATION: pool_session_context.c:873 Jun 6 09:36:42 otp3 pgpool[2872]: [852-1] 2016-06-06 09:36:42: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:42 otp3 pgpool[2872]: [852-2] 2016-06-06 09:36:42: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:41 otp3 pgpool[2873]: [485-1] 2016-06-06 09:36:41: pid 2873: DEBUG: reading message length Jun 6 09:36:42 otp3 pgpool[2872]: [853-1] 2016-06-06 09:36:42: pid 2872: DEBUG: SimpleForwardToFrontend: packet:1 length:0 Jun 6 09:36:42 otp3 pgpool[2873]: [485-2] 2016-06-06 09:36:41: pid 2873: DETAIL: slot: 0 length: 5 Jun 6 09:36:42 otp3 pgpool[2872]: [853-2] 2016-06-06 09:36:42: pid 2872: LOCATION: pool_process_query.c:792 Jun 6 09:36:42 otp3 pgpool[2873]: [485-3] 2016-06-06 09:36:41: pid 2873: LOCATION: pool_auth.c:1107 Jun 6 09:36:42 otp3 pgpool[2872]: [854-1] 2016-06-06 09:36:42: pid 2872: DEBUG: session context: setting command success. DONE Jun 6 09:36:42 otp3 pgpool[2872]: [854-2] 2016-06-06 09:36:42: pid 2872: LOCATION: pool_session_context.c:741 Jun 6 09:36:41 otp3 pgpool[2875]: [150-1] 2016-06-06 09:36:41: pid 2875: DEBUG: Bind: checking insert lock Jun 6 09:36:42 otp3 pgpool[2875]: [150-2] 2016-06-06 09:36:41: pid 2875: LOCATION: pool_proto_modules.c:1221 Jun 6 09:36:42 otp3 pgpool[2875]: [151-1] 2016-06-06 09:36:42: pid 2875: DEBUG: Bind: waiting for master completing the query Jun 6 09:36:42 otp3 pgpool[2872]: [855-1] 2016-06-06 09:36:42: pid 2872: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:42 otp3 pgpool[2875]: [151-2] 2016-06-06 09:36:42: pid 2875: LOCATION: pool_proto_modules.c:1237 Jun 6 09:36:42 otp3 pgpool[2872]: [855-2] 2016-06-06 09:36:42: pid 2872: LOCATION: pool_session_context.c:219 Jun 6 09:36:42 otp3 pgpool[2872]: [856-1] 2016-06-06 09:36:42: pid 2872: DEBUG: processing frontend response Jun 6 09:36:42 otp3 pgpool[2872]: [856-2] 2016-06-06 09:36:42: pid 2872: DETAIL: received kind 'B'(42) from frontend Jun 6 09:36:42 otp3 pgpool[2872]: [856-3] 2016-06-06 09:36:42: pid 2872: LOCATION: pool_proto_modules.c:2188 Jun 6 09:36:42 otp3 pgpool[2872]: [857-1] 2016-06-06 09:36:42: pid 2872: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:36:42 otp3 pgpool[2872]: [857-2] 2016-06-06 09:36:42: pid 2872: LOCATION: pool_session_context.c:280 Jun 6 09:36:42 otp3 pgpool[2872]: [858-1] 2016-06-06 09:36:42: pid 2872: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:36:42 otp3 pgpool[2872]: [858-2] 2016-06-06 09:36:42: pid 2872: LOCATION: pool_session_context.c:269 Jun 6 09:36:42 otp3 pgpool[2872]: [859-1] 2016-06-06 09:36:42: pid 2872: DEBUG: Bind: checking strict query Jun 6 09:36:42 otp3 pgpool[2872]: [859-2] 2016-06-06 09:36:42: pid 2872: LOCATION: pool_proto_modules.c:1211 Jun 6 09:36:42 otp3 pgpool[2872]: [860-1] 2016-06-06 09:36:42: pid 2872: DEBUG: Bind: checking insert lock Jun 6 09:36:42 otp3 pgpool[2872]: [860-2] 2016-06-06 09:36:42: pid 2872: LOCATION: pool_proto_modules.c:1221 Jun 6 09:36:42 otp3 pgpool[2872]: [861-1] 2016-06-06 09:36:42: pid 2872: DEBUG: Bind: waiting for master completing the query Jun 6 09:36:42 otp3 pgpool[2872]: [861-2] 2016-06-06 09:36:42: pid 2872: LOCATION: pool_proto_modules.c:1237 Jun 6 09:36:42 otp3 pgpool[2872]: [862-1] 2016-06-06 09:36:42: pid 2872: DEBUG: session context: setting query in progress. DONE Jun 6 09:36:42 otp3 pgpool[2872]: [862-2] 2016-06-06 09:36:42: pid 2872: LOCATION: pool_session_context.c:208 Jun 6 09:36:42 otp3 pgpool[2872]: [863-1] 2016-06-06 09:36:42: pid 2872: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:36:42 otp3 pgpool[2872]: [863-2] 2016-06-06 09:36:42: pid 2872: LOCATION: pool_query_context.c:854 Jun 6 09:36:42 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: waiting for query response Jun 6 09:36:42 otp3 pgpool[2872]: [864-1] 2016-06-06 09:36:42: pid 2872: DEBUG: pool_write: to backend: kind:B Jun 6 09:36:42 otp3 pgpool[2872]: [864-2] 2016-06-06 09:36:42: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:36:42 otp3 pgpool[2872]: [865-1] 2016-06-06 09:36:42: pid 2872: DEBUG: pool_write: to backend: kind:H Jun 6 09:36:42 otp3 pgpool[2872]: [865-2] 2016-06-06 09:36:42: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:36:42 otp3 pgpool[2872]: [866-1] 2016-06-06 09:36:42: pid 2872: DEBUG: waiting for query response Jun 6 09:36:42 otp3 pgpool[2872]: [866-2] 2016-06-06 09:36:42: pid 2872: DETAIL: waiting for backend:0 to complete the query Jun 6 09:36:42 otp3 pgpool[2872]: [866-3] 2016-06-06 09:36:42: pid 2872: LOCATION: pool_process_query.c:479 Jun 6 09:36:42 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DETAIL: waiting for backend:0 to complete the query Jun 6 09:36:42 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_process_query.c:479 Jun 6 09:36:42 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: DEBUG: process parameter status Jun 6 09:36:42 otp3 pgpool[2875]: [152-1] 2016-06-06 09:36:42: pid 2875: DEBUG: session context: setting query in progress. DONE Jun 6 09:36:42 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: DETAIL: backend:0 name:"is_superuser" value:"off" Jun 6 09:36:42 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: LOCATION: pool_process_query.c:921 Jun 6 09:36:42 otp3 pgpool[2875]: [152-2] 2016-06-06 09:36:42: pid 2875: LOCATION: pool_session_context.c:208 Jun 6 09:36:42 otp3 pgpool[2875]: [153-1] 2016-06-06 09:36:42: pid 2875: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:36:42 otp3 pgpool[2875]: [153-2] 2016-06-06 09:36:42: pid 2875: LOCATION: pool_query_context.c:854 Jun 6 09:36:42 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: DEBUG: process parameter status Jun 6 09:36:42 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: DETAIL: backend:1 name:"is_superuser" value:"off" Jun 6 09:36:42 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: LOCATION: pool_process_query.c:921 Jun 6 09:36:42 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: pool_read: read 194 bytes from backend 0 Jun 6 09:36:41 otp3 pgpool[2874]: [86-1] 2016-06-06 09:36:41: pid 2874: DEBUG: session context: clearing failed transaction. DONE Jun 6 09:36:42 otp3 pgpool[2873]: [486-1] 2016-06-06 09:36:42: pid 2873: DEBUG: processing ReadyForQuery Jun 6 09:36:42 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_stream.c:190 Jun 6 09:36:44 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:36:44 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DETAIL: backend:0 of 2 kind = 'C' Jun 6 09:36:44 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:36:44 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: detect error: kind: D Jun 6 09:36:44 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_process_query.c:4166 Jun 6 09:36:44 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: detect error: kind: D Jun 6 09:36:42 otp3 pgpool[2872]: [867-1] 2016-06-06 09:36:42: pid 2872: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:36:45 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_process_query.c:4166 Jun 6 09:36:46 otp3 pgpool[2872]: [867-2] 2016-06-06 09:36:42: pid 2872: LOCATION: pool_stream.c:190 Jun 6 09:36:46 otp3 pgpool[2872]: [868-1] 2016-06-06 09:36:46: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:46 otp3 pgpool[2872]: [868-2] 2016-06-06 09:36:46: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:46 otp3 pgpool[2872]: [869-1] 2016-06-06 09:36:46: pid 2872: DEBUG: reading backend data packet kind Jun 6 09:36:46 otp3 pgpool[2872]: [869-2] 2016-06-06 09:36:46: pid 2872: DETAIL: backend:0 of 2 kind = '2' Jun 6 09:36:46 otp3 pgpool[2872]: [869-3] 2016-06-06 09:36:46: pid 2872: LOCATION: pool_process_query.c:3349 Jun 6 09:36:46 otp3 pgpool[2872]: [870-1] 2016-06-06 09:36:46: pid 2872: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:36:46 otp3 pgpool[2872]: [870-2] 2016-06-06 09:36:46: pid 2872: LOCATION: pool_process_query.c:3365 Jun 6 09:36:46 otp3 pgpool[2872]: [871-1] 2016-06-06 09:36:46: pid 2872: DEBUG: processing backend response Jun 6 09:36:46 otp3 pgpool[2872]: [871-2] 2016-06-06 09:36:46: pid 2872: DETAIL: received kind '2'(32) from backend Jun 6 09:36:46 otp3 pgpool[2872]: [871-3] 2016-06-06 09:36:46: pid 2872: LOCATION: pool_proto_modules.c:2424 Jun 6 09:36:46 otp3 pgpool[2872]: [872-1] 2016-06-06 09:36:46: pid 2872: DEBUG: called by pool_add_sent_message: sent message: address: 2406d18 kind: B name: == Jun 6 09:36:46 otp3 pgpool[2872]: [872-2] 2016-06-06 09:36:46: pid 2872: LOCATION: pool_session_context.c:436 Jun 6 09:36:46 otp3 pgpool[2872]: [873-1] 2016-06-06 09:36:46: pid 2872: DEBUG: adding sent message to list Jun 6 09:36:46 otp3 pgpool[2872]: [873-2] 2016-06-06 09:36:46: pid 2872: DETAIL: portal "" already exists Jun 6 09:36:46 otp3 pgpool[2872]: [873-3] 2016-06-06 09:36:46: pid 2872: LOCATION: pool_session_context.c:512 Jun 6 09:36:46 otp3 pgpool[2872]: [874-1] 2016-06-06 09:36:46: pid 2872: DEBUG: called by pool_sent_message_destroy: sent message: address: 2406d98 kind: B name: == Jun 6 09:36:46 otp3 pgpool[2872]: [874-2] 2016-06-06 09:36:46: pid 2872: LOCATION: pool_session_context.c:436 Jun 6 09:36:46 otp3 pgpool[2872]: [875-1] 2016-06-06 09:36:46: pid 2872: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:46 otp3 pgpool[2872]: [875-2] 2016-06-06 09:36:46: pid 2872: LOCATION: pool_session_context.c:219 Jun 6 09:36:46 otp3 pgpool[2872]: [876-1] 2016-06-06 09:36:46: pid 2872: DEBUG: session context: setting query in progress. DONE Jun 6 09:36:46 otp3 pgpool[2872]: [876-2] 2016-06-06 09:36:46: pid 2872: LOCATION: pool_session_context.c:208 Jun 6 09:36:46 otp3 pgpool[2872]: [877-1] 2016-06-06 09:36:46: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:46 otp3 pgpool[2872]: [877-2] 2016-06-06 09:36:46: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:46 otp3 pgpool[2872]: [878-1] 2016-06-06 09:36:46: pid 2872: DEBUG: SimpleForwardToFrontend: packet:2 length:0 Jun 6 09:36:46 otp3 pgpool[2872]: [878-2] 2016-06-06 09:36:46: pid 2872: LOCATION: pool_process_query.c:792 Jun 6 09:36:46 otp3 pgpool[2872]: [879-1] 2016-06-06 09:36:46: pid 2872: DEBUG: session context: setting command success. DONE Jun 6 09:36:46 otp3 pgpool[2872]: [879-2] 2016-06-06 09:36:46: pid 2872: LOCATION: pool_session_context.c:741 Jun 6 09:36:46 otp3 pgpool[2872]: [880-1] 2016-06-06 09:36:46: pid 2872: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:46 otp3 pgpool[2872]: [880-2] 2016-06-06 09:36:46: pid 2872: LOCATION: pool_session_context.c:219 Jun 6 09:36:46 otp3 pgpool[2872]: [881-1] 2016-06-06 09:36:46: pid 2872: DEBUG: processing frontend response Jun 6 09:36:46 otp3 pgpool[2872]: [881-2] 2016-06-06 09:36:46: pid 2872: DETAIL: received kind 'D'(44) from frontend Jun 6 09:36:46 otp3 pgpool[2872]: [881-3] 2016-06-06 09:36:46: pid 2872: LOCATION: pool_proto_modules.c:2188 Jun 6 09:36:46 otp3 pgpool[2872]: [882-1] 2016-06-06 09:36:46: pid 2872: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:36:46 otp3 pgpool[2872]: [882-2] 2016-06-06 09:36:46: pid 2872: LOCATION: pool_session_context.c:280 Jun 6 09:36:46 otp3 pgpool[2872]: [883-1] 2016-06-06 09:36:46: pid 2872: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:36:46 otp3 pgpool[2872]: [883-2] 2016-06-06 09:36:46: pid 2872: LOCATION: pool_session_context.c:269 Jun 6 09:36:46 otp3 pgpool[2872]: [884-1] 2016-06-06 09:36:46: pid 2872: DEBUG: Describe: waiting for master completing the query Jun 6 09:36:46 otp3 pgpool[2872]: [884-2] 2016-06-06 09:36:46: pid 2872: LOCATION: pool_proto_modules.c:1310 Jun 6 09:36:46 otp3 pgpool[2872]: [885-1] 2016-06-06 09:36:46: pid 2872: DEBUG: session context: setting query in progress. DONE Jun 6 09:36:46 otp3 pgpool[2872]: [885-2] 2016-06-06 09:36:46: pid 2872: LOCATION: pool_session_context.c:208 Jun 6 09:36:46 otp3 pgpool[2872]: [886-1] 2016-06-06 09:36:46: pid 2872: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:36:46 otp3 pgpool[2872]: [886-2] 2016-06-06 09:36:46: pid 2872: LOCATION: pool_query_context.c:854 Jun 6 09:36:46 otp3 pgpool[2872]: [887-1] 2016-06-06 09:36:46: pid 2872: DEBUG: pool_write: to backend: kind:D Jun 6 09:36:46 otp3 pgpool[2872]: [887-2] 2016-06-06 09:36:46: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:36:46 otp3 pgpool[2872]: [888-1] 2016-06-06 09:36:46: pid 2872: DEBUG: pool_write: to backend: kind:H Jun 6 09:36:46 otp3 pgpool[2872]: [888-2] 2016-06-06 09:36:46: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:36:46 otp3 pgpool[2872]: [889-1] 2016-06-06 09:36:46: pid 2872: DEBUG: waiting for query response Jun 6 09:36:46 otp3 pgpool[2872]: [889-2] 2016-06-06 09:36:46: pid 2872: DETAIL: waiting for backend:0 to complete the query Jun 6 09:36:46 otp3 pgpool[2872]: [889-3] 2016-06-06 09:36:46: pid 2872: LOCATION: pool_process_query.c:479 Jun 6 09:36:43 otp3 pgpool[2874]: [86-2] 2016-06-06 09:36:41: pid 2874: LOCATION: pool_session_context.c:624 Jun 6 09:36:46 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: detect error: kind: D Jun 6 09:36:46 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_process_query.c:4166 Jun 6 09:36:43 otp3 pgpool[2875]: [154-1] 2016-06-06 09:36:43: pid 2875: DEBUG: pool_write: to backend: kind:B Jun 6 09:36:44 otp3 pgpool[2873]: [486-2] 2016-06-06 09:36:42: pid 2873: DETAIL: transaction state 'I'(49) Jun 6 09:36:46 otp3 pgpool[2873]: [486-3] 2016-06-06 09:36:42: pid 2873: LOCATION: pool_proto_modules.c:1612 Jun 6 09:36:46 otp3 pgpool[2872]: [890-1] 2016-06-06 09:36:46: pid 2872: DEBUG: pool_read: read 95 bytes from backend 0 Jun 6 09:36:46 otp3 pgpool[2872]: [890-2] 2016-06-06 09:36:46: pid 2872: LOCATION: pool_stream.c:190 Jun 6 09:36:46 otp3 pgpool[2872]: [891-1] 2016-06-06 09:36:46: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:46 otp3 pgpool[2872]: [891-2] 2016-06-06 09:36:46: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:46 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: detect error: kind: D Jun 6 09:36:46 otp3 pgpool[2872]: [892-1] 2016-06-06 09:36:46: pid 2872: DEBUG: reading backend data packet kind Jun 6 09:36:47 otp3 pgpool[2872]: [892-2] 2016-06-06 09:36:46: pid 2872: DETAIL: backend:0 of 2 kind = 'T' Jun 6 09:36:47 otp3 pgpool[2872]: [892-3] 2016-06-06 09:36:46: pid 2872: LOCATION: pool_process_query.c:3349 Jun 6 09:36:47 otp3 pgpool[2872]: [893-1] 2016-06-06 09:36:47: pid 2872: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:36:47 otp3 pgpool[2872]: [893-2] 2016-06-06 09:36:47: pid 2872: LOCATION: pool_process_query.c:3365 Jun 6 09:36:47 otp3 pgpool[2872]: [894-1] 2016-06-06 09:36:47: pid 2872: DEBUG: processing backend response Jun 6 09:36:47 otp3 pgpool[2872]: [894-2] 2016-06-06 09:36:47: pid 2872: DETAIL: received kind 'T'(54) from backend Jun 6 09:36:47 otp3 pgpool[2872]: [894-3] 2016-06-06 09:36:47: pid 2872: LOCATION: pool_proto_modules.c:2424 Jun 6 09:36:47 otp3 pgpool[2872]: [895-1] 2016-06-06 09:36:47: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:47 otp3 pgpool[2872]: [895-2] 2016-06-06 09:36:47: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:47 otp3 pgpool[2872]: [896-1] 2016-06-06 09:36:47: pid 2872: DEBUG: SimpleForwardToFrontend: packet:T length:90 Jun 6 09:36:47 otp3 pgpool[2872]: [896-2] 2016-06-06 09:36:47: pid 2872: LOCATION: pool_process_query.c:792 Jun 6 09:36:47 otp3 pgpool[2872]: [897-1] 2016-06-06 09:36:47: pid 2872: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:47 otp3 pgpool[2872]: [897-2] 2016-06-06 09:36:47: pid 2872: LOCATION: pool_session_context.c:219 Jun 6 09:36:47 otp3 pgpool[2872]: [898-1] 2016-06-06 09:36:47: pid 2872: DEBUG: processing frontend response Jun 6 09:36:47 otp3 pgpool[2872]: [898-2] 2016-06-06 09:36:47: pid 2872: DETAIL: received kind 'E'(45) from frontend Jun 6 09:36:47 otp3 pgpool[2872]: [898-3] 2016-06-06 09:36:47: pid 2872: LOCATION: pool_proto_modules.c:2188 Jun 6 09:36:47 otp3 pgpool[2872]: [899-1] 2016-06-06 09:36:47: pid 2872: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:36:47 otp3 pgpool[2872]: [899-2] 2016-06-06 09:36:47: pid 2872: LOCATION: pool_session_context.c:280 Jun 6 09:36:47 otp3 pgpool[2872]: [900-1] 2016-06-06 09:36:47: pid 2872: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:36:47 otp3 pgpool[2872]: [900-2] 2016-06-06 09:36:47: pid 2872: LOCATION: pool_session_context.c:269 Jun 6 09:36:47 otp3 pgpool[2872]: [901-1] 2016-06-06 09:36:47: pid 2872: DEBUG: session context: setting query in progress. DONE Jun 6 09:36:47 otp3 pgpool[2872]: [901-2] 2016-06-06 09:36:47: pid 2872: LOCATION: pool_session_context.c:208 Jun 6 09:36:47 otp3 pgpool[2872]: [902-1] 2016-06-06 09:36:47: pid 2872: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:36:47 otp3 pgpool[2872]: [902-2] 2016-06-06 09:36:47: pid 2872: LOCATION: pool_query_context.c:854 Jun 6 09:36:47 otp3 pgpool[2872]: [903-1] 2016-06-06 09:36:47: pid 2872: DEBUG: pool_write: to backend: kind:E Jun 6 09:36:47 otp3 pgpool[2872]: [903-2] 2016-06-06 09:36:47: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:36:47 otp3 pgpool[2872]: [904-1] 2016-06-06 09:36:47: pid 2872: DEBUG: pool_write: to backend: kind:H Jun 6 09:36:47 otp3 pgpool[2872]: [904-2] 2016-06-06 09:36:47: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:36:47 otp3 pgpool[2872]: [905-1] 2016-06-06 09:36:47: pid 2872: DEBUG: waiting for query response Jun 6 09:36:47 otp3 pgpool[2872]: [905-2] 2016-06-06 09:36:47: pid 2872: DETAIL: waiting for backend:0 to complete the query Jun 6 09:36:47 otp3 pgpool[2872]: [905-3] 2016-06-06 09:36:47: pid 2872: LOCATION: pool_process_query.c:479 Jun 6 09:36:47 otp3 pgpool[2873]: [487-1] 2016-06-06 09:36:47: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:47 otp3 pgpool[2874]: [87-1] 2016-06-06 09:36:46: pid 2874: DEBUG: session context: clearing skip reading from backends. DONE Jun 6 09:36:47 otp3 pgpool[2873]: [487-2] 2016-06-06 09:36:47: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:36:47 otp3 pgpool[2872]: [906-1] 2016-06-06 09:36:47: pid 2872: DEBUG: pool_read: read 194 bytes from backend 0 Jun 6 09:36:47 otp3 pgpool[2872]: [906-2] 2016-06-06 09:36:47: pid 2872: LOCATION: pool_stream.c:190 Jun 6 09:36:47 otp3 pgpool[2872]: [907-1] 2016-06-06 09:36:47: pid 2872: DEBUG: detect error: kind: D Jun 6 09:36:47 otp3 pgpool[2872]: [907-2] 2016-06-06 09:36:47: pid 2872: LOCATION: pool_process_query.c:4166 Jun 6 09:36:47 otp3 pgpool[2872]: [908-1] 2016-06-06 09:36:47: pid 2872: DEBUG: detect error: kind: D Jun 6 09:36:47 otp3 pgpool[2872]: [908-2] 2016-06-06 09:36:47: pid 2872: LOCATION: pool_process_query.c:4166 Jun 6 09:36:47 otp3 pgpool[2872]: [909-1] 2016-06-06 09:36:47: pid 2872: DEBUG: detect error: kind: D Jun 6 09:36:47 otp3 pgpool[2872]: [909-2] 2016-06-06 09:36:47: pid 2872: LOCATION: pool_process_query.c:4166 Jun 6 09:36:47 otp3 pgpool[2872]: [910-1] 2016-06-06 09:36:47: pid 2872: DEBUG: detect error: kind: D Jun 6 09:36:47 otp3 pgpool[2872]: [910-2] 2016-06-06 09:36:47: pid 2872: LOCATION: pool_process_query.c:4166 Jun 6 09:36:47 otp3 pgpool[2872]: [911-1] 2016-06-06 09:36:47: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:47 otp3 pgpool[2872]: [911-2] 2016-06-06 09:36:47: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:47 otp3 pgpool[2872]: [912-1] 2016-06-06 09:36:47: pid 2872: DEBUG: reading backend data packet kind Jun 6 09:36:47 otp3 pgpool[2872]: [912-2] 2016-06-06 09:36:47: pid 2872: DETAIL: backend:0 of 2 kind = 'D' Jun 6 09:36:47 otp3 pgpool[2872]: [912-3] 2016-06-06 09:36:47: pid 2872: LOCATION: pool_process_query.c:3349 Jun 6 09:36:47 otp3 pgpool[2872]: [913-1] 2016-06-06 09:36:47: pid 2872: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:36:47 otp3 pgpool[2872]: [913-2] 2016-06-06 09:36:47: pid 2872: LOCATION: pool_process_query.c:3365 Jun 6 09:36:47 otp3 pgpool[2872]: [914-1] 2016-06-06 09:36:47: pid 2872: DEBUG: processing backend response Jun 6 09:36:47 otp3 pgpool[2872]: [914-2] 2016-06-06 09:36:47: pid 2872: DETAIL: received kind 'D'(44) from backend Jun 6 09:36:47 otp3 pgpool[2872]: [914-3] 2016-06-06 09:36:47: pid 2872: LOCATION: pool_proto_modules.c:2424 Jun 6 09:36:47 otp3 pgpool[2872]: [915-1] 2016-06-06 09:36:47: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:47 otp3 pgpool[2872]: [915-2] 2016-06-06 09:36:47: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:47 otp3 pgpool[2872]: [916-1] 2016-06-06 09:36:47: pid 2872: DEBUG: SimpleForwardToFrontend: packet:D length:175 Jun 6 09:36:47 otp3 pgpool[2872]: [916-2] 2016-06-06 09:36:47: pid 2872: LOCATION: pool_process_query.c:792 Jun 6 09:36:47 otp3 pgpool[2872]: [917-1] 2016-06-06 09:36:47: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:47 otp3 pgpool[2872]: [917-2] 2016-06-06 09:36:47: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:47 otp3 pgpool[2873]: [488-1] 2016-06-06 09:36:47: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:36:47 otp3 pgpool[2873]: [488-2] 2016-06-06 09:36:47: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:36:47 otp3 pgpool[2872]: [918-1] 2016-06-06 09:36:47: pid 2872: DEBUG: reading backend data packet kind Jun 6 09:36:47 otp3 pgpool[2872]: [918-2] 2016-06-06 09:36:47: pid 2872: DETAIL: backend:0 of 2 kind = 'C' Jun 6 09:36:47 otp3 pgpool[2872]: [918-3] 2016-06-06 09:36:47: pid 2872: LOCATION: pool_process_query.c:3349 Jun 6 09:36:47 otp3 pgpool[2873]: [489-1] 2016-06-06 09:36:47: pid 2873: DEBUG: Parse: waiting for master completing the query Jun 6 09:36:47 otp3 pgpool[2873]: [489-2] 2016-06-06 09:36:47: pid 2873: LOCATION: pool_proto_modules.c:1064 Jun 6 09:36:47 otp3 pgpool[2872]: [919-1] 2016-06-06 09:36:47: pid 2872: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:36:47 otp3 pgpool[2872]: [919-2] 2016-06-06 09:36:47: pid 2872: LOCATION: pool_process_query.c:3365 Jun 6 09:36:47 otp3 pgpool[2873]: [490-1] 2016-06-06 09:36:47: pid 2873: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:36:47 otp3 pgpool[2873]: [490-2] 2016-06-06 09:36:47: pid 2873: LOCATION: pool_query_context.c:854 Jun 6 09:36:47 otp3 pgpool[2872]: [920-1] 2016-06-06 09:36:47: pid 2872: DEBUG: processing backend response Jun 6 09:36:47 otp3 pgpool[2872]: [920-2] 2016-06-06 09:36:47: pid 2872: DETAIL: received kind 'C'(43) from backend Jun 6 09:36:47 otp3 pgpool[2872]: [920-3] 2016-06-06 09:36:47: pid 2872: LOCATION: pool_proto_modules.c:2424 Jun 6 09:36:47 otp3 pgpool[2872]: [921-1] 2016-06-06 09:36:47: pid 2872: DEBUG: session context: setting command success. DONE Jun 6 09:36:47 otp3 pgpool[2872]: [921-2] 2016-06-06 09:36:47: pid 2872: LOCATION: pool_session_context.c:741 Jun 6 09:36:47 otp3 pgpool[2872]: [922-1] 2016-06-06 09:36:47: pid 2872: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:47 otp3 pgpool[2872]: [922-2] 2016-06-06 09:36:47: pid 2872: LOCATION: pool_session_context.c:219 Jun 6 09:36:47 otp3 pgpool[2872]: [923-1] 2016-06-06 09:36:47: pid 2872: DEBUG: processing frontend response Jun 6 09:36:47 otp3 pgpool[2872]: [923-2] 2016-06-06 09:36:47: pid 2872: DETAIL: received kind 'S'(53) from frontend Jun 6 09:36:47 otp3 pgpool[2872]: [923-3] 2016-06-06 09:36:47: pid 2872: LOCATION: pool_proto_modules.c:2188 Jun 6 09:36:47 otp3 pgpool[2872]: [924-1] 2016-06-06 09:36:47: pid 2872: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:36:47 otp3 pgpool[2872]: [924-2] 2016-06-06 09:36:47: pid 2872: LOCATION: pool_session_context.c:280 Jun 6 09:36:47 otp3 pgpool[2872]: [925-1] 2016-06-06 09:36:47: pid 2872: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:36:47 otp3 pgpool[2872]: [925-2] 2016-06-06 09:36:47: pid 2872: LOCATION: pool_session_context.c:269 Jun 6 09:36:47 otp3 pgpool[2872]: [926-1] 2016-06-06 09:36:47: pid 2872: DEBUG: session context: setting query in progress. DONE Jun 6 09:36:47 otp3 pgpool[2872]: [926-2] 2016-06-06 09:36:47: pid 2872: LOCATION: pool_session_context.c:208 Jun 6 09:36:47 otp3 pgpool[2872]: [927-1] 2016-06-06 09:36:47: pid 2872: DEBUG: pool_write: to backend: kind:S Jun 6 09:36:47 otp3 pgpool[2872]: [927-2] 2016-06-06 09:36:47: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:36:47 otp3 pgpool[2872]: [928-1] 2016-06-06 09:36:47: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:47 otp3 pgpool[2872]: [928-2] 2016-06-06 09:36:47: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:47 otp3 pgpool[2875]: [154-2] 2016-06-06 09:36:43: pid 2875: LOCATION: pool_stream.c:431 Jun 6 09:36:47 otp3 pgpool[2874]: [87-2] 2016-06-06 09:36:47: pid 2874: LOCATION: pool_session_context.c:250 Jun 6 09:36:47 otp3 pgpool[2874]: [88-1] 2016-06-06 09:36:47: pid 2874: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:36:47 otp3 pgpool[2874]: [88-2] 2016-06-06 09:36:47: pid 2874: LOCATION: pool_session_context.c:310 Jun 6 09:36:47 otp3 pgpool[2874]: [89-1] 2016-06-06 09:36:47: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 0 doing extended query: 0 Jun 6 09:36:47 otp3 pgpool[2874]: [89-2] 2016-06-06 09:36:47: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:36:47 otp3 pgpool[2874]: [90-1] 2016-06-06 09:36:47: pid 2874: DEBUG: reading backend data packet kind Jun 6 09:36:47 otp3 pgpool[2874]: [90-2] 2016-06-06 09:36:47: pid 2874: DETAIL: backend:0 of 2 kind = 'Z' Jun 6 09:36:47 otp3 pgpool[2875]: [155-1] 2016-06-06 09:36:47: pid 2875: DEBUG: pool_write: to backend: kind:H Jun 6 09:36:47 otp3 pgpool[2875]: [155-2] 2016-06-06 09:36:47: pid 2875: LOCATION: pool_stream.c:431 Jun 6 09:36:47 otp3 pgpool[2872]: [929-1] 2016-06-06 09:36:47: pid 2872: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:36:47 otp3 pgpool[2872]: [929-2] 2016-06-06 09:36:47: pid 2872: LOCATION: pool_stream.c:190 Jun 6 09:36:47 otp3 pgpool[2875]: [156-1] 2016-06-06 09:36:47: pid 2875: DEBUG: waiting for query response Jun 6 09:36:47 otp3 pgpool[2875]: [156-2] 2016-06-06 09:36:47: pid 2875: DETAIL: waiting for backend:0 to complete the query Jun 6 09:36:47 otp3 pgpool[2875]: [156-3] 2016-06-06 09:36:47: pid 2875: LOCATION: pool_process_query.c:479 Jun 6 09:36:47 otp3 pgpool[2872]: [930-1] 2016-06-06 09:36:47: pid 2872: DEBUG: reading backend data packet kind Jun 6 09:36:47 otp3 pgpool[2874]: [90-3] 2016-06-06 09:36:47: pid 2874: LOCATION: pool_process_query.c:3349 Jun 6 09:36:47 otp3 pgpool[2872]: [930-2] 2016-06-06 09:36:47: pid 2872: DETAIL: backend:0 of 2 kind = 'Z' Jun 6 09:36:47 otp3 pgpool[2872]: [930-3] 2016-06-06 09:36:47: pid 2872: LOCATION: pool_process_query.c:3349 Jun 6 09:36:47 otp3 pgpool[2874]: [91-1] 2016-06-06 09:36:47: pid 2874: DEBUG: reading backend data packet kind Jun 6 09:36:47 otp3 pgpool[2874]: [91-2] 2016-06-06 09:36:47: pid 2874: DETAIL: backend:1 of 2 kind = 'Z' Jun 6 09:36:47 otp3 pgpool[2874]: [91-3] 2016-06-06 09:36:47: pid 2874: LOCATION: pool_process_query.c:3349 Jun 6 09:36:47 otp3 pgpool[2872]: [931-1] 2016-06-06 09:36:47: pid 2872: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:36:47 otp3 pgpool[2872]: [931-2] 2016-06-06 09:36:47: pid 2872: LOCATION: pool_process_query.c:3365 Jun 6 09:36:47 otp3 pgpool[2874]: [92-1] 2016-06-06 09:36:47: pid 2874: DEBUG: read_kind_from_backend max_count:2.000000 num_executed_nodes:2 Jun 6 09:36:47 otp3 pgpool[2874]: [92-2] 2016-06-06 09:36:47: pid 2874: LOCATION: pool_process_query.c:3365 Jun 6 09:36:47 otp3 pgpool[2872]: [932-1] 2016-06-06 09:36:47: pid 2872: DEBUG: processing backend response Jun 6 09:36:47 otp3 pgpool[2872]: [932-2] 2016-06-06 09:36:47: pid 2872: DETAIL: received kind 'Z'(5a) from backend Jun 6 09:36:47 otp3 pgpool[2872]: [932-3] 2016-06-06 09:36:47: pid 2872: LOCATION: pool_proto_modules.c:2424 Jun 6 09:36:47 otp3 pgpool[2874]: [93-1] 2016-06-06 09:36:47: pid 2874: DEBUG: processing backend response Jun 6 09:36:47 otp3 pgpool[2872]: [933-1] 2016-06-06 09:36:47: pid 2872: DEBUG: processing backend response Jun 6 09:36:47 otp3 pgpool[2872]: [933-2] 2016-06-06 09:36:47: pid 2872: DETAIL: Ready For Query received Jun 6 09:36:47 otp3 pgpool[2872]: [933-3] 2016-06-06 09:36:47: pid 2872: LOCATION: pool_proto_modules.c:2442 Jun 6 09:36:47 otp3 pgpool[2872]: [934-1] 2016-06-06 09:36:47: pid 2872: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:36:47 otp3 pgpool[2872]: [934-2] 2016-06-06 09:36:47: pid 2872: LOCATION: pool_session_context.c:310 Jun 6 09:36:47 otp3 pgpool[2872]: [935-1] 2016-06-06 09:36:47: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:47 otp3 pgpool[2872]: [935-2] 2016-06-06 09:36:47: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:47 otp3 pgpool[2872]: [936-1] 2016-06-06 09:36:47: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:47 otp3 pgpool[2872]: [936-2] 2016-06-06 09:36:47: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:47 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_process_query.c:4166 Jun 6 09:36:47 otp3 pgpool[2872]: [937-1] 2016-06-06 09:36:47: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:47 otp3 pgpool[2872]: [937-2] 2016-06-06 09:36:47: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:47 otp3 pgpool[2872]: [938-1] 2016-06-06 09:36:47: pid 2872: DEBUG: reading message length Jun 6 09:36:47 otp3 pgpool[2872]: [938-2] 2016-06-06 09:36:47: pid 2872: DETAIL: slot: 0 length: 5 Jun 6 09:36:47 otp3 pgpool[2872]: [938-3] 2016-06-06 09:36:47: pid 2872: LOCATION: pool_auth.c:1107 Jun 6 09:36:47 otp3 pgpool[2874]: [93-2] 2016-06-06 09:36:47: pid 2874: DETAIL: received kind 'Z'(5a) from backend Jun 6 09:36:47 otp3 pgpool[2872]: [939-1] 2016-06-06 09:36:47: pid 2872: DEBUG: processing ReadyForQuery Jun 6 09:36:47 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:36:48 otp3 pgpool[2872]: [939-2] 2016-06-06 09:36:47: pid 2872: DETAIL: transaction state 'I'(49) Jun 6 09:36:50 otp3 pgpool[2872]: [939-3] 2016-06-06 09:36:47: pid 2872: LOCATION: pool_proto_modules.c:1612 Jun 6 09:36:50 otp3 pgpool[2872]: [940-1] 2016-06-06 09:36:50: pid 2872: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:50 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:36:50 otp3 pgpool[2872]: [940-2] 2016-06-06 09:36:50: pid 2872: LOCATION: pool_session_context.c:219 Jun 6 09:36:50 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:47 otp3 pgpool[2875]: [157-1] 2016-06-06 09:36:47: pid 2875: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:36:50 otp3 pgpool[2875]: [157-2] 2016-06-06 09:36:47: pid 2875: LOCATION: pool_stream.c:190 Jun 6 09:36:47 otp3 pgpool[2874]: [93-3] 2016-06-06 09:36:47: pid 2874: LOCATION: pool_proto_modules.c:2424 Jun 6 09:36:50 otp3 pgpool[2875]: [158-1] 2016-06-06 09:36:50: pid 2875: DEBUG: pool_send_and_wait: pool_set_sync_map: 1 Jun 6 09:36:50 otp3 pgpool[2875]: [158-2] 2016-06-06 09:36:50: pid 2875: LOCATION: pool_query_context.c:854 Jun 6 09:36:47 otp3 pgpool[2873]: [491-1] 2016-06-06 09:36:47: pid 2873: DEBUG: pool_write: to backend: kind:P Jun 6 09:36:50 otp3 pgpool[2873]: [491-2] 2016-06-06 09:36:47: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:36:50 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:50 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: reading backend data packet kind Jun 6 09:36:50 otp3 pgpool[2873]: [492-1] 2016-06-06 09:36:50: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:36:50 otp3 pgpool[2873]: [492-2] 2016-06-06 09:36:50: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:36:50 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DETAIL: backend:0 of 2 kind = 'D' Jun 6 09:36:50 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_process_query.c:3349 Jun 6 09:36:50 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DEBUG: processing backend response Jun 6 09:36:50 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DETAIL: received kind 'C'(43) from backend Jun 6 09:36:50 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:36:50 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:36:50 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_process_query.c:3365 Jun 6 09:36:50 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: processing backend response Jun 6 09:36:50 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DETAIL: received kind 'D'(44) from backend Jun 6 09:36:50 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_proto_modules.c:2424 Jun 6 09:36:50 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DEBUG: session context: setting command success. DONE Jun 6 09:36:50 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: LOCATION: pool_session_context.c:741 Jun 6 09:36:50 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:50 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:50 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: SimpleForwardToFrontend: packet:D length:175 Jun 6 09:36:50 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_process_query.c:792 Jun 6 09:36:50 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:50 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:36:50 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:50 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:50 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: reading backend data packet kind Jun 6 09:36:50 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DETAIL: backend:0 of 2 kind = 'C' Jun 6 09:36:50 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_process_query.c:3349 Jun 6 09:36:50 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DEBUG: processing frontend response Jun 6 09:36:50 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DETAIL: received kind 'S'(53) from frontend Jun 6 09:36:50 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:36:50 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:36:50 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_process_query.c:3365 Jun 6 09:36:50 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:36:50 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:36:50 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: processing backend response Jun 6 09:36:50 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DETAIL: received kind 'C'(43) from backend Jun 6 09:36:50 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_proto_modules.c:2424 Jun 6 09:36:50 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:36:50 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:36:50 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: session context: setting command success. DONE Jun 6 09:36:50 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:741 Jun 6 09:36:50 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:50 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:219 Jun 6 09:36:50 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:36:50 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:36:50 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: processing frontend response Jun 6 09:36:50 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DETAIL: received kind 'S'(53) from frontend Jun 6 09:36:50 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_proto_modules.c:2188 Jun 6 09:36:50 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DEBUG: pool_write: to backend: kind:S Jun 6 09:36:50 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:36:50 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:36:50 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:280 Jun 6 09:36:50 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:36:50 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:269 Jun 6 09:36:50 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: session context: setting query in progress. DONE Jun 6 09:36:50 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:208 Jun 6 09:36:50 otp3 pgpool[2874]: [94-1] 2016-06-06 09:36:50: pid 2874: DEBUG: processing backend response Jun 6 09:36:50 otp3 pgpool[2874]: [94-2] 2016-06-06 09:36:50: pid 2874: DETAIL: Ready For Query received Jun 6 09:36:50 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:50 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:36:50 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: pool_write: to backend: kind:S Jun 6 09:36:50 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:36:50 otp3 pgpool[2874]: [94-3] 2016-06-06 09:36:50: pid 2874: LOCATION: pool_proto_modules.c:2442 Jun 6 09:36:50 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:50 otp3 pgpool[2874]: [95-1] 2016-06-06 09:36:50: pid 2874: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:36:50 otp3 pgpool[2875]: [159-1] 2016-06-06 09:36:50: pid 2875: DEBUG: pool_write: to backend: kind:B Jun 6 09:36:50 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:50 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: DEBUG: reading message length Jun 6 09:36:50 otp3 pgpool[2875]: [159-2] 2016-06-06 09:36:50: pid 2875: LOCATION: pool_stream.c:431 Jun 6 09:36:50 otp3 pgpool[2874]: [95-2] 2016-06-06 09:36:50: pid 2874: LOCATION: pool_session_context.c:310 Jun 6 09:36:50 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: DETAIL: master slot: 0 length: 30 Jun 6 09:36:50 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: LOCATION: pool_auth.c:1161 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: DEBUG: reading message length Jun 6 09:36:50 otp3 pgpool[2873]: [493-1] 2016-06-06 09:36:50: pid 2873: DEBUG: waiting for query response Jun 6 09:36:51 otp3 pgpool[2874]: [96-1] 2016-06-06 09:36:51: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 0 doing extended query: 0 Jun 6 09:36:50 otp3 pgpool[2875]: [160-1] 2016-06-06 09:36:50: pid 2875: DEBUG: pool_write: to backend: kind:H Jun 6 09:36:51 otp3 pgpool[2873]: [493-2] 2016-06-06 09:36:50: pid 2873: DETAIL: waiting for backend:0 to complete the query Jun 6 09:36:51 otp3 pgpool[2873]: [493-3] 2016-06-06 09:36:50: pid 2873: LOCATION: pool_process_query.c:479 Jun 6 09:36:51 otp3 pgpool[2875]: [160-2] 2016-06-06 09:36:50: pid 2875: LOCATION: pool_stream.c:431 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: DETAIL: master slot: 1 length: 30 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: LOCATION: pool_auth.c:1172 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: DEBUG: process parameter status Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: DETAIL: backend:0 name:"server_encoding" value:"SQL_ASCII" Jun 6 09:36:51 otp3 pgpool[2875]: [161-1] 2016-06-06 09:36:51: pid 2875: DEBUG: waiting for query response Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: LOCATION: pool_process_query.c:921 Jun 6 09:36:51 otp3 pgpool[2875]: [161-2] 2016-06-06 09:36:51: pid 2875: DETAIL: waiting for backend:1 to complete the query Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: DEBUG: process parameter status Jun 6 09:36:51 otp3 pgpool[2875]: [161-3] 2016-06-06 09:36:51: pid 2875: LOCATION: pool_process_query.c:479 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: DETAIL: backend:1 name:"server_encoding" value:"SQL_ASCII" Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: LOCATION: pool_process_query.c:921 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: DEBUG: reading message length Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: DETAIL: master slot: 0 length: 26 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: LOCATION: pool_auth.c:1161 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: DEBUG: reading message length Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: DETAIL: master slot: 1 length: 26 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: LOCATION: pool_auth.c:1172 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: DEBUG: process parameter status Jun 6 09:36:51 otp3 pgpool[2874]: [96-2] 2016-06-06 09:36:51: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:36:51 otp3 pgpool[2875]: [162-1] 2016-06-06 09:36:51: pid 2875: DEBUG: pool_read: read 5 bytes from backend 1 Jun 6 09:36:51 otp3 pgpool[2873]: [494-1] 2016-06-06 09:36:51: pid 2873: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:36:51 otp3 pgpool[2873]: [494-2] 2016-06-06 09:36:51: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:36:51 otp3 pgpool[2875]: [162-2] 2016-06-06 09:36:51: pid 2875: LOCATION: pool_stream.c:190 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: DETAIL: backend:0 name:"server_version" value:"9.3.12" Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: LOCATION: pool_process_query.c:921 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: DEBUG: process parameter status Jun 6 09:36:51 otp3 pgpool[2873]: [495-1] 2016-06-06 09:36:51: pid 2873: DEBUG: detect error: kind: 1 Jun 6 09:36:51 otp3 pgpool[2873]: [495-2] 2016-06-06 09:36:51: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:36:51 otp3 pgpool[2873]: [496-1] 2016-06-06 09:36:51: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:51 otp3 pgpool[2873]: [496-2] 2016-06-06 09:36:51: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:36:51 otp3 pgpool[2873]: [497-1] 2016-06-06 09:36:51: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:36:51 otp3 pgpool[2873]: [497-2] 2016-06-06 09:36:51: pid 2873: DETAIL: backend:0 of 2 kind = '1' Jun 6 09:36:51 otp3 pgpool[2873]: [497-3] 2016-06-06 09:36:51: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:36:51 otp3 pgpool[2873]: [498-1] 2016-06-06 09:36:51: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:36:51 otp3 pgpool[2873]: [498-2] 2016-06-06 09:36:51: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:36:51 otp3 pgpool[2873]: [499-1] 2016-06-06 09:36:51: pid 2873: DEBUG: processing backend response Jun 6 09:36:51 otp3 pgpool[2873]: [499-2] 2016-06-06 09:36:51: pid 2873: DETAIL: received kind '1'(31) from backend Jun 6 09:36:51 otp3 pgpool[2873]: [499-3] 2016-06-06 09:36:51: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:36:51 otp3 pgpool[2873]: [500-1] 2016-06-06 09:36:51: pid 2873: DEBUG: called by pool_add_sent_message: sent message: address: 2406c80 kind: P name: == Jun 6 09:36:51 otp3 pgpool[2873]: [500-2] 2016-06-06 09:36:51: pid 2873: LOCATION: pool_session_context.c:436 Jun 6 09:36:51 otp3 pgpool[2873]: [501-1] 2016-06-06 09:36:51: pid 2873: DEBUG: adding sent message to list Jun 6 09:36:51 otp3 pgpool[2873]: [501-2] 2016-06-06 09:36:51: pid 2873: DETAIL: prepared statement "" already exists Jun 6 09:36:51 otp3 pgpool[2873]: [501-3] 2016-06-06 09:36:51: pid 2873: LOCATION: pool_session_context.c:516 Jun 6 09:36:51 otp3 pgpool[2873]: [502-1] 2016-06-06 09:36:51: pid 2873: DEBUG: called by pool_sent_message_destroy: sent message: address: 2406d18 kind: P name: == Jun 6 09:36:51 otp3 pgpool[2873]: [502-2] 2016-06-06 09:36:51: pid 2873: LOCATION: pool_session_context.c:436 Jun 6 09:36:51 otp3 pgpool[2873]: [503-1] 2016-06-06 09:36:51: pid 2873: DEBUG: checking if query context can be safely destroyed Jun 6 09:36:51 otp3 pgpool[2873]: [503-2] 2016-06-06 09:36:51: pid 2873: DETAIL: query context 0x802481830 is still used 2 times. query:"select cltenant0_.tenant_id as tenant_i1_3_0_, cltenant0_.database_id as database3_3_0_, cltenant0_.plan_id as plan_id4_3_0_, cltenant0_.tenant_name as tenant_n2_3_0_, cldatabase1_.database_id as database1_0_1_, cldatabase1_.database_server_id as database7_0_1_, cldatabase1_.database_name as database2_0_1_, cldatabase1_.max_pool_size as max_pool3_0_1_, cldatabase1_.min_pool_size as min_pool4_0_1_, cldatabase1_.password as password5_0_1_, cldatabase1_.username as username6_0_1_, cldatabase2_.database_server_id as database1_1_2_, cldatabase2_.helpdesk_driver_class as helpdesk2_1_2_, cldatabase2_.host as host3_1_2_, cldatabase2_.jdbc_url as jdbc_url4_1_2_, cldatabase2_.port as port5_1_2_, cldatabase2_.rule_engine_driver_class as rule_eng6_1_2_, clhosts3_.tenant_id as tenant_i4_3_3_, Jun 6 09:36:51 otp3 pgpool[2873]: [503-3] clhosts3_.host_id as host_id1_2_3_, clhosts3_.host_id as host_id1_2_4_, clhosts3_.host_name as host_nam2_2_4_, clhosts3_.is_https as is_https3_2_4_, clhosts3_.tenant_id as tenant_i4_2_4_, plan4_.id as id1_5_5_, plan4_.default_no_of_assets as default_2_5_5_, plan4_.default_number_of_agents as default_3_5_5_, plan4_.is_assets as is_asset4_5_5_, plan4_.plan as plan5_5_5_, plan4_.plan_name as plan_nam6_5_5_, plan4_.poller_source_reference_limit as poller_s7_5_5_ from cl_tenant cltenant0_ left outer join cl_database cldatabase1_ on cltenant0_.database_id=cldatabase1_.database_id left outer join cl_database_server cldatabase2_ on cldatabase1_.database_server_id=cldatabase2_.database_server_id left outer join cl_host clhosts3_ on cltenant0_.tenant_id=clhosts3_.tenant_id left outer join plan plan4_ on cltenant0_.plan_id=plan4_.id where cltenant0_.tenant_id=$1" Jun 6 09:36:51 otp3 pgpool[2873]: [503-4] 2016-06-06 09:36:51: pid 2873: LOCATION: pool_session_context.c:873 Jun 6 09:36:51 otp3 pgpool[2873]: [504-1] 2016-06-06 09:36:51: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:51 otp3 pgpool[2873]: [504-2] 2016-06-06 09:36:51: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:36:51 otp3 pgpool[2873]: [505-1] 2016-06-06 09:36:51: pid 2873: DEBUG: SimpleForwardToFrontend: packet:1 length:0 Jun 6 09:36:51 otp3 pgpool[2873]: [505-2] 2016-06-06 09:36:51: pid 2873: LOCATION: pool_process_query.c:792 Jun 6 09:36:51 otp3 pgpool[2873]: [506-1] 2016-06-06 09:36:51: pid 2873: DEBUG: session context: setting command success. DONE Jun 6 09:36:51 otp3 pgpool[2873]: [506-2] 2016-06-06 09:36:51: pid 2873: LOCATION: pool_session_context.c:741 Jun 6 09:36:51 otp3 pgpool[2873]: [507-1] 2016-06-06 09:36:51: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:51 otp3 pgpool[2873]: [507-2] 2016-06-06 09:36:51: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:36:51 otp3 pgpool[2873]: [508-1] 2016-06-06 09:36:51: pid 2873: DEBUG: processing frontend response Jun 6 09:36:51 otp3 pgpool[2873]: [508-2] 2016-06-06 09:36:51: pid 2873: DETAIL: received kind 'B'(42) from frontend Jun 6 09:36:51 otp3 pgpool[2873]: [508-3] 2016-06-06 09:36:51: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:36:51 otp3 pgpool[2873]: [509-1] 2016-06-06 09:36:51: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:36:51 otp3 pgpool[2873]: [509-2] 2016-06-06 09:36:51: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:36:51 otp3 pgpool[2873]: [510-1] 2016-06-06 09:36:51: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:36:51 otp3 pgpool[2873]: [510-2] 2016-06-06 09:36:51: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:36:51 otp3 pgpool[2873]: [511-1] 2016-06-06 09:36:51: pid 2873: DEBUG: Bind: checking strict query Jun 6 09:36:51 otp3 pgpool[2873]: [511-2] 2016-06-06 09:36:51: pid 2873: LOCATION: pool_proto_modules.c:1211 Jun 6 09:36:51 otp3 pgpool[2875]: [163-1] 2016-06-06 09:36:51: pid 2875: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:51 otp3 pgpool[2875]: [163-2] 2016-06-06 09:36:51: pid 2875: LOCATION: pool_session_context.c:969 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: DETAIL: backend:1 name:"server_version" value:"9.3.12" Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: LOCATION: pool_process_query.c:921 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: DEBUG: reading message length Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: DETAIL: master slot: 0 length: 38 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: LOCATION: pool_auth.c:1161 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: DEBUG: reading message length Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: DETAIL: master slot: 1 length: 38 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: LOCATION: pool_auth.c:1172 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: DEBUG: process parameter status Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: DETAIL: backend:0 name:"session_authorization" value:"sparrowdesk" Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: LOCATION: pool_process_query.c:921 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: DEBUG: process parameter status Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: DETAIL: backend:1 name:"session_authorization" value:"sparrowdesk" Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: LOCATION: pool_process_query.c:921 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: DEBUG: reading message length Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: DETAIL: master slot: 0 length: 35 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: LOCATION: pool_auth.c:1161 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: DEBUG: reading message length Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: DETAIL: master slot: 1 length: 35 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: LOCATION: pool_auth.c:1172 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: DEBUG: process parameter status Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: DETAIL: backend:0 name:"standard_conforming_strings" value:"on" Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: LOCATION: pool_process_query.c:921 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_stream.c:190 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: reading backend data packet kind Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DETAIL: backend:0 of 2 kind = 'Z' Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_process_query.c:3349 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_process_query.c:3365 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: processing backend response Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DETAIL: received kind 'Z'(5a) from backend Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_proto_modules.c:2424 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: processing backend response Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DETAIL: Ready For Query received Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_proto_modules.c:2442 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:310 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:51 otp3 pgpool[2874]: [97-1] 2016-06-06 09:36:51: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 0 doing extended query: 0 Jun 6 09:36:51 otp3 pgpool[2874]: [97-2] 2016-06-06 09:36:51: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:51 otp3 pgpool[2874]: [98-1] 2016-06-06 09:36:51: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 0 doing extended query: 0 Jun 6 09:36:51 otp3 pgpool[2874]: [98-2] 2016-06-06 09:36:51: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:36:51 otp3 pgpool[2874]: [99-1] 2016-06-06 09:36:51: pid 2874: DEBUG: reading message length Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:51 otp3 pgpool[2874]: [99-2] 2016-06-06 09:36:51: pid 2874: DETAIL: slot: 0 length: 5 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:51 otp3 pgpool[2874]: [99-3] 2016-06-06 09:36:51: pid 2874: LOCATION: pool_auth.c:1107 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: reading message length Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DETAIL: slot: 0 length: 5 Jun 6 09:36:51 otp3 pgpool[2874]: [100-1] 2016-06-06 09:36:51: pid 2874: DEBUG: reading message length Jun 6 09:36:51 otp3 pgpool[2874]: [100-2] 2016-06-06 09:36:51: pid 2874: DETAIL: slot: 1 length: 5 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_auth.c:1107 Jun 6 09:36:51 otp3 pgpool[2874]: [100-3] 2016-06-06 09:36:51: pid 2874: LOCATION: pool_auth.c:1126 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: processing ReadyForQuery Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DETAIL: transaction state 'I'(49) Jun 6 09:36:51 otp3 pgpool[2874]: [101-1] 2016-06-06 09:36:51: pid 2874: DEBUG: processing ReadyForQuery Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_proto_modules.c:1612 Jun 6 09:36:51 otp3 pgpool[2874]: [101-2] 2016-06-06 09:36:51: pid 2874: DETAIL: transaction state ' Jun 6 09:36:51 otp3 pgpool[2874]: [101-3] 2016-06-06 09:36:51: pid 2874: LOCATION: pool_proto_modules.c:1612 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:51 otp3 pgpool[2874]: [102-1] 2016-06-06 09:36:51: pid 2874: DEBUG: processing ReadyForQuery Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:219 Jun 6 09:36:51 otp3 pgpool[2874]: [102-2] 2016-06-06 09:36:51: pid 2874: DETAIL: transaction state 'I'(49) Jun 6 09:36:51 otp3 pgpool[2874]: [102-3] 2016-06-06 09:36:51: pid 2874: LOCATION: pool_proto_modules.c:1612 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DETAIL: backend:0 of 2 kind = 'Z' Jun 6 09:36:51 otp3 pgpool[2874]: [103-1] 2016-06-06 09:36:51: pid 2874: DEBUG: processing frontend response Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:36:51 otp3 pgpool[2874]: [103-2] 2016-06-06 09:36:51: pid 2874: DETAIL: received kind 'P'(50) from frontend Jun 6 09:36:51 otp3 pgpool[2874]: [103-3] 2016-06-06 09:36:51: pid 2874: LOCATION: pool_proto_modules.c:2188 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DEBUG: processing backend response Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DETAIL: received kind 'Z'(5a) from backend Jun 6 09:36:51 otp3 pgpool[2874]: [104-1] 2016-06-06 09:36:51: pid 2874: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DEBUG: processing backend response Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DETAIL: Ready For Query received Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: LOCATION: pool_proto_modules.c:2442 Jun 6 09:36:51 otp3 pgpool[2874]: [104-2] 2016-06-06 09:36:51: pid 2874: LOCATION: pool_session_context.c:280 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: LOCATION: pool_session_context.c:310 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2875: DEBUG: detect error: kind: 1 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2875: LOCATION: pool_process_query.c:4166 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: processing frontend response Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DETAIL: received kind 'P'(50) from frontend Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_proto_modules.c:2188 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:280 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:269 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: Parse: statement name <> Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_proto_modules.c:817 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: session context: setting query in progress. DONE Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:208 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: pool_write: to backend: kind:S Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: pool_write: to backend: kind:H Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DEBUG: reading message length Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DETAIL: slot: 0 length: 5 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: LOCATION: pool_auth.c:1107 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DEBUG: processing ReadyForQuery Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DETAIL: transaction state 'I'(49) Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: LOCATION: pool_proto_modules.c:1612 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_stream.c:190 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:310 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: reading message length Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DETAIL: slot: 0 length: 5 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_auth.c:1107 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: processing ReadyForQuery Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DETAIL: transaction state 'I'(49) Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_proto_modules.c:1612 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:219 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: session context: setting query in progress. DONE Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_session_context.c:208 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: Parse: waiting for master completing the query Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_proto_modules.c:1064 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_query_context.c:854 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: pool_write: to backend: kind:P Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: DEBUG: pool_write: to backend: kind:H Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2875: DEBUG: pool_send_and_wait: pool_set_sync_map: 1 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2875: LOCATION: pool_query_context.c:854 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:27: pid 2872: DEBUG: waiting for query response Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:27: pid 2872: DETAIL: waiting for backend:0 to complete the query Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:27: pid 2872: LOCATION: pool_process_query.c:479 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:27: pid 2875: DEBUG: pool_write: to backend: kind:P Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:27: pid 2875: LOCATION: pool_stream.c:431 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:27: pid 2875: DEBUG: pool_write: to backend: kind:H Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:27: pid 2875: LOCATION: pool_stream.c:431 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:27: pid 2875: DEBUG: waiting for query response Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:27: pid 2875: DETAIL: waiting for backend:1 to complete the query Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:27: pid 2875: LOCATION: pool_process_query.c:479 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: DEBUG: process parameter status Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: DETAIL: backend:1 name:"standard_conforming_strings" value:"on" Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2874: LOCATION: pool_process_query.c:921 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:27: pid 2874: DEBUG: reading message length Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:27: pid 2874: DETAIL: master slot: 0 length: 26 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:27: pid 2874: LOCATION: pool_auth.c:1161 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:27: pid 2874: DEBUG: reading message length Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:27: pid 2874: DETAIL: master slot: 1 length: 26 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:27: pid 2874: LOCATION: pool_auth.c:1172 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:27: pid 2874: DEBUG: process parameter status Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:27: pid 2874: DETAIL: backend:0 name:"TimeZone" value:"Asia/Kolkata" Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:27: pid 2874: LOCATION: pool_process_query.c:921 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:27: pid 2874: DEBUG: process parameter status Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:27: pid 2874: DETAIL: backend:1 name:"TimeZone" value:"Asia/Kolkata" Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:27: pid 2874: LOCATION: pool_process_query.c:921 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:27: pid 2874: DEBUG: reading message length Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:27: pid 2874: DETAIL: slot: 0 length: 12 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:27: pid 2874: LOCATION: pool_auth.c:1107 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:27: pid 2874: DEBUG: reading message length Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:27: pid 2874: DETAIL: slot: 1 length: 12 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:27: pid 2874: LOCATION: pool_auth.c:1126 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:27: pid 2874: DEBUG: authentication backend Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:27: pid 2874: DETAIL: cp->info[i]:0x8007ae000 pid:97122 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:27: pid 2874: LOCATION: pool_auth.c:391 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:27: pid 2874: DEBUG: authentication backend Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:27: pid 2874: DETAIL: cp->info[i]:0x8007ae088 pid:83418 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:27: pid 2874: LOCATION: pool_auth.c:391 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:27: pid 2874: DEBUG: sending backend key data Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:27: pid 2874: DETAIL: send pid 83418 to frontend Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:27: pid 2874: LOCATION: pool_auth.c:519 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:26: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:27: pid 2872: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:27: pid 2872: LOCATION: pool_stream.c:190 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:27: pid 2872: DEBUG: detect error: kind: 1 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:27: pid 2872: LOCATION: pool_process_query.c:4166 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:27: pid 2874: DEBUG: selecting load balance node Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:27: pid 2874: DETAIL: selected backend id is 0 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:27: pid 2874: LOCATION: child.c:1720 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:27: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:27: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:27: pid 2872: DEBUG: reading backend data packet kind Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:27: pid 2872: DETAIL: backend:0 of 2 kind = '1' Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:27: pid 2872: LOCATION: pool_process_query.c:3349 Jun 6 09:36:51 otp3 pgpool[2874]: [105-1] 2016-06-06 09:36:51: pid 2874: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:27: pid 2872: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:27: pid 2872: LOCATION: pool_process_query.c:3365 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:27: pid 2872: DEBUG: processing backend response Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:27: pid 2872: DETAIL: received kind '1'(31) from backend Jun 6 09:36:51 otp3 pgpool[2874]: [105-2] 2016-06-06 09:36:51: pid 2874: LOCATION: pool_session_context.c:269 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:27: pid 2872: LOCATION: pool_proto_modules.c:2424 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:27: pid 2872: DEBUG: called by pool_add_sent_message: sent message: address: 2406d18 kind: P name: == Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:27: pid 2872: LOCATION: pool_session_context.c:436 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:27: pid 2873: DEBUG: processing frontend response Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:27: pid 2873: DETAIL: received kind 'P'(50) from frontend Jun 6 09:36:51 otp3 pgpool[2874]: [106-1] 2016-06-06 09:36:51: pid 2874: DEBUG: Parse: statement name <> Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:27: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:36:51 otp3 pgpool[2874]: [106-2] 2016-06-06 09:36:51: pid 2874: LOCATION: pool_proto_modules.c:817 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:27: pid 2872: DEBUG: adding sent message to list Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:27: pid 2872: DETAIL: prepared statement "" already exists Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:27: pid 2872: LOCATION: pool_session_context.c:516 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:29: pid 2872: DEBUG: called by pool_sent_message_destroy: sent message: address: 2406d98 kind: P name: == Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:29: pid 2872: LOCATION: pool_session_context.c:436 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:29: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:29: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:27: pid 2874: DEBUG: initializing session context Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:27: pid 2874: DETAIL: selected load balancing node: 0 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:27: pid 2874: LOCATION: pool_session_context.c:99 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:29: pid 2872: DEBUG: checking if query context can be safely destroyed Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:29: pid 2872: DETAIL: query context 0x802481830 is still used 2 times. query:"select welcomemes0_.id as id1_30_, welcomemes0_.heading as heading2_30_, welcomemes0_.message as message3_30_ from welcome_message welcomemes0_" Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:29: pid 2872: LOCATION: pool_session_context.c:873 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:29: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:29: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:29: pid 2872: DEBUG: SimpleForwardToFrontend: packet:1 length:0 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:29: pid 2872: LOCATION: pool_process_query.c:792 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:29: pid 2872: DEBUG: session context: setting command success. DONE Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:29: pid 2872: LOCATION: pool_session_context.c:741 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:29: pid 2872: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:29: pid 2872: LOCATION: pool_session_context.c:219 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:29: pid 2872: DEBUG: processing frontend response Jun 6 09:36:51 otp3 pgpool[2874]: [107-1] 2016-06-06 09:36:51: pid 2874: DEBUG: session context: setting query in progress. DONE Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:29: pid 2872: DETAIL: received kind 'B'(42) from frontend Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:29: pid 2872: LOCATION: pool_proto_modules.c:2188 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:29: pid 2872: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:29: pid 2872: LOCATION: pool_session_context.c:280 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:29: pid 2872: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:29: pid 2872: LOCATION: pool_session_context.c:269 Jun 6 09:36:51 otp3 pgpool[2874]: [107-2] 2016-06-06 09:36:51: pid 2874: LOCATION: pool_session_context.c:208 Jun 6 09:36:51 otp3 pgpool[2874]: [108-1] 2016-06-06 09:36:51: pid 2874: DEBUG: pool_write: to backend: kind:S Jun 6 09:36:51 otp3 pgpool[2874]: [108-2] 2016-06-06 09:36:51: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:29: pid 2872: DEBUG: Bind: checking strict query Jun 6 09:36:51 otp3 pgpool[2874]: [109-1] 2016-06-06 09:36:51: pid 2874: DEBUG: pool_write: to backend: kind:H Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:29: pid 2872: LOCATION: pool_proto_modules.c:1211 Jun 6 09:36:51 otp3 pgpool[2874]: [109-2] 2016-06-06 09:36:51: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:29: pid 2872: DEBUG: Bind: checking insert lock Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:29: pid 2872: LOCATION: pool_proto_modules.c:1221 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:29: pid 2872: DEBUG: Bind: waiting for master completing the query Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:29: pid 2872: LOCATION: pool_proto_modules.c:1237 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:29: pid 2872: DEBUG: session context: setting query in progress. DONE Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:29: pid 2872: LOCATION: pool_session_context.c:208 Jun 6 09:36:51 otp3 pgpool[2874]: [110-1] 2016-06-06 09:36:51: pid 2874: DEBUG: pool_write: to backend: kind:S Jun 6 09:36:51 otp3 pgpool[2874]: [110-2] 2016-06-06 09:36:51: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:29: pid 2872: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:29: pid 2872: LOCATION: pool_query_context.c:854 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:29: pid 2872: DEBUG: pool_write: to backend: kind:B Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:29: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:29: pid 2872: DEBUG: pool_write: to backend: kind:H Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:29: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:29: pid 2872: DEBUG: waiting for query response Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:29: pid 2872: DETAIL: waiting for backend:0 to complete the query Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:29: pid 2872: LOCATION: pool_process_query.c:479 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:29: pid 2872: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:29: pid 2872: LOCATION: pool_stream.c:190 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:29: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:29: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:29: pid 2872: DEBUG: reading backend data packet kind Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:29: pid 2872: DETAIL: backend:0 of 2 kind = '2' Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:29: pid 2872: LOCATION: pool_process_query.c:3349 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:29: pid 2872: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:29: pid 2872: LOCATION: pool_process_query.c:3365 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:29: pid 2872: DEBUG: processing backend response Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:29: pid 2872: DETAIL: received kind '2'(32) from backend Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:29: pid 2872: LOCATION: pool_proto_modules.c:2424 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:29: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:29: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:29: pid 2872: DEBUG: called by pool_add_sent_message: sent message: address: 2406d98 kind: B name: == Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:29: pid 2872: LOCATION: pool_session_context.c:436 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:27: pid 2875: DEBUG: pool_read: read 5 bytes from backend 1 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:27: pid 2875: LOCATION: pool_stream.c:190 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:30: pid 2875: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:30: pid 2875: LOCATION: pool_session_context.c:969 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:29: pid 2873: DEBUG: Parse: statement name <> Jun 6 09:36:51 otp3 pgpool[2874]: [111-1] 2016-06-06 09:36:51: pid 2874: DEBUG: pool_write: to backend: kind:H Jun 6 09:36:51 otp3 pgpool[2874]: [111-2] 2016-06-06 09:36:51: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:29: pid 2873: LOCATION: pool_proto_modules.c:817 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:30: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:30: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:30: pid 2875: DEBUG: reading backend data packet kind Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:30: pid 2875: DETAIL: backend:0 of 2 kind = '1' Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:30: pid 2875: LOCATION: pool_process_query.c:3349 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:31: pid 2875: DEBUG: reading backend data packet kind Jun 6 09:36:51 otp3 pgpool[2874]: [112-1] 2016-06-06 09:36:51: pid 2874: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:31: pid 2875: DETAIL: backend:1 of 2 kind = '1' Jun 6 09:36:51 otp3 pgpool[2874]: [112-2] 2016-06-06 09:36:51: pid 2874: LOCATION: pool_stream.c:190 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:31: pid 2875: LOCATION: pool_process_query.c:3349 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:31: pid 2875: DEBUG: read_kind_from_backend max_count:2.000000 num_executed_nodes:2 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:31: pid 2875: LOCATION: pool_process_query.c:3365 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:31: pid 2875: DEBUG: processing backend response Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:31: pid 2875: DETAIL: received kind '1'(31) from backend Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:31: pid 2875: LOCATION: pool_proto_modules.c:2424 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:29: pid 2872: DEBUG: adding sent message to list Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:29: pid 2872: DETAIL: portal "" already exists Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:29: pid 2872: LOCATION: pool_session_context.c:512 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:30: pid 2873: DEBUG: pool_write: to backend: kind:S Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:30: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:31: pid 2872: DEBUG: called by pool_sent_message_destroy: sent message: address: 2406c80 kind: B name: == Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:31: pid 2872: LOCATION: pool_session_context.c:436 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:31: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:31: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:31: pid 2872: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:31: pid 2872: LOCATION: pool_session_context.c:219 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:31: pid 2875: DEBUG: called by pool_add_sent_message: sent message: address: 2406c80 kind: P name: == Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:31: pid 2875: LOCATION: pool_session_context.c:436 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:31: pid 2872: DEBUG: session context: setting query in progress. DONE Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:31: pid 2872: LOCATION: pool_session_context.c:208 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:31: pid 2875: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:31: pid 2875: LOCATION: pool_session_context.c:969 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:31: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:31: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:31: pid 2875: DEBUG: SimpleForwardToFrontend: packet:1 length:0 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:31: pid 2875: LOCATION: pool_process_query.c:792 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:31: pid 2872: DEBUG: SimpleForwardToFrontend: packet:2 length:0 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:31: pid 2872: LOCATION: pool_process_query.c:792 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:32: pid 2872: DEBUG: session context: setting command success. DONE Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:32: pid 2872: LOCATION: pool_session_context.c:741 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:32: pid 2872: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:32: pid 2872: LOCATION: pool_session_context.c:219 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:32: pid 2872: DEBUG: processing frontend response Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:32: pid 2872: DETAIL: received kind 'D'(44) from frontend Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:32: pid 2872: LOCATION: pool_proto_modules.c:2188 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:32: pid 2872: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:32: pid 2872: LOCATION: pool_session_context.c:280 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:31: pid 2873: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:31: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:32: pid 2873: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:32: pid 2873: LOCATION: pool_session_context.c:310 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:32: pid 2872: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:36:51 otp3 pgpool[2874]: [113-1] 2016-06-06 09:36:51: pid 2874: DEBUG: pool_read: read 6 bytes from backend 1 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:32: pid 2872: LOCATION: pool_session_context.c:269 Jun 6 09:36:51 otp3 pgpool[2874]: [113-2] 2016-06-06 09:36:51: pid 2874: LOCATION: pool_stream.c:190 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:33: pid 2872: DEBUG: Describe: waiting for master completing the query Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:33: pid 2872: LOCATION: pool_proto_modules.c:1310 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:33: pid 2872: DEBUG: session context: setting query in progress. DONE Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:33: pid 2872: LOCATION: pool_session_context.c:208 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:33: pid 2872: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:36:51 otp3 pgpool[2874]: [114-1] 2016-06-06 09:36:51: pid 2874: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:33: pid 2872: LOCATION: pool_query_context.c:854 Jun 6 09:36:51 otp3 pgpool[2874]: [114-2] 2016-06-06 09:36:51: pid 2874: LOCATION: pool_session_context.c:310 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:33: pid 2872: DEBUG: pool_write: to backend: kind:D Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:33: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:33: pid 2872: DEBUG: pool_write: to backend: kind:H Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:33: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:33: pid 2872: DEBUG: waiting for query response Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:33: pid 2872: DETAIL: waiting for backend:0 to complete the query Jun 6 09:36:51 otp3 pgpool[2874]: [115-1] 2016-06-06 09:36:51: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:33: pid 2872: LOCATION: pool_process_query.c:479 Jun 6 09:36:51 otp3 pgpool[2874]: [115-2] 2016-06-06 09:36:51: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:33: pid 2872: DEBUG: pool_read: read 34 bytes from backend 0 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:33: pid 2872: LOCATION: pool_stream.c:190 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:33: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:33: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:51 otp3 pgpool[2874]: [116-1] 2016-06-06 09:36:51: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:33: pid 2872: DEBUG: reading backend data packet kind Jun 6 09:36:51 otp3 pgpool[2874]: [116-2] 2016-06-06 09:36:51: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:33: pid 2872: DETAIL: backend:0 of 2 kind = 'T' Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:33: pid 2872: LOCATION: pool_process_query.c:3349 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:33: pid 2872: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:33: pid 2872: LOCATION: pool_process_query.c:3365 Jun 6 09:36:51 otp3 pgpool[2874]: [117-1] 2016-06-06 09:36:51: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:33: pid 2872: DEBUG: processing backend response Jun 6 09:36:51 otp3 pgpool[2874]: [117-2] 2016-06-06 09:36:51: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:33: pid 2872: DETAIL: received kind 'T'(54) from backend Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:33: pid 2872: LOCATION: pool_proto_modules.c:2424 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:33: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:33: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:33: pid 2872: DEBUG: SimpleForwardToFrontend: packet:T length:29 Jun 6 09:36:51 otp3 pgpool[2874]: [118-1] 2016-06-06 09:36:51: pid 2874: DEBUG: reading message length Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:33: pid 2872: LOCATION: pool_process_query.c:792 Jun 6 09:36:51 otp3 pgpool[2874]: [118-2] 2016-06-06 09:36:51: pid 2874: DETAIL: slot: 0 length: 5 Jun 6 09:36:51 otp3 pgpool[2874]: [118-3] 2016-06-06 09:36:51: pid 2874: LOCATION: pool_auth.c:1107 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:33: pid 2872: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:33: pid 2872: LOCATION: pool_session_context.c:219 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:33: pid 2872: DEBUG: processing frontend response Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:33: pid 2872: DETAIL: received kind 'E'(45) from frontend Jun 6 09:36:51 otp3 pgpool[2874]: [119-1] 2016-06-06 09:36:51: pid 2874: DEBUG: reading message length Jun 6 09:36:51 otp3 pgpool[2874]: [119-2] 2016-06-06 09:36:51: pid 2874: DETAIL: slot: 1 length: 5 Jun 6 09:36:51 otp3 pgpool[2874]: [119-3] 2016-06-06 09:36:51: pid 2874: LOCATION: pool_auth.c:1126 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:33: pid 2872: LOCATION: pool_proto_modules.c:2188 Jun 6 09:36:51 otp3 pgpool[2874]: [120-1] 2016-06-06 09:36:51: pid 2874: DEBUG: processing ReadyForQuery Jun 6 09:36:51 otp3 pgpool[2874]: [120-2] 2016-06-06 09:36:51: pid 2874: DETAIL: transaction state 'I'(49) Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:33: pid 2872: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:36:51 otp3 pgpool[2874]: [120-3] 2016-06-06 09:36:51: pid 2874: LOCATION: pool_proto_modules.c:1612 Jun 6 09:36:51 otp3 pgpool[2874]: [121-1] 2016-06-06 09:36:51: pid 2874: DEBUG: processing ReadyForQuery Jun 6 09:36:51 otp3 pgpool[2874]: [121-2] 2016-06-06 09:36:51: pid 2874: DETAIL: transaction state 'I'(49) Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:33: pid 2872: LOCATION: pool_session_context.c:280 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:33: pid 2872: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:33: pid 2872: LOCATION: pool_session_context.c:269 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:33: pid 2872: DEBUG: session context: setting query in progress. DONE Jun 6 09:36:51 otp3 pgpool[2874]: [121-3] 2016-06-06 09:36:51: pid 2874: LOCATION: pool_proto_modules.c:1612 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:33: pid 2872: LOCATION: pool_session_context.c:208 Jun 6 09:36:51 otp3 pgpool[2874]: [122-1] 2016-06-06 09:36:51: pid 2874: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:33: pid 2872: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:36:51 otp3 pgpool[2874]: [122-2] 2016-06-06 09:36:51: pid 2874: LOCATION: pool_session_context.c:219 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:33: pid 2872: LOCATION: pool_query_context.c:854 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:33: pid 2872: DEBUG: pool_write: to backend: kind:E Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:33: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:36:51 otp3 pgpool[2874]: [123-1] 2016-06-06 09:36:51: pid 2874: DEBUG: session context: setting query in progress. DONE Jun 6 09:36:51 otp3 pgpool[2874]: [123-2] 2016-06-06 09:36:51: pid 2874: LOCATION: pool_session_context.c:208 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:33: pid 2872: DEBUG: pool_write: to backend: kind:H Jun 6 09:36:51 otp3 pgpool[2874]: [124-1] 2016-06-06 09:36:51: pid 2874: DEBUG: Parse: waiting for master completing the query Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:33: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:33: pid 2872: DEBUG: waiting for query response Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:33: pid 2872: DETAIL: waiting for backend:0 to complete the query Jun 6 09:36:51 otp3 pgpool[2874]: [124-2] 2016-06-06 09:36:51: pid 2874: LOCATION: pool_proto_modules.c:1064 Jun 6 09:36:51 otp3 pgpool[2874]: [125-1] 2016-06-06 09:36:51: pid 2874: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:36:51 otp3 pgpool[2874]: [125-2] 2016-06-06 09:36:51: pid 2874: LOCATION: pool_query_context.c:854 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:33: pid 2872: LOCATION: pool_process_query.c:479 Jun 6 09:36:51 otp3 pgpool[2874]: [126-1] 2016-06-06 09:36:51: pid 2874: DEBUG: pool_write: to backend: kind:P Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:34: pid 2872: DEBUG: pool_read: read 26 bytes from backend 0 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:34: pid 2872: LOCATION: pool_stream.c:190 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:34: pid 2872: DEBUG: detect error: kind: D Jun 6 09:36:51 otp3 pgpool[2874]: [126-2] 2016-06-06 09:36:51: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:34: pid 2872: LOCATION: pool_process_query.c:4166 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:34: pid 2872: DEBUG: detect error: kind: D Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:34: pid 2872: LOCATION: pool_process_query.c:4166 Jun 6 09:36:51 otp3 pgpool[2874]: [127-1] 2016-06-06 09:36:51: pid 2874: DEBUG: pool_write: to backend: kind:H Jun 6 09:36:51 otp3 pgpool[2874]: [127-2] 2016-06-06 09:36:51: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:34: pid 2872: DEBUG: detect error: kind: D Jun 6 09:36:51 otp3 pgpool[2874]: [128-1] 2016-06-06 09:36:51: pid 2874: DEBUG: waiting for query response Jun 6 09:36:51 otp3 pgpool[2874]: [128-2] 2016-06-06 09:36:51: pid 2874: DETAIL: waiting for backend:0 to complete the query Jun 6 09:36:51 otp3 pgpool[2874]: [128-3] 2016-06-06 09:36:51: pid 2874: LOCATION: pool_process_query.c:479 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:34: pid 2872: LOCATION: pool_process_query.c:4166 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:34: pid 2872: DEBUG: detect error: kind: D Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:34: pid 2872: LOCATION: pool_process_query.c:4166 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:34: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:34: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:34: pid 2872: DEBUG: reading backend data packet kind Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:34: pid 2872: DETAIL: backend:0 of 2 kind = 'D' Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:34: pid 2872: LOCATION: pool_process_query.c:3349 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:34: pid 2872: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:34: pid 2872: LOCATION: pool_process_query.c:3365 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:34: pid 2872: DEBUG: processing backend response Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:34: pid 2872: DETAIL: received kind 'D'(44) from backend Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:34: pid 2872: LOCATION: pool_proto_modules.c:2424 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:34: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:34: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:34: pid 2872: DEBUG: SimpleForwardToFrontend: packet:D length:7 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:34: pid 2872: LOCATION: pool_process_query.c:792 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:34: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:34: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:34: pid 2872: DEBUG: reading backend data packet kind Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:34: pid 2872: DETAIL: backend:0 of 2 kind = 'C' Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:34: pid 2872: LOCATION: pool_process_query.c:3349 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:34: pid 2872: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:34: pid 2872: LOCATION: pool_process_query.c:3365 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:34: pid 2872: DEBUG: processing backend response Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:34: pid 2872: DETAIL: received kind 'C'(43) from backend Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:34: pid 2872: LOCATION: pool_proto_modules.c:2424 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:29: pid 2874: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:29: pid 2874: LOCATION: pool_session_context.c:219 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:34: pid 2872: DEBUG: session context: setting command success. DONE Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:34: pid 2872: LOCATION: pool_session_context.c:741 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:34: pid 2872: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:34: pid 2872: LOCATION: pool_session_context.c:219 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:34: pid 2872: DEBUG: processing frontend response Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:34: pid 2872: DETAIL: received kind 'S'(53) from frontend Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:34: pid 2872: LOCATION: pool_proto_modules.c:2188 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:34: pid 2872: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:34: pid 2872: LOCATION: pool_session_context.c:280 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:34: pid 2872: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:34: pid 2872: LOCATION: pool_session_context.c:269 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:34: pid 2872: DEBUG: session context: setting query in progress. DONE Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:34: pid 2872: LOCATION: pool_session_context.c:208 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:34: pid 2872: DEBUG: pool_write: to backend: kind:S Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:34: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:34: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:34: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:34: pid 2874: DEBUG: session context: clearing transaction isolation. DONE Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:34: pid 2874: LOCATION: pool_session_context.c:731 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:34: pid 2872: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:34: pid 2872: LOCATION: pool_stream.c:190 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:34: pid 2872: DEBUG: reading backend data packet kind Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:34: pid 2872: DETAIL: backend:0 of 2 kind = 'Z' Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:34: pid 2872: LOCATION: pool_process_query.c:3349 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:34: pid 2872: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:34: pid 2872: LOCATION: pool_process_query.c:3365 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:34: pid 2872: DEBUG: processing backend response Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:34: pid 2872: DETAIL: received kind 'Z'(5a) from backend Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:34: pid 2872: LOCATION: pool_proto_modules.c:2424 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:34: pid 2872: DEBUG: processing backend response Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:34: pid 2872: DETAIL: Ready For Query received Jun 6 09:36:51 otp3 pgpool[2874]: [129-1] 2016-06-06 09:36:51: pid 2874: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:36:51 otp3 pgpool[2874]: [129-2] 2016-06-06 09:36:51: pid 2874: LOCATION: pool_stream.c:190 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:34: pid 2872: LOCATION: pool_proto_modules.c:2442 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:34: pid 2872: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:34: pid 2872: LOCATION: pool_session_context.c:310 Jun 6 09:36:51 otp3 pgpool[2874]: [130-1] 2016-06-06 09:36:51: pid 2874: DEBUG: detect error: kind: 1 Jun 6 09:36:51 otp3 pgpool[2874]: [130-2] 2016-06-06 09:36:51: pid 2874: LOCATION: pool_process_query.c:4166 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:34: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:51 otp3 pgpool[2874]: [131-1] 2016-06-06 09:36:51: pid 2874: DEBUG: pool_send_and_wait: pool_set_sync_map: 1 Jun 6 09:36:51 otp3 pgpool[2874]: [131-2] 2016-06-06 09:36:51: pid 2874: LOCATION: pool_query_context.c:854 Jun 6 09:36:51 otp3 pgpool[2874]: [132-1] 2016-06-06 09:36:51: pid 2874: DEBUG: pool_write: to backend: kind:P Jun 6 09:36:51 otp3 pgpool[2874]: [132-2] 2016-06-06 09:36:51: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:34: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:31: pid 2875: DEBUG: session context: setting command success. DONE Jun 6 09:36:51 otp3 pgpool[2874]: [133-1] 2016-06-06 09:36:51: pid 2874: DEBUG: pool_write: to backend: kind:H Jun 6 09:36:51 otp3 pgpool[2874]: [133-2] 2016-06-06 09:36:51: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:31: pid 2875: LOCATION: pool_session_context.c:741 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:34: pid 2875: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:51 otp3 pgpool[2874]: [134-1] 2016-06-06 09:36:51: pid 2874: DEBUG: waiting for query response Jun 6 09:36:51 otp3 pgpool[2874]: [134-2] 2016-06-06 09:36:51: pid 2874: DETAIL: waiting for backend:1 to complete the query Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:34: pid 2875: LOCATION: pool_session_context.c:219 Jun 6 09:36:51 otp3 pgpool[2874]: [134-3] 2016-06-06 09:36:51: pid 2874: LOCATION: pool_process_query.c:479 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:34: pid 2874: DEBUG: session context: clearing writing transaction. DONE Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:34: pid 2874: LOCATION: pool_session_context.c:565 Jun 6 09:36:51 otp3 pgpool[2874]: [135-1] 2016-06-06 09:36:51: pid 2874: DEBUG: pool_read: read 5 bytes from backend 1 Jun 6 09:36:51 otp3 pgpool[2874]: [135-2] 2016-06-06 09:36:51: pid 2874: LOCATION: pool_stream.c:190 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:33: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:33: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:34: pid 2875: DEBUG: processing frontend response Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:34: pid 2875: DETAIL: received kind 'B'(42) from frontend Jun 6 09:36:51 otp3 pgpool[2874]: [136-1] 2016-06-06 09:36:51: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:34: pid 2875: LOCATION: pool_proto_modules.c:2188 Jun 6 09:36:51 otp3 pgpool[2874]: [136-2] 2016-06-06 09:36:51: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:34: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:51 otp3 pgpool[2874]: [137-1] 2016-06-06 09:36:51: pid 2874: DEBUG: reading backend data packet kind Jun 6 09:36:51 otp3 pgpool[2874]: [137-2] 2016-06-06 09:36:51: pid 2874: DETAIL: backend:0 of 2 kind = '1' Jun 6 09:36:51 otp3 pgpool[2874]: [137-3] 2016-06-06 09:36:51: pid 2874: LOCATION: pool_process_query.c:3349 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:34: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:51 otp3 pgpool[2874]: [138-1] 2016-06-06 09:36:51: pid 2874: DEBUG: reading backend data packet kind Jun 6 09:36:51 otp3 pgpool[2874]: [138-2] 2016-06-06 09:36:51: pid 2874: DETAIL: backend:1 of 2 kind = '1' Jun 6 09:36:51 otp3 pgpool[2874]: [138-3] 2016-06-06 09:36:51: pid 2874: LOCATION: pool_process_query.c:3349 Jun 6 09:36:51 otp3 pgpool[2874]: [139-1] 2016-06-06 09:36:51: pid 2874: DEBUG: read_kind_from_backend max_count:2.000000 num_executed_nodes:2 Jun 6 09:36:51 otp3 pgpool[2874]: [139-2] 2016-06-06 09:36:51: pid 2874: LOCATION: pool_process_query.c:3365 Jun 6 09:36:51 otp3 pgpool[2874]: [140-1] 2016-06-06 09:36:51: pid 2874: DEBUG: processing backend response Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:39: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:51 otp3 pgpool[2874]: [140-2] 2016-06-06 09:36:51: pid 2874: DETAIL: received kind '1'(31) from backend Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:39: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:51 otp3 pgpool[2874]: [140-3] 2016-06-06 09:36:51: pid 2874: LOCATION: pool_proto_modules.c:2424 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:39: pid 2872: DEBUG: reading message length Jun 6 09:36:51 otp3 pgpool[2874]: [141-1] 2016-06-06 09:36:51: pid 2874: DEBUG: called by pool_add_sent_message: sent message: address: 2406c80 kind: P name: == Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:39: pid 2872: DETAIL: slot: 0 length: 5 Jun 6 09:36:51 otp3 pgpool[2874]: [141-2] 2016-06-06 09:36:51: pid 2874: LOCATION: pool_session_context.c:436 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:39: pid 2872: LOCATION: pool_auth.c:1107 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:40: pid 2872: DEBUG: processing ReadyForQuery Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:40: pid 2872: DETAIL: transaction state 'I'(49) Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:40: pid 2872: LOCATION: pool_proto_modules.c:1612 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:40: pid 2872: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:40: pid 2872: LOCATION: pool_session_context.c:219 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:40: pid 2872: DEBUG: processing frontend response Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:40: pid 2872: DETAIL: received kind 'P'(50) from frontend Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:40: pid 2872: LOCATION: pool_proto_modules.c:2188 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:39: pid 2875: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:39: pid 2875: LOCATION: pool_session_context.c:280 Jun 6 09:36:51 otp3 pgpool[2874]: [142-1] 2016-06-06 09:36:51: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:40: pid 2872: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:40: pid 2872: LOCATION: pool_session_context.c:280 Jun 6 09:36:51 otp3 pgpool[2874]: [142-2] 2016-06-06 09:36:51: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:40: pid 2872: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:40: pid 2872: LOCATION: pool_session_context.c:269 Jun 6 09:36:51 otp3 pgpool[2874]: [143-1] 2016-06-06 09:36:51: pid 2874: DEBUG: SimpleForwardToFrontend: packet:1 length:0 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:40: pid 2872: DEBUG: Parse: statement name <> Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:40: pid 2872: LOCATION: pool_proto_modules.c:817 Jun 6 09:36:51 otp3 pgpool[2874]: [143-2] 2016-06-06 09:36:51: pid 2874: LOCATION: pool_process_query.c:792 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:40: pid 2872: DEBUG: session context: setting query in progress. DONE Jun 6 09:36:51 otp3 pgpool[2874]: [144-1] 2016-06-06 09:36:51: pid 2874: DEBUG: session context: setting command success. DONE Jun 6 09:36:51 otp3 pgpool[2874]: [144-2] 2016-06-06 09:36:51: pid 2874: LOCATION: pool_session_context.c:741 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:40: pid 2872: LOCATION: pool_session_context.c:208 Jun 6 09:36:51 otp3 pgpool[2874]: [145-1] 2016-06-06 09:36:51: pid 2874: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:51 otp3 pgpool[2874]: [145-2] 2016-06-06 09:36:51: pid 2874: LOCATION: pool_session_context.c:219 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:40: pid 2872: DEBUG: pool_write: to backend: kind:S Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:40: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:36:51 otp3 pgpool[2874]: [146-1] 2016-06-06 09:36:51: pid 2874: DEBUG: processing frontend response Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:40: pid 2872: DEBUG: pool_write: to backend: kind:H Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:40: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:35: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:35: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:40: pid 2872: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:36:51 otp3 pgpool[2874]: [146-2] 2016-06-06 09:36:51: pid 2874: DETAIL: received kind 'B'(42) from frontend Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:40: pid 2872: LOCATION: pool_stream.c:190 Jun 6 09:36:51 otp3 pgpool[2874]: [146-3] 2016-06-06 09:36:51: pid 2874: LOCATION: pool_proto_modules.c:2188 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:40: pid 2872: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:40: pid 2872: LOCATION: pool_session_context.c:310 Jun 6 09:36:51 otp3 pgpool[2874]: [147-1] 2016-06-06 09:36:51: pid 2874: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:40: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:40: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:40: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:51 otp3 pgpool[2874]: [147-2] 2016-06-06 09:36:51: pid 2874: LOCATION: pool_session_context.c:280 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:40: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:51 otp3 pgpool[2874]: [148-1] 2016-06-06 09:36:51: pid 2874: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:40: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:51 otp3 pgpool[2874]: [148-2] 2016-06-06 09:36:51: pid 2874: LOCATION: pool_session_context.c:269 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:40: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:40: pid 2872: DEBUG: reading message length Jun 6 09:36:51 otp3 pgpool[2874]: [149-1] 2016-06-06 09:36:51: pid 2874: DEBUG: Bind: checking strict query Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:40: pid 2872: DETAIL: slot: 0 length: 5 Jun 6 09:36:51 otp3 pgpool[2874]: [149-2] 2016-06-06 09:36:51: pid 2874: LOCATION: pool_proto_modules.c:1211 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:40: pid 2872: LOCATION: pool_auth.c:1107 Jun 6 09:36:51 otp3 pgpool[2874]: [150-1] 2016-06-06 09:36:51: pid 2874: DEBUG: Bind: checking insert lock Jun 6 09:36:51 otp3 pgpool[2874]: [150-2] 2016-06-06 09:36:51: pid 2874: LOCATION: pool_proto_modules.c:1221 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:40: pid 2872: DEBUG: processing ReadyForQuery Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:40: pid 2872: DETAIL: transaction state 'I'(49) Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:40: pid 2872: LOCATION: pool_proto_modules.c:1612 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:40: pid 2872: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:51 otp3 pgpool[2874]: [151-1] 2016-06-06 09:36:51: pid 2874: DEBUG: Bind: waiting for master completing the query Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:40: pid 2872: LOCATION: pool_session_context.c:219 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:40: pid 2872: DEBUG: session context: setting query in progress. DONE Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:40: pid 2872: LOCATION: pool_session_context.c:208 Jun 6 09:36:51 otp3 pgpool[2874]: [151-2] 2016-06-06 09:36:51: pid 2874: LOCATION: pool_proto_modules.c:1237 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:40: pid 2875: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:40: pid 2875: LOCATION: pool_session_context.c:269 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:41: pid 2875: DEBUG: Bind: checking strict query Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:41: pid 2875: LOCATION: pool_proto_modules.c:1211 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:41: pid 2872: DEBUG: Parse: waiting for master completing the query Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:41: pid 2872: LOCATION: pool_proto_modules.c:1064 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:40: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:40: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:41: pid 2872: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:41: pid 2872: LOCATION: pool_query_context.c:854 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:35: pid 2874: DEBUG: session context: clearing failed transaction. DONE Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:35: pid 2874: LOCATION: pool_session_context.c:594 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:41: pid 2872: DEBUG: pool_write: to backend: kind:P Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:41: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:41: pid 2872: DEBUG: pool_write: to backend: kind:H Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:41: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:42: pid 2872: DEBUG: waiting for query response Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:42: pid 2872: DETAIL: waiting for backend:0 to complete the query Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:42: pid 2872: LOCATION: pool_process_query.c:479 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:42: pid 2872: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:42: pid 2872: LOCATION: pool_stream.c:190 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:42: pid 2872: DEBUG: detect error: kind: 1 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:42: pid 2872: LOCATION: pool_process_query.c:4166 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:42: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:42: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:42: pid 2872: DEBUG: reading backend data packet kind Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:42: pid 2872: DETAIL: backend:0 of 2 kind = '1' Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:42: pid 2872: LOCATION: pool_process_query.c:3349 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:42: pid 2872: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:36:51 otp3 pgpool[2874]: [152-1] 2016-06-06 09:36:51: pid 2874: DEBUG: session context: setting query in progress. DONE Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:42: pid 2872: LOCATION: pool_process_query.c:3365 Jun 6 09:36:51 otp3 pgpool[2874]: [152-2] 2016-06-06 09:36:51: pid 2874: LOCATION: pool_session_context.c:208 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:42: pid 2872: DEBUG: processing backend response Jun 6 09:36:51 otp3 pgpool[2874]: [153-1] 2016-06-06 09:36:51: pid 2874: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:36:51 otp3 pgpool[2874]: [153-2] 2016-06-06 09:36:51: pid 2874: LOCATION: pool_query_context.c:854 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:42: pid 2872: DETAIL: received kind '1'(31) from backend Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:42: pid 2872: LOCATION: pool_proto_modules.c:2424 Jun 6 09:36:51 otp3 pgpool[2874]: [154-1] 2016-06-06 09:36:51: pid 2874: DEBUG: pool_write: to backend: kind:B Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:42: pid 2872: DEBUG: called by pool_add_sent_message: sent message: address: 2406c80 kind: P name: == Jun 6 09:36:51 otp3 pgpool[2874]: [154-2] 2016-06-06 09:36:51: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:42: pid 2872: LOCATION: pool_session_context.c:436 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:42: pid 2872: DEBUG: adding sent message to list Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:42: pid 2872: DETAIL: prepared statement "" already exists Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:42: pid 2872: LOCATION: pool_session_context.c:516 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:42: pid 2872: DEBUG: called by pool_sent_message_destroy: sent message: address: 2406d18 kind: P name: == Jun 6 09:36:51 otp3 pgpool[2874]: [155-1] 2016-06-06 09:36:51: pid 2874: DEBUG: pool_write: to backend: kind:H Jun 6 09:36:51 otp3 pgpool[2874]: [155-2] 2016-06-06 09:36:51: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:42: pid 2872: LOCATION: pool_session_context.c:436 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:42: pid 2872: DEBUG: checking if query context can be safely destroyed Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:42: pid 2872: DETAIL: query context 0x802482830 is still used 2 times. query:"SELECT 1" Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:42: pid 2872: LOCATION: pool_session_context.c:873 Jun 6 09:36:51 otp3 pgpool[2874]: [156-1] 2016-06-06 09:36:51: pid 2874: DEBUG: waiting for query response Jun 6 09:36:51 otp3 pgpool[2874]: [156-2] 2016-06-06 09:36:51: pid 2874: DETAIL: waiting for backend:0 to complete the query Jun 6 09:36:51 otp3 pgpool[2874]: [156-3] 2016-06-06 09:36:51: pid 2874: LOCATION: pool_process_query.c:479 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:42: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:42: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:42: pid 2872: DEBUG: SimpleForwardToFrontend: packet:1 length:0 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:42: pid 2872: LOCATION: pool_process_query.c:792 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:41: pid 2873: DEBUG: reading message length Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:41: pid 2873: DETAIL: slot: 0 length: 5 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:41: pid 2873: LOCATION: pool_auth.c:1107 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:42: pid 2872: DEBUG: session context: setting command success. DONE Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:42: pid 2872: LOCATION: pool_session_context.c:741 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:41: pid 2875: DEBUG: Bind: checking insert lock Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:41: pid 2875: LOCATION: pool_proto_modules.c:1221 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:42: pid 2875: DEBUG: Bind: waiting for master completing the query Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:42: pid 2875: LOCATION: pool_proto_modules.c:1237 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:42: pid 2872: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:42: pid 2872: LOCATION: pool_session_context.c:219 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:42: pid 2872: DEBUG: processing frontend response Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:42: pid 2872: DETAIL: received kind 'B'(42) from frontend Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:42: pid 2872: LOCATION: pool_proto_modules.c:2188 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:42: pid 2872: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:42: pid 2872: LOCATION: pool_session_context.c:280 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:42: pid 2872: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:42: pid 2872: LOCATION: pool_session_context.c:269 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:42: pid 2872: DEBUG: Bind: checking strict query Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:42: pid 2872: LOCATION: pool_proto_modules.c:1211 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:42: pid 2872: DEBUG: Bind: checking insert lock Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:42: pid 2872: LOCATION: pool_proto_modules.c:1221 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:42: pid 2872: DEBUG: Bind: waiting for master completing the query Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:42: pid 2872: LOCATION: pool_proto_modules.c:1237 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:42: pid 2872: DEBUG: session context: setting query in progress. DONE Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:42: pid 2872: LOCATION: pool_session_context.c:208 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:42: pid 2872: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:42: pid 2872: LOCATION: pool_query_context.c:854 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:42: pid 2872: DEBUG: pool_write: to backend: kind:B Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:42: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:42: pid 2872: DEBUG: pool_write: to backend: kind:H Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:42: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:42: pid 2872: DEBUG: waiting for query response Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:42: pid 2872: DETAIL: waiting for backend:0 to complete the query Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:42: pid 2872: LOCATION: pool_process_query.c:479 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:42: pid 2875: DEBUG: session context: setting query in progress. DONE Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:42: pid 2875: LOCATION: pool_session_context.c:208 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:42: pid 2875: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:42: pid 2875: LOCATION: pool_query_context.c:854 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:42: pid 2872: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:42: pid 2872: LOCATION: pool_stream.c:190 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:46: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:46: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:46: pid 2872: DEBUG: reading backend data packet kind Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:46: pid 2872: DETAIL: backend:0 of 2 kind = '2' Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:46: pid 2872: LOCATION: pool_process_query.c:3349 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:46: pid 2872: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:46: pid 2872: LOCATION: pool_process_query.c:3365 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:46: pid 2872: DEBUG: processing backend response Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:46: pid 2872: DETAIL: received kind '2'(32) from backend Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:46: pid 2872: LOCATION: pool_proto_modules.c:2424 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:46: pid 2872: DEBUG: called by pool_add_sent_message: sent message: address: 2406d18 kind: B name: == Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:46: pid 2872: LOCATION: pool_session_context.c:436 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:46: pid 2872: DEBUG: adding sent message to list Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:46: pid 2872: DETAIL: portal "" already exists Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:46: pid 2872: LOCATION: pool_session_context.c:512 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:46: pid 2872: DEBUG: called by pool_sent_message_destroy: sent message: address: 2406d98 kind: B name: == Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:46: pid 2872: LOCATION: pool_session_context.c:436 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:46: pid 2872: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:46: pid 2872: LOCATION: pool_session_context.c:219 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:46: pid 2872: DEBUG: session context: setting query in progress. DONE Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:46: pid 2872: LOCATION: pool_session_context.c:208 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:46: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:46: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:46: pid 2872: DEBUG: SimpleForwardToFrontend: packet:2 length:0 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:46: pid 2872: LOCATION: pool_process_query.c:792 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:46: pid 2872: DEBUG: session context: setting command success. DONE Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:46: pid 2872: LOCATION: pool_session_context.c:741 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:46: pid 2872: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:46: pid 2872: LOCATION: pool_session_context.c:219 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:46: pid 2872: DEBUG: processing frontend response Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:46: pid 2872: DETAIL: received kind 'D'(44) from frontend Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:46: pid 2872: LOCATION: pool_proto_modules.c:2188 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:46: pid 2872: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:46: pid 2872: LOCATION: pool_session_context.c:280 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:46: pid 2872: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:46: pid 2872: LOCATION: pool_session_context.c:269 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:46: pid 2872: DEBUG: Describe: waiting for master completing the query Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:46: pid 2872: LOCATION: pool_proto_modules.c:1310 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:46: pid 2872: DEBUG: session context: setting query in progress. DONE Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:46: pid 2872: LOCATION: pool_session_context.c:208 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:46: pid 2872: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:46: pid 2872: LOCATION: pool_query_context.c:854 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:46: pid 2872: DEBUG: pool_write: to backend: kind:D Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:46: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:46: pid 2872: DEBUG: pool_write: to backend: kind:H Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:46: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:46: pid 2872: DEBUG: waiting for query response Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:46: pid 2872: DETAIL: waiting for backend:0 to complete the query Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:46: pid 2872: LOCATION: pool_process_query.c:479 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:41: pid 2874: DEBUG: session context: clearing failed transaction. DONE Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:41: pid 2874: LOCATION: pool_session_context.c:624 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:42: pid 2873: DEBUG: processing ReadyForQuery Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:42: pid 2873: DETAIL: transaction state 'I'(49) Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:42: pid 2873: LOCATION: pool_proto_modules.c:1612 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:46: pid 2872: DEBUG: pool_read: read 95 bytes from backend 0 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:46: pid 2872: LOCATION: pool_stream.c:190 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:46: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:46: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:46: pid 2872: DEBUG: reading backend data packet kind Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:46: pid 2872: DETAIL: backend:0 of 2 kind = 'T' Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:46: pid 2872: LOCATION: pool_process_query.c:3349 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: LOCATION: pool_process_query.c:3365 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: DEBUG: processing backend response Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: DETAIL: received kind 'T'(54) from backend Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: LOCATION: pool_proto_modules.c:2424 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: DEBUG: SimpleForwardToFrontend: packet:T length:90 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: LOCATION: pool_process_query.c:792 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: LOCATION: pool_session_context.c:219 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: DEBUG: processing frontend response Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: DETAIL: received kind 'E'(45) from frontend Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: LOCATION: pool_proto_modules.c:2188 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: LOCATION: pool_session_context.c:280 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: LOCATION: pool_session_context.c:269 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: DEBUG: session context: setting query in progress. DONE Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: LOCATION: pool_session_context.c:208 Jun 6 09:36:51 otp3 pgpool[2874]: [157-1] 2016-06-06 09:36:51: pid 2874: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:36:51 otp3 pgpool[2874]: [157-2] 2016-06-06 09:36:51: pid 2874: LOCATION: pool_stream.c:190 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: LOCATION: pool_query_context.c:854 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: DEBUG: pool_write: to backend: kind:E Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: DEBUG: pool_write: to backend: kind:H Jun 6 09:36:51 otp3 pgpool[2874]: [158-1] 2016-06-06 09:36:51: pid 2874: DEBUG: pool_send_and_wait: pool_set_sync_map: 1 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: DEBUG: waiting for query response Jun 6 09:36:51 otp3 pgpool[2874]: [158-2] 2016-06-06 09:36:51: pid 2874: LOCATION: pool_query_context.c:854 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: DETAIL: waiting for backend:0 to complete the query Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: LOCATION: pool_process_query.c:479 Jun 6 09:36:51 otp3 pgpool[2874]: [159-1] 2016-06-06 09:36:51: pid 2874: DEBUG: pool_write: to backend: kind:B Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:51 otp3 pgpool[2874]: [159-2] 2016-06-06 09:36:51: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: DEBUG: pool_read: read 194 bytes from backend 0 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: LOCATION: pool_stream.c:190 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: DEBUG: detect error: kind: D Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: LOCATION: pool_process_query.c:4166 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: DEBUG: detect error: kind: D Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: LOCATION: pool_process_query.c:4166 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: DEBUG: detect error: kind: D Jun 6 09:36:51 otp3 pgpool[2874]: [160-1] 2016-06-06 09:36:51: pid 2874: DEBUG: pool_write: to backend: kind:H Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: LOCATION: pool_process_query.c:4166 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: DEBUG: detect error: kind: D Jun 6 09:36:51 otp3 pgpool[2874]: [160-2] 2016-06-06 09:36:51: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: LOCATION: pool_process_query.c:4166 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:51 otp3 pgpool[2874]: [161-1] 2016-06-06 09:36:51: pid 2874: DEBUG: waiting for query response Jun 6 09:36:51 otp3 pgpool[2874]: [161-2] 2016-06-06 09:36:51: pid 2874: DETAIL: waiting for backend:1 to complete the query Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:51 otp3 pgpool[2874]: [161-3] 2016-06-06 09:36:51: pid 2874: LOCATION: pool_process_query.c:479 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: DEBUG: reading backend data packet kind Jun 6 09:36:51 otp3 pgpool[2874]: [162-1] 2016-06-06 09:36:51: pid 2874: DEBUG: pool_read: read 5 bytes from backend 1 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: DETAIL: backend:0 of 2 kind = 'D' Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: LOCATION: pool_process_query.c:3349 Jun 6 09:36:51 otp3 pgpool[2874]: [162-2] 2016-06-06 09:36:51: pid 2874: LOCATION: pool_stream.c:190 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: LOCATION: pool_process_query.c:3365 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: DEBUG: processing backend response Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: DETAIL: received kind 'D'(44) from backend Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: LOCATION: pool_proto_modules.c:2424 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: DEBUG: SimpleForwardToFrontend: packet:D length:175 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: LOCATION: pool_process_query.c:792 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: DEBUG: reading backend data packet kind Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: DETAIL: backend:0 of 2 kind = 'C' Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: LOCATION: pool_process_query.c:3349 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2873: DEBUG: Parse: waiting for master completing the query Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2873: LOCATION: pool_proto_modules.c:1064 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: LOCATION: pool_process_query.c:3365 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2873: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:36:51 otp3 pgpool[2874]: [163-1] 2016-06-06 09:36:51: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:51 otp3 pgpool[2874]: [163-2] 2016-06-06 09:36:51: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2873: LOCATION: pool_query_context.c:854 Jun 6 09:36:51 otp3 pgpool[2874]: [164-1] 2016-06-06 09:36:51: pid 2874: DEBUG: reading backend data packet kind Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: DEBUG: processing backend response Jun 6 09:36:51 otp3 pgpool[2874]: [164-2] 2016-06-06 09:36:51: pid 2874: DETAIL: backend:0 of 2 kind = '2' Jun 6 09:36:51 otp3 pgpool[2874]: [164-3] 2016-06-06 09:36:51: pid 2874: LOCATION: pool_process_query.c:3349 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: DETAIL: received kind 'C'(43) from backend Jun 6 09:36:51 otp3 pgpool[2874]: [165-1] 2016-06-06 09:36:51: pid 2874: DEBUG: reading backend data packet kind Jun 6 09:36:51 otp3 pgpool[2874]: [165-2] 2016-06-06 09:36:51: pid 2874: DETAIL: backend:1 of 2 kind = '2' Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: LOCATION: pool_proto_modules.c:2424 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: DEBUG: session context: setting command success. DONE Jun 6 09:36:51 otp3 pgpool[2874]: [165-3] 2016-06-06 09:36:51: pid 2874: LOCATION: pool_process_query.c:3349 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: LOCATION: pool_session_context.c:741 Jun 6 09:36:51 otp3 pgpool[2874]: [166-1] 2016-06-06 09:36:51: pid 2874: DEBUG: read_kind_from_backend max_count:2.000000 num_executed_nodes:2 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:51 otp3 pgpool[2874]: [166-2] 2016-06-06 09:36:51: pid 2874: LOCATION: pool_process_query.c:3365 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: LOCATION: pool_session_context.c:219 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: DEBUG: processing frontend response Jun 6 09:36:51 otp3 pgpool[2874]: [167-1] 2016-06-06 09:36:51: pid 2874: DEBUG: processing backend response Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: DETAIL: received kind 'S'(53) from frontend Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: LOCATION: pool_proto_modules.c:2188 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: LOCATION: pool_session_context.c:280 Jun 6 09:36:51 otp3 pgpool[2874]: [167-2] 2016-06-06 09:36:51: pid 2874: DETAIL: received kind '2'(32) from backend Jun 6 09:36:51 otp3 pgpool[2874]: [167-3] 2016-06-06 09:36:51: pid 2874: LOCATION: pool_proto_modules.c:2424 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:36:51 otp3 pgpool[2874]: [168-1] 2016-06-06 09:36:51: pid 2874: DEBUG: called by pool_add_sent_message: sent message: address: 2406d18 kind: B name: == Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: LOCATION: pool_session_context.c:269 Jun 6 09:36:51 otp3 pgpool[2874]: [168-2] 2016-06-06 09:36:51: pid 2874: LOCATION: pool_session_context.c:436 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: DEBUG: session context: setting query in progress. DONE Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: LOCATION: pool_session_context.c:208 Jun 6 09:36:51 otp3 pgpool[2874]: [169-1] 2016-06-06 09:36:51: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: DEBUG: pool_write: to backend: kind:S Jun 6 09:36:51 otp3 pgpool[2874]: [169-2] 2016-06-06 09:36:51: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: LOCATION: pool_stream.c:431 Jun 6 09:36:51 otp3 pgpool[2874]: [170-1] 2016-06-06 09:36:51: pid 2874: DEBUG: SimpleForwardToFrontend: packet:2 length:0 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:51 otp3 pgpool[2874]: [170-2] 2016-06-06 09:36:51: pid 2874: LOCATION: pool_process_query.c:792 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:46: pid 2874: DEBUG: session context: clearing skip reading from backends. DONE Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2874: LOCATION: pool_session_context.c:250 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:43: pid 2875: DEBUG: pool_write: to backend: kind:B Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:43: pid 2875: LOCATION: pool_stream.c:431 Jun 6 09:36:51 otp3 pgpool[2874]: [171-1] 2016-06-06 09:36:51: pid 2874: DEBUG: session context: setting command success. DONE Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2874: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:36:51 otp3 pgpool[2874]: [171-2] 2016-06-06 09:36:51: pid 2874: LOCATION: pool_session_context.c:741 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2874: LOCATION: pool_session_context.c:310 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 0 doing extended query: 0 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:36:51 otp3 pgpool[2874]: [172-1] 2016-06-06 09:36:51: pid 2874: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:51 otp3 pgpool[2874]: [172-2] 2016-06-06 09:36:51: pid 2874: LOCATION: pool_session_context.c:219 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2875: DEBUG: pool_write: to backend: kind:H Jun 6 09:36:51 otp3 pgpool[2874]: [173-1] 2016-06-06 09:36:51: pid 2874: DEBUG: processing frontend response Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2875: LOCATION: pool_stream.c:431 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:36:51 otp3 pgpool[2874]: [173-2] 2016-06-06 09:36:51: pid 2874: DETAIL: received kind 'E'(45) from frontend Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: LOCATION: pool_stream.c:190 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2875: DEBUG: waiting for query response Jun 6 09:36:51 otp3 pgpool[2874]: [173-3] 2016-06-06 09:36:51: pid 2874: LOCATION: pool_proto_modules.c:2188 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2875: DETAIL: waiting for backend:0 to complete the query Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2875: LOCATION: pool_process_query.c:479 Jun 6 09:36:51 otp3 pgpool[2874]: [174-1] 2016-06-06 09:36:51: pid 2874: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2874: DEBUG: reading backend data packet kind Jun 6 09:36:51 otp3 pgpool[2874]: [174-2] 2016-06-06 09:36:51: pid 2874: LOCATION: pool_session_context.c:280 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2874: DETAIL: backend:0 of 2 kind = 'Z' Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2874: LOCATION: pool_process_query.c:3349 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: DEBUG: reading backend data packet kind Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: DETAIL: backend:0 of 2 kind = 'Z' Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: LOCATION: pool_process_query.c:3349 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2874: DEBUG: reading backend data packet kind Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2874: DETAIL: backend:1 of 2 kind = 'Z' Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2874: LOCATION: pool_process_query.c:3349 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:36:51 otp3 pgpool[2874]: [175-1] 2016-06-06 09:36:51: pid 2874: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:36:51 otp3 pgpool[2874]: [175-2] 2016-06-06 09:36:51: pid 2874: LOCATION: pool_session_context.c:269 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: LOCATION: pool_process_query.c:3365 Jun 6 09:36:51 otp3 pgpool[2874]: [176-1] 2016-06-06 09:36:51: pid 2874: DEBUG: session context: setting query in progress. DONE Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2874: DEBUG: read_kind_from_backend max_count:2.000000 num_executed_nodes:2 Jun 6 09:36:51 otp3 pgpool[2874]: [176-2] 2016-06-06 09:36:51: pid 2874: LOCATION: pool_session_context.c:208 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2874: LOCATION: pool_process_query.c:3365 Jun 6 09:36:51 otp3 pgpool[2874]: [177-1] 2016-06-06 09:36:51: pid 2874: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:36:51 otp3 pgpool[2874]: [177-2] 2016-06-06 09:36:51: pid 2874: LOCATION: pool_query_context.c:854 Jun 6 09:36:51 otp3 pgpool[2874]: [178-1] 2016-06-06 09:36:51: pid 2874: DEBUG: pool_write: to backend: kind:E Jun 6 09:36:51 otp3 pgpool[2874]: [178-2] 2016-06-06 09:36:51: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: DEBUG: processing backend response Jun 6 09:36:51 otp3 pgpool[2874]: [179-1] 2016-06-06 09:36:51: pid 2874: DEBUG: pool_write: to backend: kind:H Jun 6 09:36:51 otp3 pgpool[2874]: [179-2] 2016-06-06 09:36:51: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:36:51 otp3 pgpool[2874]: [180-1] 2016-06-06 09:36:51: pid 2874: DEBUG: waiting for query response Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: DETAIL: received kind 'Z'(5a) from backend Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: LOCATION: pool_proto_modules.c:2424 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: DEBUG: processing backend response Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: DETAIL: Ready For Query received Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: LOCATION: pool_proto_modules.c:2442 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: LOCATION: pool_session_context.c:310 Jun 6 09:36:51 otp3 pgpool[2874]: [180-2] 2016-06-06 09:36:51: pid 2874: DETAIL: waiting for backend:0 to complete the query Jun 6 09:36:51 otp3 pgpool[2874]: [180-3] 2016-06-06 09:36:51: pid 2874: LOCATION: pool_process_query.c:479 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:51 otp3 pgpool[2874]: [181-1] 2016-06-06 09:36:51: pid 2874: DEBUG: pool_read: read 9 bytes from backend 0 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:51 otp3 pgpool[2874]: [181-2] 2016-06-06 09:36:51: pid 2874: LOCATION: pool_stream.c:190 Jun 6 09:36:51 otp3 pgpool[2874]: [182-1] 2016-06-06 09:36:51: pid 2874: DEBUG: detect error: kind: C Jun 6 09:36:51 otp3 pgpool[2874]: [182-2] 2016-06-06 09:36:51: pid 2874: LOCATION: pool_process_query.c:4166 Jun 6 09:36:51 otp3 pgpool[2874]: [183-1] 2016-06-06 09:36:51: pid 2874: DEBUG: detect error: kind: C Jun 6 09:36:51 otp3 pgpool[2874]: [183-2] 2016-06-06 09:36:51: pid 2874: LOCATION: pool_process_query.c:4166 Jun 6 09:36:51 otp3 pgpool[2874]: [184-1] 2016-06-06 09:36:51: pid 2874: DEBUG: detect error: kind: C Jun 6 09:36:51 otp3 pgpool[2874]: [184-2] 2016-06-06 09:36:51: pid 2874: LOCATION: pool_process_query.c:4166 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:51 otp3 pgpool[2874]: [185-1] 2016-06-06 09:36:51: pid 2874: DEBUG: detect error: kind: C Jun 6 09:36:51 otp3 pgpool[2874]: [185-2] 2016-06-06 09:36:51: pid 2874: LOCATION: pool_process_query.c:4166 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:51 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:51 otp3 pgpool[2874]: [186-1] 2016-06-06 09:36:51: pid 2874: DEBUG: pool_send_and_wait: pool_set_sync_map: 1 Jun 6 09:36:52 otp3 pgpool[2874]: [186-2] 2016-06-06 09:36:51: pid 2874: LOCATION: pool_query_context.c:854 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: LOCATION: pool_session_context.c:969 Jun 6 09:36:52 otp3 pgpool[2874]: [187-1] 2016-06-06 09:36:52: pid 2874: DEBUG: pool_write: to backend: kind:E Jun 6 09:36:52 otp3 pgpool[2874]: [187-2] 2016-06-06 09:36:52: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: DEBUG: reading message length Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: DETAIL: slot: 0 length: 5 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: LOCATION: pool_auth.c:1107 Jun 6 09:36:52 otp3 pgpool[2874]: [188-1] 2016-06-06 09:36:52: pid 2874: DEBUG: pool_write: to backend: kind:H Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: DEBUG: processing ReadyForQuery Jun 6 09:36:52 otp3 pgpool[2874]: [188-2] 2016-06-06 09:36:52: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: DETAIL: transaction state 'I'(49) Jun 6 09:36:52 otp3 pgpool[2874]: [189-1] 2016-06-06 09:36:52: pid 2874: DEBUG: waiting for query response Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:47: pid 2872: LOCATION: pool_proto_modules.c:1612 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:50: pid 2872: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:50: pid 2872: LOCATION: pool_session_context.c:219 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:47: pid 2875: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:36:52 otp3 pgpool[2874]: [189-2] 2016-06-06 09:36:52: pid 2874: DETAIL: waiting for backend:1 to complete the query Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:47: pid 2875: LOCATION: pool_stream.c:190 Jun 6 09:36:52 otp3 pgpool[2874]: [189-3] 2016-06-06 09:36:52: pid 2874: LOCATION: pool_process_query.c:479 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:47: pid 2874: DEBUG: processing backend response Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:47: pid 2874: DETAIL: received kind 'Z'(5a) from backend Jun 6 09:36:52 otp3 pgpool[2874]: [190-1] 2016-06-06 09:36:52: pid 2874: DEBUG: pool_read: read 9 bytes from backend 1 Jun 6 09:36:52 otp3 pgpool[2874]: [190-2] 2016-06-06 09:36:52: pid 2874: LOCATION: pool_stream.c:190 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:47: pid 2874: LOCATION: pool_proto_modules.c:2424 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:47: pid 2873: DEBUG: pool_write: to backend: kind:P Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:47: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:50: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:36:52 otp3 pgpool[2874]: [191-1] 2016-06-06 09:36:52: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:50: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:50: pid 2875: DEBUG: pool_send_and_wait: pool_set_sync_map: 1 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:50: pid 2875: LOCATION: pool_query_context.c:854 Jun 6 09:36:52 otp3 pgpool[2874]: [191-2] 2016-06-06 09:36:52: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:50: pid 2874: DEBUG: processing backend response Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:50: pid 2874: DETAIL: Ready For Query received Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:50: pid 2874: LOCATION: pool_proto_modules.c:2442 Jun 6 09:36:52 otp3 pgpool[2874]: [192-1] 2016-06-06 09:36:52: pid 2874: DEBUG: reading backend data packet kind Jun 6 09:36:52 otp3 pgpool[2874]: [192-2] 2016-06-06 09:36:52: pid 2874: DETAIL: backend:0 of 2 kind = 'C' Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:50: pid 2875: DEBUG: pool_write: to backend: kind:B Jun 6 09:36:52 otp3 pgpool[2874]: [192-3] 2016-06-06 09:36:52: pid 2874: LOCATION: pool_process_query.c:3349 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:50: pid 2875: LOCATION: pool_stream.c:431 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:50: pid 2874: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:50: pid 2874: LOCATION: pool_session_context.c:310 Jun 6 09:36:52 otp3 pgpool[2874]: [193-1] 2016-06-06 09:36:52: pid 2874: DEBUG: reading backend data packet kind Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:50: pid 2873: DEBUG: waiting for query response Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:50: pid 2873: DETAIL: waiting for backend:0 to complete the query Jun 6 09:36:52 otp3 pgpool[2874]: [193-2] 2016-06-06 09:36:52: pid 2874: DETAIL: backend:1 of 2 kind = 'C' Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:50: pid 2873: LOCATION: pool_process_query.c:479 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:50: pid 2875: DEBUG: pool_write: to backend: kind:H Jun 6 09:36:52 otp3 pgpool[2874]: [193-3] 2016-06-06 09:36:52: pid 2874: LOCATION: pool_process_query.c:3349 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:50: pid 2875: LOCATION: pool_stream.c:431 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2875: DEBUG: waiting for query response Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2875: DETAIL: waiting for backend:1 to complete the query Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2875: LOCATION: pool_process_query.c:479 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 0 doing extended query: 0 Jun 6 09:36:52 otp3 pgpool[2874]: [194-1] 2016-06-06 09:36:52: pid 2874: DEBUG: read_kind_from_backend max_count:2.000000 num_executed_nodes:2 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2873: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:36:52 otp3 pgpool[2874]: [194-2] 2016-06-06 09:36:52: pid 2874: LOCATION: pool_process_query.c:3365 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2875: DEBUG: pool_read: read 5 bytes from backend 1 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2875: LOCATION: pool_stream.c:190 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2873: DEBUG: detect error: kind: 1 Jun 6 09:36:52 otp3 pgpool[2874]: [195-1] 2016-06-06 09:36:52: pid 2874: DEBUG: processing backend response Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2873: DETAIL: backend:0 of 2 kind = '1' Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:36:52 otp3 pgpool[2874]: [195-2] 2016-06-06 09:36:52: pid 2874: DETAIL: received kind 'C'(43) from backend Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:36:52 otp3 pgpool[2874]: [195-3] 2016-06-06 09:36:52: pid 2874: LOCATION: pool_proto_modules.c:2424 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2873: DEBUG: processing backend response Jun 6 09:36:52 otp3 pgpool[2874]: [196-1] 2016-06-06 09:36:52: pid 2874: DEBUG: session context: setting command success. DONE Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2873: DETAIL: received kind '1'(31) from backend Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:36:52 otp3 pgpool[2874]: [196-2] 2016-06-06 09:36:52: pid 2874: LOCATION: pool_session_context.c:741 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2873: DEBUG: called by pool_add_sent_message: sent message: address: 2406c80 kind: P name: == Jun 6 09:36:52 otp3 pgpool[2874]: [197-1] 2016-06-06 09:36:52: pid 2874: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:52 otp3 pgpool[2874]: [197-2] 2016-06-06 09:36:52: pid 2874: LOCATION: pool_session_context.c:219 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2873: LOCATION: pool_session_context.c:436 Jun 6 09:36:52 otp3 pgpool[2874]: [198-1] 2016-06-06 09:36:52: pid 2874: DEBUG: processing frontend response Jun 6 09:36:52 otp3 pgpool[2874]: [198-2] 2016-06-06 09:36:52: pid 2874: DETAIL: received kind 'S'(53) from frontend Jun 6 09:36:52 otp3 pgpool[2874]: [198-3] 2016-06-06 09:36:52: pid 2874: LOCATION: pool_proto_modules.c:2188 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2873: DEBUG: adding sent message to list Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2873: DETAIL: prepared statement "" already exists Jun 6 09:36:52 otp3 pgpool[2874]: [199-1] 2016-06-06 09:36:52: pid 2874: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2873: LOCATION: pool_session_context.c:516 Jun 6 09:36:52 otp3 pgpool[2874]: [199-2] 2016-06-06 09:36:52: pid 2874: LOCATION: pool_session_context.c:280 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2873: DEBUG: called by pool_sent_message_destroy: sent message: address: 2406d18 kind: P name: == Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2873: LOCATION: pool_session_context.c:436 Jun 6 09:36:52 otp3 pgpool[2874]: [200-1] 2016-06-06 09:36:52: pid 2874: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2873: DEBUG: checking if query context can be safely destroyed Jun 6 09:36:52 otp3 pgpool[2874]: [200-2] 2016-06-06 09:36:52: pid 2874: LOCATION: pool_session_context.c:269 Jun 6 09:36:52 otp3 pgpool[2874]: [201-1] 2016-06-06 09:36:52: pid 2874: DEBUG: session context: setting query in progress. DONE Jun 6 09:36:52 otp3 pgpool[2874]: [201-2] 2016-06-06 09:36:52: pid 2874: LOCATION: pool_session_context.c:208 Jun 6 09:36:52 otp3 pgpool[2874]: [202-1] 2016-06-06 09:36:52: pid 2874: DEBUG: pool_write: to backend: kind:S Jun 6 09:36:52 otp3 pgpool[2874]: [202-2] 2016-06-06 09:36:52: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:36:52 otp3 pgpool[2874]: [203-1] 2016-06-06 09:36:52: pid 2874: DEBUG: pool_write: to backend: kind:S Jun 6 09:36:52 otp3 pgpool[2874]: [203-2] 2016-06-06 09:36:52: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:36:52 otp3 pgpool[2874]: [204-1] 2016-06-06 09:36:52: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:52 otp3 pgpool[2874]: [204-2] 2016-06-06 09:36:52: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:36:52 otp3 pgpool[2874]: [205-1] 2016-06-06 09:36:52: pid 2874: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:36:52 otp3 pgpool[2874]: [205-2] 2016-06-06 09:36:52: pid 2874: LOCATION: pool_stream.c:190 Jun 6 09:36:52 otp3 pgpool[2874]: [206-1] 2016-06-06 09:36:52: pid 2874: DEBUG: reading backend data packet kind Jun 6 09:36:52 otp3 pgpool[2874]: [206-2] 2016-06-06 09:36:52: pid 2874: DETAIL: backend:0 of 2 kind = 'Z' Jun 6 09:36:52 otp3 pgpool[2874]: [206-3] 2016-06-06 09:36:52: pid 2874: LOCATION: pool_process_query.c:3349 Jun 6 09:36:52 otp3 pgpool[2874]: [207-1] 2016-06-06 09:36:52: pid 2874: DEBUG: pool_read: read 6 bytes from backend 1 Jun 6 09:36:52 otp3 pgpool[2874]: [207-2] 2016-06-06 09:36:52: pid 2874: LOCATION: pool_stream.c:190 Jun 6 09:36:52 otp3 pgpool[2874]: [208-1] 2016-06-06 09:36:52: pid 2874: DEBUG: reading backend data packet kind Jun 6 09:36:52 otp3 pgpool[2874]: [208-2] 2016-06-06 09:36:52: pid 2874: DETAIL: backend:1 of 2 kind = 'Z' Jun 6 09:36:52 otp3 pgpool[2874]: [208-3] 2016-06-06 09:36:52: pid 2874: LOCATION: pool_process_query.c:3349 Jun 6 09:36:52 otp3 pgpool[2874]: [209-1] 2016-06-06 09:36:52: pid 2874: DEBUG: read_kind_from_backend max_count:2.000000 num_executed_nodes:2 Jun 6 09:36:52 otp3 pgpool[2874]: [209-2] 2016-06-06 09:36:52: pid 2874: LOCATION: pool_process_query.c:3365 Jun 6 09:36:52 otp3 pgpool[2874]: [210-1] 2016-06-06 09:36:52: pid 2874: DEBUG: processing backend response Jun 6 09:36:52 otp3 pgpool[2874]: [210-2] 2016-06-06 09:36:52: pid 2874: DETAIL: received kind 'Z'(5a) from backend Jun 6 09:36:52 otp3 pgpool[2874]: [210-3] 2016-06-06 09:36:52: pid 2874: LOCATION: pool_proto_modules.c:2424 Jun 6 09:36:52 otp3 pgpool[2874]: [211-1] 2016-06-06 09:36:52: pid 2874: DEBUG: processing backend response Jun 6 09:36:52 otp3 pgpool[2874]: [211-2] 2016-06-06 09:36:52: pid 2874: DETAIL: Ready For Query received Jun 6 09:36:52 otp3 pgpool[2874]: [211-3] 2016-06-06 09:36:52: pid 2874: LOCATION: pool_proto_modules.c:2442 Jun 6 09:36:52 otp3 pgpool[2874]: [212-1] 2016-06-06 09:36:52: pid 2874: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:36:52 otp3 pgpool[2874]: [212-2] 2016-06-06 09:36:52: pid 2874: LOCATION: pool_session_context.c:310 Jun 6 09:36:52 otp3 pgpool[2874]: [213-1] 2016-06-06 09:36:52: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:52 otp3 pgpool[2874]: [213-2] 2016-06-06 09:36:52: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:36:52 otp3 pgpool[2874]: [214-1] 2016-06-06 09:36:52: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:52 otp3 pgpool[2874]: [214-2] 2016-06-06 09:36:52: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:36:52 otp3 pgpool[2874]: [215-1] 2016-06-06 09:36:52: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:52 otp3 pgpool[2874]: [215-2] 2016-06-06 09:36:52: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:36:52 otp3 pgpool[2874]: [216-1] 2016-06-06 09:36:52: pid 2874: DEBUG: reading message length Jun 6 09:36:52 otp3 pgpool[2874]: [216-2] 2016-06-06 09:36:52: pid 2874: DETAIL: slot: 0 length: 5 Jun 6 09:36:52 otp3 pgpool[2874]: [216-3] 2016-06-06 09:36:52: pid 2874: LOCATION: pool_auth.c:1107 Jun 6 09:36:52 otp3 pgpool[2874]: [217-1] 2016-06-06 09:36:52: pid 2874: DEBUG: reading message length Jun 6 09:36:52 otp3 pgpool[2874]: [217-2] 2016-06-06 09:36:52: pid 2874: DETAIL: slot: 1 length: 5 Jun 6 09:36:52 otp3 pgpool[2874]: [217-3] 2016-06-06 09:36:52: pid 2874: LOCATION: pool_auth.c:1126 Jun 6 09:36:52 otp3 pgpool[2874]: [218-1] 2016-06-06 09:36:52: pid 2874: DEBUG: processing ReadyForQuery Jun 6 09:36:52 otp3 pgpool[2874]: [218-2] 2016-06-06 09:36:52: pid 2874: DETAIL: transaction state 'I'(49) Jun 6 09:36:52 otp3 pgpool[2874]: [218-3] 2016-06-06 09:36:52: pid 2874: LOCATION: pool_proto_modules.c:1612 Jun 6 09:36:52 otp3 pgpool[2874]: [219-1] 2016-06-06 09:36:52: pid 2874: DEBUG: processing ReadyForQuery Jun 6 09:36:52 otp3 pgpool[2874]: [219-2] 2016-06-06 09:36:52: pid 2874: DETAIL: transaction state 'I'(49) Jun 6 09:36:52 otp3 pgpool[2874]: [219-3] 2016-06-06 09:36:52: pid 2874: LOCATION: pool_proto_modules.c:1612 Jun 6 09:36:52 otp3 pgpool[2874]: [220-1] 2016-06-06 09:36:52: pid 2874: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:52 otp3 pgpool[2874]: [220-2] 2016-06-06 09:36:52: pid 2874: LOCATION: pool_session_context.c:219 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2873: DETAIL: query context 0x802481830 is still used 2 times. query:"select cltenant0_.tenant_id as tenant_i1_3_0_, cltenant0_.database_id as database3_3_0_, cltenant0_.plan_id as plan_id4_3_0_, cltenant0_.tenant_name as tenant_n2_3_0_, cldatabase1_.database_id as database1_0_1_, cldatabase1_.database_server_id as database7_0_1_, cldatabase1_.database_name as database2_0_1_, cldatabase1_.max_pool_size as max_pool3_0_1_, cldatabase1_.min_pool_size as min_pool4_0_1_, cldatabase1_.password as password5_0_1_, cldatabase1_.username as username6_0_1_, cldatabase2_.database_server_id as database1_1_2_, cldatabase2_.helpdesk_driver_class as helpdesk2_1_2_, cldatabase2_.host as host3_1_2_, cldatabase2_.jdbc_url as jdbc_url4_1_2_, cldatabase2_.port as port5_1_2_, cldatabase2_.rule_engine_driver_class as rule_eng6_1_2_, clhosts3_.tenant_id as tenant_i4_3_3_, clhosts3_.host_id as host_id1_2_3_, clhosts3_.host_id as host_id1_2_4_, clhosts3_.host_name as host_nam2_2_4 Jun 6 09:36:52 otp3 pgpool[2874]: [221-1] 2016-06-06 09:36:52: pid 2874: DEBUG: processing frontend response Jun 6 09:36:52 otp3 pgpool[2874]: [221-2] 2016-06-06 09:36:52: pid 2874: DETAIL: received kind 'X'(58) from frontend Jun 6 09:36:52 otp3 pgpool[2874]: [221-3] 2016-06-06 09:36:52: pid 2874: LOCATION: pool_proto_modules.c:2188 Jun 6 09:36:52 otp3 pgpool[2874]: [222-1] 2016-06-06 09:36:52: pid 2874: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:36:52 otp3 pgpool[2874]: [222-2] 2016-06-06 09:36:52: pid 2874: LOCATION: pool_session_context.c:280 Jun 6 09:36:52 otp3 pgpool[2874]: [223-1] 2016-06-06 09:36:52: pid 2874: DEBUG: write on frontend failed with error :"Broken pipe" Jun 6 09:36:52 otp3 pgpool[2874]: [223-2] 2016-06-06 09:36:52: pid 2874: DETAIL: while trying to write data from offset: 0 wlen: 113 Jun 6 09:36:52 otp3 pgpool[2874]: [223-3] 2016-06-06 09:36:52: pid 2874: LOCATION: pool_stream.c:590 Jun 6 09:36:52 otp3 pgpool[2874]: [224-1] 2016-06-06 09:36:52: pid 2874: DEBUG: write on frontend failed with error :"Broken pipe" Jun 6 09:36:52 otp3 pgpool[2874]: [224-2] 2016-06-06 09:36:52: pid 2874: DETAIL: while trying to write data from offset: 0 wlen: 258 Jun 6 09:36:52 otp3 pgpool[2874]: [224-3] 2016-06-06 09:36:52: pid 2874: LOCATION: pool_stream.c:590 Jun 6 09:36:52 otp3 pgpool[2874]: [225-1] 2016-06-06 09:36:52: pid 2874: DEBUG: Frontend terminated Jun 6 09:36:52 otp3 pgpool[2874]: [225-2] 2016-06-06 09:36:52: pid 2874: DETAIL: received message kind 'X' from frontend Jun 6 09:36:52 otp3 pgpool[2874]: [225-3] 2016-06-06 09:36:52: pid 2874: LOCATION: pool_proto_modules.c:2263 Jun 6 09:36:52 otp3 pgpool[2874]: [226-1] 2016-06-06 09:36:52: pid 2874: DEBUG: write on frontend failed with error :"Broken pipe" Jun 6 09:36:52 otp3 pgpool[2874]: [226-2] 2016-06-06 09:36:52: pid 2874: DETAIL: while trying to write data from offset: 0 wlen: 110 Jun 6 09:36:52 otp3 pgpool[2874]: [226-3] 2016-06-06 09:36:52: pid 2874: LOCATION: pool_stream.c:590 Jun 6 09:36:52 otp3 pgpool[2874]: [227-1] 2016-06-06 09:36:52: pid 2874: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:36:52 otp3 pgpool[2874]: [227-2] 2016-06-06 09:36:52: pid 2874: LOCATION: pool_session_context.c:280 Jun 6 09:36:52 otp3 pgpool[2874]: [228-1] 2016-06-06 09:36:52: pid 2874: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:52 otp3 pgpool[2874]: [228-2] 2016-06-06 09:36:52: pid 2874: LOCATION: pool_session_context.c:219 Jun 6 09:36:52 otp3 pgpool[2874]: [229-1] 2016-06-06 09:36:52: pid 2874: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:36:52 otp3 pgpool[2874]: [229-2] 2016-06-06 09:36:52: pid 2874: LOCATION: pool_session_context.c:280 Jun 6 09:36:52 otp3 pgpool[2874]: [230-1] 2016-06-06 09:36:52: pid 2874: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:52 otp3 pgpool[2874]: [230-2] 2016-06-06 09:36:52: pid 2874: LOCATION: pool_session_context.c:219 Jun 6 09:36:52 otp3 pgpool[2874]: [231-1] 2016-06-06 09:36:52: pid 2874: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:52 otp3 pgpool[2874]: [231-2] 2016-06-06 09:36:52: pid 2874: LOCATION: pool_session_context.c:219 Jun 6 09:36:52 otp3 pgpool[2874]: [232-1] 2016-06-06 09:36:52: pid 2874: DEBUG: session context: setting query in progress. DONE Jun 6 09:36:52 otp3 pgpool[2874]: [232-2] 2016-06-06 09:36:52: pid 2874: LOCATION: pool_session_context.c:208 Jun 6 09:36:52 otp3 pgpool[2874]: [233-1] 2016-06-06 09:36:52: pid 2874: DEBUG: pool_write: to backend: kind:Q Jun 6 09:36:52 otp3 pgpool[2874]: [233-2] 2016-06-06 09:36:52: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:36:52 otp3 pgpool: https3_2_4_, clhosts3_.tenant_id as tenant_i4_2_4_, plan4_.id as id1_5_5_, plan4_.default_no_of_assets as default_2_5_5_, plan4_.default_number_of_agents as default_3_5_5_, plan4_.is_assets as is_asset4_5_5_, plan4_.plan as plan5_5_5_, plan4_.plan_name as plan_nam6_5_5_, plan4_.poller_source_reference_limit as poller_s7_5_5_ from cl_tenant cltenant0_ left outer join cl_database cldatabase1_ on cltenant0_.database_id=cldatabase1_.database_id left outer join cl_database_server cldatabase2_ on cldatabase1_.database_server_id=cldatabase2_.database_server_id left outer join cl_host clhosts3_ on cltenant0_.tenant_id=clhosts3_.tenant_id left outer join plan plan4_ on cltenant0_.plan_id=plan4_.id where cltenant0_.tenant_id=$1" Jun 6 09:36:52 otp3 pgpool[2874]: [234-1] 2016-06-06 09:36:52: pid 2874: DEBUG: waiting for query response Jun 6 09:36:52 otp3 pgpool[2874]: [234-2] 2016-06-06 09:36:52: pid 2874: DETAIL: waiting for backend:0 to complete the query Jun 6 09:36:52 otp3 pgpool[2874]: [234-3] 2016-06-06 09:36:52: pid 2874: LOCATION: pool_process_query.c:479 Jun 6 09:36:52 otp3 pgpool[2874]: [235-1] 2016-06-06 09:36:52: pid 2874: DEBUG: pool_read: read 84 bytes from backend 0 Jun 6 09:36:52 otp3 pgpool[2874]: [235-2] 2016-06-06 09:36:52: pid 2874: LOCATION: pool_stream.c:190 Jun 6 09:36:52 otp3 pgpool[2874]: [236-1] 2016-06-06 09:36:52: pid 2874: DEBUG: detect error: kind: S Jun 6 09:36:52 otp3 pgpool[2874]: [236-2] 2016-06-06 09:36:52: pid 2874: LOCATION: pool_process_query.c:4166 Jun 6 09:36:52 otp3 pgpool[2874]: [237-1] 2016-06-06 09:36:52: pid 2874: DEBUG: detect error: kind: S Jun 6 09:36:52 otp3 pgpool[2874]: [237-2] 2016-06-06 09:36:52: pid 2874: LOCATION: pool_process_query.c:4166 Jun 6 09:36:52 otp3 pgpool[2874]: [238-1] 2016-06-06 09:36:52: pid 2874: DEBUG: detect error: kind: S Jun 6 09:36:52 otp3 pgpool[2874]: [238-2] 2016-06-06 09:36:52: pid 2874: LOCATION: pool_process_query.c:4166 Jun 6 09:36:52 otp3 pgpool[2874]: [239-1] 2016-06-06 09:36:52: pid 2874: DEBUG: detect error: kind: S Jun 6 09:36:52 otp3 pgpool[2874]: [239-2] 2016-06-06 09:36:52: pid 2874: LOCATION: pool_process_query.c:4166 Jun 6 09:36:52 otp3 pgpool[2874]: [240-1] 2016-06-06 09:36:52: pid 2874: DEBUG: pool_write: to backend: kind:Q Jun 6 09:36:52 otp3 pgpool[2874]: [240-2] 2016-06-06 09:36:52: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:36:52 otp3 pgpool[2874]: [241-1] 2016-06-06 09:36:52: pid 2874: DEBUG: waiting for query response Jun 6 09:36:52 otp3 pgpool[2874]: [241-2] 2016-06-06 09:36:52: pid 2874: DETAIL: waiting for backend:1 to complete the query Jun 6 09:36:52 otp3 pgpool[2874]: [241-3] 2016-06-06 09:36:52: pid 2874: LOCATION: pool_process_query.c:479 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2873: LOCATION: pool_session_context.c:873 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2873: DEBUG: SimpleForwardToFrontend: packet:1 length:0 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2873: LOCATION: pool_process_query.c:792 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2873: DEBUG: session context: setting command success. DONE Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2873: LOCATION: pool_session_context.c:741 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2873: DEBUG: processing frontend response Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2873: DETAIL: received kind 'B'(42) from frontend Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 0 doing extended query: 0 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 0 doing extended query: 0 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DEBUG: reading message length Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DETAIL: slot: 0 length: 5 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: LOCATION: pool_auth.c:1107 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DEBUG: reading message length Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DETAIL: slot: 1 length: 5 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: LOCATION: pool_auth.c:1126 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DEBUG: processing ReadyForQuery Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DETAIL: transaction state ' Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: LOCATION: pool_proto_modules.c:1612 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DEBUG: processing ReadyForQuery Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DETAIL: transaction state 'I'(49) Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: LOCATION: pool_proto_modules.c:1612 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DEBUG: processing frontend response Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DETAIL: received kind 'P'(50) from frontend Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: LOCATION: pool_proto_modules.c:2188 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: LOCATION: pool_session_context.c:280 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: LOCATION: pool_session_context.c:269 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DEBUG: Parse: statement name <> Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: LOCATION: pool_proto_modules.c:817 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DEBUG: session context: setting query in progress. DONE Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: LOCATION: pool_session_context.c:208 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DEBUG: pool_write: to backend: kind:S Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DEBUG: pool_write: to backend: kind:H Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DEBUG: pool_write: to backend: kind:S Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:36:52 otp3 pgpool[2874]: [242-1] 2016-06-06 09:36:52: pid 2874: DEBUG: pool_read: read 84 bytes from backend 1 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DEBUG: pool_write: to backend: kind:H Jun 6 09:36:52 otp3 pgpool[2874]: [242-2] 2016-06-06 09:36:52: pid 2874: LOCATION: pool_stream.c:190 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:36:52 otp3 pgpool[2874]: [243-1] 2016-06-06 09:36:52: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 0 Jun 6 09:36:52 otp3 pgpool[2874]: [243-2] 2016-06-06 09:36:52: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: LOCATION: pool_stream.c:190 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DEBUG: pool_read: read 6 bytes from backend 1 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: LOCATION: pool_stream.c:190 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: LOCATION: pool_session_context.c:310 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:52 otp3 pgpool[2874]: [244-1] 2016-06-06 09:36:52: pid 2874: DEBUG: reading backend data packet kind Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:36:52 otp3 pgpool[2874]: [244-2] 2016-06-06 09:36:52: pid 2874: DETAIL: parameter name: is_superuser value: "off" Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:36:52 otp3 pgpool[2874]: [244-3] 2016-06-06 09:36:52: pid 2874: LOCATION: pool_process_query.c:3326 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DEBUG: reading message length Jun 6 09:36:52 otp3 pgpool[2874]: [245-1] 2016-06-06 09:36:52: pid 2874: DEBUG: reading backend data packet kind Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DETAIL: slot: 0 length: 5 Jun 6 09:36:52 otp3 pgpool[2874]: [245-2] 2016-06-06 09:36:52: pid 2874: DETAIL: parameter name: session_authorization value: "sparrowdesk" Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: LOCATION: pool_auth.c:1107 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DEBUG: reading message length Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DETAIL: slot: 1 length: 5 Jun 6 09:36:52 otp3 pgpool[2874]: [245-3] 2016-06-06 09:36:52: pid 2874: LOCATION: pool_process_query.c:3326 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: LOCATION: pool_auth.c:1126 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DEBUG: processing ReadyForQuery Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DETAIL: transaction state 'I'(49) Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: LOCATION: pool_proto_modules.c:1612 Jun 6 09:36:52 otp3 pgpool[2874]: [246-1] 2016-06-06 09:36:52: pid 2874: DEBUG: reading backend data packet kind Jun 6 09:36:52 otp3 pgpool[2874]: [246-2] 2016-06-06 09:36:52: pid 2874: DETAIL: backend:0 of 2 kind = 'C' Jun 6 09:36:52 otp3 pgpool[2874]: [246-3] 2016-06-06 09:36:52: pid 2874: LOCATION: pool_process_query.c:3349 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DEBUG: processing ReadyForQuery Jun 6 09:36:52 otp3 pgpool[2874]: [247-1] 2016-06-06 09:36:52: pid 2874: DEBUG: reading backend data packet kind Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DETAIL: transaction state 'I'(49) Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: LOCATION: pool_proto_modules.c:1612 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: LOCATION: pool_session_context.c:219 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DEBUG: session context: setting query in progress. DONE Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: LOCATION: pool_session_context.c:208 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DEBUG: Parse: waiting for master completing the query Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: LOCATION: pool_proto_modules.c:1064 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: LOCATION: pool_query_context.c:854 Jun 6 09:36:52 otp3 pgpool[2874]: [247-2] 2016-06-06 09:36:52: pid 2874: DETAIL: parameter name: is_superuser value: "off" Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DEBUG: pool_write: to backend: kind:P Jun 6 09:36:52 otp3 pgpool[2874]: [247-3] 2016-06-06 09:36:52: pid 2874: LOCATION: pool_process_query.c:3326 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:36:52 otp3 pgpool[2874]: [248-1] 2016-06-06 09:36:52: pid 2874: DEBUG: reading backend data packet kind Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DEBUG: pool_write: to backend: kind:H Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DEBUG: waiting for query response Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DETAIL: waiting for backend:0 to complete the query Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: LOCATION: pool_process_query.c:479 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: LOCATION: pool_stream.c:190 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DEBUG: detect error: kind: 1 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: LOCATION: pool_process_query.c:4166 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DEBUG: pool_send_and_wait: pool_set_sync_map: 1 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: LOCATION: pool_query_context.c:854 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DEBUG: pool_write: to backend: kind:P Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DEBUG: pool_write: to backend: kind:H Jun 6 09:36:52 otp3 pgpool[2874]: [248-2] 2016-06-06 09:36:52: pid 2874: DETAIL: parameter name: session_authorization value: "sparrowdesk" Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:36:52 otp3 pgpool[2874]: [248-3] 2016-06-06 09:36:52: pid 2874: LOCATION: pool_process_query.c:3326 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DEBUG: waiting for query response Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DETAIL: waiting for backend:1 to complete the query Jun 6 09:36:52 otp3 pgpool[2874]: [249-1] 2016-06-06 09:36:52: pid 2874: DEBUG: reading backend data packet kind Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: LOCATION: pool_process_query.c:479 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DEBUG: pool_read: read 5 bytes from backend 1 Jun 6 09:36:52 otp3 pgpool[2874]: [249-2] 2016-06-06 09:36:52: pid 2874: DETAIL: backend:1 of 2 kind = 'C' Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: LOCATION: pool_stream.c:190 Jun 6 09:36:52 otp3 pgpool[2874]: [249-3] 2016-06-06 09:36:52: pid 2874: LOCATION: pool_process_query.c:3349 Jun 6 09:36:52 otp3 pgpool[2874]: [250-1] 2016-06-06 09:36:52: pid 2874: DEBUG: read_kind_from_backend max_count:2.000000 num_executed_nodes:2 Jun 6 09:36:52 otp3 pgpool[2874]: [250-2] 2016-06-06 09:36:52: pid 2874: LOCATION: pool_process_query.c:3365 Jun 6 09:36:52 otp3 pgpool[2874]: [251-1] 2016-06-06 09:36:52: pid 2874: DEBUG: processing backend response Jun 6 09:36:52 otp3 pgpool[2874]: [251-2] 2016-06-06 09:36:52: pid 2874: DETAIL: received kind 'C'(43) from backend Jun 6 09:36:52 otp3 pgpool[2874]: [251-3] 2016-06-06 09:36:52: pid 2874: LOCATION: pool_proto_modules.c:2424 Jun 6 09:36:52 otp3 pgpool[2874]: [252-1] 2016-06-06 09:36:52: pid 2874: DEBUG: called by pool_sent_message_destroy: sent message: address: 2406c80 kind: P name: == Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:52 otp3 pgpool[2874]: [252-2] 2016-06-06 09:36:52: pid 2874: LOCATION: pool_session_context.c:436 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DEBUG: reading backend data packet kind Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DETAIL: backend:0 of 2 kind = '1' Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: LOCATION: pool_process_query.c:3349 Jun 6 09:36:52 otp3 pgpool[2874]: [253-1] 2016-06-06 09:36:52: pid 2874: DEBUG: checking if query context can be safely destroyed Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DEBUG: reading backend data packet kind Jun 6 09:36:52 otp3 pgpool[2874]: [253-2] 2016-06-06 09:36:52: pid 2874: DETAIL: query context 0x802481830 is still used 2 times. query:"SET extra_float_digits = 3" Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DETAIL: backend:1 of 2 kind = '1' Jun 6 09:36:52 otp3 pgpool[2874]: [253-3] 2016-06-06 09:36:52: pid 2874: LOCATION: pool_session_context.c:873 Jun 6 09:36:52 otp3 pgpool[2874]: [254-1] 2016-06-06 09:36:52: pid 2874: DEBUG: called by pool_sent_message_destroy: sent message: address: 2406d18 kind: B name: == Jun 6 09:36:52 otp3 pgpool[2874]: [254-2] 2016-06-06 09:36:52: pid 2874: LOCATION: pool_session_context.c:436 Jun 6 09:36:52 otp3 pgpool[2874]: [255-1] 2016-06-06 09:36:52: pid 2874: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:52 otp3 pgpool[2874]: [255-2] 2016-06-06 09:36:52: pid 2874: LOCATION: pool_session_context.c:219 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: LOCATION: pool_process_query.c:3349 Jun 6 09:36:52 otp3 pgpool[2874]: [256-1] 2016-06-06 09:36:52: pid 2874: DEBUG: session context: setting query in progress. DONE Jun 6 09:36:52 otp3 pgpool[2874]: [256-2] 2016-06-06 09:36:52: pid 2874: LOCATION: pool_session_context.c:208 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DEBUG: read_kind_from_backend max_count:2.000000 num_executed_nodes:2 Jun 6 09:36:52 otp3 pgpool[2874]: [257-1] 2016-06-06 09:36:52: pid 2874: DEBUG: session context: setting command success. DONE Jun 6 09:36:52 otp3 pgpool[2874]: [257-2] 2016-06-06 09:36:52: pid 2874: LOCATION: pool_session_context.c:741 Jun 6 09:36:52 otp3 pgpool[2874]: [258-1] 2016-06-06 09:36:52: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 0 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: LOCATION: pool_process_query.c:3365 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DEBUG: processing backend response Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DETAIL: received kind '1'(31) from backend Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: LOCATION: pool_proto_modules.c:2424 Jun 6 09:36:52 otp3 pgpool[2874]: [258-2] 2016-06-06 09:36:52: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DEBUG: called by pool_add_sent_message: sent message: address: 2406c80 kind: P name: == Jun 6 09:36:52 otp3 pgpool[2874]: [259-1] 2016-06-06 09:36:52: pid 2874: DEBUG: reading backend data packet kind Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: LOCATION: pool_session_context.c:436 Jun 6 09:36:52 otp3 pgpool[2874]: [259-2] 2016-06-06 09:36:52: pid 2874: DETAIL: backend:0 of 2 kind = 'Z' Jun 6 09:36:52 otp3 pgpool[2874]: [259-3] 2016-06-06 09:36:52: pid 2874: LOCATION: pool_process_query.c:3349 Jun 6 09:36:52 otp3 pgpool[2874]: [260-1] 2016-06-06 09:36:52: pid 2874: DEBUG: reading backend data packet kind Jun 6 09:36:52 otp3 pgpool[2874]: [260-2] 2016-06-06 09:36:52: pid 2874: DETAIL: backend:1 of 2 kind = 'Z' Jun 6 09:36:52 otp3 pgpool[2874]: [260-3] 2016-06-06 09:36:52: pid 2874: LOCATION: pool_process_query.c:3349 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DEBUG: SimpleForwardToFrontend: packet:1 length:0 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: LOCATION: pool_process_query.c:792 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DEBUG: session context: setting command success. DONE Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: LOCATION: pool_session_context.c:741 Jun 6 09:36:52 otp3 pgpool[2874]: [261-1] 2016-06-06 09:36:52: pid 2874: DEBUG: read_kind_from_backend max_count:2.000000 num_executed_nodes:2 Jun 6 09:36:52 otp3 pgpool[2874]: [261-2] 2016-06-06 09:36:52: pid 2874: LOCATION: pool_process_query.c:3365 Jun 6 09:36:52 otp3 pgpool[2874]: [262-1] 2016-06-06 09:36:52: pid 2874: DEBUG: processing backend response Jun 6 09:36:52 otp3 pgpool[2874]: [262-2] 2016-06-06 09:36:52: pid 2874: DETAIL: received kind 'Z'(5a) from backend Jun 6 09:36:52 otp3 pgpool[2874]: [262-3] 2016-06-06 09:36:52: pid 2874: LOCATION: pool_proto_modules.c:2424 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:52 otp3 pgpool[2874]: [263-1] 2016-06-06 09:36:52: pid 2874: DEBUG: processing backend response Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: LOCATION: pool_session_context.c:219 Jun 6 09:36:52 otp3 pgpool[2874]: [263-2] 2016-06-06 09:36:52: pid 2874: DETAIL: Ready For Query received Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DEBUG: processing frontend response Jun 6 09:36:52 otp3 pgpool[2874]: [263-3] 2016-06-06 09:36:52: pid 2874: LOCATION: pool_proto_modules.c:2442 Jun 6 09:36:52 otp3 pgpool[2874]: [264-1] 2016-06-06 09:36:52: pid 2874: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:36:52 otp3 pgpool[2874]: [264-2] 2016-06-06 09:36:52: pid 2874: LOCATION: pool_session_context.c:310 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DETAIL: received kind 'B'(42) from frontend Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: LOCATION: pool_proto_modules.c:2188 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: LOCATION: pool_session_context.c:280 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: LOCATION: pool_session_context.c:269 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DEBUG: Bind: checking strict query Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: LOCATION: pool_proto_modules.c:1211 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DEBUG: Bind: checking insert lock Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: LOCATION: pool_proto_modules.c:1221 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DEBUG: Bind: waiting for master completing the query Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: LOCATION: pool_proto_modules.c:1237 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DEBUG: session context: setting query in progress. DONE Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: LOCATION: pool_session_context.c:208 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: LOCATION: pool_query_context.c:854 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DEBUG: pool_write: to backend: kind:B Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DEBUG: pool_write: to backend: kind:H Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DEBUG: waiting for query response Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DETAIL: waiting for backend:0 to complete the query Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: LOCATION: pool_process_query.c:479 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: LOCATION: pool_stream.c:190 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DEBUG: pool_send_and_wait: pool_set_sync_map: 1 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: LOCATION: pool_query_context.c:854 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DEBUG: pool_write: to backend: kind:B Jun 6 09:36:52 otp3 pgpool[2874]: [265-1] 2016-06-06 09:36:52: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 0 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DEBUG: pool_write: to backend: kind:H Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:36:52 otp3 pgpool[2874]: [265-2] 2016-06-06 09:36:52: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DEBUG: waiting for query response Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DETAIL: waiting for backend:1 to complete the query Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: LOCATION: pool_process_query.c:479 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DEBUG: pool_read: read 5 bytes from backend 1 Jun 6 09:36:52 otp3 pgpool[2874]: [266-1] 2016-06-06 09:36:52: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 0 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: LOCATION: pool_stream.c:190 Jun 6 09:36:52 otp3 pgpool[2874]: [266-2] 2016-06-06 09:36:52: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DEBUG: reading backend data packet kind Jun 6 09:36:52 otp3 pgpool[2874]: [267-1] 2016-06-06 09:36:52: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 0 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DETAIL: backend:0 of 2 kind = '2' Jun 6 09:36:52 otp3 pgpool[2874]: [267-2] 2016-06-06 09:36:52: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: LOCATION: pool_process_query.c:3349 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DEBUG: reading backend data packet kind Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DETAIL: backend:1 of 2 kind = '2' Jun 6 09:36:52 otp3 pgpool[2874]: [268-1] 2016-06-06 09:36:52: pid 2874: DEBUG: reading message length Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: LOCATION: pool_process_query.c:3349 Jun 6 09:36:52 otp3 pgpool[2874]: [268-2] 2016-06-06 09:36:52: pid 2874: DETAIL: slot: 0 length: 5 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DEBUG: read_kind_from_backend max_count:2.000000 num_executed_nodes:2 Jun 6 09:36:52 otp3 pgpool[2874]: [268-3] 2016-06-06 09:36:52: pid 2874: LOCATION: pool_auth.c:1107 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: LOCATION: pool_process_query.c:3365 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DEBUG: processing backend response Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DETAIL: received kind '2'(32) from backend Jun 6 09:36:52 otp3 pgpool[2874]: [269-1] 2016-06-06 09:36:52: pid 2874: DEBUG: reading message length Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: LOCATION: pool_proto_modules.c:2424 Jun 6 09:36:52 otp3 pgpool[2874]: [269-2] 2016-06-06 09:36:52: pid 2874: DETAIL: slot: 1 length: 5 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DEBUG: called by pool_add_sent_message: sent message: address: 2406d18 kind: B name: == Jun 6 09:36:52 otp3 pgpool[2874]: [269-3] 2016-06-06 09:36:52: pid 2874: LOCATION: pool_auth.c:1126 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: LOCATION: pool_session_context.c:436 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:36:52 otp3 pgpool[2874]: [270-1] 2016-06-06 09:36:52: pid 2874: DEBUG: processing ReadyForQuery Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DEBUG: SimpleForwardToFrontend: packet:2 length:0 Jun 6 09:36:52 otp3 pgpool[2874]: [270-2] 2016-06-06 09:36:52: pid 2874: DETAIL: transaction state 'I'(49) Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: LOCATION: pool_process_query.c:792 Jun 6 09:36:52 otp3 pgpool[2874]: [270-3] 2016-06-06 09:36:52: pid 2874: LOCATION: pool_proto_modules.c:1612 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DEBUG: session context: setting command success. DONE Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: LOCATION: pool_session_context.c:741 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:52 otp3 pgpool[2874]: [271-1] 2016-06-06 09:36:52: pid 2874: DEBUG: processing ReadyForQuery Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: LOCATION: pool_session_context.c:219 Jun 6 09:36:52 otp3 pgpool[2874]: [271-2] 2016-06-06 09:36:52: pid 2874: DETAIL: transaction state 'I'(49) Jun 6 09:36:52 otp3 pgpool[2874]: [271-3] 2016-06-06 09:36:52: pid 2874: LOCATION: pool_proto_modules.c:1612 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DEBUG: processing frontend response Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DETAIL: received kind 'E'(45) from frontend Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: LOCATION: pool_proto_modules.c:2188 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:36:52 otp3 pgpool[2874]: [272-1] 2016-06-06 09:36:52: pid 2874: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:52 otp3 pgpool[2874]: [272-2] 2016-06-06 09:36:52: pid 2874: LOCATION: pool_session_context.c:219 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: LOCATION: pool_session_context.c:280 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: LOCATION: pool_session_context.c:269 Jun 6 09:36:52 otp3 pgpool[2874]: [273-1] 2016-06-06 09:36:52: pid 2874: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DEBUG: session context: setting query in progress. DONE Jun 6 09:36:52 otp3 pgpool[2874]: [273-2] 2016-06-06 09:36:52: pid 2874: LOCATION: pool_session_context.c:219 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: LOCATION: pool_session_context.c:208 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: LOCATION: pool_query_context.c:854 Jun 6 09:36:52 otp3 pgpool[2874]: [274-1] 2016-06-06 09:36:52: pid 2874: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DEBUG: pool_write: to backend: kind:E Jun 6 09:36:52 otp3 pgpool[2874]: [274-2] 2016-06-06 09:36:52: pid 2874: LOCATION: pool_session_context.c:280 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DEBUG: pool_write: to backend: kind:H Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:36:52 otp3 pgpool[2874]: [275-1] 2016-06-06 09:36:52: pid 2874: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:52 otp3 pgpool[2874]: [275-2] 2016-06-06 09:36:52: pid 2874: LOCATION: pool_session_context.c:219 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DEBUG: waiting for query response Jun 6 09:36:52 otp3 pgpool[2874]: [276-1] 2016-06-06 09:36:52: pid 2874: DEBUG: setting backend connection close timer Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DETAIL: waiting for backend:0 to complete the query Jun 6 09:36:52 otp3 pgpool[2874]: [276-2] 2016-06-06 09:36:52: pid 2874: DETAIL: close time 1465186012 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: LOCATION: pool_process_query.c:479 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DEBUG: pool_read: read 9 bytes from backend 0 Jun 6 09:36:52 otp3 pgpool[2874]: [276-3] 2016-06-06 09:36:52: pid 2874: LOCATION: pool_connection_pool.c:329 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: LOCATION: pool_stream.c:190 Jun 6 09:36:52 otp3 pgpool[2874]: [277-1] 2016-06-06 09:36:52: pid 2874: DEBUG: write on frontend failed with error :"Broken pipe" Jun 6 09:36:52 otp3 pgpool[2874]: [277-2] 2016-06-06 09:36:52: pid 2874: DETAIL: while trying to write data from offset: 0 wlen: 112 Jun 6 09:36:52 otp3 pgpool[2874]: [277-3] 2016-06-06 09:36:52: pid 2874: LOCATION: pool_stream.c:590 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DEBUG: detect error: kind: C Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: LOCATION: pool_process_query.c:4166 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DEBUG: detect error: kind: C Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: LOCATION: pool_process_query.c:4166 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DEBUG: detect error: kind: C Jun 6 09:36:52 otp3 pgpool[2874]: [278-1] 2016-06-06 09:36:52: pid 2874: DEBUG: write on frontend failed with error :"Broken pipe" Jun 6 09:36:52 otp3 pgpool[2874]: [278-2] 2016-06-06 09:36:52: pid 2874: DETAIL: while trying to write data from offset: 0 wlen: 257 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: LOCATION: pool_process_query.c:4166 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DEBUG: detect error: kind: C Jun 6 09:36:52 otp3 pgpool[2874]: [278-3] 2016-06-06 09:36:52: pid 2874: LOCATION: pool_stream.c:590 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: LOCATION: pool_process_query.c:4166 Jun 6 09:36:52 otp3 pgpool[2874]: [279-1] 2016-06-06 09:36:52: pid 2874: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: DEBUG: pool_send_and_wait: pool_set_sync_map: 1 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2874: LOCATION: pool_query_context.c:854 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DEBUG: pool_write: to backend: kind:E Jun 6 09:36:52 otp3 pgpool[2874]: [279-2] 2016-06-06 09:36:52: pid 2874: LOCATION: pool_session_context.c:219 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:36:52 otp3 pgpool[2874]: [280-1] 2016-06-06 09:36:52: pid 2874: DEBUG: write on frontend failed with error :"Broken pipe" Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DEBUG: pool_write: to backend: kind:H Jun 6 09:36:52 otp3 pgpool[2874]: [280-2] 2016-06-06 09:36:52: pid 2874: DETAIL: while trying to write data from offset: 0 wlen: 101 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DEBUG: waiting for query response Jun 6 09:36:52 otp3 pgpool[2874]: [280-3] 2016-06-06 09:36:52: pid 2874: LOCATION: pool_stream.c:590 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DETAIL: waiting for backend:1 to complete the query Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: LOCATION: pool_process_query.c:479 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DEBUG: pool_read: read 9 bytes from backend 1 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: LOCATION: pool_stream.c:190 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DEBUG: reading backend data packet kind Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DETAIL: backend:0 of 2 kind = 'C' Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: LOCATION: pool_process_query.c:3349 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DEBUG: reading backend data packet kind Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DETAIL: backend:1 of 2 kind = 'C' Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: LOCATION: pool_process_query.c:3349 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DEBUG: read_kind_from_backend max_count:2.000000 num_executed_nodes:2 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: LOCATION: pool_process_query.c:3365 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DEBUG: processing backend response Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DETAIL: received kind 'C'(43) from backend Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: LOCATION: pool_proto_modules.c:2424 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DEBUG: session context: setting command success. DONE Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: LOCATION: pool_session_context.c:741 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: LOCATION: pool_session_context.c:219 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DEBUG: processing frontend response Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DETAIL: received kind 'S'(53) from frontend Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: LOCATION: pool_proto_modules.c:2188 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: LOCATION: pool_session_context.c:280 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: LOCATION: pool_session_context.c:269 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DEBUG: session context: setting query in progress. DONE Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: LOCATION: pool_session_context.c:208 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DEBUG: pool_write: to backend: kind:S Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DEBUG: pool_write: to backend: kind:S Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: LOCATION: pool_stream.c:190 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DEBUG: reading backend data packet kind Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DETAIL: backend:0 of 2 kind = 'Z' Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: LOCATION: pool_process_query.c:3349 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DEBUG: pool_read: read 6 bytes from backend 1 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: LOCATION: pool_stream.c:190 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DEBUG: reading backend data packet kind Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DETAIL: backend:1 of 2 kind = 'Z' Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: LOCATION: pool_process_query.c:3349 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DEBUG: read_kind_from_backend max_count:2.000000 num_executed_nodes:2 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: LOCATION: pool_process_query.c:3365 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DEBUG: processing backend response Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DETAIL: received kind 'Z'(5a) from backend Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: LOCATION: pool_proto_modules.c:2424 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DEBUG: processing backend response Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DETAIL: Ready For Query received Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: LOCATION: pool_proto_modules.c:2442 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: LOCATION: pool_session_context.c:310 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DEBUG: reading message length Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DETAIL: slot: 0 length: 5 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: LOCATION: pool_auth.c:1107 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DEBUG: reading message length Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DETAIL: slot: 1 length: 5 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: LOCATION: pool_auth.c:1126 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DEBUG: processing ReadyForQuery Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DETAIL: transaction state 'I'(49) Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: LOCATION: pool_proto_modules.c:1612 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DEBUG: processing ReadyForQuery Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DETAIL: transaction state 'I'(49) Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: LOCATION: pool_proto_modules.c:1612 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: LOCATION: pool_session_context.c:219 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DEBUG: processing frontend response Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DETAIL: received kind 'X'(58) from frontend Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: LOCATION: pool_proto_modules.c:2188 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: LOCATION: pool_session_context.c:280 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DEBUG: write on frontend failed with error :"Broken pipe" Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DETAIL: while trying to write data from offset: 0 wlen: 113 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: LOCATION: pool_stream.c:590 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DEBUG: write on frontend failed with error :"Broken pipe" Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DETAIL: while trying to write data from offset: 0 wlen: 258 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: LOCATION: pool_stream.c:590 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DEBUG: Frontend terminated Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DETAIL: received message kind 'X' from frontend Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: LOCATION: pool_proto_modules.c:2263 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DEBUG: write on frontend failed with error :"Broken pipe" Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DETAIL: while trying to write data from offset: 0 wlen: 110 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: LOCATION: pool_stream.c:590 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: LOCATION: pool_session_context.c:280 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: LOCATION: pool_session_context.c:219 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: LOCATION: pool_session_context.c:280 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: LOCATION: pool_session_context.c:219 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: LOCATION: pool_session_context.c:219 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DEBUG: session context: setting query in progress. DONE Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: LOCATION: pool_session_context.c:208 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DEBUG: pool_write: to backend: kind:Q Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DEBUG: waiting for query response Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DETAIL: waiting for backend:0 to complete the query Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: LOCATION: pool_process_query.c:479 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DEBUG: pool_read: read 84 bytes from backend 0 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: LOCATION: pool_stream.c:190 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DEBUG: detect error: kind: S Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: LOCATION: pool_process_query.c:4166 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DEBUG: detect error: kind: S Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: LOCATION: pool_process_query.c:4166 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DEBUG: detect error: kind: S Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: LOCATION: pool_process_query.c:4166 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DEBUG: detect error: kind: S Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: LOCATION: pool_process_query.c:4166 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DEBUG: pool_write: to backend: kind:Q Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DEBUG: waiting for query response Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DETAIL: waiting for backend:1 to complete the query Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: LOCATION: pool_process_query.c:479 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DEBUG: pool_read: read 84 bytes from backend 1 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: LOCATION: pool_stream.c:190 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 0 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DEBUG: reading backend data packet kind Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DETAIL: parameter name: is_superuser value: "off" Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: LOCATION: pool_process_query.c:3326 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DEBUG: reading backend data packet kind Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DETAIL: parameter name: session_authorization value: "sparrowdesk" Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: LOCATION: pool_process_query.c:3326 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DEBUG: reading backend data packet kind Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DETAIL: backend:0 of 2 kind = 'C' Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: LOCATION: pool_process_query.c:3349 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DEBUG: reading backend data packet kind Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DETAIL: parameter name: is_superuser value: "off" Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: LOCATION: pool_process_query.c:3326 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DEBUG: reading backend data packet kind Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DETAIL: parameter name: session_authorization value: "sparrowdesk" Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: LOCATION: pool_process_query.c:3326 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DEBUG: reading backend data packet kind Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DETAIL: backend:1 of 2 kind = 'C' Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: LOCATION: pool_process_query.c:3349 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DEBUG: read_kind_from_backend max_count:2.000000 num_executed_nodes:2 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: LOCATION: pool_process_query.c:3365 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DEBUG: processing backend response Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DETAIL: received kind 'C'(43) from backend Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: LOCATION: pool_proto_modules.c:2424 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DEBUG: called by pool_sent_message_destroy: sent message: address: 2406c80 kind: P name: == Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: LOCATION: pool_session_context.c:436 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DEBUG: checking if query context can be safely destroyed Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DETAIL: query context 0x802481830 is still used 2 times. query:"SET extra_float_digits = 3" Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: LOCATION: pool_session_context.c:873 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DEBUG: called by pool_sent_message_destroy: sent message: address: 2406d18 kind: B name: == Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: LOCATION: pool_session_context.c:436 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: LOCATION: pool_session_context.c:219 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DEBUG: session context: setting query in progress. DONE Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: LOCATION: pool_session_context.c:208 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DEBUG: session context: setting command success. DONE Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: LOCATION: pool_session_context.c:741 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 0 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DEBUG: reading backend data packet kind Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DETAIL: backend:0 of 2 kind = 'Z' Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: LOCATION: pool_process_query.c:3349 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DEBUG: reading backend data packet kind Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DETAIL: backend:1 of 2 kind = 'Z' Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: LOCATION: pool_process_query.c:3349 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DEBUG: read_kind_from_backend max_count:2.000000 num_executed_nodes:2 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: LOCATION: pool_process_query.c:3365 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DEBUG: processing backend response Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DETAIL: received kind 'Z'(5a) from backend Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: LOCATION: pool_proto_modules.c:2424 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DEBUG: processing backend response Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DETAIL: Ready For Query received Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: LOCATION: pool_proto_modules.c:2442 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: LOCATION: pool_session_context.c:310 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 0 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 0 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 0 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DEBUG: reading message length Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DETAIL: slot: 0 length: 5 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: LOCATION: pool_auth.c:1107 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DEBUG: reading message length Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DETAIL: slot: 1 length: 5 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: LOCATION: pool_auth.c:1126 Jun 6 09:36:52 otp3 pgpool[2875]: [164-1] 2016-06-06 09:36:52: pid 2875: DEBUG: reading backend data packet kind Jun 6 09:36:52 otp3 pgpool[2875]: [164-2] 2016-06-06 09:36:52: pid 2875: DETAIL: backend:0 of 2 kind = '2' Jun 6 09:36:52 otp3 pgpool[2873]: [512-1] 2016-06-06 09:36:52: pid 2873: DEBUG: Bind: checking insert lock Jun 6 09:36:52 otp3 pgpool[2875]: [164-3] 2016-06-06 09:36:52: pid 2875: LOCATION: pool_process_query.c:3349 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DEBUG: processing ReadyForQuery Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DETAIL: transaction state 'I'(49) Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: LOCATION: pool_proto_modules.c:1612 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DEBUG: processing ReadyForQuery Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DETAIL: transaction state 'I'(49) Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: LOCATION: pool_proto_modules.c:1612 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: LOCATION: pool_session_context.c:219 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: LOCATION: pool_session_context.c:219 Jun 6 09:36:52 otp3 pgpool[2873]: [512-2] 2016-06-06 09:36:52: pid 2873: LOCATION: pool_proto_modules.c:1221 Jun 6 09:36:52 otp3 pgpool[2875]: [165-1] 2016-06-06 09:36:52: pid 2875: DEBUG: reading backend data packet kind Jun 6 09:36:52 otp3 pgpool[2875]: [165-2] 2016-06-06 09:36:52: pid 2875: DETAIL: backend:1 of 2 kind = '2' Jun 6 09:36:52 otp3 pgpool[2875]: [165-3] 2016-06-06 09:36:52: pid 2875: LOCATION: pool_process_query.c:3349 Jun 6 09:36:52 otp3 pgpool[2873]: [513-1] 2016-06-06 09:36:52: pid 2873: DEBUG: Bind: waiting for master completing the query Jun 6 09:36:52 otp3 pgpool[2873]: [513-2] 2016-06-06 09:36:52: pid 2873: LOCATION: pool_proto_modules.c:1237 Jun 6 09:36:52 otp3 pgpool[2873]: [514-1] 2016-06-06 09:36:52: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:36:52 otp3 pgpool[2873]: [514-2] 2016-06-06 09:36:52: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:36:52 otp3 pgpool[2875]: [166-1] 2016-06-06 09:36:52: pid 2875: DEBUG: read_kind_from_backend max_count:2.000000 num_executed_nodes:2 Jun 6 09:36:52 otp3 pgpool[2875]: [166-2] 2016-06-06 09:36:52: pid 2875: LOCATION: pool_process_query.c:3365 Jun 6 09:36:52 otp3 pgpool[2873]: [515-1] 2016-06-06 09:36:52: pid 2873: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:36:52 otp3 pgpool[2873]: [515-2] 2016-06-06 09:36:52: pid 2873: LOCATION: pool_query_context.c:854 Jun 6 09:36:52 otp3 pgpool[2875]: [167-1] 2016-06-06 09:36:52: pid 2875: DEBUG: processing backend response Jun 6 09:36:52 otp3 pgpool[2873]: [516-1] 2016-06-06 09:36:52: pid 2873: DEBUG: pool_write: to backend: kind:B Jun 6 09:36:52 otp3 pgpool[2875]: [167-2] 2016-06-06 09:36:52: pid 2875: DETAIL: received kind '2'(32) from backend Jun 6 09:36:52 otp3 pgpool[2873]: [516-2] 2016-06-06 09:36:52: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:36:52 otp3 pgpool[2875]: [167-3] 2016-06-06 09:36:52: pid 2875: LOCATION: pool_proto_modules.c:2424 Jun 6 09:36:52 otp3 pgpool[2873]: [517-1] 2016-06-06 09:36:52: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:36:52 otp3 pgpool[2873]: [517-2] 2016-06-06 09:36:52: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:36:52 otp3 pgpool[2875]: [168-1] 2016-06-06 09:36:52: pid 2875: DEBUG: called by pool_add_sent_message: sent message: address: 2406d18 kind: B name: == Jun 6 09:36:52 otp3 pgpool[2875]: [168-2] 2016-06-06 09:36:52: pid 2875: LOCATION: pool_session_context.c:436 Jun 6 09:36:52 otp3 pgpool[2873]: [518-1] 2016-06-06 09:36:52: pid 2873: DEBUG: waiting for query response Jun 6 09:36:52 otp3 pgpool[2873]: [518-2] 2016-06-06 09:36:52: pid 2873: DETAIL: waiting for backend:0 to complete the query Jun 6 09:36:52 otp3 pgpool[2873]: [518-3] 2016-06-06 09:36:52: pid 2873: LOCATION: pool_process_query.c:479 Jun 6 09:36:52 otp3 pgpool[2875]: [169-1] 2016-06-06 09:36:52: pid 2875: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:52 otp3 pgpool[2875]: [169-2] 2016-06-06 09:36:52: pid 2875: LOCATION: pool_session_context.c:969 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:36:52 otp3 pgpool[2873]: [519-1] 2016-06-06 09:36:52: pid 2873: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:36:52 otp3 pgpool[2873]: [519-2] 2016-06-06 09:36:52: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:36:52 otp3 pgpool[2873]: [520-1] 2016-06-06 09:36:52: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:52 otp3 pgpool[2873]: [520-2] 2016-06-06 09:36:52: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:36:52 otp3 pgpool[2873]: [521-1] 2016-06-06 09:36:52: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:36:52 otp3 pgpool[2873]: [521-2] 2016-06-06 09:36:52: pid 2873: DETAIL: backend:0 of 2 kind = '2' Jun 6 09:36:52 otp3 pgpool[2873]: [521-3] 2016-06-06 09:36:52: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: LOCATION: pool_session_context.c:280 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: LOCATION: pool_session_context.c:219 Jun 6 09:36:52 otp3 pgpool[2873]: [522-1] 2016-06-06 09:36:52: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:36:52 otp3 pgpool[2873]: [522-2] 2016-06-06 09:36:52: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DEBUG: setting backend connection close timer Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DETAIL: close time 1465186012 Jun 6 09:36:52 otp3 pgpool[2873]: [523-1] 2016-06-06 09:36:52: pid 2873: DEBUG: processing backend response Jun 6 09:36:52 otp3 pgpool[2873]: [523-2] 2016-06-06 09:36:52: pid 2873: DETAIL: received kind '2'(32) from backend Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: LOCATION: pool_connection_pool.c:329 Jun 6 09:36:52 otp3 pgpool[2873]: [523-3] 2016-06-06 09:36:52: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DEBUG: write on frontend failed with error :"Broken pipe" Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DETAIL: while trying to write data from offset: 0 wlen: 112 Jun 6 09:36:52 otp3 pgpool[2873]: [524-1] 2016-06-06 09:36:52: pid 2873: DEBUG: called by pool_add_sent_message: sent message: address: 2406d18 kind: B name: == Jun 6 09:36:52 otp3 pgpool[2873]: [524-2] 2016-06-06 09:36:52: pid 2873: LOCATION: pool_session_context.c:436 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: LOCATION: pool_stream.c:590 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DEBUG: write on frontend failed with error :"Broken pipe" Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DETAIL: while trying to write data from offset: 0 wlen: 257 Jun 6 09:36:52 otp3 pgpool[2873]: [525-1] 2016-06-06 09:36:52: pid 2873: DEBUG: adding sent message to list Jun 6 09:36:52 otp3 pgpool[2873]: [525-2] 2016-06-06 09:36:52: pid 2873: DETAIL: portal "" already exists Jun 6 09:36:52 otp3 pgpool[2873]: [525-3] 2016-06-06 09:36:52: pid 2873: LOCATION: pool_session_context.c:512 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: LOCATION: pool_stream.c:590 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:52 otp3 pgpool[2873]: [526-1] 2016-06-06 09:36:52: pid 2873: DEBUG: called by pool_sent_message_destroy: sent message: address: 2406d98 kind: B name: == Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: LOCATION: pool_session_context.c:219 Jun 6 09:36:52 otp3 pgpool[2873]: [526-2] 2016-06-06 09:36:52: pid 2873: LOCATION: pool_session_context.c:436 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DEBUG: write on frontend failed with error :"Broken pipe" Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: DETAIL: while trying to write data from offset: 0 wlen: 101 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2874: LOCATION: pool_stream.c:590 Jun 6 09:36:52 otp3 pgpool[2873]: [527-1] 2016-06-06 09:36:52: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:52 otp3 pgpool[2873]: [527-2] 2016-06-06 09:36:52: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2873: DEBUG: Bind: checking strict query Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2873: LOCATION: pool_proto_modules.c:1211 Jun 6 09:36:52 otp3 pgpool[2875]: [170-1] 2016-06-06 09:36:52: pid 2875: DEBUG: SimpleForwardToFrontend: packet:2 length:0 Jun 6 09:36:52 otp3 pgpool[2873]: [528-1] 2016-06-06 09:36:52: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:36:52 otp3 pgpool[2875]: [170-2] 2016-06-06 09:36:52: pid 2875: LOCATION: pool_process_query.c:792 Jun 6 09:36:52 otp3 pgpool[2873]: [528-2] 2016-06-06 09:36:52: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:36:52 otp3 pgpool[2875]: [171-1] 2016-06-06 09:36:52: pid 2875: DEBUG: session context: setting command success. DONE Jun 6 09:36:52 otp3 pgpool[2875]: [171-2] 2016-06-06 09:36:52: pid 2875: LOCATION: pool_session_context.c:741 Jun 6 09:36:52 otp3 pgpool[2875]: [172-1] 2016-06-06 09:36:52: pid 2875: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:52 otp3 pgpool[2875]: [172-2] 2016-06-06 09:36:52: pid 2875: LOCATION: pool_session_context.c:219 Jun 6 09:36:52 otp3 pgpool[2875]: [173-1] 2016-06-06 09:36:52: pid 2875: DEBUG: processing frontend response Jun 6 09:36:52 otp3 pgpool[2875]: [173-2] 2016-06-06 09:36:52: pid 2875: DETAIL: received kind 'E'(45) from frontend Jun 6 09:36:52 otp3 pgpool[2875]: [173-3] 2016-06-06 09:36:52: pid 2875: LOCATION: pool_proto_modules.c:2188 Jun 6 09:36:52 otp3 pgpool[2875]: [174-1] 2016-06-06 09:36:52: pid 2875: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:36:52 otp3 pgpool[2875]: [174-2] 2016-06-06 09:36:52: pid 2875: LOCATION: pool_session_context.c:280 Jun 6 09:36:52 otp3 pgpool[2875]: [175-1] 2016-06-06 09:36:52: pid 2875: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:36:52 otp3 pgpool[2875]: [175-2] 2016-06-06 09:36:52: pid 2875: LOCATION: pool_session_context.c:269 Jun 6 09:36:52 otp3 pgpool[2875]: [176-1] 2016-06-06 09:36:52: pid 2875: DEBUG: session context: setting query in progress. DONE Jun 6 09:36:52 otp3 pgpool[2875]: [176-2] 2016-06-06 09:36:52: pid 2875: LOCATION: pool_session_context.c:208 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2875: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:52 otp3 pgpool[2875]: [177-1] 2016-06-06 09:36:52: pid 2875: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:36:52 otp3 pgpool[2875]: [177-2] 2016-06-06 09:36:52: pid 2875: LOCATION: pool_query_context.c:854 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:51: pid 2875: LOCATION: pool_session_context.c:969 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2875: DEBUG: reading backend data packet kind Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2875: DETAIL: backend:0 of 2 kind = '2' Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2875: LOCATION: pool_process_query.c:3349 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2873: DEBUG: Bind: checking insert lock Jun 6 09:36:52 otp3 pgpool[2875]: [178-1] 2016-06-06 09:36:52: pid 2875: DEBUG: pool_write: to backend: kind:E Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2873: LOCATION: pool_proto_modules.c:1221 Jun 6 09:36:52 otp3 pgpool[2875]: [178-2] 2016-06-06 09:36:52: pid 2875: LOCATION: pool_stream.c:431 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2875: DEBUG: reading backend data packet kind Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2875: DETAIL: backend:1 of 2 kind = '2' Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2875: LOCATION: pool_process_query.c:3349 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2873: DEBUG: Bind: waiting for master completing the query Jun 6 09:36:52 otp3 pgpool[2875]: [179-1] 2016-06-06 09:36:52: pid 2875: DEBUG: pool_write: to backend: kind:H Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2873: LOCATION: pool_proto_modules.c:1237 Jun 6 09:36:52 otp3 pgpool[2875]: [179-2] 2016-06-06 09:36:52: pid 2875: LOCATION: pool_stream.c:431 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:36:52 otp3 pgpool[2875]: [180-1] 2016-06-06 09:36:52: pid 2875: DEBUG: waiting for query response Jun 6 09:36:52 otp3 pgpool[2875]: [180-2] 2016-06-06 09:36:52: pid 2875: DETAIL: waiting for backend:0 to complete the query Jun 6 09:36:52 otp3 pgpool[2875]: [180-3] 2016-06-06 09:36:52: pid 2875: LOCATION: pool_process_query.c:479 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2875: DEBUG: read_kind_from_backend max_count:2.000000 num_executed_nodes:2 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2875: LOCATION: pool_process_query.c:3365 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2873: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2873: LOCATION: pool_query_context.c:854 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2873: DEBUG: pool_write: to backend: kind:B Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:36:52 otp3 pgpool[2875]: [181-1] 2016-06-06 09:36:52: pid 2875: DEBUG: pool_read: read 9 bytes from backend 0 Jun 6 09:36:52 otp3 pgpool[2875]: [181-2] 2016-06-06 09:36:52: pid 2875: LOCATION: pool_stream.c:190 Jun 6 09:36:52 otp3 pgpool[2875]: [182-1] 2016-06-06 09:36:52: pid 2875: DEBUG: detect error: kind: C Jun 6 09:36:52 otp3 pgpool[2875]: [182-2] 2016-06-06 09:36:52: pid 2875: LOCATION: pool_process_query.c:4166 Jun 6 09:36:52 otp3 pgpool[2875]: [183-1] 2016-06-06 09:36:52: pid 2875: DEBUG: detect error: kind: C Jun 6 09:36:52 otp3 pgpool[2875]: [183-2] 2016-06-06 09:36:52: pid 2875: LOCATION: pool_process_query.c:4166 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2875: DEBUG: processing backend response Jun 6 09:36:52 otp3 pgpool[2875]: [184-1] 2016-06-06 09:36:52: pid 2875: DEBUG: detect error: kind: C Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2875: DETAIL: received kind '2'(32) from backend Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2875: LOCATION: pool_proto_modules.c:2424 Jun 6 09:36:52 otp3 pgpool[2875]: [184-2] 2016-06-06 09:36:52: pid 2875: LOCATION: pool_process_query.c:4166 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2875: DEBUG: called by pool_add_sent_message: sent message: address: 2406d18 kind: B name: == Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2875: LOCATION: pool_session_context.c:436 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2873: DEBUG: waiting for query response Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2873: DETAIL: waiting for backend:0 to complete the query Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2873: LOCATION: pool_process_query.c:479 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2875: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2875: LOCATION: pool_session_context.c:969 Jun 6 09:36:52 otp3 pgpool[2875]: [185-1] 2016-06-06 09:36:52: pid 2875: DEBUG: detect error: kind: C Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2873: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:36:52 otp3 pgpool[2875]: [185-2] 2016-06-06 09:36:52: pid 2875: LOCATION: pool_process_query.c:4166 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2873: DETAIL: backend:0 of 2 kind = '2' Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2873: DEBUG: processing backend response Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2873: DETAIL: received kind '2'(32) from backend Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:36:52 otp3 pgpool[2875]: [186-1] 2016-06-06 09:36:52: pid 2875: DEBUG: pool_send_and_wait: pool_set_sync_map: 1 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2873: DEBUG: called by pool_add_sent_message: sent message: address: 2406d18 kind: B name: == Jun 6 09:36:52 otp3 pgpool[2875]: [186-2] 2016-06-06 09:36:52: pid 2875: LOCATION: pool_query_context.c:854 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2873: LOCATION: pool_session_context.c:436 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2873: DEBUG: adding sent message to list Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2873: DETAIL: portal "" already exists Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2873: LOCATION: pool_session_context.c:512 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2873: DEBUG: called by pool_sent_message_destroy: sent message: address: 2406d98 kind: B name: == Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2873: LOCATION: pool_session_context.c:436 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:36:52 otp3 pgpool[2875]: [187-1] 2016-06-06 09:36:52: pid 2875: DEBUG: pool_write: to backend: kind:E Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2875: DEBUG: SimpleForwardToFrontend: packet:2 length:0 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2875: LOCATION: pool_process_query.c:792 Jun 6 09:36:52 otp3 pgpool[2875]: [187-2] 2016-06-06 09:36:52: pid 2875: LOCATION: pool_stream.c:431 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2875: DEBUG: session context: setting command success. DONE Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2875: LOCATION: pool_session_context.c:741 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2875: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2875: LOCATION: pool_session_context.c:219 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2875: DEBUG: processing frontend response Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2875: DETAIL: received kind 'E'(45) from frontend Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2875: LOCATION: pool_proto_modules.c:2188 Jun 6 09:36:52 otp3 pgpool[2875]: [188-1] 2016-06-06 09:36:52: pid 2875: DEBUG: pool_write: to backend: kind:H Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2875: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2875: LOCATION: pool_session_context.c:280 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2875: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2875: LOCATION: pool_session_context.c:269 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:36:52 otp3 pgpool[2875]: [188-2] 2016-06-06 09:36:52: pid 2875: LOCATION: pool_stream.c:431 Jun 6 09:36:52 otp3 pgpool[2875]: [189-1] 2016-06-06 09:36:52: pid 2875: DEBUG: waiting for query response Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2875: DEBUG: session context: setting query in progress. DONE Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2875: LOCATION: pool_session_context.c:208 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2875: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2875: LOCATION: pool_query_context.c:854 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2875: DEBUG: pool_write: to backend: kind:E Jun 6 09:36:52 otp3 pgpool[2875]: [189-2] 2016-06-06 09:36:52: pid 2875: DETAIL: waiting for backend:1 to complete the query Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2875: LOCATION: pool_stream.c:431 Jun 6 09:36:52 otp3 pgpool[2875]: [189-3] 2016-06-06 09:36:52: pid 2875: LOCATION: pool_process_query.c:479 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2875: DEBUG: pool_write: to backend: kind:H Jun 6 09:36:52 otp3 pgpool[2875]: [190-1] 2016-06-06 09:36:52: pid 2875: DEBUG: pool_read: read 9 bytes from backend 1 Jun 6 09:36:52 otp3 pgpool[2875]: [190-2] 2016-06-06 09:36:52: pid 2875: LOCATION: pool_stream.c:190 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2875: LOCATION: pool_stream.c:431 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2875: DEBUG: waiting for query response Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2875: DETAIL: waiting for backend:0 to complete the query Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2875: LOCATION: pool_process_query.c:479 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2875: DEBUG: pool_read: read 9 bytes from backend 0 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2875: LOCATION: pool_stream.c:190 Jun 6 09:36:52 otp3 pgpool[2873]: [529-1] 2016-06-06 09:36:52: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:52 otp3 pgpool[2873]: [529-2] 2016-06-06 09:36:52: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:36:52 otp3 pgpool[2875]: [191-1] 2016-06-06 09:36:52: pid 2875: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2875: DEBUG: detect error: kind: C Jun 6 09:36:52 otp3 pgpool[2873]: [530-1] 2016-06-06 09:36:52: pid 2873: DEBUG: SimpleForwardToFrontend: packet:2 length:0 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2875: LOCATION: pool_process_query.c:4166 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2875: DEBUG: detect error: kind: C Jun 6 09:36:52 otp3 pgpool[2875]: [191-2] 2016-06-06 09:36:52: pid 2875: LOCATION: pool_session_context.c:969 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2875: LOCATION: pool_process_query.c:4166 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2875: DEBUG: detect error: kind: C Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2875: LOCATION: pool_process_query.c:4166 Jun 6 09:36:52 otp3 pgpool[2875]: [192-1] 2016-06-06 09:36:52: pid 2875: DEBUG: reading backend data packet kind Jun 6 09:36:52 otp3 pgpool[2875]: [192-2] 2016-06-06 09:36:52: pid 2875: DETAIL: backend:0 of 2 kind = 'C' Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2875: DEBUG: detect error: kind: C Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2875: LOCATION: pool_process_query.c:4166 Jun 6 09:36:52 otp3 pgpool[2873]: [530-2] 2016-06-06 09:36:52: pid 2873: LOCATION: pool_process_query.c:792 Jun 6 09:36:52 otp3 pgpool[2875]: [192-3] 2016-06-06 09:36:52: pid 2875: LOCATION: pool_process_query.c:3349 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2875: DEBUG: pool_send_and_wait: pool_set_sync_map: 1 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2875: LOCATION: pool_query_context.c:854 Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2875: DEBUG: pool_write: to backend: kind:E Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2875: LOCATION: pool_stream.c:431 Jun 6 09:36:52 otp3 pgpool[2875]: [193-1] 2016-06-06 09:36:52: pid 2875: DEBUG: reading backend data packet kind Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2875: DEBUG: pool_write: to backend: kind:H Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2875: LOCATION: pool_stream.c:431 Jun 6 09:36:52 otp3 pgpool[2875]: [193-2] 2016-06-06 09:36:52: pid 2875: DETAIL: backend:1 of 2 kind = 'C' Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2875: DEBUG: waiting for query response Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2875: DETAIL: waiting for backend:1 to complete the query Jun 6 09:36:52 otp3 pgpool: 2016-06-06 09:36:52: pid 2875: LOCATION: pool_process_query.c:479 Jun 6 09:36:52 otp3 pgpool[2875]: [193-3] 2016-06-06 09:36:52: pid 2875: LOCATION: pool_process_query.c:3349 Jun 6 09:36:53 otp3 pgpool: 2016-06-06 09:36:52: pid 2875: DEBUG: pool_read: read 9 bytes from backend 1 Jun 6 09:36:53 otp3 pgpool: 2016-06-06 09:36:52: pid 2875: LOCATION: pool_stream.c:190 Jun 6 09:36:53 otp3 pgpool[2875]: [194-1] 2016-06-06 09:36:53: pid 2875: DEBUG: read_kind_from_backend max_count:2.000000 num_executed_nodes:2 Jun 6 09:36:53 otp3 pgpool[2875]: [194-2] 2016-06-06 09:36:53: pid 2875: LOCATION: pool_process_query.c:3365 Jun 6 09:36:53 otp3 pgpool[2875]: [195-1] 2016-06-06 09:36:53: pid 2875: DEBUG: processing backend response Jun 6 09:36:53 otp3 pgpool[2875]: [195-2] 2016-06-06 09:36:53: pid 2875: DETAIL: received kind 'C'(43) from backend Jun 6 09:36:53 otp3 pgpool[2875]: [195-3] 2016-06-06 09:36:53: pid 2875: LOCATION: pool_proto_modules.c:2424 Jun 6 09:36:53 otp3 pgpool[2875]: [196-1] 2016-06-06 09:36:53: pid 2875: DEBUG: session context: setting command success. DONE Jun 6 09:36:52 otp3 pgpool[2873]: [531-1] 2016-06-06 09:36:52: pid 2873: DEBUG: session context: setting command success. DONE Jun 6 09:36:53 otp3 pgpool[2875]: [196-2] 2016-06-06 09:36:53: pid 2875: LOCATION: pool_session_context.c:741 Jun 6 09:36:53 otp3 pgpool[2873]: [531-2] 2016-06-06 09:36:52: pid 2873: LOCATION: pool_session_context.c:741 Jun 6 09:36:53 otp3 pgpool[2873]: [532-1] 2016-06-06 09:36:53: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:53 otp3 pgpool[2875]: [197-1] 2016-06-06 09:36:53: pid 2875: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:53 otp3 pgpool[2873]: [532-2] 2016-06-06 09:36:53: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:36:53 otp3 pgpool[2875]: [197-2] 2016-06-06 09:36:53: pid 2875: LOCATION: pool_session_context.c:219 Jun 6 09:36:53 otp3 pgpool[2875]: [198-1] 2016-06-06 09:36:53: pid 2875: DEBUG: processing frontend response Jun 6 09:36:53 otp3 pgpool[2873]: [533-1] 2016-06-06 09:36:53: pid 2873: DEBUG: processing frontend response Jun 6 09:36:53 otp3 pgpool: 2016-06-06 09:36:52: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:53 otp3 pgpool[2873]: [533-2] 2016-06-06 09:36:53: pid 2873: DETAIL: received kind 'D'(44) from frontend Jun 6 09:36:53 otp3 pgpool[2873]: [533-3] 2016-06-06 09:36:53: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:36:53 otp3 pgpool[2875]: [198-2] 2016-06-06 09:36:53: pid 2875: DETAIL: received kind 'S'(53) from frontend Jun 6 09:36:53 otp3 pgpool: 2016-06-06 09:36:52: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:36:54 otp3 pgpool[2875]: [198-3] 2016-06-06 09:36:53: pid 2875: LOCATION: pool_proto_modules.c:2188 Jun 6 09:36:54 otp3 pgpool: 2016-06-06 09:36:52: pid 2875: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:54 otp3 pgpool[2875]: [199-1] 2016-06-06 09:36:54: pid 2875: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:36:54 otp3 pgpool[2875]: [199-2] 2016-06-06 09:36:54: pid 2875: LOCATION: pool_session_context.c:280 Jun 6 09:36:54 otp3 pgpool: 2016-06-06 09:36:52: pid 2875: LOCATION: pool_session_context.c:969 Jun 6 09:36:54 otp3 pgpool: 2016-06-06 09:36:52: pid 2873: DEBUG: SimpleForwardToFrontend: packet:2 length:0 Jun 6 09:36:54 otp3 pgpool: 2016-06-06 09:36:52: pid 2873: LOCATION: pool_process_query.c:792 Jun 6 09:36:54 otp3 pgpool[2873]: [534-1] 2016-06-06 09:36:54: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:36:54 otp3 pgpool[2875]: [200-1] 2016-06-06 09:36:54: pid 2875: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:36:54 otp3 pgpool: 2016-06-06 09:36:52: pid 2875: DEBUG: reading backend data packet kind Jun 6 09:36:55 otp3 pgpool[2875]: [200-2] 2016-06-06 09:36:54: pid 2875: LOCATION: pool_session_context.c:269 Jun 6 09:36:55 otp3 pgpool[2873]: [534-2] 2016-06-06 09:36:54: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:36:55 otp3 pgpool[2875]: [201-1] 2016-06-06 09:36:55: pid 2875: DEBUG: session context: setting query in progress. DONE Jun 6 09:36:55 otp3 pgpool[2873]: [535-1] 2016-06-06 09:36:55: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:36:55 otp3 pgpool: 2016-06-06 09:36:52: pid 2875: DETAIL: backend:0 of 2 kind = 'C' Jun 6 09:36:55 otp3 pgpool[2875]: [201-2] 2016-06-06 09:36:55: pid 2875: LOCATION: pool_session_context.c:208 Jun 6 09:36:55 otp3 pgpool[2873]: [535-2] 2016-06-06 09:36:55: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:36:56 otp3 pgpool[2873]: [536-1] 2016-06-06 09:36:56: pid 2873: DEBUG: Describe: waiting for master completing the query Jun 6 09:36:57 otp3 pgpool[2873]: [536-2] 2016-06-06 09:36:56: pid 2873: LOCATION: pool_proto_modules.c:1310 Jun 6 09:36:57 otp3 pgpool[2873]: [537-1] 2016-06-06 09:36:57: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:36:57 otp3 pgpool[2873]: [537-2] 2016-06-06 09:36:57: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:36:57 otp3 pgpool[2873]: [538-1] 2016-06-06 09:36:57: pid 2873: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:36:57 otp3 pgpool[2873]: [538-2] 2016-06-06 09:36:57: pid 2873: LOCATION: pool_query_context.c:854 Jun 6 09:36:57 otp3 pgpool[2873]: [539-1] 2016-06-06 09:36:57: pid 2873: DEBUG: pool_write: to backend: kind:D Jun 6 09:36:57 otp3 pgpool[2873]: [539-2] 2016-06-06 09:36:57: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:36:57 otp3 pgpool[2873]: [540-1] 2016-06-06 09:36:57: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:36:57 otp3 pgpool[2873]: [540-2] 2016-06-06 09:36:57: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:36:57 otp3 pgpool[2873]: [541-1] 2016-06-06 09:36:57: pid 2873: DEBUG: waiting for query response Jun 6 09:36:57 otp3 pgpool[2873]: [541-2] 2016-06-06 09:36:57: pid 2873: DETAIL: waiting for backend:0 to complete the query Jun 6 09:36:57 otp3 pgpool[2873]: [541-3] 2016-06-06 09:36:57: pid 2873: LOCATION: pool_process_query.c:479 Jun 6 09:36:57 otp3 pgpool[2875]: [202-1] 2016-06-06 09:36:57: pid 2875: DEBUG: pool_write: to backend: kind:S Jun 6 09:36:57 otp3 pgpool[2875]: [202-2] 2016-06-06 09:36:57: pid 2875: LOCATION: pool_stream.c:431 Jun 6 09:36:57 otp3 pgpool[2873]: [542-1] 2016-06-06 09:36:57: pid 2873: DEBUG: pool_read: read 624 bytes from backend 0 Jun 6 09:36:57 otp3 pgpool[2875]: [203-1] 2016-06-06 09:36:57: pid 2875: DEBUG: pool_write: to backend: kind:S Jun 6 09:36:55 otp3 pgpool: 2016-06-06 09:36:52: pid 2875: LOCATION: pool_process_query.c:3349 Jun 6 09:36:57 otp3 pgpool[2875]: [203-2] 2016-06-06 09:36:57: pid 2875: LOCATION: pool_stream.c:431 Jun 6 09:36:57 otp3 pgpool[2873]: [542-2] 2016-06-06 09:36:57: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:36:58 otp3 pgpool: 2016-06-06 09:36:52: pid 2875: DEBUG: reading backend data packet kind Jun 6 09:36:59 otp3 pgpool: 2016-06-06 09:36:52: pid 2875: DETAIL: backend:1 of 2 kind = 'C' Jun 6 09:36:59 otp3 pgpool: 2016-06-06 09:36:52: pid 2875: LOCATION: pool_process_query.c:3349 Jun 6 09:36:59 otp3 pgpool: 2016-06-06 09:36:53: pid 2875: DEBUG: read_kind_from_backend max_count:2.000000 num_executed_nodes:2 Jun 6 09:36:59 otp3 pgpool: 2016-06-06 09:36:53: pid 2875: LOCATION: pool_process_query.c:3365 Jun 6 09:36:59 otp3 pgpool: 2016-06-06 09:36:53: pid 2875: DEBUG: processing backend response Jun 6 09:36:59 otp3 pgpool: 2016-06-06 09:36:53: pid 2875: DETAIL: received kind 'C'(43) from backend Jun 6 09:36:59 otp3 pgpool: 2016-06-06 09:36:53: pid 2875: LOCATION: pool_proto_modules.c:2424 Jun 6 09:36:59 otp3 pgpool: 2016-06-06 09:36:53: pid 2875: DEBUG: session context: setting command success. DONE Jun 6 09:36:59 otp3 pgpool: 2016-06-06 09:36:53: pid 2875: LOCATION: pool_session_context.c:741 Jun 6 09:36:59 otp3 pgpool: 2016-06-06 09:36:52: pid 2873: DEBUG: session context: setting command success. DONE Jun 6 09:36:59 otp3 pgpool: 2016-06-06 09:36:52: pid 2873: LOCATION: pool_session_context.c:741 Jun 6 09:36:59 otp3 pgpool: 2016-06-06 09:36:53: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:59 otp3 pgpool: 2016-06-06 09:36:53: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:36:59 otp3 pgpool: 2016-06-06 09:36:53: pid 2875: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:36:59 otp3 pgpool: 2016-06-06 09:36:53: pid 2875: LOCATION: pool_session_context.c:219 Jun 6 09:36:59 otp3 pgpool: 2016-06-06 09:36:53: pid 2873: DEBUG: processing frontend response Jun 6 09:36:59 otp3 pgpool: 2016-06-06 09:36:53: pid 2873: DETAIL: received kind 'D'(44) from frontend Jun 6 09:36:59 otp3 pgpool: 2016-06-06 09:36:53: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:36:59 otp3 pgpool: 2016-06-06 09:36:53: pid 2875: DEBUG: processing frontend response Jun 6 09:36:59 otp3 pgpool: 2016-06-06 09:36:53: pid 2875: DETAIL: received kind 'S'(53) from frontend Jun 6 09:36:59 otp3 pgpool: 2016-06-06 09:36:53: pid 2875: LOCATION: pool_proto_modules.c:2188 Jun 6 09:36:59 otp3 pgpool: 2016-06-06 09:36:54: pid 2875: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:36:59 otp3 pgpool: 2016-06-06 09:36:54: pid 2875: LOCATION: pool_session_context.c:280 Jun 6 09:36:59 otp3 pgpool[2875]: [204-1] 2016-06-06 09:36:59: pid 2875: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:36:59 otp3 pgpool[2875]: [204-2] 2016-06-06 09:36:59: pid 2875: LOCATION: pool_session_context.c:969 Jun 6 09:36:59 otp3 pgpool[2875]: [205-1] 2016-06-06 09:36:59: pid 2875: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:36:59 otp3 pgpool[2875]: [205-2] 2016-06-06 09:36:59: pid 2875: LOCATION: pool_stream.c:190 Jun 6 09:36:59 otp3 pgpool[2875]: [206-1] 2016-06-06 09:36:59: pid 2875: DEBUG: reading backend data packet kind Jun 6 09:36:59 otp3 pgpool[2875]: [206-2] 2016-06-06 09:36:59: pid 2875: DETAIL: backend:0 of 2 kind = 'Z' Jun 6 09:36:58 otp3 pgpool[2873]: [543-1] 2016-06-06 09:36:58: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:00 otp3 pgpool[2875]: [206-3] 2016-06-06 09:36:59: pid 2875: LOCATION: pool_process_query.c:3349 Jun 6 09:36:59 otp3 pgpool: 2016-06-06 09:36:54: pid 2875: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:00 otp3 pgpool[2873]: [543-2] 2016-06-06 09:36:58: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:00 otp3 pgpool[2873]: [544-1] 2016-06-06 09:37:00: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:00 otp3 pgpool[2873]: [544-2] 2016-06-06 09:37:00: pid 2873: DETAIL: backend:0 of 2 kind = 'T' Jun 6 09:37:00 otp3 pgpool[2873]: [544-3] 2016-06-06 09:37:00: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:00 otp3 pgpool[2875]: [207-1] 2016-06-06 09:37:00: pid 2875: DEBUG: pool_read: read 6 bytes from backend 1 Jun 6 09:37:00 otp3 pgpool[2873]: [545-1] 2016-06-06 09:37:00: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:00 otp3 pgpool[2875]: [207-2] 2016-06-06 09:37:00: pid 2875: LOCATION: pool_stream.c:190 Jun 6 09:37:00 otp3 pgpool[2873]: [545-2] 2016-06-06 09:37:00: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:00 otp3 pgpool[2873]: [546-1] 2016-06-06 09:37:00: pid 2873: DEBUG: processing backend response Jun 6 09:37:00 otp3 pgpool[2873]: [546-2] 2016-06-06 09:37:00: pid 2873: DETAIL: received kind 'T'(54) from backend Jun 6 09:37:00 otp3 pgpool[2873]: [546-3] 2016-06-06 09:37:00: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:00 otp3 pgpool[2875]: [208-1] 2016-06-06 09:37:00: pid 2875: DEBUG: reading backend data packet kind Jun 6 09:37:00 otp3 pgpool[2873]: [547-1] 2016-06-06 09:37:00: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:00 otp3 pgpool[2875]: [208-2] 2016-06-06 09:37:00: pid 2875: DETAIL: backend:1 of 2 kind = 'Z' Jun 6 09:37:00 otp3 pgpool[2873]: [547-2] 2016-06-06 09:37:00: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:00 otp3 pgpool[2875]: [208-3] 2016-06-06 09:37:00: pid 2875: LOCATION: pool_process_query.c:3349 Jun 6 09:37:00 otp3 pgpool[2875]: [209-1] 2016-06-06 09:37:00: pid 2875: DEBUG: read_kind_from_backend max_count:2.000000 num_executed_nodes:2 Jun 6 09:37:00 otp3 pgpool[2873]: [548-1] 2016-06-06 09:37:00: pid 2873: DEBUG: SimpleForwardToFrontend: packet:T length:619 Jun 6 09:37:00 otp3 pgpool[2875]: [209-2] 2016-06-06 09:37:00: pid 2875: LOCATION: pool_process_query.c:3365 Jun 6 09:37:00 otp3 pgpool[2873]: [548-2] 2016-06-06 09:37:00: pid 2873: LOCATION: pool_process_query.c:792 Jun 6 09:37:00 otp3 pgpool[2873]: [549-1] 2016-06-06 09:37:00: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:00 otp3 pgpool[2873]: [549-2] 2016-06-06 09:37:00: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:00 otp3 pgpool[2875]: [210-1] 2016-06-06 09:37:00: pid 2875: DEBUG: processing backend response Jun 6 09:37:00 otp3 pgpool[2875]: [210-2] 2016-06-06 09:37:00: pid 2875: DETAIL: received kind 'Z'(5a) from backend Jun 6 09:37:00 otp3 pgpool[2875]: [210-3] 2016-06-06 09:37:00: pid 2875: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:00 otp3 pgpool[2873]: [550-1] 2016-06-06 09:37:00: pid 2873: DEBUG: processing frontend response Jun 6 09:37:00 otp3 pgpool[2873]: [550-2] 2016-06-06 09:37:00: pid 2873: DETAIL: received kind 'E'(45) from frontend Jun 6 09:37:00 otp3 pgpool[2873]: [550-3] 2016-06-06 09:37:00: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:00 otp3 pgpool[2873]: [551-1] 2016-06-06 09:37:00: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:00 otp3 pgpool[2875]: [211-1] 2016-06-06 09:37:00: pid 2875: DEBUG: processing backend response Jun 6 09:37:00 otp3 pgpool[2873]: [551-2] 2016-06-06 09:37:00: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:37:00 otp3 pgpool[2875]: [211-2] 2016-06-06 09:37:00: pid 2875: DETAIL: Ready For Query received Jun 6 09:37:00 otp3 pgpool[2875]: [211-3] 2016-06-06 09:37:00: pid 2875: LOCATION: pool_proto_modules.c:2442 Jun 6 09:37:00 otp3 pgpool[2873]: [552-1] 2016-06-06 09:37:00: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:00 otp3 pgpool[2873]: [552-2] 2016-06-06 09:37:00: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:37:00 otp3 pgpool[2873]: [553-1] 2016-06-06 09:37:00: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:00 otp3 pgpool[2873]: [553-2] 2016-06-06 09:37:00: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:00 otp3 pgpool[2875]: [212-1] 2016-06-06 09:37:00: pid 2875: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:37:00 otp3 pgpool[2875]: [212-2] 2016-06-06 09:37:00: pid 2875: LOCATION: pool_session_context.c:310 Jun 6 09:37:00 otp3 pgpool[2873]: [554-1] 2016-06-06 09:37:00: pid 2873: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:37:00 otp3 pgpool[2873]: [554-2] 2016-06-06 09:37:00: pid 2873: LOCATION: pool_query_context.c:854 Jun 6 09:37:00 otp3 pgpool[2873]: [555-1] 2016-06-06 09:37:00: pid 2873: DEBUG: pool_write: to backend: kind:E Jun 6 09:37:00 otp3 pgpool: 2016-06-06 09:36:54: pid 2875: LOCATION: pool_session_context.c:269 Jun 6 09:37:00 otp3 pgpool[2875]: [213-1] 2016-06-06 09:37:00: pid 2875: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:00 otp3 pgpool[2873]: [555-2] 2016-06-06 09:37:00: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:01 otp3 pgpool[2873]: [556-1] 2016-06-06 09:37:01: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:00 otp3 pgpool: 2016-06-06 09:36:54: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:36:54: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:36:55: pid 2875: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:36:55: pid 2875: LOCATION: pool_session_context.c:208 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:36:55: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:36:55: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:36:56: pid 2873: DEBUG: Describe: waiting for master completing the query Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:36:56: pid 2873: LOCATION: pool_proto_modules.c:1310 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:36:57: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:36:57: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:36:57: pid 2873: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:36:57: pid 2873: LOCATION: pool_query_context.c:854 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:36:57: pid 2873: DEBUG: pool_write: to backend: kind:D Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:36:57: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:36:57: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:36:57: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:36:57: pid 2873: DEBUG: waiting for query response Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:36:57: pid 2873: DETAIL: waiting for backend:0 to complete the query Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:36:57: pid 2873: LOCATION: pool_process_query.c:479 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:36:57: pid 2875: DEBUG: pool_write: to backend: kind:S Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:36:57: pid 2875: LOCATION: pool_stream.c:431 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:36:57: pid 2875: DEBUG: pool_write: to backend: kind:S Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:36:57: pid 2875: LOCATION: pool_stream.c:431 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:36:57: pid 2873: DEBUG: pool_read: read 624 bytes from backend 0 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:36:57: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:36:59: pid 2875: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:36:59: pid 2875: LOCATION: pool_session_context.c:969 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:36:59: pid 2875: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:36:59: pid 2875: LOCATION: pool_stream.c:190 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:36:59: pid 2875: DEBUG: reading backend data packet kind Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:36:59: pid 2875: DETAIL: backend:0 of 2 kind = 'Z' Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:36:59: pid 2875: LOCATION: pool_process_query.c:3349 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:36:58: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:36:58: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:00: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:00: pid 2873: DETAIL: backend:0 of 2 kind = 'T' Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:00: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:00: pid 2875: DEBUG: pool_read: read 6 bytes from backend 1 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:00: pid 2875: LOCATION: pool_stream.c:190 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:00: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:00: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:00: pid 2873: DEBUG: processing backend response Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:00: pid 2873: DETAIL: received kind 'T'(54) from backend Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:00: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:00: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:00 otp3 pgpool[2875]: [213-2] 2016-06-06 09:37:00: pid 2875: LOCATION: pool_session_context.c:969 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:00: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:00: pid 2875: DEBUG: reading backend data packet kind Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:00: pid 2875: DETAIL: backend:1 of 2 kind = 'Z' Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:00: pid 2875: LOCATION: pool_process_query.c:3349 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:00: pid 2875: DEBUG: read_kind_from_backend max_count:2.000000 num_executed_nodes:2 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:00: pid 2875: LOCATION: pool_process_query.c:3365 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:00: pid 2873: DEBUG: SimpleForwardToFrontend: packet:T length:619 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:00: pid 2873: LOCATION: pool_process_query.c:792 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:00: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:00: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:00: pid 2875: DEBUG: processing backend response Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:00: pid 2875: DETAIL: received kind 'Z'(5a) from backend Jun 6 09:37:02 otp3 pgpool[2875]: [214-1] 2016-06-06 09:37:02: pid 2875: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:02 otp3 pgpool[2875]: [214-2] 2016-06-06 09:37:02: pid 2875: LOCATION: pool_session_context.c:969 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:00: pid 2875: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:00: pid 2873: DEBUG: processing frontend response Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:00: pid 2873: DETAIL: received kind 'E'(45) from frontend Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:00: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:00: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:02 otp3 pgpool[2875]: [215-1] 2016-06-06 09:37:02: pid 2875: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:00: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:37:02 otp3 pgpool[2875]: [215-2] 2016-06-06 09:37:02: pid 2875: LOCATION: pool_session_context.c:969 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:00: pid 2875: DEBUG: processing backend response Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:00: pid 2875: DETAIL: Ready For Query received Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:00: pid 2875: LOCATION: pool_proto_modules.c:2442 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:00: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:02 otp3 pgpool[2875]: [216-1] 2016-06-06 09:37:02: pid 2875: DEBUG: reading message length Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:00: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:37:02 otp3 pgpool[2875]: [216-2] 2016-06-06 09:37:02: pid 2875: DETAIL: slot: 0 length: 5 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:00: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:02 otp3 pgpool[2875]: [216-3] 2016-06-06 09:37:02: pid 2875: LOCATION: pool_auth.c:1107 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:00: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:00: pid 2875: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:00: pid 2875: LOCATION: pool_session_context.c:310 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:00: pid 2873: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:00: pid 2873: LOCATION: pool_query_context.c:854 Jun 6 09:37:02 otp3 pgpool[2875]: [217-1] 2016-06-06 09:37:02: pid 2875: DEBUG: reading message length Jun 6 09:37:02 otp3 pgpool[2875]: [217-2] 2016-06-06 09:37:02: pid 2875: DETAIL: slot: 1 length: 5 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:00: pid 2873: DEBUG: pool_write: to backend: kind:E Jun 6 09:37:02 otp3 pgpool[2875]: [217-3] 2016-06-06 09:37:02: pid 2875: LOCATION: pool_auth.c:1126 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:00: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:00: pid 2875: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:00: pid 2875: LOCATION: pool_session_context.c:969 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2875: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2875: LOCATION: pool_session_context.c:969 Jun 6 09:37:02 otp3 pgpool[2875]: [218-1] 2016-06-06 09:37:02: pid 2875: DEBUG: processing ReadyForQuery Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2875: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:02 otp3 pgpool[2875]: [218-2] 2016-06-06 09:37:02: pid 2875: DETAIL: transaction state 'I'(49) Jun 6 09:37:02 otp3 pgpool[2875]: [218-3] 2016-06-06 09:37:02: pid 2875: LOCATION: pool_proto_modules.c:1612 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2875: LOCATION: pool_session_context.c:969 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2875: DEBUG: reading message length Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2875: DETAIL: slot: 0 length: 5 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2875: LOCATION: pool_auth.c:1107 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2875: DEBUG: reading message length Jun 6 09:37:02 otp3 pgpool[2875]: [219-1] 2016-06-06 09:37:02: pid 2875: DEBUG: processing ReadyForQuery Jun 6 09:37:02 otp3 pgpool[2875]: [219-2] 2016-06-06 09:37:02: pid 2875: DETAIL: transaction state 'I'(49) Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2875: DETAIL: slot: 1 length: 5 Jun 6 09:37:02 otp3 pgpool[2875]: [219-3] 2016-06-06 09:37:02: pid 2875: LOCATION: pool_proto_modules.c:1612 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2875: LOCATION: pool_auth.c:1126 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2875: DEBUG: processing ReadyForQuery Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2875: DETAIL: transaction state 'I'(49) Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2875: LOCATION: pool_proto_modules.c:1612 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2875: DEBUG: processing ReadyForQuery Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2875: DETAIL: transaction state 'I'(49) Jun 6 09:37:02 otp3 pgpool[2875]: [220-1] 2016-06-06 09:37:02: pid 2875: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2875: LOCATION: pool_proto_modules.c:1612 Jun 6 09:37:02 otp3 pgpool[2875]: [220-2] 2016-06-06 09:37:02: pid 2875: LOCATION: pool_session_context.c:219 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2875: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:01 otp3 pgpool[2873]: [556-2] 2016-06-06 09:37:01: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2875: LOCATION: pool_session_context.c:219 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:01: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:01: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:02 otp3 pgpool[2873]: [557-1] 2016-06-06 09:37:02: pid 2873: DEBUG: waiting for query response Jun 6 09:37:02 otp3 pgpool[2873]: [557-2] 2016-06-06 09:37:02: pid 2873: DETAIL: waiting for backend:0 to complete the query Jun 6 09:37:02 otp3 pgpool[2873]: [557-3] 2016-06-06 09:37:02: pid 2873: LOCATION: pool_process_query.c:479 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2873: DEBUG: waiting for query response Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2873: DETAIL: waiting for backend:0 to complete the query Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2873: LOCATION: pool_process_query.c:479 Jun 6 09:37:02 otp3 pgpool[2873]: [558-1] 2016-06-06 09:37:02: pid 2873: DEBUG: pool_read: read 182 bytes from backend 0 Jun 6 09:37:02 otp3 pgpool[2873]: [558-2] 2016-06-06 09:37:02: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:37:02 otp3 pgpool[2875]: [221-1] 2016-06-06 09:37:02: pid 2875: DEBUG: processing frontend response Jun 6 09:37:02 otp3 pgpool[2875]: [221-2] 2016-06-06 09:37:02: pid 2875: DETAIL: received kind 'X'(58) from frontend Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2873: DEBUG: pool_read: read 182 bytes from backend 0 Jun 6 09:37:02 otp3 pgpool[2875]: [221-3] 2016-06-06 09:37:02: pid 2875: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2875: DEBUG: processing frontend response Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2875: DETAIL: received kind 'X'(58) from frontend Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2875: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:02 otp3 pgpool[2875]: [222-1] 2016-06-06 09:37:02: pid 2875: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:02 otp3 pgpool[2875]: [222-2] 2016-06-06 09:37:02: pid 2875: LOCATION: pool_session_context.c:280 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2875: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2875: LOCATION: pool_session_context.c:280 Jun 6 09:37:02 otp3 pgpool[2873]: [559-1] 2016-06-06 09:37:02: pid 2873: DEBUG: detect error: kind: D Jun 6 09:37:02 otp3 pgpool[2873]: [559-2] 2016-06-06 09:37:02: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2873: DEBUG: detect error: kind: D Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:37:02 otp3 pgpool[2875]: [223-1] 2016-06-06 09:37:02: pid 2875: DEBUG: Frontend terminated Jun 6 09:37:02 otp3 pgpool[2873]: [560-1] 2016-06-06 09:37:02: pid 2873: DEBUG: detect error: kind: D Jun 6 09:37:02 otp3 pgpool[2873]: [560-2] 2016-06-06 09:37:02: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:37:02 otp3 pgpool[2875]: [223-2] 2016-06-06 09:37:02: pid 2875: DETAIL: received message kind 'X' from frontend Jun 6 09:37:02 otp3 pgpool[2875]: [223-3] 2016-06-06 09:37:02: pid 2875: LOCATION: pool_proto_modules.c:2263 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2875: DEBUG: Frontend terminated Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2875: DETAIL: received message kind 'X' from frontend Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2875: LOCATION: pool_proto_modules.c:2263 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2873: DEBUG: detect error: kind: D Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:37:02 otp3 pgpool[2875]: [224-1] 2016-06-06 09:37:02: pid 2875: DEBUG: write on frontend failed with error :"Broken pipe" Jun 6 09:37:02 otp3 pgpool[2875]: [224-2] 2016-06-06 09:37:02: pid 2875: DETAIL: while trying to write data from offset: 0 wlen: 110 Jun 6 09:37:02 otp3 pgpool[2875]: [224-3] 2016-06-06 09:37:02: pid 2875: LOCATION: pool_stream.c:590 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2875: DEBUG: write on frontend failed with error :"Broken pipe" Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2875: DETAIL: while trying to write data from offset: 0 wlen: 110 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2875: LOCATION: pool_stream.c:590 Jun 6 09:37:02 otp3 pgpool[2873]: [561-1] 2016-06-06 09:37:02: pid 2873: DEBUG: detect error: kind: D Jun 6 09:37:02 otp3 pgpool[2873]: [561-2] 2016-06-06 09:37:02: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2873: DEBUG: detect error: kind: D Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:37:02 otp3 pgpool[2875]: [225-1] 2016-06-06 09:37:02: pid 2875: DEBUG: write on frontend failed with error :"Broken pipe" Jun 6 09:37:02 otp3 pgpool[2875]: [225-2] 2016-06-06 09:37:02: pid 2875: DETAIL: while trying to write data from offset: 0 wlen: 255 Jun 6 09:37:02 otp3 pgpool[2875]: [225-3] 2016-06-06 09:37:02: pid 2875: LOCATION: pool_stream.c:590 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2875: DEBUG: write on frontend failed with error :"Broken pipe" Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2875: DETAIL: while trying to write data from offset: 0 wlen: 255 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2875: LOCATION: pool_stream.c:590 Jun 6 09:37:02 otp3 pgpool[2873]: [562-1] 2016-06-06 09:37:02: pid 2873: DEBUG: detect error: kind: D Jun 6 09:37:02 otp3 pgpool[2873]: [562-2] 2016-06-06 09:37:02: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2873: DEBUG: detect error: kind: D Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:37:02 otp3 pgpool[2875]: [226-1] 2016-06-06 09:37:02: pid 2875: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:02 otp3 pgpool[2875]: [226-2] 2016-06-06 09:37:02: pid 2875: LOCATION: pool_session_context.c:280 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2875: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2875: LOCATION: pool_session_context.c:280 Jun 6 09:37:02 otp3 pgpool[2875]: [227-1] 2016-06-06 09:37:02: pid 2875: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:02 otp3 pgpool[2875]: [227-2] 2016-06-06 09:37:02: pid 2875: LOCATION: pool_session_context.c:219 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2875: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2875: LOCATION: pool_session_context.c:219 Jun 6 09:37:02 otp3 pgpool[2875]: [228-1] 2016-06-06 09:37:02: pid 2875: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:02 otp3 pgpool[2875]: [228-2] 2016-06-06 09:37:02: pid 2875: LOCATION: pool_session_context.c:280 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2875: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2875: LOCATION: pool_session_context.c:280 Jun 6 09:37:02 otp3 pgpool[2875]: [229-1] 2016-06-06 09:37:02: pid 2875: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:02 otp3 pgpool[2875]: [229-2] 2016-06-06 09:37:02: pid 2875: LOCATION: pool_session_context.c:219 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2875: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2875: LOCATION: pool_session_context.c:219 Jun 6 09:37:02 otp3 pgpool[2875]: [230-1] 2016-06-06 09:37:02: pid 2875: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:02 otp3 pgpool[2875]: [230-2] 2016-06-06 09:37:02: pid 2875: LOCATION: pool_session_context.c:219 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2875: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2875: LOCATION: pool_session_context.c:219 Jun 6 09:37:02 otp3 pgpool[2875]: [231-1] 2016-06-06 09:37:02: pid 2875: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:02 otp3 pgpool[2875]: [231-2] 2016-06-06 09:37:02: pid 2875: LOCATION: pool_session_context.c:208 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2875: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2875: LOCATION: pool_session_context.c:208 Jun 6 09:37:02 otp3 pgpool[2875]: [232-1] 2016-06-06 09:37:02: pid 2875: DEBUG: pool_write: to backend: kind:Q Jun 6 09:37:02 otp3 pgpool[2875]: [232-2] 2016-06-06 09:37:02: pid 2875: LOCATION: pool_stream.c:431 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2875: DEBUG: pool_write: to backend: kind:Q Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2875: LOCATION: pool_stream.c:431 Jun 6 09:37:02 otp3 pgpool[2875]: [233-1] 2016-06-06 09:37:02: pid 2875: DEBUG: waiting for query response Jun 6 09:37:02 otp3 pgpool[2875]: [233-2] 2016-06-06 09:37:02: pid 2875: DETAIL: waiting for backend:0 to complete the query Jun 6 09:37:02 otp3 pgpool[2875]: [233-3] 2016-06-06 09:37:02: pid 2875: LOCATION: pool_process_query.c:479 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2875: DEBUG: waiting for query response Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2875: DETAIL: waiting for backend:0 to complete the query Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2875: LOCATION: pool_process_query.c:479 Jun 6 09:37:02 otp3 pgpool[2873]: [563-1] 2016-06-06 09:37:02: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:02 otp3 pgpool[2873]: [563-2] 2016-06-06 09:37:02: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:02 otp3 pgpool[2873]: [564-1] 2016-06-06 09:37:02: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:02 otp3 pgpool[2875]: [234-1] 2016-06-06 09:37:02: pid 2875: DEBUG: pool_read: read 84 bytes from backend 0 Jun 6 09:37:02 otp3 pgpool[2875]: [234-2] 2016-06-06 09:37:02: pid 2875: LOCATION: pool_stream.c:190 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2875: DEBUG: pool_read: read 84 bytes from backend 0 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2875: LOCATION: pool_stream.c:190 Jun 6 09:37:02 otp3 pgpool[2875]: [235-1] 2016-06-06 09:37:02: pid 2875: DEBUG: detect error: kind: S Jun 6 09:37:02 otp3 pgpool[2875]: [235-2] 2016-06-06 09:37:02: pid 2875: LOCATION: pool_process_query.c:4166 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2875: DEBUG: detect error: kind: S Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2875: LOCATION: pool_process_query.c:4166 Jun 6 09:37:02 otp3 pgpool[2875]: [236-1] 2016-06-06 09:37:02: pid 2875: DEBUG: detect error: kind: S Jun 6 09:37:02 otp3 pgpool[2875]: [236-2] 2016-06-06 09:37:02: pid 2875: LOCATION: pool_process_query.c:4166 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2875: DEBUG: detect error: kind: S Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2875: LOCATION: pool_process_query.c:4166 Jun 6 09:37:02 otp3 pgpool[2875]: [237-1] 2016-06-06 09:37:02: pid 2875: DEBUG: detect error: kind: S Jun 6 09:37:02 otp3 pgpool[2875]: [237-2] 2016-06-06 09:37:02: pid 2875: LOCATION: pool_process_query.c:4166 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2875: DEBUG: detect error: kind: S Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2875: LOCATION: pool_process_query.c:4166 Jun 6 09:37:02 otp3 pgpool[2875]: [238-1] 2016-06-06 09:37:02: pid 2875: DEBUG: detect error: kind: S Jun 6 09:37:02 otp3 pgpool[2875]: [238-2] 2016-06-06 09:37:02: pid 2875: LOCATION: pool_process_query.c:4166 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2875: DEBUG: detect error: kind: S Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2875: LOCATION: pool_process_query.c:4166 Jun 6 09:37:02 otp3 pgpool[2875]: [239-1] 2016-06-06 09:37:02: pid 2875: DEBUG: pool_write: to backend: kind:Q Jun 6 09:37:02 otp3 pgpool[2875]: [239-2] 2016-06-06 09:37:02: pid 2875: LOCATION: pool_stream.c:431 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2875: DEBUG: pool_write: to backend: kind:Q Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2875: LOCATION: pool_stream.c:431 Jun 6 09:37:02 otp3 pgpool[2875]: [240-1] 2016-06-06 09:37:02: pid 2875: DEBUG: waiting for query response Jun 6 09:37:02 otp3 pgpool[2875]: [240-2] 2016-06-06 09:37:02: pid 2875: DETAIL: waiting for backend:1 to complete the query Jun 6 09:37:02 otp3 pgpool[2875]: [240-3] 2016-06-06 09:37:02: pid 2875: LOCATION: pool_process_query.c:479 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2875: DEBUG: waiting for query response Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2875: DETAIL: waiting for backend:1 to complete the query Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2875: LOCATION: pool_process_query.c:479 Jun 6 09:37:02 otp3 pgpool[2873]: [564-2] 2016-06-06 09:37:02: pid 2873: DETAIL: backend:0 of 2 kind = 'D' Jun 6 09:37:02 otp3 pgpool[2875]: [241-1] 2016-06-06 09:37:02: pid 2875: DEBUG: pool_read: read 84 bytes from backend 1 Jun 6 09:37:02 otp3 pgpool[2875]: [241-2] 2016-06-06 09:37:02: pid 2875: LOCATION: pool_stream.c:190 Jun 6 09:37:02 otp3 pgpool[2873]: [564-3] 2016-06-06 09:37:02: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2875: DEBUG: pool_read: read 84 bytes from backend 1 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2875: LOCATION: pool_stream.c:190 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2873: DETAIL: backend:0 of 2 kind = 'D' Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:02 otp3 pgpool[2873]: [565-1] 2016-06-06 09:37:02: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:02 otp3 pgpool[2873]: [565-2] 2016-06-06 09:37:02: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:02 otp3 pgpool[2875]: [242-1] 2016-06-06 09:37:02: pid 2875: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 0 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:02 otp3 pgpool[2875]: [242-2] 2016-06-06 09:37:02: pid 2875: LOCATION: pool_session_context.c:969 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2875: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 0 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2875: LOCATION: pool_session_context.c:969 Jun 6 09:37:02 otp3 pgpool[2873]: [566-1] 2016-06-06 09:37:02: pid 2873: DEBUG: processing backend response Jun 6 09:37:02 otp3 pgpool[2873]: [566-2] 2016-06-06 09:37:02: pid 2873: DETAIL: received kind 'D'(44) from backend Jun 6 09:37:02 otp3 pgpool[2873]: [566-3] 2016-06-06 09:37:02: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:02 otp3 pgpool[2875]: [243-1] 2016-06-06 09:37:02: pid 2875: DEBUG: reading backend data packet kind Jun 6 09:37:02 otp3 pgpool[2875]: [243-2] 2016-06-06 09:37:02: pid 2875: DETAIL: parameter name: is_superuser value: "off" Jun 6 09:37:02 otp3 pgpool[2875]: [243-3] 2016-06-06 09:37:02: pid 2875: LOCATION: pool_process_query.c:3326 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2873: DEBUG: processing backend response Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2873: DETAIL: received kind 'D'(44) from backend Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:02 otp3 pgpool[2875]: [244-1] 2016-06-06 09:37:02: pid 2875: DEBUG: reading backend data packet kind Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2875: DEBUG: reading backend data packet kind Jun 6 09:37:02 otp3 pgpool[2875]: [244-2] 2016-06-06 09:37:02: pid 2875: DETAIL: parameter name: session_authorization value: "sparrowdesk" Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2875: DETAIL: parameter name: is_superuser value: "off" Jun 6 09:37:02 otp3 pgpool[2875]: [244-3] 2016-06-06 09:37:02: pid 2875: LOCATION: pool_process_query.c:3326 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2875: LOCATION: pool_process_query.c:3326 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2875: DEBUG: reading backend data packet kind Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2875: DETAIL: parameter name: session_authorization value: "sparrowdesk" Jun 6 09:37:02 otp3 pgpool[2875]: [245-1] 2016-06-06 09:37:02: pid 2875: DEBUG: reading backend data packet kind Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2875: LOCATION: pool_process_query.c:3326 Jun 6 09:37:02 otp3 pgpool[2875]: [245-2] 2016-06-06 09:37:02: pid 2875: DETAIL: backend:0 of 2 kind = 'C' Jun 6 09:37:02 otp3 pgpool[2875]: [245-3] 2016-06-06 09:37:02: pid 2875: LOCATION: pool_process_query.c:3349 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2875: DEBUG: reading backend data packet kind Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2875: DETAIL: backend:0 of 2 kind = 'C' Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2875: LOCATION: pool_process_query.c:3349 Jun 6 09:37:02 otp3 pgpool[2873]: [567-1] 2016-06-06 09:37:02: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:02 otp3 pgpool[2873]: [567-2] 2016-06-06 09:37:02: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:02 otp3 pgpool[2875]: [246-1] 2016-06-06 09:37:02: pid 2875: DEBUG: reading backend data packet kind Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:02 otp3 pgpool[2875]: [246-2] 2016-06-06 09:37:02: pid 2875: DETAIL: parameter name: is_superuser value: "off" Jun 6 09:37:02 otp3 pgpool[2875]: [246-3] 2016-06-06 09:37:02: pid 2875: LOCATION: pool_process_query.c:3326 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2875: DEBUG: reading backend data packet kind Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2875: DETAIL: parameter name: is_superuser value: "off" Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2875: LOCATION: pool_process_query.c:3326 Jun 6 09:37:02 otp3 pgpool[2873]: [568-1] 2016-06-06 09:37:02: pid 2873: DEBUG: SimpleForwardToFrontend: packet:D length:163 Jun 6 09:37:02 otp3 pgpool[2875]: [247-1] 2016-06-06 09:37:02: pid 2875: DEBUG: reading backend data packet kind Jun 6 09:37:02 otp3 pgpool[2875]: [247-2] 2016-06-06 09:37:02: pid 2875: DETAIL: parameter name: session_authorization value: "sparrowdesk" Jun 6 09:37:02 otp3 pgpool[2873]: [568-2] 2016-06-06 09:37:02: pid 2873: LOCATION: pool_process_query.c:792 Jun 6 09:37:02 otp3 pgpool[2875]: [247-3] 2016-06-06 09:37:02: pid 2875: LOCATION: pool_process_query.c:3326 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2873: DEBUG: SimpleForwardToFrontend: packet:D length:163 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2873: LOCATION: pool_process_query.c:792 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2875: DEBUG: reading backend data packet kind Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2875: DETAIL: parameter name: session_authorization value: "sparrowdesk" Jun 6 09:37:02 otp3 pgpool[2875]: [248-1] 2016-06-06 09:37:02: pid 2875: DEBUG: reading backend data packet kind Jun 6 09:37:02 otp3 pgpool[2875]: [248-2] 2016-06-06 09:37:02: pid 2875: DETAIL: backend:1 of 2 kind = 'C' Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2875: LOCATION: pool_process_query.c:3326 Jun 6 09:37:02 otp3 pgpool[2875]: [248-3] 2016-06-06 09:37:02: pid 2875: LOCATION: pool_process_query.c:3349 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2875: DEBUG: reading backend data packet kind Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2875: DETAIL: backend:1 of 2 kind = 'C' Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2875: LOCATION: pool_process_query.c:3349 Jun 6 09:37:02 otp3 pgpool[2873]: [569-1] 2016-06-06 09:37:02: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:02 otp3 pgpool[2875]: [249-1] 2016-06-06 09:37:02: pid 2875: DEBUG: read_kind_from_backend max_count:2.000000 num_executed_nodes:2 Jun 6 09:37:02 otp3 pgpool[2875]: [249-2] 2016-06-06 09:37:02: pid 2875: LOCATION: pool_process_query.c:3365 Jun 6 09:37:02 otp3 pgpool[2873]: [569-2] 2016-06-06 09:37:02: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2875: DEBUG: read_kind_from_backend max_count:2.000000 num_executed_nodes:2 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2875: LOCATION: pool_process_query.c:3365 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:02 otp3 pgpool[2873]: [570-1] 2016-06-06 09:37:02: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:02 otp3 pgpool[2875]: [250-1] 2016-06-06 09:37:02: pid 2875: DEBUG: processing backend response Jun 6 09:37:02 otp3 pgpool[2873]: [570-2] 2016-06-06 09:37:02: pid 2873: DETAIL: backend:0 of 2 kind = 'C' Jun 6 09:37:02 otp3 pgpool[2875]: [250-2] 2016-06-06 09:37:02: pid 2875: DETAIL: received kind 'C'(43) from backend Jun 6 09:37:02 otp3 pgpool[2873]: [570-3] 2016-06-06 09:37:02: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2873: DETAIL: backend:0 of 2 kind = 'C' Jun 6 09:37:02 otp3 pgpool: 2016-06-06 09:37:02: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:03 otp3 pgpool[2873]: [571-1] 2016-06-06 09:37:03: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:03 otp3 pgpool[2873]: [571-2] 2016-06-06 09:37:03: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:03 otp3 pgpool: 2016-06-06 09:37:03: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:02 otp3 pgpool[2875]: [250-3] 2016-06-06 09:37:02: pid 2875: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:03 otp3 pgpool: 2016-06-06 09:37:03: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:04 otp3 pgpool: 2016-06-06 09:37:02: pid 2875: DEBUG: processing backend response Jun 6 09:37:04 otp3 pgpool: 2016-06-06 09:37:02: pid 2875: DETAIL: received kind 'C'(43) from backend Jun 6 09:37:04 otp3 pgpool: 2016-06-06 09:37:02: pid 2875: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:04 otp3 pgpool[2875]: [251-1] 2016-06-06 09:37:04: pid 2875: DEBUG: called by pool_sent_message_destroy: sent message: address: 2406c80 kind: P name: == Jun 6 09:37:04 otp3 pgpool[2875]: [251-2] 2016-06-06 09:37:04: pid 2875: LOCATION: pool_session_context.c:436 Jun 6 09:37:04 otp3 pgpool: 2016-06-06 09:37:04: pid 2875: DEBUG: called by pool_sent_message_destroy: sent message: address: 2406c80 kind: P name: == Jun 6 09:37:04 otp3 pgpool: 2016-06-06 09:37:04: pid 2875: LOCATION: pool_session_context.c:436 Jun 6 09:37:04 otp3 pgpool[2875]: [252-1] 2016-06-06 09:37:04: pid 2875: DEBUG: checking if query context can be safely destroyed Jun 6 09:37:04 otp3 pgpool[2875]: [252-2] 2016-06-06 09:37:04: pid 2875: DETAIL: query context 0x802481830 is still used 2 times. query:"SET extra_float_digits = 3" Jun 6 09:37:04 otp3 pgpool[2875]: [252-3] 2016-06-06 09:37:04: pid 2875: LOCATION: pool_session_context.c:873 Jun 6 09:37:04 otp3 pgpool: 2016-06-06 09:37:04: pid 2875: DEBUG: checking if query context can be safely destroyed Jun 6 09:37:04 otp3 pgpool: 2016-06-06 09:37:04: pid 2875: DETAIL: query context 0x802481830 is still used 2 times. query:"SET extra_float_digits = 3" Jun 6 09:37:04 otp3 pgpool: 2016-06-06 09:37:04: pid 2875: LOCATION: pool_session_context.c:873 Jun 6 09:37:04 otp3 pgpool[2875]: [253-1] 2016-06-06 09:37:04: pid 2875: DEBUG: called by pool_sent_message_destroy: sent message: address: 2406d18 kind: B name: == Jun 6 09:37:04 otp3 pgpool[2875]: [253-2] 2016-06-06 09:37:04: pid 2875: LOCATION: pool_session_context.c:436 Jun 6 09:37:04 otp3 pgpool: 2016-06-06 09:37:04: pid 2875: DEBUG: called by pool_sent_message_destroy: sent message: address: 2406d18 kind: B name: == Jun 6 09:37:04 otp3 pgpool: 2016-06-06 09:37:04: pid 2875: LOCATION: pool_session_context.c:436 Jun 6 09:37:04 otp3 pgpool[2875]: [254-1] 2016-06-06 09:37:04: pid 2875: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:04 otp3 pgpool[2875]: [254-2] 2016-06-06 09:37:04: pid 2875: LOCATION: pool_session_context.c:219 Jun 6 09:37:04 otp3 pgpool: 2016-06-06 09:37:04: pid 2875: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:04 otp3 pgpool: 2016-06-06 09:37:04: pid 2875: LOCATION: pool_session_context.c:219 Jun 6 09:37:04 otp3 pgpool[2875]: [255-1] 2016-06-06 09:37:04: pid 2875: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:04 otp3 pgpool[2875]: [255-2] 2016-06-06 09:37:04: pid 2875: LOCATION: pool_session_context.c:208 Jun 6 09:37:04 otp3 pgpool: 2016-06-06 09:37:04: pid 2875: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:04 otp3 pgpool: 2016-06-06 09:37:04: pid 2875: LOCATION: pool_session_context.c:208 Jun 6 09:37:04 otp3 pgpool[2875]: [256-1] 2016-06-06 09:37:04: pid 2875: DEBUG: session context: setting command success. DONE Jun 6 09:37:04 otp3 pgpool[2875]: [256-2] 2016-06-06 09:37:04: pid 2875: LOCATION: pool_session_context.c:741 Jun 6 09:37:04 otp3 pgpool: 2016-06-06 09:37:04: pid 2875: DEBUG: session context: setting command success. DONE Jun 6 09:37:04 otp3 pgpool: 2016-06-06 09:37:04: pid 2875: LOCATION: pool_session_context.c:741 Jun 6 09:37:04 otp3 pgpool[2875]: [257-1] 2016-06-06 09:37:04: pid 2875: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 0 Jun 6 09:37:04 otp3 pgpool[2875]: [257-2] 2016-06-06 09:37:04: pid 2875: LOCATION: pool_session_context.c:969 Jun 6 09:37:04 otp3 pgpool: 2016-06-06 09:37:04: pid 2875: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 0 Jun 6 09:37:04 otp3 pgpool: 2016-06-06 09:37:04: pid 2875: LOCATION: pool_session_context.c:969 Jun 6 09:37:04 otp3 pgpool[2875]: [258-1] 2016-06-06 09:37:04: pid 2875: DEBUG: reading backend data packet kind Jun 6 09:37:04 otp3 pgpool[2875]: [258-2] 2016-06-06 09:37:04: pid 2875: DETAIL: backend:0 of 2 kind = 'Z' Jun 6 09:37:04 otp3 pgpool[2875]: [258-3] 2016-06-06 09:37:04: pid 2875: LOCATION: pool_process_query.c:3349 Jun 6 09:37:04 otp3 pgpool: 2016-06-06 09:37:04: pid 2875: DEBUG: reading backend data packet kind Jun 6 09:37:04 otp3 pgpool: 2016-06-06 09:37:04: pid 2875: DETAIL: backend:0 of 2 kind = 'Z' Jun 6 09:37:04 otp3 pgpool[2875]: [259-1] 2016-06-06 09:37:04: pid 2875: DEBUG: reading backend data packet kind Jun 6 09:37:04 otp3 pgpool[2875]: [259-2] 2016-06-06 09:37:04: pid 2875: DETAIL: backend:1 of 2 kind = 'Z' Jun 6 09:37:04 otp3 pgpool: 2016-06-06 09:37:04: pid 2875: LOCATION: pool_process_query.c:3349 Jun 6 09:37:04 otp3 pgpool[2875]: [259-3] 2016-06-06 09:37:04: pid 2875: LOCATION: pool_process_query.c:3349 Jun 6 09:37:04 otp3 pgpool: 2016-06-06 09:37:04: pid 2875: DEBUG: reading backend data packet kind Jun 6 09:37:04 otp3 pgpool: 2016-06-06 09:37:04: pid 2875: DETAIL: backend:1 of 2 kind = 'Z' Jun 6 09:37:04 otp3 pgpool: 2016-06-06 09:37:04: pid 2875: LOCATION: pool_process_query.c:3349 Jun 6 09:37:04 otp3 pgpool[2875]: [260-1] 2016-06-06 09:37:04: pid 2875: DEBUG: read_kind_from_backend max_count:2.000000 num_executed_nodes:2 Jun 6 09:37:04 otp3 pgpool[2875]: [260-2] 2016-06-06 09:37:04: pid 2875: LOCATION: pool_process_query.c:3365 Jun 6 09:37:04 otp3 pgpool: 2016-06-06 09:37:04: pid 2875: DEBUG: read_kind_from_backend max_count:2.000000 num_executed_nodes:2 Jun 6 09:37:04 otp3 pgpool: 2016-06-06 09:37:04: pid 2875: LOCATION: pool_process_query.c:3365 Jun 6 09:37:04 otp3 pgpool[2875]: [261-1] 2016-06-06 09:37:04: pid 2875: DEBUG: processing backend response Jun 6 09:37:04 otp3 pgpool[2875]: [261-2] 2016-06-06 09:37:04: pid 2875: DETAIL: received kind 'Z'(5a) from backend Jun 6 09:37:04 otp3 pgpool[2875]: [261-3] 2016-06-06 09:37:04: pid 2875: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:04 otp3 pgpool: 2016-06-06 09:37:04: pid 2875: DEBUG: processing backend response Jun 6 09:37:04 otp3 pgpool: 2016-06-06 09:37:04: pid 2875: DETAIL: received kind 'Z'(5a) from backend Jun 6 09:37:04 otp3 pgpool: 2016-06-06 09:37:04: pid 2875: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:04 otp3 pgpool[2875]: [262-1] 2016-06-06 09:37:04: pid 2875: DEBUG: processing backend response Jun 6 09:37:04 otp3 pgpool[2875]: [262-2] 2016-06-06 09:37:04: pid 2875: DETAIL: Ready For Query received Jun 6 09:37:04 otp3 pgpool[2875]: [262-3] 2016-06-06 09:37:04: pid 2875: LOCATION: pool_proto_modules.c:2442 Jun 6 09:37:04 otp3 pgpool: 2016-06-06 09:37:04: pid 2875: DEBUG: processing backend response Jun 6 09:37:04 otp3 pgpool: 2016-06-06 09:37:04: pid 2875: DETAIL: Ready For Query received Jun 6 09:37:04 otp3 pgpool: 2016-06-06 09:37:04: pid 2875: LOCATION: pool_proto_modules.c:2442 Jun 6 09:37:04 otp3 pgpool[2875]: [263-1] 2016-06-06 09:37:04: pid 2875: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:37:04 otp3 pgpool[2875]: [263-2] 2016-06-06 09:37:04: pid 2875: LOCATION: pool_session_context.c:310 Jun 6 09:37:04 otp3 pgpool: 2016-06-06 09:37:04: pid 2875: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:37:04 otp3 pgpool: 2016-06-06 09:37:04: pid 2875: LOCATION: pool_session_context.c:310 Jun 6 09:37:04 otp3 pgpool[2875]: [264-1] 2016-06-06 09:37:04: pid 2875: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 0 Jun 6 09:37:04 otp3 pgpool[2875]: [264-2] 2016-06-06 09:37:04: pid 2875: LOCATION: pool_session_context.c:969 Jun 6 09:37:04 otp3 pgpool: 2016-06-06 09:37:04: pid 2875: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 0 Jun 6 09:37:04 otp3 pgpool: 2016-06-06 09:37:04: pid 2875: LOCATION: pool_session_context.c:969 Jun 6 09:37:04 otp3 pgpool[2875]: [265-1] 2016-06-06 09:37:04: pid 2875: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 0 Jun 6 09:37:04 otp3 pgpool[2875]: [265-2] 2016-06-06 09:37:04: pid 2875: LOCATION: pool_session_context.c:969 Jun 6 09:37:04 otp3 pgpool: 2016-06-06 09:37:04: pid 2875: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 0 Jun 6 09:37:04 otp3 pgpool: 2016-06-06 09:37:04: pid 2875: LOCATION: pool_session_context.c:969 Jun 6 09:37:04 otp3 pgpool[2875]: [266-1] 2016-06-06 09:37:04: pid 2875: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 0 Jun 6 09:37:04 otp3 pgpool[2875]: [266-2] 2016-06-06 09:37:04: pid 2875: LOCATION: pool_session_context.c:969 Jun 6 09:37:04 otp3 pgpool: 2016-06-06 09:37:04: pid 2875: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 0 Jun 6 09:37:04 otp3 pgpool: 2016-06-06 09:37:04: pid 2875: LOCATION: pool_session_context.c:969 Jun 6 09:37:04 otp3 pgpool[2875]: [267-1] 2016-06-06 09:37:04: pid 2875: DEBUG: reading message length Jun 6 09:37:04 otp3 pgpool[2875]: [267-2] 2016-06-06 09:37:04: pid 2875: DETAIL: slot: 0 length: 5 Jun 6 09:37:04 otp3 pgpool[2875]: [267-3] 2016-06-06 09:37:04: pid 2875: LOCATION: pool_auth.c:1107 Jun 6 09:37:04 otp3 pgpool: 2016-06-06 09:37:04: pid 2875: DEBUG: reading message length Jun 6 09:37:04 otp3 pgpool: 2016-06-06 09:37:04: pid 2875: DETAIL: slot: 0 length: 5 Jun 6 09:37:04 otp3 pgpool: 2016-06-06 09:37:04: pid 2875: LOCATION: pool_auth.c:1107 Jun 6 09:37:04 otp3 pgpool[2875]: [268-1] 2016-06-06 09:37:04: pid 2875: DEBUG: reading message length Jun 6 09:37:04 otp3 pgpool[2875]: [268-2] 2016-06-06 09:37:04: pid 2875: DETAIL: slot: 1 length: 5 Jun 6 09:37:04 otp3 pgpool[2875]: [268-3] 2016-06-06 09:37:04: pid 2875: LOCATION: pool_auth.c:1126 Jun 6 09:37:04 otp3 pgpool: 2016-06-06 09:37:04: pid 2875: DEBUG: reading message length Jun 6 09:37:04 otp3 pgpool: 2016-06-06 09:37:04: pid 2875: DETAIL: slot: 1 length: 5 Jun 6 09:37:04 otp3 pgpool: 2016-06-06 09:37:04: pid 2875: LOCATION: pool_auth.c:1126 Jun 6 09:37:04 otp3 pgpool[2875]: [269-1] 2016-06-06 09:37:04: pid 2875: DEBUG: processing ReadyForQuery Jun 6 09:37:04 otp3 pgpool[2875]: [269-2] 2016-06-06 09:37:04: pid 2875: DETAIL: transaction state 'I'(49) Jun 6 09:37:04 otp3 pgpool[2875]: [269-3] 2016-06-06 09:37:04: pid 2875: LOCATION: pool_proto_modules.c:1612 Jun 6 09:37:04 otp3 pgpool: 2016-06-06 09:37:04: pid 2875: DEBUG: processing ReadyForQuery Jun 6 09:37:04 otp3 pgpool: 2016-06-06 09:37:04: pid 2875: DETAIL: transaction state 'I'(49) Jun 6 09:37:04 otp3 pgpool: 2016-06-06 09:37:04: pid 2875: LOCATION: pool_proto_modules.c:1612 Jun 6 09:37:04 otp3 pgpool[2875]: [270-1] 2016-06-06 09:37:04: pid 2875: DEBUG: processing ReadyForQuery Jun 6 09:37:04 otp3 pgpool[2875]: [270-2] 2016-06-06 09:37:04: pid 2875: DETAIL: transaction state 'I'(49) Jun 6 09:37:04 otp3 pgpool[2875]: [270-3] 2016-06-06 09:37:04: pid 2875: LOCATION: pool_proto_modules.c:1612 Jun 6 09:37:04 otp3 pgpool: 2016-06-06 09:37:04: pid 2875: DEBUG: processing ReadyForQuery Jun 6 09:37:04 otp3 pgpool: 2016-06-06 09:37:04: pid 2875: DETAIL: transaction state 'I'(49) Jun 6 09:37:04 otp3 pgpool: 2016-06-06 09:37:04: pid 2875: LOCATION: pool_proto_modules.c:1612 Jun 6 09:37:04 otp3 pgpool[2875]: [271-1] 2016-06-06 09:37:04: pid 2875: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:04 otp3 pgpool[2875]: [271-2] 2016-06-06 09:37:04: pid 2875: LOCATION: pool_session_context.c:219 Jun 6 09:37:04 otp3 pgpool: 2016-06-06 09:37:04: pid 2875: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:04 otp3 pgpool: 2016-06-06 09:37:04: pid 2875: LOCATION: pool_session_context.c:219 Jun 6 09:37:04 otp3 pgpool[2875]: [272-1] 2016-06-06 09:37:04: pid 2875: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:04 otp3 pgpool[2875]: [272-2] 2016-06-06 09:37:04: pid 2875: LOCATION: pool_session_context.c:219 Jun 6 09:37:04 otp3 pgpool: 2016-06-06 09:37:04: pid 2875: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:04 otp3 pgpool: 2016-06-06 09:37:04: pid 2875: LOCATION: pool_session_context.c:219 Jun 6 09:37:04 otp3 pgpool[2873]: [572-1] 2016-06-06 09:37:04: pid 2873: DEBUG: processing backend response Jun 6 09:37:04 otp3 pgpool[2873]: [572-2] 2016-06-06 09:37:04: pid 2873: DETAIL: received kind 'C'(43) from backend Jun 6 09:37:04 otp3 pgpool[2873]: [572-3] 2016-06-06 09:37:04: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:04 otp3 pgpool: 2016-06-06 09:37:04: pid 2873: DEBUG: processing backend response Jun 6 09:37:04 otp3 pgpool: 2016-06-06 09:37:04: pid 2873: DETAIL: received kind 'C'(43) from backend Jun 6 09:37:04 otp3 pgpool: 2016-06-06 09:37:04: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:04 otp3 pgpool[2875]: [273-1] 2016-06-06 09:37:04: pid 2875: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:04 otp3 pgpool[2875]: [273-2] 2016-06-06 09:37:04: pid 2875: LOCATION: pool_session_context.c:280 Jun 6 09:37:04 otp3 pgpool: 2016-06-06 09:37:04: pid 2875: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:04 otp3 pgpool: 2016-06-06 09:37:04: pid 2875: LOCATION: pool_session_context.c:280 Jun 6 09:37:04 otp3 pgpool[2875]: [274-1] 2016-06-06 09:37:04: pid 2875: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:04 otp3 pgpool[2875]: [274-2] 2016-06-06 09:37:04: pid 2875: LOCATION: pool_session_context.c:219 Jun 6 09:37:04 otp3 pgpool: 2016-06-06 09:37:04: pid 2875: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:04 otp3 pgpool: 2016-06-06 09:37:04: pid 2875: LOCATION: pool_session_context.c:219 Jun 6 09:37:04 otp3 pgpool[2875]: [275-1] 2016-06-06 09:37:04: pid 2875: DEBUG: setting backend connection close timer Jun 6 09:37:04 otp3 pgpool[2875]: [275-2] 2016-06-06 09:37:04: pid 2875: DETAIL: close time 1465186024 Jun 6 09:37:04 otp3 pgpool[2875]: [275-3] 2016-06-06 09:37:04: pid 2875: LOCATION: pool_connection_pool.c:329 Jun 6 09:37:04 otp3 pgpool: 2016-06-06 09:37:04: pid 2875: DEBUG: setting backend connection close timer Jun 6 09:37:04 otp3 pgpool: 2016-06-06 09:37:04: pid 2875: DETAIL: close time 1465186024 Jun 6 09:37:04 otp3 pgpool: 2016-06-06 09:37:04: pid 2875: LOCATION: pool_connection_pool.c:329 Jun 6 09:37:04 otp3 pgpool[2875]: [276-1] 2016-06-06 09:37:04: pid 2875: DEBUG: write on frontend failed with error :"Broken pipe" Jun 6 09:37:04 otp3 pgpool[2875]: [276-2] 2016-06-06 09:37:04: pid 2875: DETAIL: while trying to write data from offset: 0 wlen: 112 Jun 6 09:37:04 otp3 pgpool[2875]: [276-3] 2016-06-06 09:37:04: pid 2875: LOCATION: pool_stream.c:590 Jun 6 09:37:04 otp3 pgpool: 2016-06-06 09:37:04: pid 2875: DEBUG: write on frontend failed with error :"Broken pipe" Jun 6 09:37:04 otp3 pgpool: 2016-06-06 09:37:04: pid 2875: DETAIL: while trying to write data from offset: 0 wlen: 112 Jun 6 09:37:04 otp3 pgpool: 2016-06-06 09:37:04: pid 2875: LOCATION: pool_stream.c:590 Jun 6 09:37:04 otp3 pgpool[2875]: [277-1] 2016-06-06 09:37:04: pid 2875: DEBUG: write on frontend failed with error :"Broken pipe" Jun 6 09:37:04 otp3 pgpool[2875]: [277-2] 2016-06-06 09:37:04: pid 2875: DETAIL: while trying to write data from offset: 0 wlen: 257 Jun 6 09:37:04 otp3 pgpool[2875]: [277-3] 2016-06-06 09:37:04: pid 2875: LOCATION: pool_stream.c:590 Jun 6 09:37:04 otp3 pgpool: 2016-06-06 09:37:04: pid 2875: DEBUG: write on frontend failed with error :"Broken pipe" Jun 6 09:37:04 otp3 pgpool[2873]: [573-1] 2016-06-06 09:37:04: pid 2873: DEBUG: session context: setting command success. DONE Jun 6 09:37:05 otp3 pgpool[2875]: [278-1] 2016-06-06 09:37:05: pid 2875: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:04 otp3 pgpool: 2016-06-06 09:37:04: pid 2875: DETAIL: while trying to write data from offset: 0 wlen: 257 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:04: pid 2875: LOCATION: pool_stream.c:590 Jun 6 09:37:05 otp3 pgpool[2875]: [278-2] 2016-06-06 09:37:05: pid 2875: LOCATION: pool_session_context.c:219 Jun 6 09:37:04 otp3 pgpool[2873]: [573-2] 2016-06-06 09:37:04: pid 2873: LOCATION: pool_session_context.c:741 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:04: pid 2873: DEBUG: session context: setting command success. DONE Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:04: pid 2873: LOCATION: pool_session_context.c:741 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2875: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2875: LOCATION: pool_session_context.c:219 Jun 6 09:37:05 otp3 pgpool[2875]: [279-1] 2016-06-06 09:37:05: pid 2875: DEBUG: write on frontend failed with error :"Broken pipe" Jun 6 09:37:05 otp3 pgpool[2875]: [279-2] 2016-06-06 09:37:05: pid 2875: DETAIL: while trying to write data from offset: 0 wlen: 101 Jun 6 09:37:05 otp3 pgpool[2875]: [279-3] 2016-06-06 09:37:05: pid 2875: LOCATION: pool_stream.c:590 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2875: DEBUG: write on frontend failed with error :"Broken pipe" Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2875: DETAIL: while trying to write data from offset: 0 wlen: 101 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2875: LOCATION: pool_stream.c:590 Jun 6 09:37:05 otp3 pgpool[2873]: [574-1] 2016-06-06 09:37:05: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:05 otp3 pgpool[2873]: [574-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:05 otp3 pgpool[2873]: [575-1] 2016-06-06 09:37:05: pid 2873: DEBUG: processing frontend response Jun 6 09:37:05 otp3 pgpool[2873]: [575-2] 2016-06-06 09:37:05: pid 2873: DETAIL: received kind 'S'(53) from frontend Jun 6 09:37:05 otp3 pgpool[2873]: [575-3] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: processing frontend response Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DETAIL: received kind 'S'(53) from frontend Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:05 otp3 pgpool[2873]: [576-1] 2016-06-06 09:37:05: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:05 otp3 pgpool[2873]: [576-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:37:05 otp3 pgpool[2873]: [577-1] 2016-06-06 09:37:05: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:05 otp3 pgpool[2873]: [577-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:37:05 otp3 pgpool[2873]: [578-1] 2016-06-06 09:37:05: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:05 otp3 pgpool[2873]: [578-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:05 otp3 pgpool[2873]: [579-1] 2016-06-06 09:37:05: pid 2873: DEBUG: pool_write: to backend: kind:S Jun 6 09:37:05 otp3 pgpool[2873]: [579-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:05 otp3 pgpool[2873]: [580-1] 2016-06-06 09:37:05: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:05 otp3 pgpool[2873]: [580-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: pool_write: to backend: kind:S Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:05 otp3 pgpool[2873]: [581-1] 2016-06-06 09:37:05: pid 2873: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:37:05 otp3 pgpool[2873]: [581-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:37:05 otp3 pgpool[2873]: [582-1] 2016-06-06 09:37:05: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:37:05 otp3 pgpool[2873]: [582-2] 2016-06-06 09:37:05: pid 2873: DETAIL: backend:0 of 2 kind = 'Z' Jun 6 09:37:05 otp3 pgpool[2873]: [582-3] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DETAIL: backend:0 of 2 kind = 'Z' Jun 6 09:37:05 otp3 pgpool[2873]: [583-1] 2016-06-06 09:37:05: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:05 otp3 pgpool[2873]: [583-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:05 otp3 pgpool[2873]: [584-1] 2016-06-06 09:37:05: pid 2873: DEBUG: processing backend response Jun 6 09:37:05 otp3 pgpool[2873]: [584-2] 2016-06-06 09:37:05: pid 2873: DETAIL: received kind 'Z'(5a) from backend Jun 6 09:37:05 otp3 pgpool[2873]: [584-3] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:05 otp3 pgpool[2873]: [585-1] 2016-06-06 09:37:05: pid 2873: DEBUG: processing backend response Jun 6 09:37:05 otp3 pgpool[2873]: [585-2] 2016-06-06 09:37:05: pid 2873: DETAIL: Ready For Query received Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: processing backend response Jun 6 09:37:05 otp3 pgpool[2873]: [585-3] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_proto_modules.c:2442 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DETAIL: received kind 'Z'(5a) from backend Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:05 otp3 pgpool[2873]: [586-1] 2016-06-06 09:37:05: pid 2873: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:37:05 otp3 pgpool[2873]: [586-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:310 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: processing backend response Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DETAIL: Ready For Query received Jun 6 09:37:05 otp3 pgpool[2873]: [587-1] 2016-06-06 09:37:05: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_proto_modules.c:2442 Jun 6 09:37:05 otp3 pgpool[2873]: [587-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:05 otp3 pgpool[2873]: [588-1] 2016-06-06 09:37:05: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:05 otp3 pgpool[2873]: [588-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:37:05 otp3 pgpool[2873]: [589-1] 2016-06-06 09:37:05: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:05 otp3 pgpool[2873]: [589-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:310 Jun 6 09:37:05 otp3 pgpool[2873]: [590-1] 2016-06-06 09:37:05: pid 2873: DEBUG: reading message length Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:05 otp3 pgpool[2873]: [590-2] 2016-06-06 09:37:05: pid 2873: DETAIL: slot: 0 length: 5 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:05 otp3 pgpool[2873]: [590-3] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_auth.c:1107 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:05 otp3 pgpool[2873]: [591-1] 2016-06-06 09:37:05: pid 2873: DEBUG: processing ReadyForQuery Jun 6 09:37:05 otp3 pgpool[2873]: [591-2] 2016-06-06 09:37:05: pid 2873: DETAIL: transaction state 'I'(49) Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:05 otp3 pgpool[2873]: [591-3] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_proto_modules.c:1612 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: reading message length Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DETAIL: slot: 0 length: 5 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_auth.c:1107 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: processing ReadyForQuery Jun 6 09:37:05 otp3 pgpool[2873]: [592-1] 2016-06-06 09:37:05: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:05 otp3 pgpool[2873]: [592-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DETAIL: transaction state 'I'(49) Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_proto_modules.c:1612 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:05 otp3 pgpool[2873]: [593-1] 2016-06-06 09:37:05: pid 2873: DEBUG: processing frontend response Jun 6 09:37:05 otp3 pgpool[2873]: [593-2] 2016-06-06 09:37:05: pid 2873: DETAIL: received kind 'P'(50) from frontend Jun 6 09:37:05 otp3 pgpool[2873]: [593-3] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: processing frontend response Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DETAIL: received kind 'P'(50) from frontend Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:05 otp3 pgpool[2873]: [594-1] 2016-06-06 09:37:05: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:05 otp3 pgpool[2873]: [594-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:37:05 otp3 pgpool[2873]: [595-1] 2016-06-06 09:37:05: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:05 otp3 pgpool[2873]: [595-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:37:05 otp3 pgpool[2873]: [596-1] 2016-06-06 09:37:05: pid 2873: DEBUG: Parse: statement name <> Jun 6 09:37:05 otp3 pgpool[2873]: [596-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_proto_modules.c:817 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: Parse: statement name <> Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_proto_modules.c:817 Jun 6 09:37:05 otp3 pgpool[2873]: [597-1] 2016-06-06 09:37:05: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:05 otp3 pgpool[2873]: [597-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:05 otp3 pgpool[2873]: [598-1] 2016-06-06 09:37:05: pid 2873: DEBUG: pool_write: to backend: kind:S Jun 6 09:37:05 otp3 pgpool[2873]: [598-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: pool_write: to backend: kind:S Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:05 otp3 pgpool[2873]: [599-1] 2016-06-06 09:37:05: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:05 otp3 pgpool[2873]: [599-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:05 otp3 pgpool[2873]: [600-1] 2016-06-06 09:37:05: pid 2873: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:37:05 otp3 pgpool[2873]: [600-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:37:05 otp3 pgpool[2873]: [601-1] 2016-06-06 09:37:05: pid 2873: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:37:05 otp3 pgpool[2873]: [601-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:310 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:310 Jun 6 09:37:05 otp3 pgpool[2873]: [602-1] 2016-06-06 09:37:05: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:05 otp3 pgpool[2873]: [602-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:05 otp3 pgpool[2873]: [603-1] 2016-06-06 09:37:05: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:05 otp3 pgpool[2873]: [603-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:05 otp3 pgpool[2873]: [604-1] 2016-06-06 09:37:05: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:05 otp3 pgpool[2873]: [604-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:05 otp3 pgpool[2873]: [605-1] 2016-06-06 09:37:05: pid 2873: DEBUG: reading message length Jun 6 09:37:05 otp3 pgpool[2873]: [605-2] 2016-06-06 09:37:05: pid 2873: DETAIL: slot: 0 length: 5 Jun 6 09:37:05 otp3 pgpool[2873]: [605-3] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_auth.c:1107 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: reading message length Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DETAIL: slot: 0 length: 5 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_auth.c:1107 Jun 6 09:37:05 otp3 pgpool[2873]: [606-1] 2016-06-06 09:37:05: pid 2873: DEBUG: processing ReadyForQuery Jun 6 09:37:05 otp3 pgpool[2873]: [606-2] 2016-06-06 09:37:05: pid 2873: DETAIL: transaction state 'I'(49) Jun 6 09:37:05 otp3 pgpool[2873]: [606-3] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_proto_modules.c:1612 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: processing ReadyForQuery Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DETAIL: transaction state 'I'(49) Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_proto_modules.c:1612 Jun 6 09:37:05 otp3 pgpool[2873]: [607-1] 2016-06-06 09:37:05: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:05 otp3 pgpool[2873]: [607-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:05 otp3 pgpool[2873]: [608-1] 2016-06-06 09:37:05: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:05 otp3 pgpool[2873]: [608-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:05 otp3 pgpool[2873]: [609-1] 2016-06-06 09:37:05: pid 2873: DEBUG: Parse: waiting for master completing the query Jun 6 09:37:05 otp3 pgpool[2873]: [609-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_proto_modules.c:1064 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: Parse: waiting for master completing the query Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_proto_modules.c:1064 Jun 6 09:37:05 otp3 pgpool[2873]: [610-1] 2016-06-06 09:37:05: pid 2873: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:37:05 otp3 pgpool[2873]: [610-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_query_context.c:854 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_query_context.c:854 Jun 6 09:37:05 otp3 pgpool[2873]: [611-1] 2016-06-06 09:37:05: pid 2873: DEBUG: pool_write: to backend: kind:P Jun 6 09:37:05 otp3 pgpool[2873]: [611-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: pool_write: to backend: kind:P Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:05 otp3 pgpool[2873]: [612-1] 2016-06-06 09:37:05: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:05 otp3 pgpool[2873]: [612-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:05 otp3 pgpool[2873]: [613-1] 2016-06-06 09:37:05: pid 2873: DEBUG: waiting for query response Jun 6 09:37:05 otp3 pgpool[2873]: [613-2] 2016-06-06 09:37:05: pid 2873: DETAIL: waiting for backend:0 to complete the query Jun 6 09:37:05 otp3 pgpool[2873]: [613-3] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_process_query.c:479 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: waiting for query response Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DETAIL: waiting for backend:0 to complete the query Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_process_query.c:479 Jun 6 09:37:05 otp3 pgpool[2873]: [614-1] 2016-06-06 09:37:05: pid 2873: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:37:05 otp3 pgpool[2873]: [614-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:37:05 otp3 pgpool[2873]: [615-1] 2016-06-06 09:37:05: pid 2873: DEBUG: detect error: kind: 1 Jun 6 09:37:05 otp3 pgpool[2873]: [615-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: detect error: kind: 1 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:37:05 otp3 pgpool[2873]: [616-1] 2016-06-06 09:37:05: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:05 otp3 pgpool[2873]: [616-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:05 otp3 pgpool[2873]: [617-1] 2016-06-06 09:37:05: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:05 otp3 pgpool[2873]: [617-2] 2016-06-06 09:37:05: pid 2873: DETAIL: backend:0 of 2 kind = '1' Jun 6 09:37:05 otp3 pgpool[2873]: [617-3] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DETAIL: backend:0 of 2 kind = '1' Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:05 otp3 pgpool[2873]: [618-1] 2016-06-06 09:37:05: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:05 otp3 pgpool[2873]: [618-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:05 otp3 pgpool[2873]: [619-1] 2016-06-06 09:37:05: pid 2873: DEBUG: processing backend response Jun 6 09:37:05 otp3 pgpool[2873]: [619-2] 2016-06-06 09:37:05: pid 2873: DETAIL: received kind '1'(31) from backend Jun 6 09:37:05 otp3 pgpool[2873]: [619-3] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: processing backend response Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DETAIL: received kind '1'(31) from backend Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:05 otp3 pgpool[2873]: [620-1] 2016-06-06 09:37:05: pid 2873: DEBUG: called by pool_add_sent_message: sent message: address: 2406d98 kind: P name: == Jun 6 09:37:05 otp3 pgpool[2873]: [620-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:436 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: called by pool_add_sent_message: sent message: address: 2406d98 kind: P name: == Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:436 Jun 6 09:37:05 otp3 pgpool[2873]: [621-1] 2016-06-06 09:37:05: pid 2873: DEBUG: adding sent message to list Jun 6 09:37:05 otp3 pgpool[2873]: [621-2] 2016-06-06 09:37:05: pid 2873: DETAIL: prepared statement "" already exists Jun 6 09:37:05 otp3 pgpool[2873]: [621-3] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:516 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: adding sent message to list Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DETAIL: prepared statement "" already exists Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:516 Jun 6 09:37:05 otp3 pgpool[2873]: [622-1] 2016-06-06 09:37:05: pid 2873: DEBUG: called by pool_sent_message_destroy: sent message: address: 2406c80 kind: P name: == Jun 6 09:37:05 otp3 pgpool[2873]: [622-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:436 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: called by pool_sent_message_destroy: sent message: address: 2406c80 kind: P name: == Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:436 Jun 6 09:37:05 otp3 pgpool[2873]: [623-1] 2016-06-06 09:37:05: pid 2873: DEBUG: checking if query context can be safely destroyed Jun 6 09:37:05 otp3 pgpool[2873]: [623-2] 2016-06-06 09:37:05: pid 2873: DETAIL: query context 0x802482830 is still used 2 times. query:"select cltenants0_.plan_id as plan_id4_5_0_, cltenants0_.tenant_id as tenant_i1_3_0_, cltenants0_.tenant_id as tenant_i1_3_1_, cltenants0_.database_id as database3_3_1_, cltenants0_.plan_id as plan_id4_3_1_, cltenants0_.tenant_name as tenant_n2_3_1_, cldatabase1_.database_id as database1_0_2_, cldatabase1_.database_server_id as database7_0_2_, cldatabase1_.database_name as database2_0_2_, cldatabase1_.max_pool_size as max_pool3_0_2_, cldatabase1_.min_pool_size as min_pool4_0_2_, cldatabase1_.password as password5_0_2_, cldatabase1_.username as username6_0_2_, cldatabase2_.database_server_id as database1_1_3_, cldatabase2_.helpdesk_driver_class as helpdesk2_1_3_, cldatabase2_.host as host3_1_3_, cldatabase2_.jdbc_url as jdbc_url4_1_3_, cldatabase2_.port as port5_1_3_, Jun 6 09:37:05 otp3 pgpool[2873]: [623-3] cldatabase2_.rule_engine_driver_class as rule_eng6_1_3_ from cl_tenant cltenants0_ left outer join cl_database cldatabase1_ on cltenants0_.database_id=cldatabase1_.database_id left outer join cl_database_server cldatabase2_ on cldatabase1_.database_server_id=cldatabase2_.database_server_id where cltenants0_.plan_id=$1" Jun 6 09:37:05 otp3 pgpool[2873]: [623-4] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:873 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: checking if query context can be safely destroyed Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DETAIL: query context 0x802482830 is still used 2 times. query:"select cltenants0_.plan_id as plan_id4_5_0_, cltenants0_.tenant_id as tenant_i1_3_0_, cltenants0_.tenant_id as tenant_i1_3_1_, cltenants0_.database_id as database3_3_1_, cltenants0_.plan_id as plan_id4_3_1_, cltenants0_.tenant_name as tenant_n2_3_1_, cldatabase1_.database_id as database1_0_2_, cldatabase1_.database_server_id as database7_0_2_, cldatabase1_.database_name as database2_0_2_, cldatabase1_.max_pool_size as max_pool3_0_2_, cldatabase1_.min_pool_size as min_pool4_0_2_, cldatabase1_.password as password5_0_2_, cldatabase1_.username as username6_0_2_, cldatabase2_.database_server_id as database1_1_3_, cldatabase2_.helpdesk_driver_class as helpdesk2_1_3_, cldatabase2_.host as host3_1_3_, cldatabase2_.jdbc_url as jdbc_url4_1_3_, cldatabase2_.port as port5_1_3_, cldatabase2_.rule_engine_driver_class as rule_eng6_1_3_ from cl_tenant cltenants0_ left outer join cl_database cldatabase Jun 6 09:37:05 otp3 pgpool: d=cldatabase1_.database_id left outer join cl_database_server cldatabase2_ on cldatabase1_.database_server_id=cldatabase2_.database_server_id where cltenants0_.plan_id=$1" Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:873 Jun 6 09:37:05 otp3 pgpool[2873]: [624-1] 2016-06-06 09:37:05: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:05 otp3 pgpool[2873]: [624-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:05 otp3 pgpool[2873]: [625-1] 2016-06-06 09:37:05: pid 2873: DEBUG: SimpleForwardToFrontend: packet:1 length:0 Jun 6 09:37:05 otp3 pgpool[2873]: [625-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_process_query.c:792 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: SimpleForwardToFrontend: packet:1 length:0 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_process_query.c:792 Jun 6 09:37:05 otp3 pgpool[2873]: [626-1] 2016-06-06 09:37:05: pid 2873: DEBUG: session context: setting command success. DONE Jun 6 09:37:05 otp3 pgpool[2873]: [626-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:741 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: session context: setting command success. DONE Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:741 Jun 6 09:37:05 otp3 pgpool[2873]: [627-1] 2016-06-06 09:37:05: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:05 otp3 pgpool[2873]: [627-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:05 otp3 pgpool[2873]: [628-1] 2016-06-06 09:37:05: pid 2873: DEBUG: processing frontend response Jun 6 09:37:05 otp3 pgpool[2873]: [628-2] 2016-06-06 09:37:05: pid 2873: DETAIL: received kind 'B'(42) from frontend Jun 6 09:37:05 otp3 pgpool[2873]: [628-3] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: processing frontend response Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DETAIL: received kind 'B'(42) from frontend Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:05 otp3 pgpool[2873]: [629-1] 2016-06-06 09:37:05: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:05 otp3 pgpool[2873]: [629-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:37:05 otp3 pgpool[2873]: [630-1] 2016-06-06 09:37:05: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:05 otp3 pgpool[2873]: [630-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:37:05 otp3 pgpool[2873]: [631-1] 2016-06-06 09:37:05: pid 2873: DEBUG: Bind: checking strict query Jun 6 09:37:05 otp3 pgpool[2873]: [631-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_proto_modules.c:1211 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: Bind: checking strict query Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_proto_modules.c:1211 Jun 6 09:37:05 otp3 pgpool[2873]: [632-1] 2016-06-06 09:37:05: pid 2873: DEBUG: Bind: checking insert lock Jun 6 09:37:05 otp3 pgpool[2873]: [632-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_proto_modules.c:1221 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: Bind: checking insert lock Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_proto_modules.c:1221 Jun 6 09:37:05 otp3 pgpool[2873]: [633-1] 2016-06-06 09:37:05: pid 2873: DEBUG: Bind: waiting for master completing the query Jun 6 09:37:05 otp3 pgpool[2873]: [633-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_proto_modules.c:1237 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: Bind: waiting for master completing the query Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_proto_modules.c:1237 Jun 6 09:37:05 otp3 pgpool[2873]: [634-1] 2016-06-06 09:37:05: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:05 otp3 pgpool[2873]: [634-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:05 otp3 pgpool[2873]: [635-1] 2016-06-06 09:37:05: pid 2873: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:37:05 otp3 pgpool[2873]: [635-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_query_context.c:854 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_query_context.c:854 Jun 6 09:37:05 otp3 pgpool[2873]: [636-1] 2016-06-06 09:37:05: pid 2873: DEBUG: pool_write: to backend: kind:B Jun 6 09:37:05 otp3 pgpool[2873]: [636-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: pool_write: to backend: kind:B Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:05 otp3 pgpool[2873]: [637-1] 2016-06-06 09:37:05: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:05 otp3 pgpool[2873]: [637-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:05 otp3 pgpool[2873]: [638-1] 2016-06-06 09:37:05: pid 2873: DEBUG: waiting for query response Jun 6 09:37:05 otp3 pgpool[2873]: [638-2] 2016-06-06 09:37:05: pid 2873: DETAIL: waiting for backend:0 to complete the query Jun 6 09:37:05 otp3 pgpool[2873]: [638-3] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_process_query.c:479 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: waiting for query response Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DETAIL: waiting for backend:0 to complete the query Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_process_query.c:479 Jun 6 09:37:05 otp3 pgpool[2873]: [639-1] 2016-06-06 09:37:05: pid 2873: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:37:05 otp3 pgpool[2873]: [639-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:37:05 otp3 pgpool[2873]: [640-1] 2016-06-06 09:37:05: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:05 otp3 pgpool[2873]: [640-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:05 otp3 pgpool[2873]: [641-1] 2016-06-06 09:37:05: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:05 otp3 pgpool[2873]: [641-2] 2016-06-06 09:37:05: pid 2873: DETAIL: backend:0 of 2 kind = '2' Jun 6 09:37:05 otp3 pgpool[2873]: [641-3] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DETAIL: backend:0 of 2 kind = '2' Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:05 otp3 pgpool[2873]: [642-1] 2016-06-06 09:37:05: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:05 otp3 pgpool[2873]: [642-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:05 otp3 pgpool[2873]: [643-1] 2016-06-06 09:37:05: pid 2873: DEBUG: processing backend response Jun 6 09:37:05 otp3 pgpool[2873]: [643-2] 2016-06-06 09:37:05: pid 2873: DETAIL: received kind '2'(32) from backend Jun 6 09:37:05 otp3 pgpool[2873]: [643-3] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: processing backend response Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DETAIL: received kind '2'(32) from backend Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:05 otp3 pgpool[2873]: [644-1] 2016-06-06 09:37:05: pid 2873: DEBUG: called by pool_add_sent_message: sent message: address: 2406c80 kind: B name: == Jun 6 09:37:05 otp3 pgpool[2873]: [644-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:436 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: called by pool_add_sent_message: sent message: address: 2406c80 kind: B name: == Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:436 Jun 6 09:37:05 otp3 pgpool[2873]: [645-1] 2016-06-06 09:37:05: pid 2873: DEBUG: adding sent message to list Jun 6 09:37:05 otp3 pgpool[2873]: [645-2] 2016-06-06 09:37:05: pid 2873: DETAIL: portal "" already exists Jun 6 09:37:05 otp3 pgpool[2873]: [645-3] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:512 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: adding sent message to list Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DETAIL: portal "" already exists Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:512 Jun 6 09:37:05 otp3 pgpool[2873]: [646-1] 2016-06-06 09:37:05: pid 2873: DEBUG: called by pool_sent_message_destroy: sent message: address: 2406d18 kind: B name: == Jun 6 09:37:05 otp3 pgpool[2873]: [646-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:436 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: called by pool_sent_message_destroy: sent message: address: 2406d18 kind: B name: == Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:436 Jun 6 09:37:05 otp3 pgpool[2873]: [647-1] 2016-06-06 09:37:05: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:05 otp3 pgpool[2873]: [647-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:05 otp3 pgpool[2873]: [648-1] 2016-06-06 09:37:05: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:05 otp3 pgpool[2873]: [648-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:05 otp3 pgpool[2873]: [649-1] 2016-06-06 09:37:05: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:05 otp3 pgpool[2873]: [649-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:05 otp3 pgpool[2873]: [650-1] 2016-06-06 09:37:05: pid 2873: DEBUG: SimpleForwardToFrontend: packet:2 length:0 Jun 6 09:37:05 otp3 pgpool[2873]: [650-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_process_query.c:792 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: SimpleForwardToFrontend: packet:2 length:0 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_process_query.c:792 Jun 6 09:37:05 otp3 pgpool[2873]: [651-1] 2016-06-06 09:37:05: pid 2873: DEBUG: session context: setting command success. DONE Jun 6 09:37:05 otp3 pgpool[2873]: [651-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:741 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: session context: setting command success. DONE Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:741 Jun 6 09:37:05 otp3 pgpool[2873]: [652-1] 2016-06-06 09:37:05: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:05 otp3 pgpool[2873]: [652-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:05 otp3 pgpool[2873]: [653-1] 2016-06-06 09:37:05: pid 2873: DEBUG: processing frontend response Jun 6 09:37:05 otp3 pgpool[2873]: [653-2] 2016-06-06 09:37:05: pid 2873: DETAIL: received kind 'D'(44) from frontend Jun 6 09:37:05 otp3 pgpool[2873]: [653-3] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: processing frontend response Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DETAIL: received kind 'D'(44) from frontend Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:05 otp3 pgpool[2873]: [654-1] 2016-06-06 09:37:05: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:05 otp3 pgpool[2873]: [654-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:37:05 otp3 pgpool[2873]: [655-1] 2016-06-06 09:37:05: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:05 otp3 pgpool[2873]: [655-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:37:05 otp3 pgpool[2873]: [656-1] 2016-06-06 09:37:05: pid 2873: DEBUG: Describe: waiting for master completing the query Jun 6 09:37:05 otp3 pgpool[2873]: [656-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_proto_modules.c:1310 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: Describe: waiting for master completing the query Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_proto_modules.c:1310 Jun 6 09:37:05 otp3 pgpool[2873]: [657-1] 2016-06-06 09:37:05: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:05 otp3 pgpool[2873]: [657-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:05 otp3 pgpool[2873]: [658-1] 2016-06-06 09:37:05: pid 2873: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:37:05 otp3 pgpool[2873]: [658-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_query_context.c:854 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_query_context.c:854 Jun 6 09:37:05 otp3 pgpool[2873]: [659-1] 2016-06-06 09:37:05: pid 2873: DEBUG: pool_write: to backend: kind:D Jun 6 09:37:05 otp3 pgpool[2873]: [659-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: pool_write: to backend: kind:D Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:05 otp3 pgpool[2873]: [660-1] 2016-06-06 09:37:05: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:05 otp3 pgpool[2873]: [660-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:05 otp3 pgpool[2873]: [661-1] 2016-06-06 09:37:05: pid 2873: DEBUG: waiting for query response Jun 6 09:37:05 otp3 pgpool[2873]: [661-2] 2016-06-06 09:37:05: pid 2873: DETAIL: waiting for backend:0 to complete the query Jun 6 09:37:05 otp3 pgpool[2873]: [661-3] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_process_query.c:479 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: waiting for query response Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DETAIL: waiting for backend:0 to complete the query Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_process_query.c:479 Jun 6 09:37:05 otp3 pgpool[2873]: [662-1] 2016-06-06 09:37:05: pid 2873: DEBUG: pool_read: read 34 bytes from backend 0 Jun 6 09:37:05 otp3 pgpool[2873]: [662-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: pool_read: read 34 bytes from backend 0 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:37:05 otp3 pgpool[2873]: [663-1] 2016-06-06 09:37:05: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:05 otp3 pgpool[2873]: [663-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:05 otp3 pgpool[2873]: [664-1] 2016-06-06 09:37:05: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:05 otp3 pgpool[2873]: [664-2] 2016-06-06 09:37:05: pid 2873: DETAIL: backend:0 of 2 kind = 'T' Jun 6 09:37:05 otp3 pgpool[2873]: [664-3] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DETAIL: backend:0 of 2 kind = 'T' Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:05 otp3 pgpool[2873]: [665-1] 2016-06-06 09:37:05: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:05 otp3 pgpool[2873]: [665-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:05 otp3 pgpool[2873]: [666-1] 2016-06-06 09:37:05: pid 2873: DEBUG: processing backend response Jun 6 09:37:05 otp3 pgpool[2873]: [666-2] 2016-06-06 09:37:05: pid 2873: DETAIL: received kind 'T'(54) from backend Jun 6 09:37:05 otp3 pgpool[2873]: [666-3] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: processing backend response Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DETAIL: received kind 'T'(54) from backend Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:05 otp3 pgpool[2873]: [667-1] 2016-06-06 09:37:05: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:05 otp3 pgpool[2873]: [667-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:05 otp3 pgpool[2873]: [668-1] 2016-06-06 09:37:05: pid 2873: DEBUG: SimpleForwardToFrontend: packet:T length:29 Jun 6 09:37:05 otp3 pgpool[2873]: [668-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_process_query.c:792 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: SimpleForwardToFrontend: packet:T length:29 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_process_query.c:792 Jun 6 09:37:05 otp3 pgpool[2873]: [669-1] 2016-06-06 09:37:05: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:05 otp3 pgpool[2873]: [669-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:05 otp3 pgpool[2873]: [670-1] 2016-06-06 09:37:05: pid 2873: DEBUG: processing frontend response Jun 6 09:37:05 otp3 pgpool[2873]: [670-2] 2016-06-06 09:37:05: pid 2873: DETAIL: received kind 'E'(45) from frontend Jun 6 09:37:05 otp3 pgpool[2873]: [670-3] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: processing frontend response Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DETAIL: received kind 'E'(45) from frontend Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:05 otp3 pgpool[2873]: [671-1] 2016-06-06 09:37:05: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:05 otp3 pgpool[2873]: [671-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:37:05 otp3 pgpool[2873]: [672-1] 2016-06-06 09:37:05: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:05 otp3 pgpool[2873]: [672-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:37:05 otp3 pgpool[2873]: [673-1] 2016-06-06 09:37:05: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:05 otp3 pgpool[2873]: [673-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:05 otp3 pgpool[2873]: [674-1] 2016-06-06 09:37:05: pid 2873: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:37:05 otp3 pgpool[2873]: [674-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_query_context.c:854 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_query_context.c:854 Jun 6 09:37:05 otp3 pgpool[2873]: [675-1] 2016-06-06 09:37:05: pid 2873: DEBUG: pool_write: to backend: kind:E Jun 6 09:37:05 otp3 pgpool[2873]: [675-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: pool_write: to backend: kind:E Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:05 otp3 pgpool[2873]: [676-1] 2016-06-06 09:37:05: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:05 otp3 pgpool[2873]: [676-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:05 otp3 pgpool[2873]: [677-1] 2016-06-06 09:37:05: pid 2873: DEBUG: waiting for query response Jun 6 09:37:05 otp3 pgpool[2873]: [677-2] 2016-06-06 09:37:05: pid 2873: DETAIL: waiting for backend:0 to complete the query Jun 6 09:37:05 otp3 pgpool[2873]: [677-3] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_process_query.c:479 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: waiting for query response Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DETAIL: waiting for backend:0 to complete the query Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_process_query.c:479 Jun 6 09:37:05 otp3 pgpool[2873]: [678-1] 2016-06-06 09:37:05: pid 2873: DEBUG: pool_read: read 26 bytes from backend 0 Jun 6 09:37:05 otp3 pgpool[2873]: [678-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: pool_read: read 26 bytes from backend 0 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:37:05 otp3 pgpool[2873]: [679-1] 2016-06-06 09:37:05: pid 2873: DEBUG: detect error: kind: D Jun 6 09:37:05 otp3 pgpool[2873]: [679-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: detect error: kind: D Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:37:05 otp3 pgpool[2873]: [680-1] 2016-06-06 09:37:05: pid 2873: DEBUG: detect error: kind: D Jun 6 09:37:05 otp3 pgpool[2873]: [680-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: detect error: kind: D Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:37:05 otp3 pgpool[2873]: [681-1] 2016-06-06 09:37:05: pid 2873: DEBUG: detect error: kind: D Jun 6 09:37:05 otp3 pgpool[2873]: [681-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: detect error: kind: D Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:37:05 otp3 pgpool[2873]: [682-1] 2016-06-06 09:37:05: pid 2873: DEBUG: detect error: kind: D Jun 6 09:37:05 otp3 pgpool[2873]: [682-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: detect error: kind: D Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:37:05 otp3 pgpool[2873]: [683-1] 2016-06-06 09:37:05: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:05 otp3 pgpool[2873]: [683-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:05 otp3 pgpool[2873]: [684-1] 2016-06-06 09:37:05: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:05 otp3 pgpool[2873]: [684-2] 2016-06-06 09:37:05: pid 2873: DETAIL: backend:0 of 2 kind = 'D' Jun 6 09:37:05 otp3 pgpool[2873]: [684-3] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DETAIL: backend:0 of 2 kind = 'D' Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:05 otp3 pgpool[2873]: [685-1] 2016-06-06 09:37:05: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:05 otp3 pgpool[2873]: [685-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:05 otp3 pgpool[2873]: [686-1] 2016-06-06 09:37:05: pid 2873: DEBUG: processing backend response Jun 6 09:37:05 otp3 pgpool[2873]: [686-2] 2016-06-06 09:37:05: pid 2873: DETAIL: received kind 'D'(44) from backend Jun 6 09:37:05 otp3 pgpool[2873]: [686-3] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: processing backend response Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DETAIL: received kind 'D'(44) from backend Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:05 otp3 pgpool[2873]: [687-1] 2016-06-06 09:37:05: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:05 otp3 pgpool[2873]: [687-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:05 otp3 pgpool[2873]: [688-1] 2016-06-06 09:37:05: pid 2873: DEBUG: SimpleForwardToFrontend: packet:D length:7 Jun 6 09:37:05 otp3 pgpool[2873]: [688-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_process_query.c:792 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: SimpleForwardToFrontend: packet:D length:7 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_process_query.c:792 Jun 6 09:37:05 otp3 pgpool[2873]: [689-1] 2016-06-06 09:37:05: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:05 otp3 pgpool[2873]: [689-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:05 otp3 pgpool[2873]: [690-1] 2016-06-06 09:37:05: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:05 otp3 pgpool[2873]: [690-2] 2016-06-06 09:37:05: pid 2873: DETAIL: backend:0 of 2 kind = 'C' Jun 6 09:37:05 otp3 pgpool[2873]: [690-3] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DETAIL: backend:0 of 2 kind = 'C' Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:05 otp3 pgpool[2873]: [691-1] 2016-06-06 09:37:05: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:05 otp3 pgpool[2873]: [691-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:05 otp3 pgpool[2873]: [692-1] 2016-06-06 09:37:05: pid 2873: DEBUG: processing backend response Jun 6 09:37:05 otp3 pgpool[2873]: [692-2] 2016-06-06 09:37:05: pid 2873: DETAIL: received kind 'C'(43) from backend Jun 6 09:37:05 otp3 pgpool[2873]: [692-3] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: processing backend response Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DETAIL: received kind 'C'(43) from backend Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:05 otp3 pgpool[2873]: [693-1] 2016-06-06 09:37:05: pid 2873: DEBUG: session context: setting command success. DONE Jun 6 09:37:05 otp3 pgpool[2873]: [693-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:741 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: session context: setting command success. DONE Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:741 Jun 6 09:37:05 otp3 pgpool[2873]: [694-1] 2016-06-06 09:37:05: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:05 otp3 pgpool[2873]: [694-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:05 otp3 pgpool[2873]: [695-1] 2016-06-06 09:37:05: pid 2873: DEBUG: processing frontend response Jun 6 09:37:05 otp3 pgpool[2873]: [695-2] 2016-06-06 09:37:05: pid 2873: DETAIL: received kind 'S'(53) from frontend Jun 6 09:37:05 otp3 pgpool[2873]: [695-3] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: processing frontend response Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DETAIL: received kind 'S'(53) from frontend Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:05 otp3 pgpool[2873]: [696-1] 2016-06-06 09:37:05: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:05 otp3 pgpool[2873]: [696-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:37:05 otp3 pgpool[2873]: [697-1] 2016-06-06 09:37:05: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:05 otp3 pgpool[2873]: [697-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:37:05 otp3 pgpool[2873]: [698-1] 2016-06-06 09:37:05: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:05 otp3 pgpool[2873]: [698-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:05 otp3 pgpool[2873]: [699-1] 2016-06-06 09:37:05: pid 2873: DEBUG: pool_write: to backend: kind:S Jun 6 09:37:05 otp3 pgpool[2873]: [699-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: pool_write: to backend: kind:S Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:05 otp3 pgpool[2873]: [700-1] 2016-06-06 09:37:05: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:05 otp3 pgpool[2873]: [700-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:05 otp3 pgpool[2873]: [701-1] 2016-06-06 09:37:05: pid 2873: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:37:05 otp3 pgpool[2873]: [701-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:37:05 otp3 pgpool[2873]: [702-1] 2016-06-06 09:37:05: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:05 otp3 pgpool[2873]: [702-2] 2016-06-06 09:37:05: pid 2873: DETAIL: backend:0 of 2 kind = 'Z' Jun 6 09:37:05 otp3 pgpool[2873]: [702-3] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DETAIL: backend:0 of 2 kind = 'Z' Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:05 otp3 pgpool[2873]: [703-1] 2016-06-06 09:37:05: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:05 otp3 pgpool[2873]: [703-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:05 otp3 pgpool[2873]: [704-1] 2016-06-06 09:37:05: pid 2873: DEBUG: processing backend response Jun 6 09:37:05 otp3 pgpool[2873]: [704-2] 2016-06-06 09:37:05: pid 2873: DETAIL: received kind 'Z'(5a) from backend Jun 6 09:37:05 otp3 pgpool[2873]: [704-3] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: processing backend response Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DETAIL: received kind 'Z'(5a) from backend Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:05 otp3 pgpool[2873]: [705-1] 2016-06-06 09:37:05: pid 2873: DEBUG: processing backend response Jun 6 09:37:05 otp3 pgpool[2873]: [705-2] 2016-06-06 09:37:05: pid 2873: DETAIL: Ready For Query received Jun 6 09:37:05 otp3 pgpool[2873]: [705-3] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_proto_modules.c:2442 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: processing backend response Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DETAIL: Ready For Query received Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_proto_modules.c:2442 Jun 6 09:37:05 otp3 pgpool[2873]: [706-1] 2016-06-06 09:37:05: pid 2873: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:37:05 otp3 pgpool[2873]: [706-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:310 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:310 Jun 6 09:37:05 otp3 pgpool[2873]: [707-1] 2016-06-06 09:37:05: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:05 otp3 pgpool[2873]: [707-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:05 otp3 pgpool[2873]: [708-1] 2016-06-06 09:37:05: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:05 otp3 pgpool[2873]: [708-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:05 otp3 pgpool[2873]: [709-1] 2016-06-06 09:37:05: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:05 otp3 pgpool[2873]: [709-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:05 otp3 pgpool[2873]: [710-1] 2016-06-06 09:37:05: pid 2873: DEBUG: reading message length Jun 6 09:37:05 otp3 pgpool[2873]: [710-2] 2016-06-06 09:37:05: pid 2873: DETAIL: slot: 0 length: 5 Jun 6 09:37:05 otp3 pgpool[2873]: [710-3] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_auth.c:1107 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: reading message length Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DETAIL: slot: 0 length: 5 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_auth.c:1107 Jun 6 09:37:05 otp3 pgpool[2873]: [711-1] 2016-06-06 09:37:05: pid 2873: DEBUG: processing ReadyForQuery Jun 6 09:37:05 otp3 pgpool[2873]: [711-2] 2016-06-06 09:37:05: pid 2873: DETAIL: transaction state 'I'(49) Jun 6 09:37:05 otp3 pgpool[2873]: [711-3] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_proto_modules.c:1612 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: processing ReadyForQuery Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DETAIL: transaction state 'I'(49) Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_proto_modules.c:1612 Jun 6 09:37:05 otp3 pgpool[2873]: [712-1] 2016-06-06 09:37:05: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:05 otp3 pgpool[2873]: [712-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:05 otp3 pgpool[2873]: [713-1] 2016-06-06 09:37:05: pid 2873: DEBUG: processing frontend response Jun 6 09:37:05 otp3 pgpool[2873]: [713-2] 2016-06-06 09:37:05: pid 2873: DETAIL: received kind 'P'(50) from frontend Jun 6 09:37:05 otp3 pgpool[2873]: [713-3] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: processing frontend response Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DETAIL: received kind 'P'(50) from frontend Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:05 otp3 pgpool[2873]: [714-1] 2016-06-06 09:37:05: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:05 otp3 pgpool[2873]: [714-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:37:05 otp3 pgpool[2873]: [715-1] 2016-06-06 09:37:05: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:05 otp3 pgpool[2873]: [715-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:37:05 otp3 pgpool[2873]: [716-1] 2016-06-06 09:37:05: pid 2873: DEBUG: Parse: statement name <> Jun 6 09:37:05 otp3 pgpool[2873]: [716-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_proto_modules.c:817 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: Parse: statement name <> Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_proto_modules.c:817 Jun 6 09:37:05 otp3 pgpool[2873]: [717-1] 2016-06-06 09:37:05: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:05 otp3 pgpool[2873]: [717-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:05 otp3 pgpool[2873]: [718-1] 2016-06-06 09:37:05: pid 2873: DEBUG: pool_write: to backend: kind:S Jun 6 09:37:05 otp3 pgpool[2873]: [718-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: pool_write: to backend: kind:S Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:05 otp3 pgpool[2873]: [719-1] 2016-06-06 09:37:05: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:05 otp3 pgpool[2873]: [719-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:05 otp3 pgpool[2873]: [720-1] 2016-06-06 09:37:05: pid 2873: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:37:05 otp3 pgpool[2873]: [720-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:37:05 otp3 pgpool[2873]: [721-1] 2016-06-06 09:37:05: pid 2873: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:37:05 otp3 pgpool[2873]: [721-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:310 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:310 Jun 6 09:37:05 otp3 pgpool[2873]: [722-1] 2016-06-06 09:37:05: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:05 otp3 pgpool[2873]: [722-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:05 otp3 pgpool[2873]: [723-1] 2016-06-06 09:37:05: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:05 otp3 pgpool[2873]: [723-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:05 otp3 pgpool[2873]: [724-1] 2016-06-06 09:37:05: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:05 otp3 pgpool[2873]: [724-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:05 otp3 pgpool[2873]: [725-1] 2016-06-06 09:37:05: pid 2873: DEBUG: reading message length Jun 6 09:37:05 otp3 pgpool[2873]: [725-2] 2016-06-06 09:37:05: pid 2873: DETAIL: slot: 0 length: 5 Jun 6 09:37:05 otp3 pgpool[2873]: [725-3] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_auth.c:1107 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: reading message length Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DETAIL: slot: 0 length: 5 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_auth.c:1107 Jun 6 09:37:05 otp3 pgpool[2873]: [726-1] 2016-06-06 09:37:05: pid 2873: DEBUG: processing ReadyForQuery Jun 6 09:37:05 otp3 pgpool[2873]: [726-2] 2016-06-06 09:37:05: pid 2873: DETAIL: transaction state 'I'(49) Jun 6 09:37:05 otp3 pgpool[2873]: [726-3] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_proto_modules.c:1612 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: processing ReadyForQuery Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DETAIL: transaction state 'I'(49) Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_proto_modules.c:1612 Jun 6 09:37:05 otp3 pgpool[2873]: [727-1] 2016-06-06 09:37:05: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:05 otp3 pgpool[2873]: [727-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:05 otp3 pgpool[2873]: [728-1] 2016-06-06 09:37:05: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:05 otp3 pgpool[2873]: [728-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:05 otp3 pgpool[2873]: [729-1] 2016-06-06 09:37:05: pid 2873: DEBUG: Parse: waiting for master completing the query Jun 6 09:37:05 otp3 pgpool[2873]: [729-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_proto_modules.c:1064 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: Parse: waiting for master completing the query Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_proto_modules.c:1064 Jun 6 09:37:05 otp3 pgpool[2873]: [730-1] 2016-06-06 09:37:05: pid 2873: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:37:05 otp3 pgpool[2873]: [730-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_query_context.c:854 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_query_context.c:854 Jun 6 09:37:05 otp3 pgpool[2873]: [731-1] 2016-06-06 09:37:05: pid 2873: DEBUG: pool_write: to backend: kind:P Jun 6 09:37:05 otp3 pgpool[2873]: [731-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: pool_write: to backend: kind:P Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:05 otp3 pgpool[2873]: [732-1] 2016-06-06 09:37:05: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:05 otp3 pgpool[2873]: [732-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:05 otp3 pgpool[2873]: [733-1] 2016-06-06 09:37:05: pid 2873: DEBUG: waiting for query response Jun 6 09:37:05 otp3 pgpool[2873]: [733-2] 2016-06-06 09:37:05: pid 2873: DETAIL: waiting for backend:0 to complete the query Jun 6 09:37:05 otp3 pgpool[2873]: [733-3] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_process_query.c:479 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: waiting for query response Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DETAIL: waiting for backend:0 to complete the query Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_process_query.c:479 Jun 6 09:37:05 otp3 pgpool[2873]: [734-1] 2016-06-06 09:37:05: pid 2873: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:37:05 otp3 pgpool[2873]: [734-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:37:05 otp3 pgpool[2873]: [735-1] 2016-06-06 09:37:05: pid 2873: DEBUG: detect error: kind: 1 Jun 6 09:37:05 otp3 pgpool[2873]: [735-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: detect error: kind: 1 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:37:05 otp3 pgpool[2873]: [736-1] 2016-06-06 09:37:05: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:05 otp3 pgpool[2873]: [736-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:05 otp3 pgpool[2873]: [737-1] 2016-06-06 09:37:05: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:05 otp3 pgpool[2873]: [737-2] 2016-06-06 09:37:05: pid 2873: DETAIL: backend:0 of 2 kind = '1' Jun 6 09:37:05 otp3 pgpool[2873]: [737-3] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DETAIL: backend:0 of 2 kind = '1' Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:05 otp3 pgpool[2873]: [738-1] 2016-06-06 09:37:05: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:05 otp3 pgpool[2873]: [738-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:05 otp3 pgpool[2873]: [739-1] 2016-06-06 09:37:05: pid 2873: DEBUG: processing backend response Jun 6 09:37:05 otp3 pgpool[2873]: [739-2] 2016-06-06 09:37:05: pid 2873: DETAIL: received kind '1'(31) from backend Jun 6 09:37:05 otp3 pgpool[2873]: [739-3] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: processing backend response Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DETAIL: received kind '1'(31) from backend Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:05 otp3 pgpool[2873]: [740-1] 2016-06-06 09:37:05: pid 2873: DEBUG: called by pool_add_sent_message: sent message: address: 2406d18 kind: P name: == Jun 6 09:37:05 otp3 pgpool[2873]: [740-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:436 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: called by pool_add_sent_message: sent message: address: 2406d18 kind: P name: == Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:436 Jun 6 09:37:05 otp3 pgpool[2873]: [741-1] 2016-06-06 09:37:05: pid 2873: DEBUG: adding sent message to list Jun 6 09:37:05 otp3 pgpool[2873]: [741-2] 2016-06-06 09:37:05: pid 2873: DETAIL: prepared statement "" already exists Jun 6 09:37:05 otp3 pgpool[2873]: [741-3] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:516 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: adding sent message to list Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DETAIL: prepared statement "" already exists Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:516 Jun 6 09:37:05 otp3 pgpool[2873]: [742-1] 2016-06-06 09:37:05: pid 2873: DEBUG: called by pool_sent_message_destroy: sent message: address: 2406d98 kind: P name: == Jun 6 09:37:05 otp3 pgpool[2873]: [742-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:436 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: called by pool_sent_message_destroy: sent message: address: 2406d98 kind: P name: == Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:436 Jun 6 09:37:05 otp3 pgpool[2873]: [743-1] 2016-06-06 09:37:05: pid 2873: DEBUG: checking if query context can be safely destroyed Jun 6 09:37:05 otp3 pgpool[2873]: [743-2] 2016-06-06 09:37:05: pid 2873: DETAIL: query context 0x802481830 is still used 2 times. query:"SELECT 1" Jun 6 09:37:05 otp3 pgpool[2873]: [743-3] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:873 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: checking if query context can be safely destroyed Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DETAIL: query context 0x802481830 is still used 2 times. query:"SELECT 1" Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:873 Jun 6 09:37:05 otp3 pgpool[2873]: [744-1] 2016-06-06 09:37:05: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:05 otp3 pgpool[2873]: [744-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:05 otp3 pgpool[2873]: [745-1] 2016-06-06 09:37:05: pid 2873: DEBUG: SimpleForwardToFrontend: packet:1 length:0 Jun 6 09:37:05 otp3 pgpool[2873]: [745-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_process_query.c:792 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: SimpleForwardToFrontend: packet:1 length:0 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_process_query.c:792 Jun 6 09:37:05 otp3 pgpool[2873]: [746-1] 2016-06-06 09:37:05: pid 2873: DEBUG: session context: setting command success. DONE Jun 6 09:37:05 otp3 pgpool[2873]: [746-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:741 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: session context: setting command success. DONE Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:741 Jun 6 09:37:05 otp3 pgpool[2873]: [747-1] 2016-06-06 09:37:05: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:05 otp3 pgpool[2873]: [747-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:05 otp3 pgpool[2873]: [748-1] 2016-06-06 09:37:05: pid 2873: DEBUG: processing frontend response Jun 6 09:37:05 otp3 pgpool[2873]: [748-2] 2016-06-06 09:37:05: pid 2873: DETAIL: received kind 'B'(42) from frontend Jun 6 09:37:05 otp3 pgpool[2873]: [748-3] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: processing frontend response Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DETAIL: received kind 'B'(42) from frontend Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:05 otp3 pgpool[2873]: [749-1] 2016-06-06 09:37:05: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:05 otp3 pgpool[2873]: [749-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:37:05 otp3 pgpool[2873]: [750-1] 2016-06-06 09:37:05: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:05 otp3 pgpool[2873]: [750-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:37:05 otp3 pgpool[2873]: [751-1] 2016-06-06 09:37:05: pid 2873: DEBUG: Bind: checking strict query Jun 6 09:37:05 otp3 pgpool[2873]: [751-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_proto_modules.c:1211 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: Bind: checking strict query Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_proto_modules.c:1211 Jun 6 09:37:05 otp3 pgpool[2873]: [752-1] 2016-06-06 09:37:05: pid 2873: DEBUG: Bind: checking insert lock Jun 6 09:37:05 otp3 pgpool[2873]: [752-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_proto_modules.c:1221 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: Bind: checking insert lock Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_proto_modules.c:1221 Jun 6 09:37:05 otp3 pgpool[2873]: [753-1] 2016-06-06 09:37:05: pid 2873: DEBUG: Bind: waiting for master completing the query Jun 6 09:37:05 otp3 pgpool[2873]: [753-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_proto_modules.c:1237 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: Bind: waiting for master completing the query Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_proto_modules.c:1237 Jun 6 09:37:05 otp3 pgpool[2873]: [754-1] 2016-06-06 09:37:05: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:05 otp3 pgpool[2873]: [754-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:05 otp3 pgpool[2873]: [755-1] 2016-06-06 09:37:05: pid 2873: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:37:05 otp3 pgpool[2873]: [755-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_query_context.c:854 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_query_context.c:854 Jun 6 09:37:05 otp3 pgpool[2873]: [756-1] 2016-06-06 09:37:05: pid 2873: DEBUG: pool_write: to backend: kind:B Jun 6 09:37:05 otp3 pgpool[2873]: [756-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: pool_write: to backend: kind:B Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:05 otp3 pgpool[2873]: [757-1] 2016-06-06 09:37:05: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:05 otp3 pgpool[2873]: [757-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:05 otp3 pgpool[2873]: [758-1] 2016-06-06 09:37:05: pid 2873: DEBUG: waiting for query response Jun 6 09:37:05 otp3 pgpool[2873]: [758-2] 2016-06-06 09:37:05: pid 2873: DETAIL: waiting for backend:0 to complete the query Jun 6 09:37:05 otp3 pgpool[2873]: [758-3] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_process_query.c:479 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: waiting for query response Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DETAIL: waiting for backend:0 to complete the query Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_process_query.c:479 Jun 6 09:37:05 otp3 pgpool[2873]: [759-1] 2016-06-06 09:37:05: pid 2873: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:37:05 otp3 pgpool[2873]: [759-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:37:05 otp3 pgpool[2873]: [760-1] 2016-06-06 09:37:05: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:05 otp3 pgpool[2873]: [760-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:05 otp3 pgpool[2873]: [761-1] 2016-06-06 09:37:05: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:05 otp3 pgpool[2873]: [761-2] 2016-06-06 09:37:05: pid 2873: DETAIL: backend:0 of 2 kind = '2' Jun 6 09:37:05 otp3 pgpool[2873]: [761-3] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DETAIL: backend:0 of 2 kind = '2' Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:05 otp3 pgpool[2873]: [762-1] 2016-06-06 09:37:05: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:05 otp3 pgpool[2873]: [762-2] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:05 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:05 otp3 pgpool[2873]: [763-1] 2016-06-06 09:37:05: pid 2873: DEBUG: processing backend response Jun 6 09:37:05 otp3 pgpool[2873]: [763-2] 2016-06-06 09:37:05: pid 2873: DETAIL: received kind '2'(32) from backend Jun 6 09:37:06 otp3 pgpool[2873]: [763-3] 2016-06-06 09:37:05: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DEBUG: processing backend response Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: DETAIL: received kind '2'(32) from backend Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:05: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:06 otp3 pgpool[2873]: [764-1] 2016-06-06 09:37:06: pid 2873: DEBUG: called by pool_add_sent_message: sent message: address: 2406d98 kind: B name: == Jun 6 09:37:06 otp3 pgpool[2873]: [764-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:436 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: called by pool_add_sent_message: sent message: address: 2406d98 kind: B name: == Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:436 Jun 6 09:37:06 otp3 pgpool[2873]: [765-1] 2016-06-06 09:37:06: pid 2873: DEBUG: adding sent message to list Jun 6 09:37:06 otp3 pgpool[2873]: [765-2] 2016-06-06 09:37:06: pid 2873: DETAIL: portal "" already exists Jun 6 09:37:06 otp3 pgpool[2873]: [765-3] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:512 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: adding sent message to list Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DETAIL: portal "" already exists Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:512 Jun 6 09:37:06 otp3 pgpool[2873]: [766-1] 2016-06-06 09:37:06: pid 2873: DEBUG: called by pool_sent_message_destroy: sent message: address: 2406c80 kind: B name: == Jun 6 09:37:06 otp3 pgpool[2873]: [766-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:436 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: called by pool_sent_message_destroy: sent message: address: 2406c80 kind: B name: == Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:436 Jun 6 09:37:06 otp3 pgpool[2873]: [767-1] 2016-06-06 09:37:06: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:06 otp3 pgpool[2873]: [767-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:06 otp3 pgpool[2873]: [768-1] 2016-06-06 09:37:06: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:06 otp3 pgpool[2873]: [768-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:06 otp3 pgpool[2873]: [769-1] 2016-06-06 09:37:06: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:06 otp3 pgpool[2873]: [769-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:06 otp3 pgpool[2873]: [770-1] 2016-06-06 09:37:06: pid 2873: DEBUG: SimpleForwardToFrontend: packet:2 length:0 Jun 6 09:37:06 otp3 pgpool[2873]: [770-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_process_query.c:792 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: SimpleForwardToFrontend: packet:2 length:0 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_process_query.c:792 Jun 6 09:37:06 otp3 pgpool[2873]: [771-1] 2016-06-06 09:37:06: pid 2873: DEBUG: session context: setting command success. DONE Jun 6 09:37:06 otp3 pgpool[2873]: [771-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:741 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: session context: setting command success. DONE Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:741 Jun 6 09:37:06 otp3 pgpool[2873]: [772-1] 2016-06-06 09:37:06: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:06 otp3 pgpool[2873]: [772-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:06 otp3 pgpool[2873]: [773-1] 2016-06-06 09:37:06: pid 2873: DEBUG: processing frontend response Jun 6 09:37:06 otp3 pgpool[2873]: [773-2] 2016-06-06 09:37:06: pid 2873: DETAIL: received kind 'D'(44) from frontend Jun 6 09:37:06 otp3 pgpool[2873]: [773-3] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: processing frontend response Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DETAIL: received kind 'D'(44) from frontend Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:06 otp3 pgpool[2873]: [774-1] 2016-06-06 09:37:06: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:06 otp3 pgpool[2873]: [774-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:37:06 otp3 pgpool[2873]: [775-1] 2016-06-06 09:37:06: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:06 otp3 pgpool[2873]: [775-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:37:06 otp3 pgpool[2873]: [776-1] 2016-06-06 09:37:06: pid 2873: DEBUG: Describe: waiting for master completing the query Jun 6 09:37:06 otp3 pgpool[2873]: [776-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_proto_modules.c:1310 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: Describe: waiting for master completing the query Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_proto_modules.c:1310 Jun 6 09:37:06 otp3 pgpool[2873]: [777-1] 2016-06-06 09:37:06: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:06 otp3 pgpool[2873]: [777-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:06 otp3 pgpool[2873]: [778-1] 2016-06-06 09:37:06: pid 2873: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:37:06 otp3 pgpool[2873]: [778-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_query_context.c:854 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_query_context.c:854 Jun 6 09:37:06 otp3 pgpool[2873]: [779-1] 2016-06-06 09:37:06: pid 2873: DEBUG: pool_write: to backend: kind:D Jun 6 09:37:06 otp3 pgpool[2873]: [779-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: pool_write: to backend: kind:D Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:06 otp3 pgpool[2873]: [780-1] 2016-06-06 09:37:06: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:06 otp3 pgpool[2873]: [780-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:06 otp3 pgpool[2873]: [781-1] 2016-06-06 09:37:06: pid 2873: DEBUG: waiting for query response Jun 6 09:37:06 otp3 pgpool[2873]: [781-2] 2016-06-06 09:37:06: pid 2873: DETAIL: waiting for backend:0 to complete the query Jun 6 09:37:06 otp3 pgpool[2873]: [781-3] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_process_query.c:479 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: waiting for query response Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DETAIL: waiting for backend:0 to complete the query Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_process_query.c:479 Jun 6 09:37:06 otp3 pgpool[2873]: [782-1] 2016-06-06 09:37:06: pid 2873: DEBUG: pool_read: read 130 bytes from backend 0 Jun 6 09:37:06 otp3 pgpool[2873]: [782-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: pool_read: read 130 bytes from backend 0 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:37:06 otp3 pgpool[2873]: [783-1] 2016-06-06 09:37:06: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:06 otp3 pgpool[2873]: [783-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:06 otp3 pgpool[2873]: [784-1] 2016-06-06 09:37:06: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:06 otp3 pgpool[2873]: [784-2] 2016-06-06 09:37:06: pid 2873: DETAIL: backend:0 of 2 kind = 'T' Jun 6 09:37:06 otp3 pgpool[2873]: [784-3] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DETAIL: backend:0 of 2 kind = 'T' Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:06 otp3 pgpool[2873]: [785-1] 2016-06-06 09:37:06: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:06 otp3 pgpool[2873]: [785-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:06 otp3 pgpool[2873]: [786-1] 2016-06-06 09:37:06: pid 2873: DEBUG: processing backend response Jun 6 09:37:06 otp3 pgpool[2873]: [786-2] 2016-06-06 09:37:06: pid 2873: DETAIL: received kind 'T'(54) from backend Jun 6 09:37:06 otp3 pgpool[2873]: [786-3] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: processing backend response Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DETAIL: received kind 'T'(54) from backend Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:06 otp3 pgpool[2873]: [787-1] 2016-06-06 09:37:06: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:06 otp3 pgpool[2873]: [787-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:06 otp3 pgpool[2873]: [788-1] 2016-06-06 09:37:06: pid 2873: DEBUG: SimpleForwardToFrontend: packet:T length:125 Jun 6 09:37:06 otp3 pgpool[2873]: [788-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_process_query.c:792 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: SimpleForwardToFrontend: packet:T length:125 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_process_query.c:792 Jun 6 09:37:06 otp3 pgpool[2873]: [789-1] 2016-06-06 09:37:06: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:06 otp3 pgpool[2873]: [789-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:06 otp3 pgpool[2873]: [790-1] 2016-06-06 09:37:06: pid 2873: DEBUG: processing frontend response Jun 6 09:37:06 otp3 pgpool[2873]: [790-2] 2016-06-06 09:37:06: pid 2873: DETAIL: received kind 'E'(45) from frontend Jun 6 09:37:06 otp3 pgpool[2873]: [790-3] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: processing frontend response Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DETAIL: received kind 'E'(45) from frontend Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:06 otp3 pgpool[2873]: [791-1] 2016-06-06 09:37:06: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:06 otp3 pgpool[2873]: [791-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:37:06 otp3 pgpool[2873]: [792-1] 2016-06-06 09:37:06: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:06 otp3 pgpool[2873]: [792-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:37:06 otp3 pgpool[2873]: [793-1] 2016-06-06 09:37:06: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:06 otp3 pgpool[2873]: [793-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:06 otp3 pgpool[2873]: [794-1] 2016-06-06 09:37:06: pid 2873: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:37:06 otp3 pgpool[2873]: [794-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_query_context.c:854 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_query_context.c:854 Jun 6 09:37:06 otp3 pgpool[2873]: [795-1] 2016-06-06 09:37:06: pid 2873: DEBUG: pool_write: to backend: kind:E Jun 6 09:37:06 otp3 pgpool[2873]: [795-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: pool_write: to backend: kind:E Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:06 otp3 pgpool[2873]: [796-1] 2016-06-06 09:37:06: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:06 otp3 pgpool[2873]: [796-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:06 otp3 pgpool[2873]: [797-1] 2016-06-06 09:37:06: pid 2873: DEBUG: waiting for query response Jun 6 09:37:06 otp3 pgpool[2873]: [797-2] 2016-06-06 09:37:06: pid 2873: DETAIL: waiting for backend:0 to complete the query Jun 6 09:37:06 otp3 pgpool[2873]: [797-3] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_process_query.c:479 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: waiting for query response Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DETAIL: waiting for backend:0 to complete the query Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_process_query.c:479 Jun 6 09:37:06 otp3 pgpool[2873]: [798-1] 2016-06-06 09:37:06: pid 2873: DEBUG: pool_read: read 59 bytes from backend 0 Jun 6 09:37:06 otp3 pgpool[2873]: [798-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: pool_read: read 59 bytes from backend 0 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:37:06 otp3 pgpool[2873]: [799-1] 2016-06-06 09:37:06: pid 2873: DEBUG: detect error: kind: D Jun 6 09:37:06 otp3 pgpool[2873]: [799-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: detect error: kind: D Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:37:06 otp3 pgpool[2873]: [800-1] 2016-06-06 09:37:06: pid 2873: DEBUG: detect error: kind: D Jun 6 09:37:06 otp3 pgpool[2873]: [800-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: detect error: kind: D Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:37:06 otp3 pgpool[2873]: [801-1] 2016-06-06 09:37:06: pid 2873: DEBUG: detect error: kind: D Jun 6 09:37:06 otp3 pgpool[2873]: [801-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: detect error: kind: D Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:37:06 otp3 pgpool[2873]: [802-1] 2016-06-06 09:37:06: pid 2873: DEBUG: detect error: kind: D Jun 6 09:37:06 otp3 pgpool[2873]: [802-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: detect error: kind: D Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:37:06 otp3 pgpool[2873]: [803-1] 2016-06-06 09:37:06: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:06 otp3 pgpool[2873]: [803-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:06 otp3 pgpool[2873]: [804-1] 2016-06-06 09:37:06: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:06 otp3 pgpool[2873]: [804-2] 2016-06-06 09:37:06: pid 2873: DETAIL: backend:0 of 2 kind = 'D' Jun 6 09:37:06 otp3 pgpool[2873]: [804-3] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DETAIL: backend:0 of 2 kind = 'D' Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:06 otp3 pgpool[2873]: [805-1] 2016-06-06 09:37:06: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:06 otp3 pgpool[2873]: [805-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:06 otp3 pgpool[2873]: [806-1] 2016-06-06 09:37:06: pid 2873: DEBUG: processing backend response Jun 6 09:37:06 otp3 pgpool[2873]: [806-2] 2016-06-06 09:37:06: pid 2873: DETAIL: received kind 'D'(44) from backend Jun 6 09:37:06 otp3 pgpool[2873]: [806-3] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: processing backend response Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DETAIL: received kind 'D'(44) from backend Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:06 otp3 pgpool[2873]: [807-1] 2016-06-06 09:37:06: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:06 otp3 pgpool[2873]: [807-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:06 otp3 pgpool[2873]: [808-1] 2016-06-06 09:37:06: pid 2873: DEBUG: SimpleForwardToFrontend: packet:D length:40 Jun 6 09:37:06 otp3 pgpool[2873]: [808-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_process_query.c:792 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: SimpleForwardToFrontend: packet:D length:40 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_process_query.c:792 Jun 6 09:37:06 otp3 pgpool[2873]: [809-1] 2016-06-06 09:37:06: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:06 otp3 pgpool[2873]: [809-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:06 otp3 pgpool[2873]: [810-1] 2016-06-06 09:37:06: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:06 otp3 pgpool[2873]: [810-2] 2016-06-06 09:37:06: pid 2873: DETAIL: backend:0 of 2 kind = 'C' Jun 6 09:37:06 otp3 pgpool[2873]: [810-3] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DETAIL: backend:0 of 2 kind = 'C' Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:06 otp3 pgpool[2873]: [811-1] 2016-06-06 09:37:06: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:06 otp3 pgpool[2873]: [811-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:06 otp3 pgpool[2873]: [812-1] 2016-06-06 09:37:06: pid 2873: DEBUG: processing backend response Jun 6 09:37:06 otp3 pgpool[2873]: [812-2] 2016-06-06 09:37:06: pid 2873: DETAIL: received kind 'C'(43) from backend Jun 6 09:37:06 otp3 pgpool[2873]: [812-3] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: processing backend response Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DETAIL: received kind 'C'(43) from backend Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:06 otp3 pgpool[2873]: [813-1] 2016-06-06 09:37:06: pid 2873: DEBUG: session context: setting command success. DONE Jun 6 09:37:06 otp3 pgpool[2873]: [813-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:741 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: session context: setting command success. DONE Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:741 Jun 6 09:37:06 otp3 pgpool[2873]: [814-1] 2016-06-06 09:37:06: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:06 otp3 pgpool[2873]: [814-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:06 otp3 pgpool[2873]: [815-1] 2016-06-06 09:37:06: pid 2873: DEBUG: processing frontend response Jun 6 09:37:06 otp3 pgpool[2873]: [815-2] 2016-06-06 09:37:06: pid 2873: DETAIL: received kind 'S'(53) from frontend Jun 6 09:37:06 otp3 pgpool[2873]: [815-3] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: processing frontend response Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DETAIL: received kind 'S'(53) from frontend Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:06 otp3 pgpool[2873]: [816-1] 2016-06-06 09:37:06: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:06 otp3 pgpool[2873]: [816-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:37:06 otp3 pgpool[2873]: [817-1] 2016-06-06 09:37:06: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:06 otp3 pgpool[2873]: [817-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:37:06 otp3 pgpool[2873]: [818-1] 2016-06-06 09:37:06: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:06 otp3 pgpool[2873]: [818-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:06 otp3 pgpool[2873]: [819-1] 2016-06-06 09:37:06: pid 2873: DEBUG: pool_write: to backend: kind:S Jun 6 09:37:06 otp3 pgpool[2873]: [819-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: pool_write: to backend: kind:S Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:06 otp3 pgpool[2873]: [820-1] 2016-06-06 09:37:06: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:06 otp3 pgpool[2873]: [820-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:06 otp3 pgpool[2873]: [821-1] 2016-06-06 09:37:06: pid 2873: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:37:06 otp3 pgpool[2873]: [821-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:37:06 otp3 pgpool[2873]: [822-1] 2016-06-06 09:37:06: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:06 otp3 pgpool[2873]: [822-2] 2016-06-06 09:37:06: pid 2873: DETAIL: backend:0 of 2 kind = 'Z' Jun 6 09:37:06 otp3 pgpool[2873]: [822-3] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DETAIL: backend:0 of 2 kind = 'Z' Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:06 otp3 pgpool[2873]: [823-1] 2016-06-06 09:37:06: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:06 otp3 pgpool[2873]: [823-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:06 otp3 pgpool[2873]: [824-1] 2016-06-06 09:37:06: pid 2873: DEBUG: processing backend response Jun 6 09:37:06 otp3 pgpool[2873]: [824-2] 2016-06-06 09:37:06: pid 2873: DETAIL: received kind 'Z'(5a) from backend Jun 6 09:37:06 otp3 pgpool[2873]: [824-3] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: processing backend response Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DETAIL: received kind 'Z'(5a) from backend Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:06 otp3 pgpool[2873]: [825-1] 2016-06-06 09:37:06: pid 2873: DEBUG: processing backend response Jun 6 09:37:06 otp3 pgpool[2873]: [825-2] 2016-06-06 09:37:06: pid 2873: DETAIL: Ready For Query received Jun 6 09:37:06 otp3 pgpool[2873]: [825-3] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_proto_modules.c:2442 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: processing backend response Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DETAIL: Ready For Query received Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_proto_modules.c:2442 Jun 6 09:37:06 otp3 pgpool[2873]: [826-1] 2016-06-06 09:37:06: pid 2873: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:37:06 otp3 pgpool[2873]: [826-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:310 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:310 Jun 6 09:37:06 otp3 pgpool[2873]: [827-1] 2016-06-06 09:37:06: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:06 otp3 pgpool[2873]: [827-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:06 otp3 pgpool[2873]: [828-1] 2016-06-06 09:37:06: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:06 otp3 pgpool[2873]: [828-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:06 otp3 pgpool[2873]: [829-1] 2016-06-06 09:37:06: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:06 otp3 pgpool[2873]: [829-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:06 otp3 pgpool[2873]: [830-1] 2016-06-06 09:37:06: pid 2873: DEBUG: reading message length Jun 6 09:37:06 otp3 pgpool[2873]: [830-2] 2016-06-06 09:37:06: pid 2873: DETAIL: slot: 0 length: 5 Jun 6 09:37:06 otp3 pgpool[2873]: [830-3] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_auth.c:1107 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: reading message length Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DETAIL: slot: 0 length: 5 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_auth.c:1107 Jun 6 09:37:06 otp3 pgpool[2873]: [831-1] 2016-06-06 09:37:06: pid 2873: DEBUG: processing ReadyForQuery Jun 6 09:37:06 otp3 pgpool[2873]: [831-2] 2016-06-06 09:37:06: pid 2873: DETAIL: transaction state 'I'(49) Jun 6 09:37:06 otp3 pgpool[2873]: [831-3] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_proto_modules.c:1612 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: processing ReadyForQuery Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DETAIL: transaction state 'I'(49) Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_proto_modules.c:1612 Jun 6 09:37:06 otp3 pgpool[2873]: [832-1] 2016-06-06 09:37:06: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:06 otp3 pgpool[2873]: [832-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:06 otp3 pgpool[2873]: [833-1] 2016-06-06 09:37:06: pid 2873: DEBUG: processing frontend response Jun 6 09:37:06 otp3 pgpool[2873]: [833-2] 2016-06-06 09:37:06: pid 2873: DETAIL: received kind 'P'(50) from frontend Jun 6 09:37:06 otp3 pgpool[2873]: [833-3] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: processing frontend response Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DETAIL: received kind 'P'(50) from frontend Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:06 otp3 pgpool[2873]: [834-1] 2016-06-06 09:37:06: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:06 otp3 pgpool[2873]: [834-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:37:06 otp3 pgpool[2873]: [835-1] 2016-06-06 09:37:06: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:06 otp3 pgpool[2873]: [835-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:37:06 otp3 pgpool[2873]: [836-1] 2016-06-06 09:37:06: pid 2873: DEBUG: Parse: statement name <> Jun 6 09:37:06 otp3 pgpool[2873]: [836-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_proto_modules.c:817 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: Parse: statement name <> Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_proto_modules.c:817 Jun 6 09:37:06 otp3 pgpool[2873]: [837-1] 2016-06-06 09:37:06: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:06 otp3 pgpool[2873]: [837-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:06 otp3 pgpool[2873]: [838-1] 2016-06-06 09:37:06: pid 2873: DEBUG: pool_write: to backend: kind:S Jun 6 09:37:06 otp3 pgpool[2873]: [838-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: pool_write: to backend: kind:S Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:06 otp3 pgpool[2873]: [839-1] 2016-06-06 09:37:06: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:06 otp3 pgpool[2873]: [839-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:06 otp3 pgpool[2873]: [840-1] 2016-06-06 09:37:06: pid 2873: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:37:06 otp3 pgpool[2873]: [840-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:37:06 otp3 pgpool[2873]: [841-1] 2016-06-06 09:37:06: pid 2873: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:37:06 otp3 pgpool[2873]: [841-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:310 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:310 Jun 6 09:37:06 otp3 pgpool[2873]: [842-1] 2016-06-06 09:37:06: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:06 otp3 pgpool[2873]: [842-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:06 otp3 pgpool[2873]: [843-1] 2016-06-06 09:37:06: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:06 otp3 pgpool[2873]: [843-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:06 otp3 pgpool[2873]: [844-1] 2016-06-06 09:37:06: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:06 otp3 pgpool[2873]: [844-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:06 otp3 pgpool[2873]: [845-1] 2016-06-06 09:37:06: pid 2873: DEBUG: reading message length Jun 6 09:37:06 otp3 pgpool[2873]: [845-2] 2016-06-06 09:37:06: pid 2873: DETAIL: slot: 0 length: 5 Jun 6 09:37:06 otp3 pgpool[2873]: [845-3] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_auth.c:1107 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: reading message length Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DETAIL: slot: 0 length: 5 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_auth.c:1107 Jun 6 09:37:06 otp3 pgpool[2873]: [846-1] 2016-06-06 09:37:06: pid 2873: DEBUG: processing ReadyForQuery Jun 6 09:37:06 otp3 pgpool[2873]: [846-2] 2016-06-06 09:37:06: pid 2873: DETAIL: transaction state 'I'(49) Jun 6 09:37:06 otp3 pgpool[2873]: [846-3] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_proto_modules.c:1612 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: processing ReadyForQuery Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DETAIL: transaction state 'I'(49) Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_proto_modules.c:1612 Jun 6 09:37:06 otp3 pgpool[2873]: [847-1] 2016-06-06 09:37:06: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:06 otp3 pgpool[2873]: [847-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:06 otp3 pgpool[2873]: [848-1] 2016-06-06 09:37:06: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:06 otp3 pgpool[2873]: [848-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:06 otp3 pgpool[2873]: [849-1] 2016-06-06 09:37:06: pid 2873: DEBUG: Parse: waiting for master completing the query Jun 6 09:37:06 otp3 pgpool[2873]: [849-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_proto_modules.c:1064 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: Parse: waiting for master completing the query Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_proto_modules.c:1064 Jun 6 09:37:06 otp3 pgpool[2873]: [850-1] 2016-06-06 09:37:06: pid 2873: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:37:06 otp3 pgpool[2873]: [850-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_query_context.c:854 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_query_context.c:854 Jun 6 09:37:06 otp3 pgpool[2873]: [851-1] 2016-06-06 09:37:06: pid 2873: DEBUG: pool_write: to backend: kind:P Jun 6 09:37:06 otp3 pgpool[2873]: [851-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: pool_write: to backend: kind:P Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:06 otp3 pgpool[2873]: [852-1] 2016-06-06 09:37:06: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:06 otp3 pgpool[2873]: [852-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:06 otp3 pgpool[2873]: [853-1] 2016-06-06 09:37:06: pid 2873: DEBUG: waiting for query response Jun 6 09:37:06 otp3 pgpool[2873]: [853-2] 2016-06-06 09:37:06: pid 2873: DETAIL: waiting for backend:0 to complete the query Jun 6 09:37:06 otp3 pgpool[2873]: [853-3] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_process_query.c:479 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: waiting for query response Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DETAIL: waiting for backend:0 to complete the query Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_process_query.c:479 Jun 6 09:37:06 otp3 pgpool[2873]: [854-1] 2016-06-06 09:37:06: pid 2873: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:37:06 otp3 pgpool[2873]: [854-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:37:06 otp3 pgpool[2873]: [855-1] 2016-06-06 09:37:06: pid 2873: DEBUG: detect error: kind: 1 Jun 6 09:37:06 otp3 pgpool[2873]: [855-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: detect error: kind: 1 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:37:06 otp3 pgpool[2873]: [856-1] 2016-06-06 09:37:06: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:06 otp3 pgpool[2873]: [856-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:06 otp3 pgpool[2873]: [857-1] 2016-06-06 09:37:06: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:06 otp3 pgpool[2873]: [857-2] 2016-06-06 09:37:06: pid 2873: DETAIL: backend:0 of 2 kind = '1' Jun 6 09:37:06 otp3 pgpool[2873]: [857-3] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DETAIL: backend:0 of 2 kind = '1' Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:06 otp3 pgpool[2873]: [858-1] 2016-06-06 09:37:06: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:06 otp3 pgpool[2873]: [858-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:06 otp3 pgpool[2873]: [859-1] 2016-06-06 09:37:06: pid 2873: DEBUG: processing backend response Jun 6 09:37:06 otp3 pgpool[2873]: [859-2] 2016-06-06 09:37:06: pid 2873: DETAIL: received kind '1'(31) from backend Jun 6 09:37:06 otp3 pgpool[2873]: [859-3] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: processing backend response Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DETAIL: received kind '1'(31) from backend Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:06 otp3 pgpool[2873]: [860-1] 2016-06-06 09:37:06: pid 2873: DEBUG: called by pool_add_sent_message: sent message: address: 2406c80 kind: P name: == Jun 6 09:37:06 otp3 pgpool[2873]: [860-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:436 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: called by pool_add_sent_message: sent message: address: 2406c80 kind: P name: == Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:436 Jun 6 09:37:06 otp3 pgpool[2873]: [861-1] 2016-06-06 09:37:06: pid 2873: DEBUG: adding sent message to list Jun 6 09:37:06 otp3 pgpool[2873]: [861-2] 2016-06-06 09:37:06: pid 2873: DETAIL: prepared statement "" already exists Jun 6 09:37:06 otp3 pgpool[2873]: [861-3] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:516 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: adding sent message to list Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DETAIL: prepared statement "" already exists Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:516 Jun 6 09:37:06 otp3 pgpool[2873]: [862-1] 2016-06-06 09:37:06: pid 2873: DEBUG: called by pool_sent_message_destroy: sent message: address: 2406d18 kind: P name: == Jun 6 09:37:06 otp3 pgpool[2873]: [862-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:436 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: called by pool_sent_message_destroy: sent message: address: 2406d18 kind: P name: == Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:436 Jun 6 09:37:06 otp3 pgpool[2873]: [863-1] 2016-06-06 09:37:06: pid 2873: DEBUG: checking if query context can be safely destroyed Jun 6 09:37:06 otp3 pgpool[2873]: [863-2] 2016-06-06 09:37:06: pid 2873: DETAIL: query context 0x802482830 is still used 2 times. query:"select clhost0_.host_id as host_id1_2_, clhost0_.host_name as host_nam2_2_, clhost0_.is_https as is_https3_2_, clhost0_.tenant_id as tenant_i4_2_ from cl_host clhost0_ where clhost0_.host_name=$1" Jun 6 09:37:06 otp3 pgpool[2873]: [863-3] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:873 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: checking if query context can be safely destroyed Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DETAIL: query context 0x802482830 is still used 2 times. query:"select clhost0_.host_id as host_id1_2_, clhost0_.host_name as host_nam2_2_, clhost0_.is_https as is_https3_2_, clhost0_.tenant_id as tenant_i4_2_ from cl_host clhost0_ where clhost0_.host_name=$1" Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:873 Jun 6 09:37:06 otp3 pgpool[2873]: [864-1] 2016-06-06 09:37:06: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:06 otp3 pgpool[2873]: [864-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:06 otp3 pgpool[2873]: [865-1] 2016-06-06 09:37:06: pid 2873: DEBUG: SimpleForwardToFrontend: packet:1 length:0 Jun 6 09:37:06 otp3 pgpool[2873]: [865-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_process_query.c:792 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: SimpleForwardToFrontend: packet:1 length:0 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_process_query.c:792 Jun 6 09:37:06 otp3 pgpool[2873]: [866-1] 2016-06-06 09:37:06: pid 2873: DEBUG: session context: setting command success. DONE Jun 6 09:37:06 otp3 pgpool[2873]: [866-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:741 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: session context: setting command success. DONE Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:741 Jun 6 09:37:06 otp3 pgpool[2873]: [867-1] 2016-06-06 09:37:06: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:06 otp3 pgpool[2873]: [867-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:06 otp3 pgpool[2873]: [868-1] 2016-06-06 09:37:06: pid 2873: DEBUG: processing frontend response Jun 6 09:37:06 otp3 pgpool[2873]: [868-2] 2016-06-06 09:37:06: pid 2873: DETAIL: received kind 'B'(42) from frontend Jun 6 09:37:06 otp3 pgpool[2873]: [868-3] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: processing frontend response Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DETAIL: received kind 'B'(42) from frontend Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:06 otp3 pgpool[2873]: [869-1] 2016-06-06 09:37:06: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:06 otp3 pgpool[2873]: [869-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:37:06 otp3 pgpool[2873]: [870-1] 2016-06-06 09:37:06: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:06 otp3 pgpool[2873]: [870-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:37:06 otp3 pgpool[2873]: [871-1] 2016-06-06 09:37:06: pid 2873: DEBUG: Bind: checking strict query Jun 6 09:37:06 otp3 pgpool[2873]: [871-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_proto_modules.c:1211 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: Bind: checking strict query Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_proto_modules.c:1211 Jun 6 09:37:06 otp3 pgpool[2873]: [872-1] 2016-06-06 09:37:06: pid 2873: DEBUG: Bind: checking insert lock Jun 6 09:37:06 otp3 pgpool[2873]: [872-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_proto_modules.c:1221 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: Bind: checking insert lock Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_proto_modules.c:1221 Jun 6 09:37:06 otp3 pgpool[2873]: [873-1] 2016-06-06 09:37:06: pid 2873: DEBUG: Bind: waiting for master completing the query Jun 6 09:37:06 otp3 pgpool[2873]: [873-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_proto_modules.c:1237 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: Bind: waiting for master completing the query Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_proto_modules.c:1237 Jun 6 09:37:06 otp3 pgpool[2873]: [874-1] 2016-06-06 09:37:06: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:06 otp3 pgpool[2873]: [874-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:06 otp3 pgpool[2873]: [875-1] 2016-06-06 09:37:06: pid 2873: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:37:06 otp3 pgpool[2873]: [875-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_query_context.c:854 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_query_context.c:854 Jun 6 09:37:06 otp3 pgpool[2873]: [876-1] 2016-06-06 09:37:06: pid 2873: DEBUG: pool_write: to backend: kind:B Jun 6 09:37:06 otp3 pgpool[2873]: [876-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: pool_write: to backend: kind:B Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:06 otp3 pgpool[2873]: [877-1] 2016-06-06 09:37:06: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:06 otp3 pgpool[2873]: [877-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:06 otp3 pgpool[2873]: [878-1] 2016-06-06 09:37:06: pid 2873: DEBUG: waiting for query response Jun 6 09:37:06 otp3 pgpool[2873]: [878-2] 2016-06-06 09:37:06: pid 2873: DETAIL: waiting for backend:0 to complete the query Jun 6 09:37:06 otp3 pgpool[2873]: [878-3] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_process_query.c:479 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: waiting for query response Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DETAIL: waiting for backend:0 to complete the query Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_process_query.c:479 Jun 6 09:37:06 otp3 pgpool[2873]: [879-1] 2016-06-06 09:37:06: pid 2873: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:37:06 otp3 pgpool[2873]: [879-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:37:06 otp3 pgpool[2873]: [880-1] 2016-06-06 09:37:06: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:06 otp3 pgpool[2873]: [880-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:06 otp3 pgpool[2873]: [881-1] 2016-06-06 09:37:06: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:06 otp3 pgpool[2873]: [881-2] 2016-06-06 09:37:06: pid 2873: DETAIL: backend:0 of 2 kind = '2' Jun 6 09:37:06 otp3 pgpool[2873]: [881-3] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DETAIL: backend:0 of 2 kind = '2' Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:06 otp3 pgpool[2873]: [882-1] 2016-06-06 09:37:06: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:06 otp3 pgpool[2873]: [882-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:06 otp3 pgpool[2873]: [883-1] 2016-06-06 09:37:06: pid 2873: DEBUG: processing backend response Jun 6 09:37:06 otp3 pgpool[2873]: [883-2] 2016-06-06 09:37:06: pid 2873: DETAIL: received kind '2'(32) from backend Jun 6 09:37:06 otp3 pgpool[2873]: [883-3] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: processing backend response Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DETAIL: received kind '2'(32) from backend Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:06 otp3 pgpool[2873]: [884-1] 2016-06-06 09:37:06: pid 2873: DEBUG: called by pool_add_sent_message: sent message: address: 2406d18 kind: B name: == Jun 6 09:37:06 otp3 pgpool[2873]: [884-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:436 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: called by pool_add_sent_message: sent message: address: 2406d18 kind: B name: == Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:436 Jun 6 09:37:06 otp3 pgpool[2873]: [885-1] 2016-06-06 09:37:06: pid 2873: DEBUG: adding sent message to list Jun 6 09:37:06 otp3 pgpool[2873]: [885-2] 2016-06-06 09:37:06: pid 2873: DETAIL: portal "" already exists Jun 6 09:37:06 otp3 pgpool[2873]: [885-3] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:512 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: adding sent message to list Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DETAIL: portal "" already exists Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:512 Jun 6 09:37:06 otp3 pgpool[2873]: [886-1] 2016-06-06 09:37:06: pid 2873: DEBUG: called by pool_sent_message_destroy: sent message: address: 2406d98 kind: B name: == Jun 6 09:37:06 otp3 pgpool[2873]: [886-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:436 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: called by pool_sent_message_destroy: sent message: address: 2406d98 kind: B name: == Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:436 Jun 6 09:37:06 otp3 pgpool[2873]: [887-1] 2016-06-06 09:37:06: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:06 otp3 pgpool[2873]: [887-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:06 otp3 pgpool[2873]: [888-1] 2016-06-06 09:37:06: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:06 otp3 pgpool[2873]: [888-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:06 otp3 pgpool[2873]: [889-1] 2016-06-06 09:37:06: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:06 otp3 pgpool[2873]: [889-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:06 otp3 pgpool[2873]: [890-1] 2016-06-06 09:37:06: pid 2873: DEBUG: SimpleForwardToFrontend: packet:2 length:0 Jun 6 09:37:06 otp3 pgpool[2873]: [890-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_process_query.c:792 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: SimpleForwardToFrontend: packet:2 length:0 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_process_query.c:792 Jun 6 09:37:06 otp3 pgpool[2873]: [891-1] 2016-06-06 09:37:06: pid 2873: DEBUG: session context: setting command success. DONE Jun 6 09:37:06 otp3 pgpool[2873]: [891-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:741 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: session context: setting command success. DONE Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:741 Jun 6 09:37:06 otp3 pgpool[2873]: [892-1] 2016-06-06 09:37:06: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:06 otp3 pgpool[2873]: [892-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:06 otp3 pgpool[2873]: [893-1] 2016-06-06 09:37:06: pid 2873: DEBUG: processing frontend response Jun 6 09:37:06 otp3 pgpool[2873]: [893-2] 2016-06-06 09:37:06: pid 2873: DETAIL: received kind 'D'(44) from frontend Jun 6 09:37:06 otp3 pgpool[2873]: [893-3] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: processing frontend response Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DETAIL: received kind 'D'(44) from frontend Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:06 otp3 pgpool[2873]: [894-1] 2016-06-06 09:37:06: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:06 otp3 pgpool[2873]: [894-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:37:06 otp3 pgpool[2873]: [895-1] 2016-06-06 09:37:06: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:06 otp3 pgpool[2873]: [895-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:37:06 otp3 pgpool[2873]: [896-1] 2016-06-06 09:37:06: pid 2873: DEBUG: Describe: waiting for master completing the query Jun 6 09:37:06 otp3 pgpool[2873]: [896-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_proto_modules.c:1310 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: Describe: waiting for master completing the query Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_proto_modules.c:1310 Jun 6 09:37:06 otp3 pgpool[2873]: [897-1] 2016-06-06 09:37:06: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:06 otp3 pgpool[2873]: [897-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:06 otp3 pgpool[2873]: [898-1] 2016-06-06 09:37:06: pid 2873: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:37:06 otp3 pgpool[2873]: [898-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_query_context.c:854 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_query_context.c:854 Jun 6 09:37:06 otp3 pgpool[2873]: [899-1] 2016-06-06 09:37:06: pid 2873: DEBUG: pool_write: to backend: kind:D Jun 6 09:37:06 otp3 pgpool[2873]: [899-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: pool_write: to backend: kind:D Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:06 otp3 pgpool[2873]: [900-1] 2016-06-06 09:37:06: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:06 otp3 pgpool[2873]: [900-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:06 otp3 pgpool[2873]: [901-1] 2016-06-06 09:37:06: pid 2873: DEBUG: waiting for query response Jun 6 09:37:06 otp3 pgpool[2873]: [901-2] 2016-06-06 09:37:06: pid 2873: DETAIL: waiting for backend:0 to complete the query Jun 6 09:37:06 otp3 pgpool[2873]: [901-3] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_process_query.c:479 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: waiting for query response Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DETAIL: waiting for backend:0 to complete the query Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_process_query.c:479 Jun 6 09:37:06 otp3 pgpool[2873]: [902-1] 2016-06-06 09:37:06: pid 2873: DEBUG: pool_read: read 976 bytes from backend 0 Jun 6 09:37:06 otp3 pgpool[2873]: [902-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: pool_read: read 976 bytes from backend 0 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:37:06 otp3 pgpool[2873]: [903-1] 2016-06-06 09:37:06: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:06 otp3 pgpool[2873]: [903-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:06 otp3 pgpool[2873]: [904-1] 2016-06-06 09:37:06: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:06 otp3 pgpool[2873]: [904-2] 2016-06-06 09:37:06: pid 2873: DETAIL: backend:0 of 2 kind = 'T' Jun 6 09:37:06 otp3 pgpool[2873]: [904-3] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DETAIL: backend:0 of 2 kind = 'T' Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:06 otp3 pgpool[2873]: [905-1] 2016-06-06 09:37:06: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:06 otp3 pgpool[2873]: [905-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:06 otp3 pgpool[2873]: [906-1] 2016-06-06 09:37:06: pid 2873: DEBUG: processing backend response Jun 6 09:37:06 otp3 pgpool[2873]: [906-2] 2016-06-06 09:37:06: pid 2873: DETAIL: received kind 'T'(54) from backend Jun 6 09:37:06 otp3 pgpool[2873]: [906-3] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: processing backend response Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DETAIL: received kind 'T'(54) from backend Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:06 otp3 pgpool[2873]: [907-1] 2016-06-06 09:37:06: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:06 otp3 pgpool[2873]: [907-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:06 otp3 pgpool[2873]: [908-1] 2016-06-06 09:37:06: pid 2873: DEBUG: SimpleForwardToFrontend: packet:T length:971 Jun 6 09:37:06 otp3 pgpool[2873]: [908-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_process_query.c:792 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: SimpleForwardToFrontend: packet:T length:971 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_process_query.c:792 Jun 6 09:37:06 otp3 pgpool[2873]: [909-1] 2016-06-06 09:37:06: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:06 otp3 pgpool[2873]: [909-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:06 otp3 pgpool[2873]: [910-1] 2016-06-06 09:37:06: pid 2873: DEBUG: processing frontend response Jun 6 09:37:06 otp3 pgpool[2873]: [910-2] 2016-06-06 09:37:06: pid 2873: DETAIL: received kind 'E'(45) from frontend Jun 6 09:37:06 otp3 pgpool[2873]: [910-3] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: processing frontend response Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DETAIL: received kind 'E'(45) from frontend Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:06 otp3 pgpool[2873]: [911-1] 2016-06-06 09:37:06: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:06 otp3 pgpool[2873]: [911-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:37:06 otp3 pgpool[2873]: [912-1] 2016-06-06 09:37:06: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:06 otp3 pgpool[2873]: [912-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:37:06 otp3 pgpool[2873]: [913-1] 2016-06-06 09:37:06: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:06 otp3 pgpool[2873]: [913-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:06 otp3 pgpool[2873]: [914-1] 2016-06-06 09:37:06: pid 2873: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:37:06 otp3 pgpool[2873]: [914-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_query_context.c:854 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_query_context.c:854 Jun 6 09:37:06 otp3 pgpool[2873]: [915-1] 2016-06-06 09:37:06: pid 2873: DEBUG: pool_write: to backend: kind:E Jun 6 09:37:06 otp3 pgpool[2873]: [915-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: pool_write: to backend: kind:E Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:06 otp3 pgpool[2873]: [916-1] 2016-06-06 09:37:06: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:06 otp3 pgpool[2873]: [916-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:06 otp3 pgpool[2873]: [917-1] 2016-06-06 09:37:06: pid 2873: DEBUG: waiting for query response Jun 6 09:37:06 otp3 pgpool[2873]: [917-2] 2016-06-06 09:37:06: pid 2873: DETAIL: waiting for backend:0 to complete the query Jun 6 09:37:06 otp3 pgpool[2873]: [917-3] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_process_query.c:479 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: waiting for query response Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DETAIL: waiting for backend:0 to complete the query Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_process_query.c:479 Jun 6 09:37:06 otp3 pgpool[2873]: [918-1] 2016-06-06 09:37:06: pid 2873: DEBUG: pool_read: read 737 bytes from backend 0 Jun 6 09:37:06 otp3 pgpool[2873]: [918-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: pool_read: read 737 bytes from backend 0 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:37:06 otp3 pgpool[2873]: [919-1] 2016-06-06 09:37:06: pid 2873: DEBUG: detect error: kind: D Jun 6 09:37:06 otp3 pgpool[2873]: [919-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: detect error: kind: D Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:37:06 otp3 pgpool[2873]: [920-1] 2016-06-06 09:37:06: pid 2873: DEBUG: detect error: kind: D Jun 6 09:37:06 otp3 pgpool[2873]: [920-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: detect error: kind: D Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:37:06 otp3 pgpool[2873]: [921-1] 2016-06-06 09:37:06: pid 2873: DEBUG: detect error: kind: D Jun 6 09:37:06 otp3 pgpool[2873]: [921-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: detect error: kind: D Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:37:06 otp3 pgpool[2873]: [922-1] 2016-06-06 09:37:06: pid 2873: DEBUG: detect error: kind: D Jun 6 09:37:06 otp3 pgpool[2873]: [922-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: detect error: kind: D Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:37:06 otp3 pgpool[2873]: [923-1] 2016-06-06 09:37:06: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:06 otp3 pgpool[2873]: [923-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:06 otp3 pgpool[2873]: [924-1] 2016-06-06 09:37:06: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:06 otp3 pgpool[2873]: [924-2] 2016-06-06 09:37:06: pid 2873: DETAIL: backend:0 of 2 kind = 'D' Jun 6 09:37:06 otp3 pgpool[2873]: [924-3] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DETAIL: backend:0 of 2 kind = 'D' Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:06 otp3 pgpool[2873]: [925-1] 2016-06-06 09:37:06: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:06 otp3 pgpool[2873]: [925-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:06 otp3 pgpool[2873]: [926-1] 2016-06-06 09:37:06: pid 2873: DEBUG: processing backend response Jun 6 09:37:06 otp3 pgpool[2873]: [926-2] 2016-06-06 09:37:06: pid 2873: DETAIL: received kind 'D'(44) from backend Jun 6 09:37:06 otp3 pgpool[2873]: [926-3] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: processing backend response Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DETAIL: received kind 'D'(44) from backend Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:06 otp3 pgpool[2873]: [927-1] 2016-06-06 09:37:06: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:06 otp3 pgpool[2873]: [927-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:06 otp3 pgpool[2873]: [928-1] 2016-06-06 09:37:06: pid 2873: DEBUG: SimpleForwardToFrontend: packet:D length:238 Jun 6 09:37:06 otp3 pgpool[2873]: [928-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_process_query.c:792 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: SimpleForwardToFrontend: packet:D length:238 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_process_query.c:792 Jun 6 09:37:06 otp3 pgpool[2873]: [929-1] 2016-06-06 09:37:06: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:06 otp3 pgpool[2873]: [929-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:06 otp3 pgpool[2873]: [930-1] 2016-06-06 09:37:06: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:06 otp3 pgpool[2873]: [930-2] 2016-06-06 09:37:06: pid 2873: DETAIL: backend:0 of 2 kind = 'D' Jun 6 09:37:06 otp3 pgpool[2873]: [930-3] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DETAIL: backend:0 of 2 kind = 'D' Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:06 otp3 pgpool[2873]: [931-1] 2016-06-06 09:37:06: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:06 otp3 pgpool[2873]: [931-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:06 otp3 pgpool[2873]: [932-1] 2016-06-06 09:37:06: pid 2873: DEBUG: processing backend response Jun 6 09:37:06 otp3 pgpool[2873]: [932-2] 2016-06-06 09:37:06: pid 2873: DETAIL: received kind 'D'(44) from backend Jun 6 09:37:06 otp3 pgpool[2873]: [932-3] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: processing backend response Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DETAIL: received kind 'D'(44) from backend Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:06 otp3 pgpool[2873]: [933-1] 2016-06-06 09:37:06: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:06 otp3 pgpool[2873]: [933-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:06 otp3 pgpool[2873]: [934-1] 2016-06-06 09:37:06: pid 2873: DEBUG: SimpleForwardToFrontend: packet:D length:239 Jun 6 09:37:06 otp3 pgpool[2873]: [934-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_process_query.c:792 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: SimpleForwardToFrontend: packet:D length:239 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_process_query.c:792 Jun 6 09:37:06 otp3 pgpool[2873]: [935-1] 2016-06-06 09:37:06: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:06 otp3 pgpool[2873]: [935-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:06 otp3 pgpool[2873]: [936-1] 2016-06-06 09:37:06: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:06 otp3 pgpool[2873]: [936-2] 2016-06-06 09:37:06: pid 2873: DETAIL: backend:0 of 2 kind = 'D' Jun 6 09:37:06 otp3 pgpool[2873]: [936-3] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DETAIL: backend:0 of 2 kind = 'D' Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:06 otp3 pgpool[2873]: [937-1] 2016-06-06 09:37:06: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:06 otp3 pgpool[2873]: [937-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:06 otp3 pgpool[2873]: [938-1] 2016-06-06 09:37:06: pid 2873: DEBUG: processing backend response Jun 6 09:37:06 otp3 pgpool[2873]: [938-2] 2016-06-06 09:37:06: pid 2873: DETAIL: received kind 'D'(44) from backend Jun 6 09:37:06 otp3 pgpool[2873]: [938-3] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: processing backend response Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DETAIL: received kind 'D'(44) from backend Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:06 otp3 pgpool[2873]: [939-1] 2016-06-06 09:37:06: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:06 otp3 pgpool[2873]: [939-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:06 otp3 pgpool[2873]: [940-1] 2016-06-06 09:37:06: pid 2873: DEBUG: SimpleForwardToFrontend: packet:D length:231 Jun 6 09:37:06 otp3 pgpool[2873]: [940-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_process_query.c:792 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: SimpleForwardToFrontend: packet:D length:231 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_process_query.c:792 Jun 6 09:37:06 otp3 pgpool[2873]: [941-1] 2016-06-06 09:37:06: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:06 otp3 pgpool[2873]: [941-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:06 otp3 pgpool[2873]: [942-1] 2016-06-06 09:37:06: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:06 otp3 pgpool[2873]: [942-2] 2016-06-06 09:37:06: pid 2873: DETAIL: backend:0 of 2 kind = 'C' Jun 6 09:37:06 otp3 pgpool[2873]: [942-3] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DETAIL: backend:0 of 2 kind = 'C' Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:06 otp3 pgpool[2873]: [943-1] 2016-06-06 09:37:06: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:06 otp3 pgpool[2873]: [943-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:06 otp3 pgpool[2873]: [944-1] 2016-06-06 09:37:06: pid 2873: DEBUG: processing backend response Jun 6 09:37:06 otp3 pgpool[2873]: [944-2] 2016-06-06 09:37:06: pid 2873: DETAIL: received kind 'C'(43) from backend Jun 6 09:37:06 otp3 pgpool[2873]: [944-3] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: processing backend response Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DETAIL: received kind 'C'(43) from backend Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:06 otp3 pgpool[2873]: [945-1] 2016-06-06 09:37:06: pid 2873: DEBUG: session context: setting command success. DONE Jun 6 09:37:06 otp3 pgpool[2873]: [945-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:741 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: session context: setting command success. DONE Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:741 Jun 6 09:37:06 otp3 pgpool[2873]: [946-1] 2016-06-06 09:37:06: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:06 otp3 pgpool[2873]: [946-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:06 otp3 pgpool[2873]: [947-1] 2016-06-06 09:37:06: pid 2873: DEBUG: processing frontend response Jun 6 09:37:06 otp3 pgpool[2873]: [947-2] 2016-06-06 09:37:06: pid 2873: DETAIL: received kind 'S'(53) from frontend Jun 6 09:37:06 otp3 pgpool[2873]: [947-3] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: processing frontend response Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DETAIL: received kind 'S'(53) from frontend Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:06 otp3 pgpool[2873]: [948-1] 2016-06-06 09:37:06: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:06 otp3 pgpool[2873]: [948-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:37:06 otp3 pgpool[2873]: [949-1] 2016-06-06 09:37:06: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:06 otp3 pgpool[2873]: [949-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:37:06 otp3 pgpool[2873]: [950-1] 2016-06-06 09:37:06: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:06 otp3 pgpool[2873]: [950-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:06 otp3 pgpool[2873]: [951-1] 2016-06-06 09:37:06: pid 2873: DEBUG: pool_write: to backend: kind:S Jun 6 09:37:06 otp3 pgpool[2873]: [951-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: pool_write: to backend: kind:S Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:06 otp3 pgpool[2873]: [952-1] 2016-06-06 09:37:06: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:06 otp3 pgpool[2873]: [952-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:06 otp3 pgpool[2873]: [953-1] 2016-06-06 09:37:06: pid 2873: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:37:06 otp3 pgpool[2873]: [953-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:37:06 otp3 pgpool[2873]: [954-1] 2016-06-06 09:37:06: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:06 otp3 pgpool[2873]: [954-2] 2016-06-06 09:37:06: pid 2873: DETAIL: backend:0 of 2 kind = 'Z' Jun 6 09:37:06 otp3 pgpool[2873]: [954-3] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DETAIL: backend:0 of 2 kind = 'Z' Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:06 otp3 pgpool[2873]: [955-1] 2016-06-06 09:37:06: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:06 otp3 pgpool[2873]: [955-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:06 otp3 pgpool[2873]: [956-1] 2016-06-06 09:37:06: pid 2873: DEBUG: processing backend response Jun 6 09:37:06 otp3 pgpool[2873]: [956-2] 2016-06-06 09:37:06: pid 2873: DETAIL: received kind 'Z'(5a) from backend Jun 6 09:37:06 otp3 pgpool[2873]: [956-3] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: processing backend response Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DETAIL: received kind 'Z'(5a) from backend Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:06 otp3 pgpool[2873]: [957-1] 2016-06-06 09:37:06: pid 2873: DEBUG: processing backend response Jun 6 09:37:06 otp3 pgpool[2873]: [957-2] 2016-06-06 09:37:06: pid 2873: DETAIL: Ready For Query received Jun 6 09:37:06 otp3 pgpool[2873]: [957-3] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_proto_modules.c:2442 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: processing backend response Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DETAIL: Ready For Query received Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_proto_modules.c:2442 Jun 6 09:37:06 otp3 pgpool[2873]: [958-1] 2016-06-06 09:37:06: pid 2873: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:37:06 otp3 pgpool[2873]: [958-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:310 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:310 Jun 6 09:37:06 otp3 pgpool[2873]: [959-1] 2016-06-06 09:37:06: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:06 otp3 pgpool[2873]: [959-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:06 otp3 pgpool[2873]: [960-1] 2016-06-06 09:37:06: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:06 otp3 pgpool[2873]: [960-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:06 otp3 pgpool[2873]: [961-1] 2016-06-06 09:37:06: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:06 otp3 pgpool[2873]: [961-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:06 otp3 pgpool[2873]: [962-1] 2016-06-06 09:37:06: pid 2873: DEBUG: reading message length Jun 6 09:37:06 otp3 pgpool[2873]: [962-2] 2016-06-06 09:37:06: pid 2873: DETAIL: slot: 0 length: 5 Jun 6 09:37:06 otp3 pgpool[2873]: [962-3] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_auth.c:1107 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: reading message length Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DETAIL: slot: 0 length: 5 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_auth.c:1107 Jun 6 09:37:06 otp3 pgpool[2873]: [963-1] 2016-06-06 09:37:06: pid 2873: DEBUG: processing ReadyForQuery Jun 6 09:37:06 otp3 pgpool[2873]: [963-2] 2016-06-06 09:37:06: pid 2873: DETAIL: transaction state 'I'(49) Jun 6 09:37:06 otp3 pgpool[2873]: [963-3] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_proto_modules.c:1612 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: processing ReadyForQuery Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DETAIL: transaction state 'I'(49) Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_proto_modules.c:1612 Jun 6 09:37:06 otp3 pgpool[2873]: [964-1] 2016-06-06 09:37:06: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:06 otp3 pgpool[2873]: [964-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:06 otp3 pgpool[2873]: [965-1] 2016-06-06 09:37:06: pid 2873: DEBUG: processing frontend response Jun 6 09:37:06 otp3 pgpool[2873]: [965-2] 2016-06-06 09:37:06: pid 2873: DETAIL: received kind 'P'(50) from frontend Jun 6 09:37:06 otp3 pgpool[2873]: [965-3] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: processing frontend response Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DETAIL: received kind 'P'(50) from frontend Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:06 otp3 pgpool[2873]: [966-1] 2016-06-06 09:37:06: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:06 otp3 pgpool[2873]: [966-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:37:06 otp3 pgpool[2873]: [967-1] 2016-06-06 09:37:06: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:06 otp3 pgpool[2873]: [967-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:37:06 otp3 pgpool[2873]: [968-1] 2016-06-06 09:37:06: pid 2873: DEBUG: Parse: statement name <> Jun 6 09:37:06 otp3 pgpool[2873]: [968-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_proto_modules.c:817 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: Parse: statement name <> Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_proto_modules.c:817 Jun 6 09:37:06 otp3 pgpool[2873]: [969-1] 2016-06-06 09:37:06: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:06 otp3 pgpool[2873]: [969-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:06 otp3 pgpool[2873]: [970-1] 2016-06-06 09:37:06: pid 2873: DEBUG: pool_write: to backend: kind:S Jun 6 09:37:06 otp3 pgpool[2873]: [970-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: pool_write: to backend: kind:S Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:06 otp3 pgpool[2873]: [971-1] 2016-06-06 09:37:06: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:06 otp3 pgpool[2873]: [971-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:06 otp3 pgpool[2873]: [972-1] 2016-06-06 09:37:06: pid 2873: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:37:06 otp3 pgpool[2873]: [972-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:37:06 otp3 pgpool[2873]: [973-1] 2016-06-06 09:37:06: pid 2873: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:37:06 otp3 pgpool[2873]: [973-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:310 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:310 Jun 6 09:37:06 otp3 pgpool[2873]: [974-1] 2016-06-06 09:37:06: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:06 otp3 pgpool[2873]: [974-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:06 otp3 pgpool[2873]: [975-1] 2016-06-06 09:37:06: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:06 otp3 pgpool[2873]: [975-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:06 otp3 pgpool[2873]: [976-1] 2016-06-06 09:37:06: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:06 otp3 pgpool[2873]: [976-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:06 otp3 pgpool[2873]: [977-1] 2016-06-06 09:37:06: pid 2873: DEBUG: reading message length Jun 6 09:37:06 otp3 pgpool[2873]: [977-2] 2016-06-06 09:37:06: pid 2873: DETAIL: slot: 0 length: 5 Jun 6 09:37:06 otp3 pgpool[2873]: [977-3] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_auth.c:1107 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: reading message length Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DETAIL: slot: 0 length: 5 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_auth.c:1107 Jun 6 09:37:06 otp3 pgpool[2873]: [978-1] 2016-06-06 09:37:06: pid 2873: DEBUG: processing ReadyForQuery Jun 6 09:37:06 otp3 pgpool[2873]: [978-2] 2016-06-06 09:37:06: pid 2873: DETAIL: transaction state 'I'(49) Jun 6 09:37:06 otp3 pgpool[2873]: [978-3] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_proto_modules.c:1612 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: processing ReadyForQuery Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DETAIL: transaction state 'I'(49) Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_proto_modules.c:1612 Jun 6 09:37:06 otp3 pgpool[2873]: [979-1] 2016-06-06 09:37:06: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:06 otp3 pgpool[2873]: [979-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:06 otp3 pgpool[2873]: [980-1] 2016-06-06 09:37:06: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:06 otp3 pgpool[2873]: [980-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:06 otp3 pgpool[2873]: [981-1] 2016-06-06 09:37:06: pid 2873: DEBUG: Parse: waiting for master completing the query Jun 6 09:37:06 otp3 pgpool[2873]: [981-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_proto_modules.c:1064 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: Parse: waiting for master completing the query Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_proto_modules.c:1064 Jun 6 09:37:06 otp3 pgpool[2873]: [982-1] 2016-06-06 09:37:06: pid 2873: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:37:06 otp3 pgpool[2873]: [982-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_query_context.c:854 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_query_context.c:854 Jun 6 09:37:06 otp3 pgpool[2873]: [983-1] 2016-06-06 09:37:06: pid 2873: DEBUG: pool_write: to backend: kind:P Jun 6 09:37:06 otp3 pgpool[2873]: [983-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: pool_write: to backend: kind:P Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:06 otp3 pgpool[2873]: [984-1] 2016-06-06 09:37:06: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:06 otp3 pgpool[2873]: [984-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:06 otp3 pgpool[2873]: [985-1] 2016-06-06 09:37:06: pid 2873: DEBUG: waiting for query response Jun 6 09:37:06 otp3 pgpool[2873]: [985-2] 2016-06-06 09:37:06: pid 2873: DETAIL: waiting for backend:0 to complete the query Jun 6 09:37:06 otp3 pgpool[2873]: [985-3] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_process_query.c:479 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: waiting for query response Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DETAIL: waiting for backend:0 to complete the query Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_process_query.c:479 Jun 6 09:37:06 otp3 pgpool[2873]: [986-1] 2016-06-06 09:37:06: pid 2873: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:37:06 otp3 pgpool[2873]: [986-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:37:06 otp3 pgpool[2873]: [987-1] 2016-06-06 09:37:06: pid 2873: DEBUG: detect error: kind: 1 Jun 6 09:37:06 otp3 pgpool[2873]: [987-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: detect error: kind: 1 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:37:06 otp3 pgpool[2873]: [988-1] 2016-06-06 09:37:06: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:06 otp3 pgpool[2873]: [988-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:06 otp3 pgpool[2873]: [989-1] 2016-06-06 09:37:06: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:06 otp3 pgpool[2873]: [989-2] 2016-06-06 09:37:06: pid 2873: DETAIL: backend:0 of 2 kind = '1' Jun 6 09:37:06 otp3 pgpool[2873]: [989-3] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DETAIL: backend:0 of 2 kind = '1' Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:06 otp3 pgpool[2873]: [990-1] 2016-06-06 09:37:06: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:06 otp3 pgpool[2873]: [990-2] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:06 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:06 otp3 pgpool[2873]: [991-1] 2016-06-06 09:37:06: pid 2873: DEBUG: processing backend response Jun 6 09:37:07 otp3 pgpool[2873]: [991-2] 2016-06-06 09:37:06: pid 2873: DETAIL: received kind '1'(31) from backend Jun 6 09:37:07 otp3 pgpool[2873]: [991-3] 2016-06-06 09:37:06: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DEBUG: processing backend response Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: DETAIL: received kind '1'(31) from backend Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:06: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:07 otp3 pgpool[2873]: [992-1] 2016-06-06 09:37:07: pid 2873: DEBUG: called by pool_add_sent_message: sent message: address: 2406d98 kind: P name: == Jun 6 09:37:07 otp3 pgpool[2873]: [992-2] 2016-06-06 09:37:07: pid 2873: LOCATION: pool_session_context.c:436 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: DEBUG: called by pool_add_sent_message: sent message: address: 2406d98 kind: P name: == Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: LOCATION: pool_session_context.c:436 Jun 6 09:37:07 otp3 pgpool[2873]: [993-1] 2016-06-06 09:37:07: pid 2873: DEBUG: adding sent message to list Jun 6 09:37:07 otp3 pgpool[2873]: [993-2] 2016-06-06 09:37:07: pid 2873: DETAIL: prepared statement "" already exists Jun 6 09:37:07 otp3 pgpool[2873]: [993-3] 2016-06-06 09:37:07: pid 2873: LOCATION: pool_session_context.c:516 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: DEBUG: adding sent message to list Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: DETAIL: prepared statement "" already exists Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: LOCATION: pool_session_context.c:516 Jun 6 09:37:07 otp3 pgpool[2873]: [994-1] 2016-06-06 09:37:07: pid 2873: DEBUG: called by pool_sent_message_destroy: sent message: address: 2406c80 kind: P name: == Jun 6 09:37:07 otp3 pgpool[2873]: [994-2] 2016-06-06 09:37:07: pid 2873: LOCATION: pool_session_context.c:436 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: DEBUG: called by pool_sent_message_destroy: sent message: address: 2406c80 kind: P name: == Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: LOCATION: pool_session_context.c:436 Jun 6 09:37:07 otp3 pgpool[2873]: [995-1] 2016-06-06 09:37:07: pid 2873: DEBUG: checking if query context can be safely destroyed Jun 6 09:37:07 otp3 pgpool[2873]: [995-2] 2016-06-06 09:37:07: pid 2873: DETAIL: query context 0x802481830 is still used 2 times. query:"select cltenant0_.tenant_id as tenant_i1_3_0_, cltenant0_.database_id as database3_3_0_, cltenant0_.plan_id as plan_id4_3_0_, cltenant0_.tenant_name as tenant_n2_3_0_, cldatabase1_.database_id as database1_0_1_, cldatabase1_.database_server_id as database7_0_1_, cldatabase1_.database_name as database2_0_1_, cldatabase1_.max_pool_size as max_pool3_0_1_, cldatabase1_.min_pool_size as min_pool4_0_1_, cldatabase1_.password as password5_0_1_, cldatabase1_.username as username6_0_1_, cldatabase2_.database_server_id as database1_1_2_, cldatabase2_.helpdesk_driver_class as helpdesk2_1_2_, cldatabase2_.host as host3_1_2_, cldatabase2_.jdbc_url as jdbc_url4_1_2_, cldatabase2_.port as port5_1_2_, cldatabase2_.rule_engine_driver_class as rule_eng6_1_2_, clhosts3_.tenant_id as tenant_i4_3_3_, Jun 6 09:37:07 otp3 pgpool[2873]: [995-3] clhosts3_.host_id as host_id1_2_3_, clhosts3_.host_id as host_id1_2_4_, clhosts3_.host_name as host_nam2_2_4_, clhosts3_.is_https as is_https3_2_4_, clhosts3_.tenant_id as tenant_i4_2_4_, plan4_.id as id1_5_5_, plan4_.default_no_of_assets as default_2_5_5_, plan4_.default_number_of_agents as default_3_5_5_, plan4_.is_assets as is_asset4_5_5_, plan4_.plan as plan5_5_5_, plan4_.plan_name as plan_nam6_5_5_, plan4_.poller_source_reference_limit as poller_s7_5_5_ from cl_tenant cltenant0_ left outer join cl_database cldatabase1_ on cltenant0_.database_id=cldatabase1_.database_id left outer join cl_database_server cldatabase2_ on cldatabase1_.database_server_id=cldatabase2_.database_server_id left outer join cl_host clhosts3_ on cltenant0_.tenant_id=clhosts3_.tenant_id left outer join plan plan4_ on cltenant0_.plan_id=plan4_.id where cltenant0_.tenant_id=$1" Jun 6 09:37:07 otp3 pgpool[2873]: [995-4] 2016-06-06 09:37:07: pid 2873: LOCATION: pool_session_context.c:873 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: DEBUG: checking if query context can be safely destroyed Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: DETAIL: query context 0x802481830 is still used 2 times. query:"select cltenant0_.tenant_id as tenant_i1_3_0_, cltenant0_.database_id as database3_3_0_, cltenant0_.plan_id as plan_id4_3_0_, cltenant0_.tenant_name as tenant_n2_3_0_, cldatabase1_.database_id as database1_0_1_, cldatabase1_.database_server_id as database7_0_1_, cldatabase1_.database_name as database2_0_1_, cldatabase1_.max_pool_size as max_pool3_0_1_, cldatabase1_.min_pool_size as min_pool4_0_1_, cldatabase1_.password as password5_0_1_, cldatabase1_.username as username6_0_1_, cldatabase2_.database_server_id as database1_1_2_, cldatabase2_.helpdesk_driver_class as helpdesk2_1_2_, cldatabase2_.host as host3_1_2_, cldatabase2_.jdbc_url as jdbc_url4_1_2_, cldatabase2_.port as port5_1_2_, cldatabase2_.rule_engine_driver_class as rule_eng6_1_2_, clhosts3_.tenant_id as tenant_i4_3_3_, clhosts3_.host_id as host_id1_2_3_, clhosts3_.host_id as host_id1_2_4_, clhosts3_.host_name as host_nam2_2_4 Jun 6 09:37:07 otp3 pgpool[2873]: [996-1] 2016-06-06 09:37:07: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:07 otp3 pgpool[2873]: [996-2] 2016-06-06 09:37:07: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:07 otp3 pgpool[2873]: [997-1] 2016-06-06 09:37:07: pid 2873: DEBUG: SimpleForwardToFrontend: packet:1 length:0 Jun 6 09:37:07 otp3 pgpool[2873]: [997-2] 2016-06-06 09:37:07: pid 2873: LOCATION: pool_process_query.c:792 Jun 6 09:37:07 otp3 pgpool[2873]: [998-1] 2016-06-06 09:37:07: pid 2873: DEBUG: session context: setting command success. DONE Jun 6 09:37:07 otp3 pgpool[2873]: [998-2] 2016-06-06 09:37:07: pid 2873: LOCATION: pool_session_context.c:741 Jun 6 09:37:07 otp3 pgpool[2873]: [999-1] 2016-06-06 09:37:07: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:07 otp3 pgpool[2873]: [999-2] 2016-06-06 09:37:07: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:07 otp3 pgpool[2873]: [1000-1] 2016-06-06 09:37:07: pid 2873: DEBUG: processing frontend response Jun 6 09:37:07 otp3 pgpool[2873]: [1000-2] 2016-06-06 09:37:07: pid 2873: DETAIL: received kind 'B'(42) from frontend Jun 6 09:37:07 otp3 pgpool[2873]: [1000-3] 2016-06-06 09:37:07: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:07 otp3 pgpool[2873]: [1001-1] 2016-06-06 09:37:07: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:07 otp3 pgpool[2873]: [1001-2] 2016-06-06 09:37:07: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:37:07 otp3 pgpool[2873]: [1002-1] 2016-06-06 09:37:07: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:07 otp3 pgpool: https3_2_4_, clhosts3_.tenant_id as tenant_i4_2_4_, plan4_.id as id1_5_5_, plan4_.default_no_of_assets as default_2_5_5_, plan4_.default_number_of_agents as default_3_5_5_, plan4_.is_assets as is_asset4_5_5_, plan4_.plan as plan5_5_5_, plan4_.plan_name as plan_nam6_5_5_, plan4_.poller_source_reference_limit as poller_s7_5_5_ from cl_tenant cltenant0_ left outer join cl_database cldatabase1_ on cltenant0_.database_id=cldatabase1_.database_id left outer join cl_database_server cldatabase2_ on cldatabase1_.database_server_id=cldatabase2_.database_server_id left outer join cl_host clhosts3_ on cltenant0_.tenant_id=clhosts3_.tenant_id left outer join plan plan4_ on cltenant0_.plan_id=plan4_.id where cltenant0_.tenant_id=$1" Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: LOCATION: pool_session_context.c:873 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: DEBUG: SimpleForwardToFrontend: packet:1 length:0 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: LOCATION: pool_process_query.c:792 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: DEBUG: session context: setting command success. DONE Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: LOCATION: pool_session_context.c:741 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: DEBUG: processing frontend response Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: DETAIL: received kind 'B'(42) from frontend Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:37:07 otp3 pgpool[2873]: [1002-2] 2016-06-06 09:37:07: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:37:07 otp3 pgpool[2873]: [1003-1] 2016-06-06 09:37:07: pid 2873: DEBUG: Bind: checking strict query Jun 6 09:37:07 otp3 pgpool[2873]: [1003-2] 2016-06-06 09:37:07: pid 2873: LOCATION: pool_proto_modules.c:1211 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: DEBUG: Bind: checking strict query Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: LOCATION: pool_proto_modules.c:1211 Jun 6 09:37:07 otp3 pgpool[2873]: [1004-1] 2016-06-06 09:37:07: pid 2873: DEBUG: Bind: checking insert lock Jun 6 09:37:07 otp3 pgpool[2873]: [1004-2] 2016-06-06 09:37:07: pid 2873: LOCATION: pool_proto_modules.c:1221 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: DEBUG: Bind: checking insert lock Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: LOCATION: pool_proto_modules.c:1221 Jun 6 09:37:07 otp3 pgpool[2873]: [1005-1] 2016-06-06 09:37:07: pid 2873: DEBUG: Bind: waiting for master completing the query Jun 6 09:37:07 otp3 pgpool[2873]: [1005-2] 2016-06-06 09:37:07: pid 2873: LOCATION: pool_proto_modules.c:1237 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: DEBUG: Bind: waiting for master completing the query Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: LOCATION: pool_proto_modules.c:1237 Jun 6 09:37:07 otp3 pgpool[2873]: [1006-1] 2016-06-06 09:37:07: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:07 otp3 pgpool[2873]: [1006-2] 2016-06-06 09:37:07: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:07 otp3 pgpool[2873]: [1007-1] 2016-06-06 09:37:07: pid 2873: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:37:07 otp3 pgpool[2873]: [1007-2] 2016-06-06 09:37:07: pid 2873: LOCATION: pool_query_context.c:854 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: LOCATION: pool_query_context.c:854 Jun 6 09:37:07 otp3 pgpool[2873]: [1008-1] 2016-06-06 09:37:07: pid 2873: DEBUG: pool_write: to backend: kind:B Jun 6 09:37:07 otp3 pgpool[2873]: [1008-2] 2016-06-06 09:37:07: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: DEBUG: pool_write: to backend: kind:B Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:07 otp3 pgpool[2873]: [1009-1] 2016-06-06 09:37:07: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:07 otp3 pgpool[2873]: [1009-2] 2016-06-06 09:37:07: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:07 otp3 pgpool[2873]: [1010-1] 2016-06-06 09:37:07: pid 2873: DEBUG: waiting for query response Jun 6 09:37:07 otp3 pgpool[2873]: [1010-2] 2016-06-06 09:37:07: pid 2873: DETAIL: waiting for backend:0 to complete the query Jun 6 09:37:07 otp3 pgpool[2873]: [1010-3] 2016-06-06 09:37:07: pid 2873: LOCATION: pool_process_query.c:479 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: DEBUG: waiting for query response Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: DETAIL: waiting for backend:0 to complete the query Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: LOCATION: pool_process_query.c:479 Jun 6 09:37:07 otp3 pgpool[2873]: [1011-1] 2016-06-06 09:37:07: pid 2873: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:37:07 otp3 pgpool[2873]: [1011-2] 2016-06-06 09:37:07: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:37:07 otp3 pgpool[2873]: [1012-1] 2016-06-06 09:37:07: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:07 otp3 pgpool[2873]: [1012-2] 2016-06-06 09:37:07: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:07 otp3 pgpool[2873]: [1013-1] 2016-06-06 09:37:07: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:07 otp3 pgpool[2873]: [1013-2] 2016-06-06 09:37:07: pid 2873: DETAIL: backend:0 of 2 kind = '2' Jun 6 09:37:07 otp3 pgpool[2873]: [1013-3] 2016-06-06 09:37:07: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:07 otp3 pgpool[2873]: [1014-1] 2016-06-06 09:37:07: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:07 otp3 pgpool[2873]: [1014-2] 2016-06-06 09:37:07: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:07 otp3 pgpool[2873]: [1015-1] 2016-06-06 09:37:07: pid 2873: DEBUG: processing backend response Jun 6 09:37:07 otp3 pgpool[2873]: [1015-2] 2016-06-06 09:37:07: pid 2873: DETAIL: received kind '2'(32) from backend Jun 6 09:37:07 otp3 pgpool[2873]: [1015-3] 2016-06-06 09:37:07: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:07 otp3 pgpool[2873]: [1016-1] 2016-06-06 09:37:07: pid 2873: DEBUG: called by pool_add_sent_message: sent message: address: 2406c80 kind: B name: == Jun 6 09:37:07 otp3 pgpool[2873]: [1016-2] 2016-06-06 09:37:07: pid 2873: LOCATION: pool_session_context.c:436 Jun 6 09:37:07 otp3 pgpool[2873]: [1017-1] 2016-06-06 09:37:07: pid 2873: DEBUG: adding sent message to list Jun 6 09:37:07 otp3 pgpool[2873]: [1017-2] 2016-06-06 09:37:07: pid 2873: DETAIL: portal "" already exists Jun 6 09:37:07 otp3 pgpool[2873]: [1017-3] 2016-06-06 09:37:07: pid 2873: LOCATION: pool_session_context.c:512 Jun 6 09:37:07 otp3 pgpool[2873]: [1018-1] 2016-06-06 09:37:07: pid 2873: DEBUG: called by pool_sent_message_destroy: sent message: address: 2406d18 kind: B name: == Jun 6 09:37:07 otp3 pgpool[2873]: [1018-2] 2016-06-06 09:37:07: pid 2873: LOCATION: pool_session_context.c:436 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: DETAIL: backend:0 of 2 kind = '2' Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: DEBUG: processing backend response Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: DETAIL: received kind '2'(32) from backend Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: DEBUG: called by pool_add_sent_message: sent message: address: 2406c80 kind: B name: == Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: LOCATION: pool_session_context.c:436 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: DEBUG: adding sent message to list Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: DETAIL: portal "" already exists Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: LOCATION: pool_session_context.c:512 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: DEBUG: called by pool_sent_message_destroy: sent message: address: 2406d18 kind: B name: == Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: LOCATION: pool_session_context.c:436 Jun 6 09:37:07 otp3 pgpool[2873]: [1019-1] 2016-06-06 09:37:07: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:07 otp3 pgpool[2873]: [1019-2] 2016-06-06 09:37:07: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:07 otp3 pgpool[2873]: [1020-1] 2016-06-06 09:37:07: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:07 otp3 pgpool[2873]: [1020-2] 2016-06-06 09:37:07: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:07 otp3 pgpool[2873]: [1021-1] 2016-06-06 09:37:07: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:07 otp3 pgpool[2873]: [1021-2] 2016-06-06 09:37:07: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:07 otp3 pgpool[2873]: [1022-1] 2016-06-06 09:37:07: pid 2873: DEBUG: SimpleForwardToFrontend: packet:2 length:0 Jun 6 09:37:07 otp3 pgpool[2873]: [1022-2] 2016-06-06 09:37:07: pid 2873: LOCATION: pool_process_query.c:792 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: DEBUG: SimpleForwardToFrontend: packet:2 length:0 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: LOCATION: pool_process_query.c:792 Jun 6 09:37:07 otp3 pgpool[2873]: [1023-1] 2016-06-06 09:37:07: pid 2873: DEBUG: session context: setting command success. DONE Jun 6 09:37:07 otp3 pgpool[2873]: [1023-2] 2016-06-06 09:37:07: pid 2873: LOCATION: pool_session_context.c:741 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: DEBUG: session context: setting command success. DONE Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: LOCATION: pool_session_context.c:741 Jun 6 09:37:07 otp3 pgpool[2873]: [1024-1] 2016-06-06 09:37:07: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:07 otp3 pgpool[2873]: [1024-2] 2016-06-06 09:37:07: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:07 otp3 pgpool[2873]: [1025-1] 2016-06-06 09:37:07: pid 2873: DEBUG: processing frontend response Jun 6 09:37:07 otp3 pgpool[2873]: [1025-2] 2016-06-06 09:37:07: pid 2873: DETAIL: received kind 'D'(44) from frontend Jun 6 09:37:07 otp3 pgpool[2873]: [1025-3] 2016-06-06 09:37:07: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: DEBUG: processing frontend response Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: DETAIL: received kind 'D'(44) from frontend Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:07 otp3 pgpool[2873]: [1026-1] 2016-06-06 09:37:07: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:07 otp3 pgpool[2873]: [1026-2] 2016-06-06 09:37:07: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:37:07 otp3 pgpool[2873]: [1027-1] 2016-06-06 09:37:07: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:07 otp3 pgpool[2873]: [1027-2] 2016-06-06 09:37:07: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:37:07 otp3 pgpool[2873]: [1028-1] 2016-06-06 09:37:07: pid 2873: DEBUG: Describe: waiting for master completing the query Jun 6 09:37:07 otp3 pgpool[2873]: [1028-2] 2016-06-06 09:37:07: pid 2873: LOCATION: pool_proto_modules.c:1310 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: DEBUG: Describe: waiting for master completing the query Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: LOCATION: pool_proto_modules.c:1310 Jun 6 09:37:07 otp3 pgpool[2873]: [1029-1] 2016-06-06 09:37:07: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:07 otp3 pgpool[2873]: [1029-2] 2016-06-06 09:37:07: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:07 otp3 pgpool[2873]: [1030-1] 2016-06-06 09:37:07: pid 2873: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:37:07 otp3 pgpool[2873]: [1030-2] 2016-06-06 09:37:07: pid 2873: LOCATION: pool_query_context.c:854 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: LOCATION: pool_query_context.c:854 Jun 6 09:37:07 otp3 pgpool[2873]: [1031-1] 2016-06-06 09:37:07: pid 2873: DEBUG: pool_write: to backend: kind:D Jun 6 09:37:07 otp3 pgpool[2873]: [1031-2] 2016-06-06 09:37:07: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: DEBUG: pool_write: to backend: kind:D Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:07 otp3 pgpool[2873]: [1032-1] 2016-06-06 09:37:07: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:07 otp3 pgpool[2873]: [1032-2] 2016-06-06 09:37:07: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:07 otp3 pgpool[2873]: [1033-1] 2016-06-06 09:37:07: pid 2873: DEBUG: waiting for query response Jun 6 09:37:07 otp3 pgpool[2873]: [1033-2] 2016-06-06 09:37:07: pid 2873: DETAIL: waiting for backend:0 to complete the query Jun 6 09:37:07 otp3 pgpool[2873]: [1033-3] 2016-06-06 09:37:07: pid 2873: LOCATION: pool_process_query.c:479 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: DEBUG: waiting for query response Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: DETAIL: waiting for backend:0 to complete the query Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: LOCATION: pool_process_query.c:479 Jun 6 09:37:07 otp3 pgpool[2873]: [1034-1] 2016-06-06 09:37:07: pid 2873: DEBUG: pool_read: read 624 bytes from backend 0 Jun 6 09:37:07 otp3 pgpool[2873]: [1034-2] 2016-06-06 09:37:07: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: DEBUG: pool_read: read 624 bytes from backend 0 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:37:07 otp3 pgpool[2873]: [1035-1] 2016-06-06 09:37:07: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:07 otp3 pgpool[2873]: [1035-2] 2016-06-06 09:37:07: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:07 otp3 pgpool[2873]: [1036-1] 2016-06-06 09:37:07: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:07 otp3 pgpool[2873]: [1036-2] 2016-06-06 09:37:07: pid 2873: DETAIL: backend:0 of 2 kind = 'T' Jun 6 09:37:07 otp3 pgpool[2873]: [1036-3] 2016-06-06 09:37:07: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: DETAIL: backend:0 of 2 kind = 'T' Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:07 otp3 pgpool[2873]: [1037-1] 2016-06-06 09:37:07: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:07 otp3 pgpool[2873]: [1037-2] 2016-06-06 09:37:07: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:07 otp3 pgpool[2873]: [1038-1] 2016-06-06 09:37:07: pid 2873: DEBUG: processing backend response Jun 6 09:37:07 otp3 pgpool[2873]: [1038-2] 2016-06-06 09:37:07: pid 2873: DETAIL: received kind 'T'(54) from backend Jun 6 09:37:07 otp3 pgpool[2873]: [1038-3] 2016-06-06 09:37:07: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: DEBUG: processing backend response Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: DETAIL: received kind 'T'(54) from backend Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:07 otp3 pgpool[2873]: [1039-1] 2016-06-06 09:37:07: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:07 otp3 pgpool[2873]: [1039-2] 2016-06-06 09:37:07: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:07 otp3 pgpool[2873]: [1040-1] 2016-06-06 09:37:07: pid 2873: DEBUG: SimpleForwardToFrontend: packet:T length:619 Jun 6 09:37:07 otp3 pgpool[2873]: [1040-2] 2016-06-06 09:37:07: pid 2873: LOCATION: pool_process_query.c:792 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: DEBUG: SimpleForwardToFrontend: packet:T length:619 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: LOCATION: pool_process_query.c:792 Jun 6 09:37:07 otp3 pgpool[2873]: [1041-1] 2016-06-06 09:37:07: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:07 otp3 pgpool[2873]: [1041-2] 2016-06-06 09:37:07: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:07 otp3 pgpool[2873]: [1042-1] 2016-06-06 09:37:07: pid 2873: DEBUG: processing frontend response Jun 6 09:37:07 otp3 pgpool[2873]: [1042-2] 2016-06-06 09:37:07: pid 2873: DETAIL: received kind 'E'(45) from frontend Jun 6 09:37:07 otp3 pgpool[2873]: [1042-3] 2016-06-06 09:37:07: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: DEBUG: processing frontend response Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: DETAIL: received kind 'E'(45) from frontend Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:07 otp3 pgpool[2873]: [1043-1] 2016-06-06 09:37:07: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:07 otp3 pgpool[2873]: [1043-2] 2016-06-06 09:37:07: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:37:07 otp3 pgpool[2873]: [1044-1] 2016-06-06 09:37:07: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:07 otp3 pgpool[2873]: [1044-2] 2016-06-06 09:37:07: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:37:07 otp3 pgpool[2873]: [1045-1] 2016-06-06 09:37:07: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:07 otp3 pgpool[2873]: [1045-2] 2016-06-06 09:37:07: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:07 otp3 pgpool[2873]: [1046-1] 2016-06-06 09:37:07: pid 2873: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:37:07 otp3 pgpool[2873]: [1046-2] 2016-06-06 09:37:07: pid 2873: LOCATION: pool_query_context.c:854 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: LOCATION: pool_query_context.c:854 Jun 6 09:37:07 otp3 pgpool[2873]: [1047-1] 2016-06-06 09:37:07: pid 2873: DEBUG: pool_write: to backend: kind:E Jun 6 09:37:07 otp3 pgpool[2873]: [1047-2] 2016-06-06 09:37:07: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: DEBUG: pool_write: to backend: kind:E Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:07 otp3 pgpool[2873]: [1048-1] 2016-06-06 09:37:07: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:07 otp3 pgpool[2873]: [1048-2] 2016-06-06 09:37:07: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:07 otp3 pgpool[2873]: [1049-1] 2016-06-06 09:37:07: pid 2873: DEBUG: waiting for query response Jun 6 09:37:07 otp3 pgpool[2873]: [1049-2] 2016-06-06 09:37:07: pid 2873: DETAIL: waiting for backend:0 to complete the query Jun 6 09:37:07 otp3 pgpool[2873]: [1049-3] 2016-06-06 09:37:07: pid 2873: LOCATION: pool_process_query.c:479 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: DEBUG: waiting for query response Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: DETAIL: waiting for backend:0 to complete the query Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: LOCATION: pool_process_query.c:479 Jun 6 09:37:07 otp3 pgpool[2873]: [1050-1] 2016-06-06 09:37:07: pid 2873: DEBUG: pool_read: read 182 bytes from backend 0 Jun 6 09:37:07 otp3 pgpool[2873]: [1050-2] 2016-06-06 09:37:07: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: DEBUG: pool_read: read 182 bytes from backend 0 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:37:07 otp3 pgpool[2873]: [1051-1] 2016-06-06 09:37:07: pid 2873: DEBUG: detect error: kind: D Jun 6 09:37:07 otp3 pgpool[2873]: [1051-2] 2016-06-06 09:37:07: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: DEBUG: detect error: kind: D Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:37:07 otp3 pgpool[2873]: [1052-1] 2016-06-06 09:37:07: pid 2873: DEBUG: detect error: kind: D Jun 6 09:37:07 otp3 pgpool[2873]: [1052-2] 2016-06-06 09:37:07: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: DEBUG: detect error: kind: D Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:37:07 otp3 pgpool[2873]: [1053-1] 2016-06-06 09:37:07: pid 2873: DEBUG: detect error: kind: D Jun 6 09:37:07 otp3 pgpool[2873]: [1053-2] 2016-06-06 09:37:07: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: DEBUG: detect error: kind: D Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:37:07 otp3 pgpool[2873]: [1054-1] 2016-06-06 09:37:07: pid 2873: DEBUG: detect error: kind: D Jun 6 09:37:07 otp3 pgpool[2873]: [1054-2] 2016-06-06 09:37:07: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: DEBUG: detect error: kind: D Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:37:07 otp3 pgpool[2873]: [1055-1] 2016-06-06 09:37:07: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:07 otp3 pgpool[2873]: [1055-2] 2016-06-06 09:37:07: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:07 otp3 pgpool[2873]: [1056-1] 2016-06-06 09:37:07: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:07 otp3 pgpool[2873]: [1056-2] 2016-06-06 09:37:07: pid 2873: DETAIL: backend:0 of 2 kind = 'D' Jun 6 09:37:07 otp3 pgpool[2873]: [1056-3] 2016-06-06 09:37:07: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: DETAIL: backend:0 of 2 kind = 'D' Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:07 otp3 pgpool[2873]: [1057-1] 2016-06-06 09:37:07: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:07 otp3 pgpool[2873]: [1057-2] 2016-06-06 09:37:07: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:07 otp3 pgpool[2873]: [1058-1] 2016-06-06 09:37:07: pid 2873: DEBUG: processing backend response Jun 6 09:37:07 otp3 pgpool[2873]: [1058-2] 2016-06-06 09:37:07: pid 2873: DETAIL: received kind 'D'(44) from backend Jun 6 09:37:07 otp3 pgpool[2873]: [1058-3] 2016-06-06 09:37:07: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: DEBUG: processing backend response Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: DETAIL: received kind 'D'(44) from backend Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:07 otp3 pgpool[2873]: [1059-1] 2016-06-06 09:37:07: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:07 otp3 pgpool[2873]: [1059-2] 2016-06-06 09:37:07: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:07 otp3 pgpool[2873]: [1060-1] 2016-06-06 09:37:07: pid 2873: DEBUG: SimpleForwardToFrontend: packet:D length:163 Jun 6 09:37:07 otp3 pgpool[2873]: [1060-2] 2016-06-06 09:37:07: pid 2873: LOCATION: pool_process_query.c:792 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: DEBUG: SimpleForwardToFrontend: packet:D length:163 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: LOCATION: pool_process_query.c:792 Jun 6 09:37:07 otp3 pgpool[2873]: [1061-1] 2016-06-06 09:37:07: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:07 otp3 pgpool[2873]: [1061-2] 2016-06-06 09:37:07: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:07 otp3 pgpool[2873]: [1062-1] 2016-06-06 09:37:07: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:07 otp3 pgpool[2873]: [1062-2] 2016-06-06 09:37:07: pid 2873: DETAIL: backend:0 of 2 kind = 'C' Jun 6 09:37:07 otp3 pgpool[2873]: [1062-3] 2016-06-06 09:37:07: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: DETAIL: backend:0 of 2 kind = 'C' Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:07 otp3 pgpool[2873]: [1063-1] 2016-06-06 09:37:07: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:07 otp3 pgpool[2873]: [1063-2] 2016-06-06 09:37:07: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:07 otp3 pgpool[2873]: [1064-1] 2016-06-06 09:37:07: pid 2873: DEBUG: processing backend response Jun 6 09:37:07 otp3 pgpool[2873]: [1064-2] 2016-06-06 09:37:07: pid 2873: DETAIL: received kind 'C'(43) from backend Jun 6 09:37:07 otp3 pgpool[2873]: [1064-3] 2016-06-06 09:37:07: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: DEBUG: processing backend response Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: DETAIL: received kind 'C'(43) from backend Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:07 otp3 pgpool[2873]: [1065-1] 2016-06-06 09:37:07: pid 2873: DEBUG: session context: setting command success. DONE Jun 6 09:37:07 otp3 pgpool[2873]: [1065-2] 2016-06-06 09:37:07: pid 2873: LOCATION: pool_session_context.c:741 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: DEBUG: session context: setting command success. DONE Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: LOCATION: pool_session_context.c:741 Jun 6 09:37:07 otp3 pgpool[2873]: [1066-1] 2016-06-06 09:37:07: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:07 otp3 pgpool[2873]: [1066-2] 2016-06-06 09:37:07: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:07 otp3 pgpool[2873]: [1067-1] 2016-06-06 09:37:07: pid 2873: DEBUG: processing frontend response Jun 6 09:37:07 otp3 pgpool[2873]: [1067-2] 2016-06-06 09:37:07: pid 2873: DETAIL: received kind 'S'(53) from frontend Jun 6 09:37:07 otp3 pgpool[2873]: [1067-3] 2016-06-06 09:37:07: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: DEBUG: processing frontend response Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: DETAIL: received kind 'S'(53) from frontend Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:07 otp3 pgpool[2873]: [1068-1] 2016-06-06 09:37:07: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:07 otp3 pgpool[2873]: [1068-2] 2016-06-06 09:37:07: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:37:07 otp3 pgpool[2873]: [1069-1] 2016-06-06 09:37:07: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:07 otp3 pgpool[2873]: [1069-2] 2016-06-06 09:37:07: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:37:07 otp3 pgpool[2873]: [1070-1] 2016-06-06 09:37:07: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:07 otp3 pgpool[2873]: [1070-2] 2016-06-06 09:37:07: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:07 otp3 pgpool[2873]: [1071-1] 2016-06-06 09:37:07: pid 2873: DEBUG: pool_write: to backend: kind:S Jun 6 09:37:07 otp3 pgpool[2873]: [1071-2] 2016-06-06 09:37:07: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: DEBUG: pool_write: to backend: kind:S Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:07 otp3 pgpool[2873]: [1072-1] 2016-06-06 09:37:07: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:07 otp3 pgpool[2873]: [1072-2] 2016-06-06 09:37:07: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:07 otp3 pgpool: 2016-06-06 09:37:07: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:08 otp3 pgpool[2873]: [1073-1] 2016-06-06 09:37:08: pid 2873: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:37:08 otp3 pgpool[2873]: [1073-2] 2016-06-06 09:37:08: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2873: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:37:08 otp3 pgpool[2873]: [1074-1] 2016-06-06 09:37:08: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:08 otp3 pgpool[2873]: [1074-2] 2016-06-06 09:37:08: pid 2873: DETAIL: backend:0 of 2 kind = 'Z' Jun 6 09:37:08 otp3 pgpool[2873]: [1074-3] 2016-06-06 09:37:08: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2873: DETAIL: backend:0 of 2 kind = 'Z' Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:08 otp3 pgpool[2873]: [1075-1] 2016-06-06 09:37:08: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:08 otp3 pgpool[2873]: [1075-2] 2016-06-06 09:37:08: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:08 otp3 pgpool[2873]: [1076-1] 2016-06-06 09:37:08: pid 2873: DEBUG: processing backend response Jun 6 09:37:08 otp3 pgpool[2873]: [1076-2] 2016-06-06 09:37:08: pid 2873: DETAIL: received kind 'Z'(5a) from backend Jun 6 09:37:08 otp3 pgpool[2873]: [1076-3] 2016-06-06 09:37:08: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2873: DEBUG: processing backend response Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2873: DETAIL: received kind 'Z'(5a) from backend Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:08 otp3 pgpool[2873]: [1077-1] 2016-06-06 09:37:08: pid 2873: DEBUG: processing backend response Jun 6 09:37:08 otp3 pgpool[2873]: [1077-2] 2016-06-06 09:37:08: pid 2873: DETAIL: Ready For Query received Jun 6 09:37:08 otp3 pgpool[2873]: [1077-3] 2016-06-06 09:37:08: pid 2873: LOCATION: pool_proto_modules.c:2442 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2873: DEBUG: processing backend response Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2873: DETAIL: Ready For Query received Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2873: LOCATION: pool_proto_modules.c:2442 Jun 6 09:37:08 otp3 pgpool[2873]: [1078-1] 2016-06-06 09:37:08: pid 2873: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:37:08 otp3 pgpool[2873]: [1078-2] 2016-06-06 09:37:08: pid 2873: LOCATION: pool_session_context.c:310 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2873: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2873: LOCATION: pool_session_context.c:310 Jun 6 09:37:08 otp3 pgpool[2873]: [1079-1] 2016-06-06 09:37:08: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:08 otp3 pgpool[2873]: [1079-2] 2016-06-06 09:37:08: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:08 otp3 pgpool[2873]: [1080-1] 2016-06-06 09:37:08: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:08 otp3 pgpool[2873]: [1080-2] 2016-06-06 09:37:08: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:08 otp3 pgpool[2873]: [1081-1] 2016-06-06 09:37:08: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:08 otp3 pgpool[2873]: [1081-2] 2016-06-06 09:37:08: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:08 otp3 pgpool[2873]: [1082-1] 2016-06-06 09:37:08: pid 2873: DEBUG: reading message length Jun 6 09:37:08 otp3 pgpool[2873]: [1082-2] 2016-06-06 09:37:08: pid 2873: DETAIL: slot: 0 length: 5 Jun 6 09:37:08 otp3 pgpool[2873]: [1082-3] 2016-06-06 09:37:08: pid 2873: LOCATION: pool_auth.c:1107 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2873: DEBUG: reading message length Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2873: DETAIL: slot: 0 length: 5 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2873: LOCATION: pool_auth.c:1107 Jun 6 09:37:08 otp3 pgpool[2873]: [1083-1] 2016-06-06 09:37:08: pid 2873: DEBUG: processing ReadyForQuery Jun 6 09:37:08 otp3 pgpool[2873]: [1083-2] 2016-06-06 09:37:08: pid 2873: DETAIL: transaction state 'I'(49) Jun 6 09:37:08 otp3 pgpool[2873]: [1083-3] 2016-06-06 09:37:08: pid 2873: LOCATION: pool_proto_modules.c:1612 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2873: DEBUG: processing ReadyForQuery Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2873: DETAIL: transaction state 'I'(49) Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2873: LOCATION: pool_proto_modules.c:1612 Jun 6 09:37:08 otp3 pgpool[2873]: [1084-1] 2016-06-06 09:37:08: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:08 otp3 pgpool[2873]: [1084-2] 2016-06-06 09:37:08: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:08 otp3 pgpool[2874]: [281-1] 2016-06-06 09:37:08: pid 2874: DEBUG: I am 2874 accept fd 7 Jun 6 09:37:08 otp3 pgpool[2874]: [281-2] 2016-06-06 09:37:08: pid 2874: LOCATION: child.c:2097 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: I am 2874 accept fd 7 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: child.c:2097 Jun 6 09:37:08 otp3 pgpool[2874]: [282-1] 2016-06-06 09:37:08: pid 2874: LOG: new connection received Jun 6 09:37:08 otp3 pgpool[2874]: [282-2] 2016-06-06 09:37:08: pid 2874: DETAIL: connecting host=10.200.1.64 port=49483 Jun 6 09:37:08 otp3 pgpool[2874]: [282-3] 2016-06-06 09:37:08: pid 2874: LOCATION: child.c:2110 Jun 6 09:37:08 otp3 pgpool[2874]: [283-1] 2016-06-06 09:37:08: pid 2874: DEBUG: reading startup packet Jun 6 09:37:08 otp3 pgpool[2874]: [283-2] 2016-06-06 09:37:08: pid 2874: DETAIL: Protocol Major: 3 Minor: 0 database: ctl user: sparrowdesk Jun 6 09:37:08 otp3 pgpool[2874]: [283-3] 2016-06-06 09:37:08: pid 2874: LOCATION: child.c:614 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOG: new connection received Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DETAIL: connecting host=10.200.1.64 port=49483 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: child.c:2110 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: reading startup packet Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DETAIL: Protocol Major: 3 Minor: 0 database: ctl user: sparrowdesk Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: child.c:614 Jun 6 09:37:08 otp3 pgpool[2874]: [284-1] 2016-06-06 09:37:08: pid 2874: DEBUG: sending backend key data Jun 6 09:37:08 otp3 pgpool[2874]: [284-2] 2016-06-06 09:37:08: pid 2874: DETAIL: send pid 97122 to frontend Jun 6 09:37:08 otp3 pgpool[2874]: [284-3] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_auth.c:519 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: sending backend key data Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DETAIL: send pid 97122 to frontend Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_auth.c:519 Jun 6 09:37:08 otp3 pgpool[2874]: [285-1] 2016-06-06 09:37:08: pid 2874: DEBUG: selecting load balance node Jun 6 09:37:08 otp3 pgpool[2874]: [285-2] 2016-06-06 09:37:08: pid 2874: DETAIL: selected backend id is 1 Jun 6 09:37:08 otp3 pgpool[2874]: [285-3] 2016-06-06 09:37:08: pid 2874: LOCATION: child.c:1720 Jun 6 09:37:08 otp3 pgpool[2874]: [286-1] 2016-06-06 09:37:08: pid 2874: DEBUG: initializing session context Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: selecting load balance node Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DETAIL: selected backend id is 1 Jun 6 09:37:08 otp3 pgpool[2874]: [286-2] 2016-06-06 09:37:08: pid 2874: DETAIL: selected load balancing node: 1 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: child.c:1720 Jun 6 09:37:08 otp3 pgpool[2874]: [286-3] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:99 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: initializing session context Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DETAIL: selected load balancing node: 1 Jun 6 09:37:08 otp3 pgpool[2874]: [287-1] 2016-06-06 09:37:08: pid 2874: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:99 Jun 6 09:37:08 otp3 pgpool[2874]: [287-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:219 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:08 otp3 pgpool[2874]: [288-1] 2016-06-06 09:37:08: pid 2874: DEBUG: session context: clearing transaction isolation. DONE Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:219 Jun 6 09:37:08 otp3 pgpool[2874]: [288-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:731 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: session context: clearing transaction isolation. DONE Jun 6 09:37:08 otp3 pgpool[2874]: [289-1] 2016-06-06 09:37:08: pid 2874: DEBUG: session context: clearing writing transaction. DONE Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:731 Jun 6 09:37:08 otp3 pgpool[2874]: [289-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:565 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: session context: clearing writing transaction. DONE Jun 6 09:37:08 otp3 pgpool[2874]: [290-1] 2016-06-06 09:37:08: pid 2874: DEBUG: session context: clearing failed transaction. DONE Jun 6 09:37:08 otp3 pgpool[2874]: [290-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:594 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:565 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: session context: clearing failed transaction. DONE Jun 6 09:37:08 otp3 pgpool[2874]: [291-1] 2016-06-06 09:37:08: pid 2874: DEBUG: session context: clearing failed transaction. DONE Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:594 Jun 6 09:37:08 otp3 pgpool[2874]: [291-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:624 Jun 6 09:37:08 otp3 pgpool[2874]: [292-1] 2016-06-06 09:37:08: pid 2874: DEBUG: session context: clearing skip reading from backends. DONE Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: session context: clearing failed transaction. DONE Jun 6 09:37:08 otp3 pgpool[2874]: [292-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:250 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:624 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: session context: clearing skip reading from backends. DONE Jun 6 09:37:08 otp3 pgpool[2874]: [293-1] 2016-06-06 09:37:08: pid 2874: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:250 Jun 6 09:37:08 otp3 pgpool[2874]: [293-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:310 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:310 Jun 6 09:37:08 otp3 pgpool[2874]: [294-1] 2016-06-06 09:37:08: pid 2874: DEBUG: processing frontend response Jun 6 09:37:08 otp3 pgpool[2874]: [294-2] 2016-06-06 09:37:08: pid 2874: DETAIL: received kind 'P'(50) from frontend Jun 6 09:37:08 otp3 pgpool[2874]: [294-3] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:08 otp3 pgpool[2874]: [295-1] 2016-06-06 09:37:08: pid 2874: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:08 otp3 pgpool[2874]: [295-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:280 Jun 6 09:37:08 otp3 pgpool[2874]: [296-1] 2016-06-06 09:37:08: pid 2874: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: processing frontend response Jun 6 09:37:08 otp3 pgpool[2874]: [296-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:269 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DETAIL: received kind 'P'(50) from frontend Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:08 otp3 pgpool[2874]: [297-1] 2016-06-06 09:37:08: pid 2874: DEBUG: Parse: statement name <> Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:08 otp3 pgpool[2874]: [297-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_proto_modules.c:817 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:280 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:269 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: Parse: statement name <> Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_proto_modules.c:817 Jun 6 09:37:08 otp3 pgpool[2874]: [298-1] 2016-06-06 09:37:08: pid 2874: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:08 otp3 pgpool[2874]: [298-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:208 Jun 6 09:37:08 otp3 pgpool[2874]: [299-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_write: to backend: kind:S Jun 6 09:37:08 otp3 pgpool[2874]: [299-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:208 Jun 6 09:37:08 otp3 pgpool[2874]: [300-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_write: to backend: kind:S Jun 6 09:37:08 otp3 pgpool[2874]: [300-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:08 otp3 pgpool[2874]: [301-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_write: to backend: kind:S Jun 6 09:37:08 otp3 pgpool[2874]: [301-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:08 otp3 pgpool[2874]: [302-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:08 otp3 pgpool[2874]: [302-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_write: to backend: kind:S Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:08 otp3 pgpool[2874]: [303-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:37:08 otp3 pgpool[2874]: [303-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:190 Jun 6 09:37:08 otp3 pgpool[2874]: [304-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_read: read 6 bytes from backend 1 Jun 6 09:37:08 otp3 pgpool[2874]: [304-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:190 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:190 Jun 6 09:37:08 otp3 pgpool[2874]: [305-1] 2016-06-06 09:37:08: pid 2874: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_read: read 6 bytes from backend 1 Jun 6 09:37:08 otp3 pgpool[2874]: [305-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:310 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:190 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:37:08 otp3 pgpool[2874]: [306-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:310 Jun 6 09:37:08 otp3 pgpool[2874]: [306-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:08 otp3 pgpool[2874]: [307-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:37:08 otp3 pgpool[2874]: [307-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:37:08 otp3 pgpool[2874]: [308-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:08 otp3 pgpool[2874]: [308-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:37:08 otp3 pgpool[2874]: [309-1] 2016-06-06 09:37:08: pid 2874: DEBUG: reading message length Jun 6 09:37:08 otp3 pgpool[2874]: [309-2] 2016-06-06 09:37:08: pid 2874: DETAIL: slot: 0 length: 5 Jun 6 09:37:08 otp3 pgpool[2874]: [309-3] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_auth.c:1107 Jun 6 09:37:08 otp3 pgpool[2874]: [310-1] 2016-06-06 09:37:08: pid 2874: DEBUG: reading message length Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: reading message length Jun 6 09:37:08 otp3 pgpool[2874]: [310-2] 2016-06-06 09:37:08: pid 2874: DETAIL: slot: 1 length: 5 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DETAIL: slot: 0 length: 5 Jun 6 09:37:08 otp3 pgpool[2874]: [310-3] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_auth.c:1126 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_auth.c:1107 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: reading message length Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DETAIL: slot: 1 length: 5 Jun 6 09:37:08 otp3 pgpool[2874]: [311-1] 2016-06-06 09:37:08: pid 2874: DEBUG: processing ReadyForQuery Jun 6 09:37:08 otp3 pgpool[2874]: [311-2] 2016-06-06 09:37:08: pid 2874: DETAIL: transaction state 'I'(49) Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_auth.c:1126 Jun 6 09:37:08 otp3 pgpool[2874]: [311-3] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_proto_modules.c:1612 Jun 6 09:37:08 otp3 pgpool[2874]: [312-1] 2016-06-06 09:37:08: pid 2874: DEBUG: processing ReadyForQuery Jun 6 09:37:08 otp3 pgpool[2874]: [312-2] 2016-06-06 09:37:08: pid 2874: DETAIL: transaction state 'I'(49) Jun 6 09:37:08 otp3 pgpool[2874]: [312-3] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_proto_modules.c:1612 Jun 6 09:37:08 otp3 pgpool[2874]: [313-1] 2016-06-06 09:37:08: pid 2874: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:08 otp3 pgpool[2874]: [313-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:219 Jun 6 09:37:08 otp3 pgpool[2874]: [314-1] 2016-06-06 09:37:08: pid 2874: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:08 otp3 pgpool[2874]: [314-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:208 Jun 6 09:37:08 otp3 pgpool[2874]: [315-1] 2016-06-06 09:37:08: pid 2874: DEBUG: Parse: waiting for master completing the query Jun 6 09:37:08 otp3 pgpool[2874]: [315-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_proto_modules.c:1064 Jun 6 09:37:08 otp3 pgpool[2874]: [316-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:37:08 otp3 pgpool[2874]: [316-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_query_context.c:854 Jun 6 09:37:08 otp3 pgpool[2874]: [317-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_write: to backend: kind:P Jun 6 09:37:08 otp3 pgpool[2874]: [317-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:08 otp3 pgpool[2874]: [318-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:08 otp3 pgpool[2874]: [318-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:08 otp3 pgpool[2874]: [319-1] 2016-06-06 09:37:08: pid 2874: DEBUG: waiting for query response Jun 6 09:37:08 otp3 pgpool[2874]: [319-2] 2016-06-06 09:37:08: pid 2874: DETAIL: waiting for backend:0 to complete the query Jun 6 09:37:08 otp3 pgpool[2874]: [319-3] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:479 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: processing ReadyForQuery Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DETAIL: transaction state 'I'(49) Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_proto_modules.c:1612 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: processing ReadyForQuery Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DETAIL: transaction state 'I'(49) Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_proto_modules.c:1612 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:219 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:208 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: Parse: waiting for master completing the query Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_proto_modules.c:1064 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_query_context.c:854 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_write: to backend: kind:P Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: waiting for query response Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DETAIL: waiting for backend:0 to complete the query Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:479 Jun 6 09:37:08 otp3 pgpool[2874]: [320-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:37:08 otp3 pgpool[2874]: [320-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:190 Jun 6 09:37:08 otp3 pgpool[2874]: [321-1] 2016-06-06 09:37:08: pid 2874: DEBUG: detect error: kind: 1 Jun 6 09:37:08 otp3 pgpool[2874]: [321-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:4166 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:190 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: detect error: kind: 1 Jun 6 09:37:08 otp3 pgpool[2874]: [322-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_send_and_wait: pool_set_sync_map: 1 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:4166 Jun 6 09:37:08 otp3 pgpool[2874]: [322-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_query_context.c:854 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_send_and_wait: pool_set_sync_map: 1 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_query_context.c:854 Jun 6 09:37:08 otp3 pgpool[2874]: [323-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_write: to backend: kind:P Jun 6 09:37:08 otp3 pgpool[2874]: [323-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_write: to backend: kind:P Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:08 otp3 pgpool[2874]: [324-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:08 otp3 pgpool[2874]: [324-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:08 otp3 pgpool[2874]: [325-1] 2016-06-06 09:37:08: pid 2874: DEBUG: waiting for query response Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:08 otp3 pgpool[2874]: [325-2] 2016-06-06 09:37:08: pid 2874: DETAIL: waiting for backend:1 to complete the query Jun 6 09:37:08 otp3 pgpool[2874]: [325-3] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:479 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: waiting for query response Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DETAIL: waiting for backend:1 to complete the query Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:479 Jun 6 09:37:08 otp3 pgpool[2874]: [326-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_read: read 5 bytes from backend 1 Jun 6 09:37:08 otp3 pgpool[2874]: [326-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:190 Jun 6 09:37:08 otp3 pgpool[2874]: [327-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:08 otp3 pgpool[2874]: [327-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_read: read 5 bytes from backend 1 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:190 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:08 otp3 pgpool[2874]: [328-1] 2016-06-06 09:37:08: pid 2874: DEBUG: reading backend data packet kind Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:37:08 otp3 pgpool[2874]: [328-2] 2016-06-06 09:37:08: pid 2874: DETAIL: backend:0 of 2 kind = '1' Jun 6 09:37:08 otp3 pgpool[2874]: [328-3] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:3349 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: reading backend data packet kind Jun 6 09:37:08 otp3 pgpool[2874]: [329-1] 2016-06-06 09:37:08: pid 2874: DEBUG: reading backend data packet kind Jun 6 09:37:08 otp3 pgpool[2874]: [329-2] 2016-06-06 09:37:08: pid 2874: DETAIL: backend:1 of 2 kind = '1' Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DETAIL: backend:0 of 2 kind = '1' Jun 6 09:37:08 otp3 pgpool[2874]: [329-3] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:3349 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:3349 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: reading backend data packet kind Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DETAIL: backend:1 of 2 kind = '1' Jun 6 09:37:08 otp3 pgpool[2874]: [330-1] 2016-06-06 09:37:08: pid 2874: DEBUG: read_kind_from_backend max_count:2.000000 num_executed_nodes:2 Jun 6 09:37:08 otp3 pgpool[2874]: [330-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:3365 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:3349 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: read_kind_from_backend max_count:2.000000 num_executed_nodes:2 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:3365 Jun 6 09:37:08 otp3 pgpool[2874]: [331-1] 2016-06-06 09:37:08: pid 2874: DEBUG: processing backend response Jun 6 09:37:08 otp3 pgpool[2874]: [331-2] 2016-06-06 09:37:08: pid 2874: DETAIL: received kind '1'(31) from backend Jun 6 09:37:08 otp3 pgpool[2874]: [331-3] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:08 otp3 pgpool[2874]: [332-1] 2016-06-06 09:37:08: pid 2874: DEBUG: called by pool_add_sent_message: sent message: address: 2406c80 kind: P name: == Jun 6 09:37:08 otp3 pgpool[2874]: [332-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:436 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: processing backend response Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DETAIL: received kind '1'(31) from backend Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:08 otp3 pgpool[2874]: [333-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: called by pool_add_sent_message: sent message: address: 2406c80 kind: P name: == Jun 6 09:37:08 otp3 pgpool[2874]: [333-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:436 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:37:08 otp3 pgpool[2874]: [334-1] 2016-06-06 09:37:08: pid 2874: DEBUG: SimpleForwardToFrontend: packet:1 length:0 Jun 6 09:37:08 otp3 pgpool[2874]: [334-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:792 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: SimpleForwardToFrontend: packet:1 length:0 Jun 6 09:37:08 otp3 pgpool[2874]: [335-1] 2016-06-06 09:37:08: pid 2874: DEBUG: session context: setting command success. DONE Jun 6 09:37:08 otp3 pgpool[2874]: [335-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:741 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:792 Jun 6 09:37:08 otp3 pgpool[2874]: [336-1] 2016-06-06 09:37:08: pid 2874: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: session context: setting command success. DONE Jun 6 09:37:08 otp3 pgpool[2874]: [336-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:219 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:741 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:08 otp3 pgpool[2874]: [337-1] 2016-06-06 09:37:08: pid 2874: DEBUG: processing frontend response Jun 6 09:37:08 otp3 pgpool[2874]: [337-2] 2016-06-06 09:37:08: pid 2874: DETAIL: received kind 'B'(42) from frontend Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:219 Jun 6 09:37:08 otp3 pgpool[2874]: [337-3] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:08 otp3 pgpool[2874]: [338-1] 2016-06-06 09:37:08: pid 2874: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:08 otp3 pgpool[2874]: [338-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:280 Jun 6 09:37:08 otp3 pgpool[2874]: [339-1] 2016-06-06 09:37:08: pid 2874: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:08 otp3 pgpool[2874]: [339-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:269 Jun 6 09:37:08 otp3 pgpool[2874]: [340-1] 2016-06-06 09:37:08: pid 2874: DEBUG: Bind: checking strict query Jun 6 09:37:08 otp3 pgpool[2874]: [340-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_proto_modules.c:1211 Jun 6 09:37:08 otp3 pgpool[2874]: [341-1] 2016-06-06 09:37:08: pid 2874: DEBUG: Bind: checking insert lock Jun 6 09:37:08 otp3 pgpool[2874]: [341-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_proto_modules.c:1221 Jun 6 09:37:08 otp3 pgpool[2874]: [342-1] 2016-06-06 09:37:08: pid 2874: DEBUG: Bind: waiting for master completing the query Jun 6 09:37:08 otp3 pgpool[2874]: [342-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_proto_modules.c:1237 Jun 6 09:37:08 otp3 pgpool[2874]: [343-1] 2016-06-06 09:37:08: pid 2874: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:08 otp3 pgpool[2874]: [343-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:208 Jun 6 09:37:08 otp3 pgpool[2874]: [344-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:37:08 otp3 pgpool[2874]: [344-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_query_context.c:854 Jun 6 09:37:08 otp3 pgpool[2874]: [345-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_write: to backend: kind:B Jun 6 09:37:08 otp3 pgpool[2874]: [345-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:08 otp3 pgpool[2874]: [346-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:08 otp3 pgpool[2874]: [346-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:08 otp3 pgpool[2874]: [347-1] 2016-06-06 09:37:08: pid 2874: DEBUG: waiting for query response Jun 6 09:37:08 otp3 pgpool[2874]: [347-2] 2016-06-06 09:37:08: pid 2874: DETAIL: waiting for backend:0 to complete the query Jun 6 09:37:08 otp3 pgpool[2874]: [347-3] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:479 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: processing frontend response Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DETAIL: received kind 'B'(42) from frontend Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:280 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:269 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: Bind: checking strict query Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_proto_modules.c:1211 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: Bind: checking insert lock Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_proto_modules.c:1221 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: Bind: waiting for master completing the query Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_proto_modules.c:1237 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:208 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_query_context.c:854 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_write: to backend: kind:B Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: waiting for query response Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DETAIL: waiting for backend:0 to complete the query Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:479 Jun 6 09:37:08 otp3 pgpool[2874]: [348-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:37:08 otp3 pgpool[2874]: [348-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:190 Jun 6 09:37:08 otp3 pgpool[2874]: [349-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_send_and_wait: pool_set_sync_map: 1 Jun 6 09:37:08 otp3 pgpool[2874]: [349-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_query_context.c:854 Jun 6 09:37:08 otp3 pgpool[2874]: [350-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_write: to backend: kind:B Jun 6 09:37:08 otp3 pgpool[2874]: [350-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:08 otp3 pgpool[2874]: [351-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:08 otp3 pgpool[2874]: [351-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:08 otp3 pgpool[2874]: [352-1] 2016-06-06 09:37:08: pid 2874: DEBUG: waiting for query response Jun 6 09:37:08 otp3 pgpool[2874]: [352-2] 2016-06-06 09:37:08: pid 2874: DETAIL: waiting for backend:1 to complete the query Jun 6 09:37:08 otp3 pgpool[2874]: [352-3] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:479 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:190 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_send_and_wait: pool_set_sync_map: 1 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_query_context.c:854 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_write: to backend: kind:B Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: waiting for query response Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DETAIL: waiting for backend:1 to complete the query Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:479 Jun 6 09:37:08 otp3 pgpool[2874]: [353-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_read: read 5 bytes from backend 1 Jun 6 09:37:08 otp3 pgpool[2874]: [353-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:190 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_read: read 5 bytes from backend 1 Jun 6 09:37:08 otp3 pgpool[2874]: [354-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:08 otp3 pgpool[2874]: [354-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:190 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:37:08 otp3 pgpool[2874]: [355-1] 2016-06-06 09:37:08: pid 2874: DEBUG: reading backend data packet kind Jun 6 09:37:08 otp3 pgpool[2874]: [355-2] 2016-06-06 09:37:08: pid 2874: DETAIL: backend:0 of 2 kind = '2' Jun 6 09:37:08 otp3 pgpool[2874]: [355-3] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:3349 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: reading backend data packet kind Jun 6 09:37:08 otp3 pgpool[2874]: [356-1] 2016-06-06 09:37:08: pid 2874: DEBUG: reading backend data packet kind Jun 6 09:37:08 otp3 pgpool[2874]: [356-2] 2016-06-06 09:37:08: pid 2874: DETAIL: backend:1 of 2 kind = '2' Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DETAIL: backend:0 of 2 kind = '2' Jun 6 09:37:08 otp3 pgpool[2874]: [356-3] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:3349 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:3349 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: reading backend data packet kind Jun 6 09:37:08 otp3 pgpool[2874]: [357-1] 2016-06-06 09:37:08: pid 2874: DEBUG: read_kind_from_backend max_count:2.000000 num_executed_nodes:2 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DETAIL: backend:1 of 2 kind = '2' Jun 6 09:37:08 otp3 pgpool[2874]: [357-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:3365 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:3349 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: read_kind_from_backend max_count:2.000000 num_executed_nodes:2 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:3365 Jun 6 09:37:08 otp3 pgpool[2874]: [358-1] 2016-06-06 09:37:08: pid 2874: DEBUG: processing backend response Jun 6 09:37:08 otp3 pgpool[2874]: [358-2] 2016-06-06 09:37:08: pid 2874: DETAIL: received kind '2'(32) from backend Jun 6 09:37:08 otp3 pgpool[2874]: [358-3] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:08 otp3 pgpool[2874]: [359-1] 2016-06-06 09:37:08: pid 2874: DEBUG: called by pool_add_sent_message: sent message: address: 2406d18 kind: B name: == Jun 6 09:37:08 otp3 pgpool[2874]: [359-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:436 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: processing backend response Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DETAIL: received kind '2'(32) from backend Jun 6 09:37:08 otp3 pgpool[2874]: [360-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:08 otp3 pgpool[2874]: [360-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:37:08 otp3 pgpool[2874]: [361-1] 2016-06-06 09:37:08: pid 2874: DEBUG: SimpleForwardToFrontend: packet:2 length:0 Jun 6 09:37:08 otp3 pgpool[2874]: [361-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:792 Jun 6 09:37:08 otp3 pgpool[2874]: [362-1] 2016-06-06 09:37:08: pid 2874: DEBUG: session context: setting command success. DONE Jun 6 09:37:08 otp3 pgpool[2874]: [362-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:741 Jun 6 09:37:08 otp3 pgpool[2874]: [363-1] 2016-06-06 09:37:08: pid 2874: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:08 otp3 pgpool[2874]: [363-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:219 Jun 6 09:37:08 otp3 pgpool[2874]: [364-1] 2016-06-06 09:37:08: pid 2874: DEBUG: processing frontend response Jun 6 09:37:08 otp3 pgpool[2874]: [364-2] 2016-06-06 09:37:08: pid 2874: DETAIL: received kind 'E'(45) from frontend Jun 6 09:37:08 otp3 pgpool[2874]: [364-3] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:08 otp3 pgpool[2874]: [365-1] 2016-06-06 09:37:08: pid 2874: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:08 otp3 pgpool[2874]: [365-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:280 Jun 6 09:37:08 otp3 pgpool[2874]: [366-1] 2016-06-06 09:37:08: pid 2874: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:08 otp3 pgpool[2874]: [366-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:269 Jun 6 09:37:08 otp3 pgpool[2874]: [367-1] 2016-06-06 09:37:08: pid 2874: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:08 otp3 pgpool[2874]: [367-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:208 Jun 6 09:37:08 otp3 pgpool[2874]: [368-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:37:08 otp3 pgpool[2874]: [368-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_query_context.c:854 Jun 6 09:37:08 otp3 pgpool[2874]: [369-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_write: to backend: kind:E Jun 6 09:37:08 otp3 pgpool[2874]: [369-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:08 otp3 pgpool[2874]: [370-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:08 otp3 pgpool[2874]: [370-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:08 otp3 pgpool[2874]: [371-1] 2016-06-06 09:37:08: pid 2874: DEBUG: waiting for query response Jun 6 09:37:08 otp3 pgpool[2874]: [371-2] 2016-06-06 09:37:08: pid 2874: DETAIL: waiting for backend:0 to complete the query Jun 6 09:37:08 otp3 pgpool[2874]: [371-3] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:479 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: called by pool_add_sent_message: sent message: address: 2406d18 kind: B name: == Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:436 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: SimpleForwardToFrontend: packet:2 length:0 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:792 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: session context: setting command success. DONE Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:741 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:219 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: processing frontend response Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DETAIL: received kind 'E'(45) from frontend Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:280 Jun 6 09:37:08 otp3 pgpool[2874]: [372-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_read: read 9 bytes from backend 0 Jun 6 09:37:08 otp3 pgpool[2874]: [372-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:190 Jun 6 09:37:08 otp3 pgpool[2874]: [373-1] 2016-06-06 09:37:08: pid 2874: DEBUG: detect error: kind: C Jun 6 09:37:08 otp3 pgpool[2874]: [373-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:4166 Jun 6 09:37:08 otp3 pgpool[2874]: [374-1] 2016-06-06 09:37:08: pid 2874: DEBUG: detect error: kind: C Jun 6 09:37:08 otp3 pgpool[2874]: [374-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:4166 Jun 6 09:37:08 otp3 pgpool[2874]: [375-1] 2016-06-06 09:37:08: pid 2874: DEBUG: detect error: kind: C Jun 6 09:37:08 otp3 pgpool[2874]: [375-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:4166 Jun 6 09:37:08 otp3 pgpool[2874]: [376-1] 2016-06-06 09:37:08: pid 2874: DEBUG: detect error: kind: C Jun 6 09:37:08 otp3 pgpool[2874]: [376-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:4166 Jun 6 09:37:08 otp3 pgpool[2874]: [377-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_send_and_wait: pool_set_sync_map: 1 Jun 6 09:37:08 otp3 pgpool[2874]: [377-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_query_context.c:854 Jun 6 09:37:08 otp3 pgpool[2874]: [378-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_write: to backend: kind:E Jun 6 09:37:08 otp3 pgpool[2874]: [378-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:08 otp3 pgpool[2874]: [379-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:08 otp3 pgpool[2874]: [379-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:08 otp3 pgpool[2874]: [380-1] 2016-06-06 09:37:08: pid 2874: DEBUG: waiting for query response Jun 6 09:37:08 otp3 pgpool[2874]: [380-2] 2016-06-06 09:37:08: pid 2874: DETAIL: waiting for backend:1 to complete the query Jun 6 09:37:08 otp3 pgpool[2874]: [380-3] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:479 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:269 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:208 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_query_context.c:854 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_write: to backend: kind:E Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: waiting for query response Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DETAIL: waiting for backend:0 to complete the query Jun 6 09:37:08 otp3 pgpool[2874]: [381-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_read: read 9 bytes from backend 1 Jun 6 09:37:08 otp3 pgpool[2874]: [381-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:190 Jun 6 09:37:08 otp3 pgpool[2874]: [382-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:08 otp3 pgpool[2874]: [382-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:37:08 otp3 pgpool[2874]: [383-1] 2016-06-06 09:37:08: pid 2874: DEBUG: reading backend data packet kind Jun 6 09:37:08 otp3 pgpool[2874]: [383-2] 2016-06-06 09:37:08: pid 2874: DETAIL: backend:0 of 2 kind = 'C' Jun 6 09:37:08 otp3 pgpool[2874]: [383-3] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:3349 Jun 6 09:37:08 otp3 pgpool[2874]: [384-1] 2016-06-06 09:37:08: pid 2874: DEBUG: reading backend data packet kind Jun 6 09:37:08 otp3 pgpool[2874]: [384-2] 2016-06-06 09:37:08: pid 2874: DETAIL: backend:1 of 2 kind = 'C' Jun 6 09:37:08 otp3 pgpool[2874]: [384-3] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:3349 Jun 6 09:37:08 otp3 pgpool[2874]: [385-1] 2016-06-06 09:37:08: pid 2874: DEBUG: read_kind_from_backend max_count:2.000000 num_executed_nodes:2 Jun 6 09:37:08 otp3 pgpool[2874]: [385-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:3365 Jun 6 09:37:08 otp3 pgpool[2874]: [386-1] 2016-06-06 09:37:08: pid 2874: DEBUG: processing backend response Jun 6 09:37:08 otp3 pgpool[2874]: [386-2] 2016-06-06 09:37:08: pid 2874: DETAIL: received kind 'C'(43) from backend Jun 6 09:37:08 otp3 pgpool[2874]: [386-3] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:08 otp3 pgpool[2874]: [387-1] 2016-06-06 09:37:08: pid 2874: DEBUG: session context: setting command success. DONE Jun 6 09:37:08 otp3 pgpool[2874]: [387-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:741 Jun 6 09:37:08 otp3 pgpool[2874]: [388-1] 2016-06-06 09:37:08: pid 2874: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:08 otp3 pgpool[2874]: [388-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:219 Jun 6 09:37:08 otp3 pgpool[2874]: [389-1] 2016-06-06 09:37:08: pid 2874: DEBUG: processing frontend response Jun 6 09:37:08 otp3 pgpool[2874]: [389-2] 2016-06-06 09:37:08: pid 2874: DETAIL: received kind 'S'(53) from frontend Jun 6 09:37:08 otp3 pgpool[2874]: [389-3] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:08 otp3 pgpool[2874]: [390-1] 2016-06-06 09:37:08: pid 2874: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:08 otp3 pgpool[2874]: [390-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:280 Jun 6 09:37:08 otp3 pgpool[2874]: [391-1] 2016-06-06 09:37:08: pid 2874: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:08 otp3 pgpool[2874]: [391-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:269 Jun 6 09:37:08 otp3 pgpool[2874]: [392-1] 2016-06-06 09:37:08: pid 2874: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:08 otp3 pgpool[2874]: [392-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:208 Jun 6 09:37:08 otp3 pgpool[2874]: [393-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_write: to backend: kind:S Jun 6 09:37:08 otp3 pgpool[2874]: [393-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:08 otp3 pgpool[2874]: [394-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_write: to backend: kind:S Jun 6 09:37:08 otp3 pgpool[2874]: [394-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:08 otp3 pgpool[2874]: [395-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:08 otp3 pgpool[2874]: [395-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:479 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_read: read 9 bytes from backend 0 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:190 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: detect error: kind: C Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:4166 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: detect error: kind: C Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:4166 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: detect error: kind: C Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:4166 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: detect error: kind: C Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:4166 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_send_and_wait: pool_set_sync_map: 1 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_query_context.c:854 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_write: to backend: kind:E Jun 6 09:37:08 otp3 pgpool[2874]: [396-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:37:08 otp3 pgpool[2874]: [396-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:190 Jun 6 09:37:08 otp3 pgpool[2874]: [397-1] 2016-06-06 09:37:08: pid 2874: DEBUG: reading backend data packet kind Jun 6 09:37:08 otp3 pgpool[2874]: [397-2] 2016-06-06 09:37:08: pid 2874: DETAIL: backend:0 of 2 kind = 'Z' Jun 6 09:37:08 otp3 pgpool[2874]: [397-3] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:3349 Jun 6 09:37:08 otp3 pgpool[2874]: [398-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_read: read 6 bytes from backend 1 Jun 6 09:37:08 otp3 pgpool[2874]: [398-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:190 Jun 6 09:37:08 otp3 pgpool[2874]: [399-1] 2016-06-06 09:37:08: pid 2874: DEBUG: reading backend data packet kind Jun 6 09:37:08 otp3 pgpool[2874]: [399-2] 2016-06-06 09:37:08: pid 2874: DETAIL: backend:1 of 2 kind = 'Z' Jun 6 09:37:08 otp3 pgpool[2874]: [399-3] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:3349 Jun 6 09:37:08 otp3 pgpool[2874]: [400-1] 2016-06-06 09:37:08: pid 2874: DEBUG: read_kind_from_backend max_count:2.000000 num_executed_nodes:2 Jun 6 09:37:08 otp3 pgpool[2874]: [400-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:3365 Jun 6 09:37:08 otp3 pgpool[2874]: [401-1] 2016-06-06 09:37:08: pid 2874: DEBUG: processing backend response Jun 6 09:37:08 otp3 pgpool[2874]: [401-2] 2016-06-06 09:37:08: pid 2874: DETAIL: received kind 'Z'(5a) from backend Jun 6 09:37:08 otp3 pgpool[2874]: [401-3] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:08 otp3 pgpool[2874]: [402-1] 2016-06-06 09:37:08: pid 2874: DEBUG: processing backend response Jun 6 09:37:08 otp3 pgpool[2874]: [402-2] 2016-06-06 09:37:08: pid 2874: DETAIL: Ready For Query received Jun 6 09:37:08 otp3 pgpool[2874]: [402-3] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_proto_modules.c:2442 Jun 6 09:37:08 otp3 pgpool[2874]: [403-1] 2016-06-06 09:37:08: pid 2874: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:37:08 otp3 pgpool[2874]: [403-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:310 Jun 6 09:37:08 otp3 pgpool[2874]: [404-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:08 otp3 pgpool[2874]: [404-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:37:08 otp3 pgpool[2874]: [405-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:08 otp3 pgpool[2874]: [405-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:37:08 otp3 pgpool[2874]: [406-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:08 otp3 pgpool[2874]: [406-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:37:08 otp3 pgpool[2874]: [407-1] 2016-06-06 09:37:08: pid 2874: DEBUG: reading message length Jun 6 09:37:08 otp3 pgpool[2874]: [407-2] 2016-06-06 09:37:08: pid 2874: DETAIL: slot: 0 length: 5 Jun 6 09:37:08 otp3 pgpool[2874]: [407-3] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_auth.c:1107 Jun 6 09:37:08 otp3 pgpool[2874]: [408-1] 2016-06-06 09:37:08: pid 2874: DEBUG: reading message length Jun 6 09:37:08 otp3 pgpool[2874]: [408-2] 2016-06-06 09:37:08: pid 2874: DETAIL: slot: 1 length: 5 Jun 6 09:37:08 otp3 pgpool[2874]: [408-3] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_auth.c:1126 Jun 6 09:37:08 otp3 pgpool[2874]: [409-1] 2016-06-06 09:37:08: pid 2874: DEBUG: processing ReadyForQuery Jun 6 09:37:08 otp3 pgpool[2874]: [409-2] 2016-06-06 09:37:08: pid 2874: DETAIL: transaction state 'I'(49) Jun 6 09:37:08 otp3 pgpool[2874]: [409-3] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_proto_modules.c:1612 Jun 6 09:37:08 otp3 pgpool[2874]: [410-1] 2016-06-06 09:37:08: pid 2874: DEBUG: processing ReadyForQuery Jun 6 09:37:08 otp3 pgpool[2874]: [410-2] 2016-06-06 09:37:08: pid 2874: DETAIL: transaction state 'I'(49) Jun 6 09:37:08 otp3 pgpool[2874]: [410-3] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_proto_modules.c:1612 Jun 6 09:37:08 otp3 pgpool[2874]: [411-1] 2016-06-06 09:37:08: pid 2874: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:08 otp3 pgpool[2874]: [411-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:219 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: waiting for query response Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DETAIL: waiting for backend:1 to complete the query Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:479 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_read: read 9 bytes from backend 1 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:190 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: reading backend data packet kind Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DETAIL: backend:0 of 2 kind = 'C' Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:3349 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: reading backend data packet kind Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DETAIL: backend:1 of 2 kind = 'C' Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:3349 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: read_kind_from_backend max_count:2.000000 num_executed_nodes:2 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:3365 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: processing backend response Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DETAIL: received kind 'C'(43) from backend Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: session context: setting command success. DONE Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:741 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:219 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: processing frontend response Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DETAIL: received kind 'S'(53) from frontend Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:280 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:269 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:208 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_write: to backend: kind:S Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_write: to backend: kind:S Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:190 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: reading backend data packet kind Jun 6 09:37:08 otp3 pgpool[2874]: [412-1] 2016-06-06 09:37:08: pid 2874: DEBUG: processing frontend response Jun 6 09:37:08 otp3 pgpool[2874]: [412-2] 2016-06-06 09:37:08: pid 2874: DETAIL: received kind 'P'(50) from frontend Jun 6 09:37:08 otp3 pgpool[2874]: [412-3] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:08 otp3 pgpool[2874]: [413-1] 2016-06-06 09:37:08: pid 2874: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:08 otp3 pgpool[2874]: [413-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:280 Jun 6 09:37:08 otp3 pgpool[2874]: [414-1] 2016-06-06 09:37:08: pid 2874: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:08 otp3 pgpool[2874]: [414-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:269 Jun 6 09:37:08 otp3 pgpool[2874]: [415-1] 2016-06-06 09:37:08: pid 2874: DEBUG: Parse: statement name <> Jun 6 09:37:08 otp3 pgpool[2874]: [415-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_proto_modules.c:817 Jun 6 09:37:08 otp3 pgpool[2874]: [416-1] 2016-06-06 09:37:08: pid 2874: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:08 otp3 pgpool[2874]: [416-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:208 Jun 6 09:37:08 otp3 pgpool[2874]: [417-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_write: to backend: kind:S Jun 6 09:37:08 otp3 pgpool[2874]: [417-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:08 otp3 pgpool[2874]: [418-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:08 otp3 pgpool[2874]: [418-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:08 otp3 pgpool[2874]: [419-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_write: to backend: kind:S Jun 6 09:37:08 otp3 pgpool[2874]: [419-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:08 otp3 pgpool[2874]: [420-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:08 otp3 pgpool[2874]: [420-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DETAIL: backend:0 of 2 kind = 'Z' Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:3349 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_read: read 6 bytes from backend 1 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:190 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: reading backend data packet kind Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DETAIL: backend:1 of 2 kind = 'Z' Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:3349 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: read_kind_from_backend max_count:2.000000 num_executed_nodes:2 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:3365 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: processing backend response Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DETAIL: received kind 'Z'(5a) from backend Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: processing backend response Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DETAIL: Ready For Query received Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_proto_modules.c:2442 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:310 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:08 otp3 pgpool[2874]: [421-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:37:08 otp3 pgpool[2874]: [421-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:190 Jun 6 09:37:08 otp3 pgpool[2874]: [422-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_read: read 6 bytes from backend 1 Jun 6 09:37:08 otp3 pgpool[2874]: [422-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:190 Jun 6 09:37:08 otp3 pgpool[2874]: [423-1] 2016-06-06 09:37:08: pid 2874: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:37:08 otp3 pgpool[2874]: [423-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:310 Jun 6 09:37:08 otp3 pgpool[2874]: [424-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:08 otp3 pgpool[2874]: [424-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:37:08 otp3 pgpool[2874]: [425-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:08 otp3 pgpool[2874]: [425-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:37:08 otp3 pgpool[2874]: [426-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:08 otp3 pgpool[2874]: [426-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:37:08 otp3 pgpool[2874]: [427-1] 2016-06-06 09:37:08: pid 2874: DEBUG: reading message length Jun 6 09:37:08 otp3 pgpool[2874]: [427-2] 2016-06-06 09:37:08: pid 2874: DETAIL: slot: 0 length: 5 Jun 6 09:37:08 otp3 pgpool[2874]: [427-3] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_auth.c:1107 Jun 6 09:37:08 otp3 pgpool[2874]: [428-1] 2016-06-06 09:37:08: pid 2874: DEBUG: reading message length Jun 6 09:37:08 otp3 pgpool[2874]: [428-2] 2016-06-06 09:37:08: pid 2874: DETAIL: slot: 1 length: 5 Jun 6 09:37:08 otp3 pgpool[2874]: [428-3] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_auth.c:1126 Jun 6 09:37:08 otp3 pgpool[2874]: [429-1] 2016-06-06 09:37:08: pid 2874: DEBUG: processing ReadyForQuery Jun 6 09:37:08 otp3 pgpool[2874]: [429-2] 2016-06-06 09:37:08: pid 2874: DETAIL: transaction state 'I'(49) Jun 6 09:37:08 otp3 pgpool[2874]: [429-3] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_proto_modules.c:1612 Jun 6 09:37:08 otp3 pgpool[2874]: [430-1] 2016-06-06 09:37:08: pid 2874: DEBUG: processing ReadyForQuery Jun 6 09:37:08 otp3 pgpool[2874]: [430-2] 2016-06-06 09:37:08: pid 2874: DETAIL: transaction state 'I'(49) Jun 6 09:37:08 otp3 pgpool[2874]: [430-3] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_proto_modules.c:1612 Jun 6 09:37:08 otp3 pgpool[2874]: [431-1] 2016-06-06 09:37:08: pid 2874: DEBUG: session context: clearing writing transaction. DONE Jun 6 09:37:08 otp3 pgpool[2874]: [431-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:565 Jun 6 09:37:08 otp3 pgpool[2874]: [432-1] 2016-06-06 09:37:08: pid 2874: DEBUG: session context: clearing failed transaction. DONE Jun 6 09:37:08 otp3 pgpool[2874]: [432-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:594 Jun 6 09:37:08 otp3 pgpool[2874]: [433-1] 2016-06-06 09:37:08: pid 2874: DEBUG: session context: clearing failed transaction. DONE Jun 6 09:37:08 otp3 pgpool[2874]: [433-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:624 Jun 6 09:37:08 otp3 pgpool[2874]: [434-1] 2016-06-06 09:37:08: pid 2874: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:08 otp3 pgpool[2874]: [434-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:219 Jun 6 09:37:08 otp3 pgpool[2874]: [435-1] 2016-06-06 09:37:08: pid 2874: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:08 otp3 pgpool[2874]: [435-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:208 Jun 6 09:37:08 otp3 pgpool[2874]: [436-1] 2016-06-06 09:37:08: pid 2874: DEBUG: Parse: waiting for master completing the query Jun 6 09:37:08 otp3 pgpool[2874]: [436-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_proto_modules.c:1064 Jun 6 09:37:08 otp3 pgpool[2874]: [437-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:37:08 otp3 pgpool[2874]: [437-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_query_context.c:854 Jun 6 09:37:08 otp3 pgpool[2874]: [438-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_write: to backend: kind:P Jun 6 09:37:08 otp3 pgpool[2874]: [438-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:08 otp3 pgpool[2874]: [439-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:08 otp3 pgpool[2874]: [439-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:08 otp3 pgpool[2874]: [440-1] 2016-06-06 09:37:08: pid 2874: DEBUG: waiting for query response Jun 6 09:37:08 otp3 pgpool[2874]: [440-2] 2016-06-06 09:37:08: pid 2874: DETAIL: waiting for backend:0 to complete the query Jun 6 09:37:08 otp3 pgpool[2874]: [440-3] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:479 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: reading message length Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DETAIL: slot: 0 length: 5 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_auth.c:1107 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: reading message length Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DETAIL: slot: 1 length: 5 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_auth.c:1126 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: processing ReadyForQuery Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DETAIL: transaction state 'I'(49) Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_proto_modules.c:1612 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: processing ReadyForQuery Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DETAIL: transaction state 'I'(49) Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_proto_modules.c:1612 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:219 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: processing frontend response Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DETAIL: received kind 'P'(50) from frontend Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:280 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:269 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: Parse: statement name <> Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_proto_modules.c:817 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:208 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_write: to backend: kind:S Jun 6 09:37:08 otp3 pgpool[2874]: [441-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:37:08 otp3 pgpool[2874]: [441-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:190 Jun 6 09:37:08 otp3 pgpool[2874]: [442-1] 2016-06-06 09:37:08: pid 2874: DEBUG: detect error: kind: 1 Jun 6 09:37:08 otp3 pgpool[2874]: [442-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:4166 Jun 6 09:37:08 otp3 pgpool[2874]: [443-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_send_and_wait: pool_set_sync_map: 1 Jun 6 09:37:08 otp3 pgpool[2874]: [443-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_query_context.c:854 Jun 6 09:37:08 otp3 pgpool[2874]: [444-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_write: to backend: kind:P Jun 6 09:37:08 otp3 pgpool[2874]: [444-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:08 otp3 pgpool[2874]: [445-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:08 otp3 pgpool[2874]: [445-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:08 otp3 pgpool[2874]: [446-1] 2016-06-06 09:37:08: pid 2874: DEBUG: waiting for query response Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:08 otp3 pgpool[2874]: [446-2] 2016-06-06 09:37:08: pid 2874: DETAIL: waiting for backend:1 to complete the query Jun 6 09:37:08 otp3 pgpool[2874]: [446-3] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:479 Jun 6 09:37:08 otp3 pgpool[2874]: [447-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_read: read 5 bytes from backend 1 Jun 6 09:37:08 otp3 pgpool[2874]: [447-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:190 Jun 6 09:37:08 otp3 pgpool[2874]: [448-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:08 otp3 pgpool[2874]: [448-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:37:08 otp3 pgpool[2874]: [449-1] 2016-06-06 09:37:08: pid 2874: DEBUG: reading backend data packet kind Jun 6 09:37:08 otp3 pgpool[2874]: [449-2] 2016-06-06 09:37:08: pid 2874: DETAIL: backend:0 of 2 kind = '1' Jun 6 09:37:08 otp3 pgpool[2874]: [449-3] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:3349 Jun 6 09:37:08 otp3 pgpool[2874]: [450-1] 2016-06-06 09:37:08: pid 2874: DEBUG: reading backend data packet kind Jun 6 09:37:08 otp3 pgpool[2874]: [450-2] 2016-06-06 09:37:08: pid 2874: DETAIL: backend:1 of 2 kind = '1' Jun 6 09:37:08 otp3 pgpool[2874]: [450-3] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:3349 Jun 6 09:37:08 otp3 pgpool[2874]: [451-1] 2016-06-06 09:37:08: pid 2874: DEBUG: read_kind_from_backend max_count:2.000000 num_executed_nodes:2 Jun 6 09:37:08 otp3 pgpool[2874]: [451-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:3365 Jun 6 09:37:08 otp3 pgpool[2874]: [452-1] 2016-06-06 09:37:08: pid 2874: DEBUG: processing backend response Jun 6 09:37:08 otp3 pgpool[2874]: [452-2] 2016-06-06 09:37:08: pid 2874: DETAIL: received kind '1'(31) from backend Jun 6 09:37:08 otp3 pgpool[2874]: [452-3] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:08 otp3 pgpool[2874]: [453-1] 2016-06-06 09:37:08: pid 2874: DEBUG: called by pool_add_sent_message: sent message: address: 2406d98 kind: P name: == Jun 6 09:37:08 otp3 pgpool[2874]: [453-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:436 Jun 6 09:37:08 otp3 pgpool[2874]: [454-1] 2016-06-06 09:37:08: pid 2874: DEBUG: adding sent message to list Jun 6 09:37:08 otp3 pgpool[2874]: [454-2] 2016-06-06 09:37:08: pid 2874: DETAIL: prepared statement "" already exists Jun 6 09:37:08 otp3 pgpool[2874]: [454-3] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:516 Jun 6 09:37:08 otp3 pgpool[2874]: [455-1] 2016-06-06 09:37:08: pid 2874: DEBUG: called by pool_sent_message_destroy: sent message: address: 2406c80 kind: P name: == Jun 6 09:37:08 otp3 pgpool[2874]: [455-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:436 Jun 6 09:37:08 otp3 pgpool[2874]: [456-1] 2016-06-06 09:37:08: pid 2874: DEBUG: checking if query context can be safely destroyed Jun 6 09:37:08 otp3 pgpool[2874]: [456-2] 2016-06-06 09:37:08: pid 2874: DETAIL: query context 0x802481830 is still used 2 times. query:"SET extra_float_digits = 3" Jun 6 09:37:08 otp3 pgpool[2874]: [456-3] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:873 Jun 6 09:37:08 otp3 pgpool[2874]: [457-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:08 otp3 pgpool[2874]: [457-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:37:08 otp3 pgpool[2874]: [458-1] 2016-06-06 09:37:08: pid 2874: DEBUG: SimpleForwardToFrontend: packet:1 length:0 Jun 6 09:37:08 otp3 pgpool[2874]: [458-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:792 Jun 6 09:37:08 otp3 pgpool[2874]: [459-1] 2016-06-06 09:37:08: pid 2874: DEBUG: session context: setting command success. DONE Jun 6 09:37:08 otp3 pgpool[2874]: [459-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:741 Jun 6 09:37:08 otp3 pgpool[2874]: [460-1] 2016-06-06 09:37:08: pid 2874: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:08 otp3 pgpool[2874]: [460-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:219 Jun 6 09:37:08 otp3 pgpool[2874]: [461-1] 2016-06-06 09:37:08: pid 2874: DEBUG: processing frontend response Jun 6 09:37:08 otp3 pgpool[2874]: [461-2] 2016-06-06 09:37:08: pid 2874: DETAIL: received kind 'B'(42) from frontend Jun 6 09:37:08 otp3 pgpool[2874]: [461-3] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:08 otp3 pgpool[2874]: [462-1] 2016-06-06 09:37:08: pid 2874: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:08 otp3 pgpool[2874]: [462-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:280 Jun 6 09:37:08 otp3 pgpool[2874]: [463-1] 2016-06-06 09:37:08: pid 2874: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:08 otp3 pgpool[2874]: [463-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:269 Jun 6 09:37:08 otp3 pgpool[2874]: [464-1] 2016-06-06 09:37:08: pid 2874: DEBUG: Bind: checking strict query Jun 6 09:37:08 otp3 pgpool[2874]: [464-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_proto_modules.c:1211 Jun 6 09:37:08 otp3 pgpool[2874]: [465-1] 2016-06-06 09:37:08: pid 2874: DEBUG: Bind: checking insert lock Jun 6 09:37:08 otp3 pgpool[2874]: [465-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_proto_modules.c:1221 Jun 6 09:37:08 otp3 pgpool[2874]: [466-1] 2016-06-06 09:37:08: pid 2874: DEBUG: Bind: waiting for master completing the query Jun 6 09:37:08 otp3 pgpool[2874]: [466-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_proto_modules.c:1237 Jun 6 09:37:08 otp3 pgpool[2874]: [467-1] 2016-06-06 09:37:08: pid 2874: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:08 otp3 pgpool[2874]: [467-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:208 Jun 6 09:37:08 otp3 pgpool[2874]: [468-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:37:08 otp3 pgpool[2874]: [468-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_query_context.c:854 Jun 6 09:37:08 otp3 pgpool[2874]: [469-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_write: to backend: kind:B Jun 6 09:37:08 otp3 pgpool[2874]: [469-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:08 otp3 pgpool[2874]: [470-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:08 otp3 pgpool[2874]: [470-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:08 otp3 pgpool[2874]: [471-1] 2016-06-06 09:37:08: pid 2874: DEBUG: waiting for query response Jun 6 09:37:08 otp3 pgpool[2874]: [471-2] 2016-06-06 09:37:08: pid 2874: DETAIL: waiting for backend:0 to complete the query Jun 6 09:37:08 otp3 pgpool[2874]: [471-3] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:479 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_write: to backend: kind:S Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:190 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_read: read 6 bytes from backend 1 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:190 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:310 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: reading message length Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DETAIL: slot: 0 length: 5 Jun 6 09:37:08 otp3 pgpool[2874]: [472-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:37:08 otp3 pgpool[2874]: [472-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:190 Jun 6 09:37:08 otp3 pgpool[2874]: [473-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_send_and_wait: pool_set_sync_map: 1 Jun 6 09:37:08 otp3 pgpool[2874]: [473-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_query_context.c:854 Jun 6 09:37:08 otp3 pgpool[2874]: [474-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_write: to backend: kind:B Jun 6 09:37:08 otp3 pgpool[2874]: [474-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:08 otp3 pgpool[2874]: [475-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:08 otp3 pgpool[2874]: [475-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:08 otp3 pgpool[2874]: [476-1] 2016-06-06 09:37:08: pid 2874: DEBUG: waiting for query response Jun 6 09:37:08 otp3 pgpool[2874]: [476-2] 2016-06-06 09:37:08: pid 2874: DETAIL: waiting for backend:1 to complete the query Jun 6 09:37:08 otp3 pgpool[2874]: [476-3] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:479 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_auth.c:1107 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: reading message length Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DETAIL: slot: 1 length: 5 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_auth.c:1126 Jun 6 09:37:08 otp3 pgpool[2874]: [477-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_read: read 5 bytes from backend 1 Jun 6 09:37:08 otp3 pgpool[2874]: [477-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:190 Jun 6 09:37:08 otp3 pgpool[2874]: [478-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:08 otp3 pgpool[2874]: [478-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:37:08 otp3 pgpool[2874]: [479-1] 2016-06-06 09:37:08: pid 2874: DEBUG: reading backend data packet kind Jun 6 09:37:08 otp3 pgpool[2874]: [479-2] 2016-06-06 09:37:08: pid 2874: DETAIL: backend:0 of 2 kind = '2' Jun 6 09:37:08 otp3 pgpool[2874]: [479-3] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:3349 Jun 6 09:37:08 otp3 pgpool[2874]: [480-1] 2016-06-06 09:37:08: pid 2874: DEBUG: reading backend data packet kind Jun 6 09:37:08 otp3 pgpool[2874]: [480-2] 2016-06-06 09:37:08: pid 2874: DETAIL: backend:1 of 2 kind = '2' Jun 6 09:37:08 otp3 pgpool[2874]: [480-3] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:3349 Jun 6 09:37:08 otp3 pgpool[2874]: [481-1] 2016-06-06 09:37:08: pid 2874: DEBUG: read_kind_from_backend max_count:2.000000 num_executed_nodes:2 Jun 6 09:37:08 otp3 pgpool[2874]: [481-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:3365 Jun 6 09:37:08 otp3 pgpool[2874]: [482-1] 2016-06-06 09:37:08: pid 2874: DEBUG: processing backend response Jun 6 09:37:08 otp3 pgpool[2874]: [482-2] 2016-06-06 09:37:08: pid 2874: DETAIL: received kind '2'(32) from backend Jun 6 09:37:08 otp3 pgpool[2874]: [482-3] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:08 otp3 pgpool[2874]: [483-1] 2016-06-06 09:37:08: pid 2874: DEBUG: called by pool_add_sent_message: sent message: address: 2406c80 kind: B name: == Jun 6 09:37:08 otp3 pgpool[2874]: [483-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:436 Jun 6 09:37:08 otp3 pgpool[2874]: [484-1] 2016-06-06 09:37:08: pid 2874: DEBUG: adding sent message to list Jun 6 09:37:08 otp3 pgpool[2874]: [484-2] 2016-06-06 09:37:08: pid 2874: DETAIL: portal "" already exists Jun 6 09:37:08 otp3 pgpool[2874]: [484-3] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:512 Jun 6 09:37:08 otp3 pgpool[2874]: [485-1] 2016-06-06 09:37:08: pid 2874: DEBUG: called by pool_sent_message_destroy: sent message: address: 2406d18 kind: B name: == Jun 6 09:37:08 otp3 pgpool[2874]: [485-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:436 Jun 6 09:37:08 otp3 pgpool[2874]: [486-1] 2016-06-06 09:37:08: pid 2874: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:08 otp3 pgpool[2874]: [486-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:219 Jun 6 09:37:08 otp3 pgpool[2874]: [487-1] 2016-06-06 09:37:08: pid 2874: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:08 otp3 pgpool[2874]: [487-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:208 Jun 6 09:37:08 otp3 pgpool[2874]: [488-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:08 otp3 pgpool[2874]: [488-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:37:08 otp3 pgpool[2874]: [489-1] 2016-06-06 09:37:08: pid 2874: DEBUG: SimpleForwardToFrontend: packet:2 length:0 Jun 6 09:37:08 otp3 pgpool[2874]: [489-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:792 Jun 6 09:37:08 otp3 pgpool[2874]: [490-1] 2016-06-06 09:37:08: pid 2874: DEBUG: session context: setting command success. DONE Jun 6 09:37:08 otp3 pgpool[2874]: [490-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:741 Jun 6 09:37:08 otp3 pgpool[2874]: [491-1] 2016-06-06 09:37:08: pid 2874: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:08 otp3 pgpool[2874]: [491-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:219 Jun 6 09:37:08 otp3 pgpool[2874]: [492-1] 2016-06-06 09:37:08: pid 2874: DEBUG: processing frontend response Jun 6 09:37:08 otp3 pgpool[2874]: [492-2] 2016-06-06 09:37:08: pid 2874: DETAIL: received kind 'E'(45) from frontend Jun 6 09:37:08 otp3 pgpool[2874]: [492-3] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:08 otp3 pgpool[2874]: [493-1] 2016-06-06 09:37:08: pid 2874: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:08 otp3 pgpool[2874]: [493-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:280 Jun 6 09:37:08 otp3 pgpool[2874]: [494-1] 2016-06-06 09:37:08: pid 2874: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:08 otp3 pgpool[2874]: [494-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:269 Jun 6 09:37:08 otp3 pgpool[2874]: [495-1] 2016-06-06 09:37:08: pid 2874: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:08 otp3 pgpool[2874]: [495-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:208 Jun 6 09:37:08 otp3 pgpool[2874]: [496-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:37:08 otp3 pgpool[2874]: [496-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_query_context.c:854 Jun 6 09:37:08 otp3 pgpool[2874]: [497-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_write: to backend: kind:E Jun 6 09:37:08 otp3 pgpool[2874]: [497-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:08 otp3 pgpool[2874]: [498-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:08 otp3 pgpool[2874]: [498-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:08 otp3 pgpool[2874]: [499-1] 2016-06-06 09:37:08: pid 2874: DEBUG: waiting for query response Jun 6 09:37:08 otp3 pgpool[2874]: [499-2] 2016-06-06 09:37:08: pid 2874: DETAIL: waiting for backend:0 to complete the query Jun 6 09:37:08 otp3 pgpool[2874]: [499-3] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:479 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: processing ReadyForQuery Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DETAIL: transaction state 'I'(49) Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_proto_modules.c:1612 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: processing ReadyForQuery Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DETAIL: transaction state 'I'(49) Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_proto_modules.c:1612 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: session context: clearing writing transaction. DONE Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:565 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: session context: clearing failed transaction. DONE Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:594 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: session context: clearing failed transaction. DONE Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:624 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:219 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:208 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: Parse: waiting for master completing the query Jun 6 09:37:08 otp3 pgpool[2874]: [500-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_read: read 11 bytes from backend 0 Jun 6 09:37:08 otp3 pgpool[2874]: [500-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:190 Jun 6 09:37:08 otp3 pgpool[2874]: [501-1] 2016-06-06 09:37:08: pid 2874: DEBUG: detect error: kind: C Jun 6 09:37:08 otp3 pgpool[2874]: [501-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:4166 Jun 6 09:37:08 otp3 pgpool[2874]: [502-1] 2016-06-06 09:37:08: pid 2874: DEBUG: detect error: kind: C Jun 6 09:37:08 otp3 pgpool[2874]: [502-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:4166 Jun 6 09:37:08 otp3 pgpool[2874]: [503-1] 2016-06-06 09:37:08: pid 2874: DEBUG: detect error: kind: C Jun 6 09:37:08 otp3 pgpool[2874]: [503-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:4166 Jun 6 09:37:08 otp3 pgpool[2874]: [504-1] 2016-06-06 09:37:08: pid 2874: DEBUG: detect error: kind: C Jun 6 09:37:08 otp3 pgpool[2874]: [504-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:4166 Jun 6 09:37:08 otp3 pgpool[2874]: [505-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_send_and_wait: pool_set_sync_map: 1 Jun 6 09:37:08 otp3 pgpool[2874]: [505-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_query_context.c:854 Jun 6 09:37:08 otp3 pgpool[2874]: [506-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_write: to backend: kind:E Jun 6 09:37:08 otp3 pgpool[2874]: [506-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:08 otp3 pgpool[2874]: [507-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:08 otp3 pgpool[2874]: [507-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:08 otp3 pgpool[2874]: [508-1] 2016-06-06 09:37:08: pid 2874: DEBUG: waiting for query response Jun 6 09:37:08 otp3 pgpool[2874]: [508-2] 2016-06-06 09:37:08: pid 2874: DETAIL: waiting for backend:1 to complete the query Jun 6 09:37:08 otp3 pgpool[2874]: [508-3] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:479 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_proto_modules.c:1064 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_query_context.c:854 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_write: to backend: kind:P Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:08 otp3 pgpool[2874]: [509-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_read: read 11 bytes from backend 1 Jun 6 09:37:08 otp3 pgpool[2874]: [509-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:190 Jun 6 09:37:08 otp3 pgpool[2874]: [510-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:08 otp3 pgpool[2874]: [510-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:37:08 otp3 pgpool[2874]: [511-1] 2016-06-06 09:37:08: pid 2874: DEBUG: reading backend data packet kind Jun 6 09:37:08 otp3 pgpool[2874]: [511-2] 2016-06-06 09:37:08: pid 2874: DETAIL: backend:0 of 2 kind = 'C' Jun 6 09:37:08 otp3 pgpool[2874]: [511-3] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:3349 Jun 6 09:37:08 otp3 pgpool[2874]: [512-1] 2016-06-06 09:37:08: pid 2874: DEBUG: reading backend data packet kind Jun 6 09:37:08 otp3 pgpool[2874]: [512-2] 2016-06-06 09:37:08: pid 2874: DETAIL: backend:1 of 2 kind = 'C' Jun 6 09:37:08 otp3 pgpool[2874]: [512-3] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:3349 Jun 6 09:37:08 otp3 pgpool[2874]: [513-1] 2016-06-06 09:37:08: pid 2874: DEBUG: read_kind_from_backend max_count:2.000000 num_executed_nodes:2 Jun 6 09:37:08 otp3 pgpool[2874]: [513-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:3365 Jun 6 09:37:08 otp3 pgpool[2874]: [514-1] 2016-06-06 09:37:08: pid 2874: DEBUG: processing backend response Jun 6 09:37:08 otp3 pgpool[2874]: [514-2] 2016-06-06 09:37:08: pid 2874: DETAIL: received kind 'C'(43) from backend Jun 6 09:37:08 otp3 pgpool[2874]: [514-3] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:08 otp3 pgpool[2874]: [515-1] 2016-06-06 09:37:08: pid 2874: DEBUG: session context: clearing writing transaction. DONE Jun 6 09:37:08 otp3 pgpool[2874]: [515-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:565 Jun 6 09:37:08 otp3 pgpool[2874]: [516-1] 2016-06-06 09:37:08: pid 2874: DEBUG: session context: clearing failed transaction. DONE Jun 6 09:37:08 otp3 pgpool[2874]: [516-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:594 Jun 6 09:37:08 otp3 pgpool[2874]: [517-1] 2016-06-06 09:37:08: pid 2874: DEBUG: session context: clearing failed transaction. DONE Jun 6 09:37:08 otp3 pgpool[2874]: [517-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:624 Jun 6 09:37:08 otp3 pgpool[2874]: [518-1] 2016-06-06 09:37:08: pid 2874: DEBUG: session context: setting command success. DONE Jun 6 09:37:08 otp3 pgpool[2874]: [518-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:741 Jun 6 09:37:08 otp3 pgpool[2874]: [519-1] 2016-06-06 09:37:08: pid 2874: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:08 otp3 pgpool[2874]: [519-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:219 Jun 6 09:37:08 otp3 pgpool[2874]: [520-1] 2016-06-06 09:37:08: pid 2874: DEBUG: processing frontend response Jun 6 09:37:08 otp3 pgpool[2874]: [520-2] 2016-06-06 09:37:08: pid 2874: DETAIL: received kind 'P'(50) from frontend Jun 6 09:37:08 otp3 pgpool[2874]: [520-3] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:08 otp3 pgpool[2874]: [521-1] 2016-06-06 09:37:08: pid 2874: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:08 otp3 pgpool[2874]: [521-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:280 Jun 6 09:37:08 otp3 pgpool[2874]: [522-1] 2016-06-06 09:37:08: pid 2874: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:08 otp3 pgpool[2874]: [522-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:269 Jun 6 09:37:08 otp3 pgpool[2874]: [523-1] 2016-06-06 09:37:08: pid 2874: DEBUG: Parse: statement name <> Jun 6 09:37:08 otp3 pgpool[2874]: [523-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_proto_modules.c:817 Jun 6 09:37:08 otp3 pgpool[2874]: [524-1] 2016-06-06 09:37:08: pid 2874: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:08 otp3 pgpool[2874]: [524-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:208 Jun 6 09:37:08 otp3 pgpool[2874]: [525-1] 2016-06-06 09:37:08: pid 2874: DEBUG: do_query: extended:1 query:"SELECT current_setting('transaction_isolation')" Jun 6 09:37:08 otp3 pgpool[2874]: [525-2] 2016-06-06 09:37:08: pid 2874: CONTEXT: while getting transaction isolation Jun 6 09:37:08 otp3 pgpool[2874]: [525-3] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:1936 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: waiting for query response Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DETAIL: waiting for backend:0 to complete the query Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:479 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:190 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: detect error: kind: 1 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:4166 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_send_and_wait: pool_set_sync_map: 1 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_query_context.c:854 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_write: to backend: kind:P Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: waiting for query response Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DETAIL: waiting for backend:1 to complete the query Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:479 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_read: read 5 bytes from backend 1 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:190 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: reading backend data packet kind Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DETAIL: backend:0 of 2 kind = '1' Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:3349 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: reading backend data packet kind Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DETAIL: backend:1 of 2 kind = '1' Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:3349 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: read_kind_from_backend max_count:2.000000 num_executed_nodes:2 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:3365 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: processing backend response Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DETAIL: received kind '1'(31) from backend Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: called by pool_add_sent_message: sent message: address: 2406d98 kind: P name: == Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:436 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: adding sent message to list Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DETAIL: prepared statement "" already exists Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:516 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: called by pool_sent_message_destroy: sent message: address: 2406c80 kind: P name: == Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:436 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: checking if query context can be safely destroyed Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DETAIL: query context 0x802481830 is still used 2 times. query:"SET extra_float_digits = 3" Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:873 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: SimpleForwardToFrontend: packet:1 length:0 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:792 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: session context: setting command success. DONE Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:741 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:219 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: processing frontend response Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DETAIL: received kind 'B'(42) from frontend Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:280 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:269 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: Bind: checking strict query Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_proto_modules.c:1211 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: Bind: checking insert lock Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_proto_modules.c:1221 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: Bind: waiting for master completing the query Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_proto_modules.c:1237 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:208 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_query_context.c:854 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_write: to backend: kind:B Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: waiting for query response Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DETAIL: waiting for backend:0 to complete the query Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:479 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:190 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_send_and_wait: pool_set_sync_map: 1 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_query_context.c:854 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_write: to backend: kind:B Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: waiting for query response Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DETAIL: waiting for backend:1 to complete the query Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:479 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_read: read 5 bytes from backend 1 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:190 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: reading backend data packet kind Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DETAIL: backend:0 of 2 kind = '2' Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:3349 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: reading backend data packet kind Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DETAIL: backend:1 of 2 kind = '2' Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:3349 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: read_kind_from_backend max_count:2.000000 num_executed_nodes:2 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:3365 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: processing backend response Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DETAIL: received kind '2'(32) from backend Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: called by pool_add_sent_message: sent message: address: 2406c80 kind: B name: == Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:436 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: adding sent message to list Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DETAIL: portal "" already exists Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:512 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: called by pool_sent_message_destroy: sent message: address: 2406d18 kind: B name: == Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:436 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:219 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:208 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: SimpleForwardToFrontend: packet:2 length:0 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:792 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: session context: setting command success. DONE Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:741 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:219 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: processing frontend response Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DETAIL: received kind 'E'(45) from frontend Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:280 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:269 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:208 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_query_context.c:854 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_write: to backend: kind:E Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: waiting for query response Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DETAIL: waiting for backend:0 to complete the query Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:479 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_read: read 11 bytes from backend 0 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:190 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: detect error: kind: C Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:4166 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: detect error: kind: C Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:4166 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: detect error: kind: C Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:4166 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: detect error: kind: C Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:4166 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_send_and_wait: pool_set_sync_map: 1 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_query_context.c:854 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_write: to backend: kind:E Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: waiting for query response Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DETAIL: waiting for backend:1 to complete the query Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:479 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_read: read 11 bytes from backend 1 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:190 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: reading backend data packet kind Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DETAIL: backend:0 of 2 kind = 'C' Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:3349 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: reading backend data packet kind Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DETAIL: backend:1 of 2 kind = 'C' Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:3349 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: read_kind_from_backend max_count:2.000000 num_executed_nodes:2 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:3365 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: processing backend response Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DETAIL: received kind 'C'(43) from backend Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: session context: clearing writing transaction. DONE Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:565 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: session context: clearing failed transaction. DONE Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:594 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: session context: clearing failed transaction. DONE Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:624 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: session context: setting command success. DONE Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:741 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:219 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: processing frontend response Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DETAIL: received kind 'P'(50) from frontend Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:280 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:269 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: Parse: statement name <> Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_proto_modules.c:817 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:208 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: do_query: extended:1 query:"SELECT current_setting('transaction_isolation')" Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: CONTEXT: while getting transaction isolation Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:1936 Jun 6 09:37:08 otp3 pgpool[2874]: [526-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_write: to backend: kind:P Jun 6 09:37:08 otp3 pgpool[2874]: [526-2] 2016-06-06 09:37:08: pid 2874: CONTEXT: while getting transaction isolation Jun 6 09:37:08 otp3 pgpool[2874]: [526-3] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:08 otp3 pgpool[2874]: [527-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_write: to backend: kind:B Jun 6 09:37:08 otp3 pgpool[2874]: [527-2] 2016-06-06 09:37:08: pid 2874: CONTEXT: while getting transaction isolation Jun 6 09:37:08 otp3 pgpool[2874]: [527-3] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:08 otp3 pgpool[2874]: [528-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_write: to backend: kind:C Jun 6 09:37:08 otp3 pgpool[2874]: [528-2] 2016-06-06 09:37:08: pid 2874: CONTEXT: while getting transaction isolation Jun 6 09:37:08 otp3 pgpool[2874]: [528-3] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:08 otp3 pgpool[2874]: [529-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_write: to backend: kind:S Jun 6 09:37:08 otp3 pgpool[2874]: [529-2] 2016-06-06 09:37:08: pid 2874: CONTEXT: while getting transaction isolation Jun 6 09:37:08 otp3 pgpool[2874]: [529-3] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:08 otp3 pgpool[2874]: [530-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_write: to backend: kind:E Jun 6 09:37:08 otp3 pgpool[2874]: [530-2] 2016-06-06 09:37:08: pid 2874: CONTEXT: while getting transaction isolation Jun 6 09:37:08 otp3 pgpool[2874]: [530-3] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:08 otp3 pgpool[2874]: [531-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_write: to backend: kind:C Jun 6 09:37:08 otp3 pgpool[2874]: [531-2] 2016-06-06 09:37:08: pid 2874: CONTEXT: while getting transaction isolation Jun 6 09:37:08 otp3 pgpool[2874]: [531-3] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:08 otp3 pgpool[2874]: [532-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_write: to backend: kind:P Jun 6 09:37:08 otp3 pgpool[2874]: [532-2] 2016-06-06 09:37:08: pid 2874: CONTEXT: while getting transaction isolation Jun 6 09:37:08 otp3 pgpool[2874]: [532-3] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:08 otp3 pgpool[2874]: [533-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:08 otp3 pgpool[2874]: [533-2] 2016-06-06 09:37:08: pid 2874: CONTEXT: while getting transaction isolation Jun 6 09:37:08 otp3 pgpool[2874]: [533-3] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_write: to backend: kind:P Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: CONTEXT: while getting transaction isolation Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_write: to backend: kind:B Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: CONTEXT: while getting transaction isolation Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_write: to backend: kind:C Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: CONTEXT: while getting transaction isolation Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_write: to backend: kind:S Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: CONTEXT: while getting transaction isolation Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_write: to backend: kind:E Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: CONTEXT: while getting transaction isolation Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_write: to backend: kind:C Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: CONTEXT: while getting transaction isolation Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_write: to backend: kind:P Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: CONTEXT: while getting transaction isolation Jun 6 09:37:08 otp3 pgpool[2874]: [534-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_read: read 59 bytes from backend 0 Jun 6 09:37:08 otp3 pgpool[2874]: [534-2] 2016-06-06 09:37:08: pid 2874: CONTEXT: while getting transaction isolation Jun 6 09:37:08 otp3 pgpool[2874]: [534-3] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:190 Jun 6 09:37:08 otp3 pgpool[2874]: [535-1] 2016-06-06 09:37:08: pid 2874: DEBUG: do_query: kind: '1' Jun 6 09:37:08 otp3 pgpool[2874]: [535-2] 2016-06-06 09:37:08: pid 2874: CONTEXT: while getting transaction isolation Jun 6 09:37:08 otp3 pgpool[2874]: [535-3] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:2149 Jun 6 09:37:08 otp3 pgpool[2874]: [536-1] 2016-06-06 09:37:08: pid 2874: DEBUG: do_query: received PARSE COMPLETE ('1') Jun 6 09:37:08 otp3 pgpool[2874]: [536-2] 2016-06-06 09:37:08: pid 2874: CONTEXT: while getting transaction isolation Jun 6 09:37:08 otp3 pgpool[2874]: [536-3] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:2238 Jun 6 09:37:08 otp3 pgpool[2874]: [537-1] 2016-06-06 09:37:08: pid 2874: DEBUG: do_query: kind: '2' Jun 6 09:37:08 otp3 pgpool[2874]: [537-2] 2016-06-06 09:37:08: pid 2874: CONTEXT: while getting transaction isolation Jun 6 09:37:08 otp3 pgpool[2874]: [537-3] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:2149 Jun 6 09:37:08 otp3 pgpool[2874]: [538-1] 2016-06-06 09:37:08: pid 2874: DEBUG: do_query: received BIND COMPLETE ('2') Jun 6 09:37:08 otp3 pgpool[2874]: [538-2] 2016-06-06 09:37:08: pid 2874: CONTEXT: while getting transaction isolation Jun 6 09:37:08 otp3 pgpool[2874]: [538-3] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:2245 Jun 6 09:37:08 otp3 pgpool[2874]: [539-1] 2016-06-06 09:37:08: pid 2874: DEBUG: do_query: kind: '3' Jun 6 09:37:08 otp3 pgpool[2874]: [539-2] 2016-06-06 09:37:08: pid 2874: CONTEXT: while getting transaction isolation Jun 6 09:37:08 otp3 pgpool[2874]: [539-3] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:2149 Jun 6 09:37:08 otp3 pgpool[2874]: [540-1] 2016-06-06 09:37:08: pid 2874: DEBUG: do_query: received CLOSE COMPLETE ('3') Jun 6 09:37:08 otp3 pgpool[2874]: [540-2] 2016-06-06 09:37:08: pid 2874: CONTEXT: while getting transaction isolation Jun 6 09:37:08 otp3 pgpool[2874]: [540-3] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:2251 Jun 6 09:37:08 otp3 pgpool[2874]: [541-1] 2016-06-06 09:37:08: pid 2874: DEBUG: do_query: kind: 'D' Jun 6 09:37:08 otp3 pgpool[2874]: [541-2] 2016-06-06 09:37:08: pid 2874: CONTEXT: while getting transaction isolation Jun 6 09:37:08 otp3 pgpool[2874]: [541-3] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:2149 Jun 6 09:37:08 otp3 pgpool[2874]: [542-1] 2016-06-06 09:37:08: pid 2874: DEBUG: do_query: received DATA ROW ('D') Jun 6 09:37:08 otp3 pgpool[2874]: [542-2] 2016-06-06 09:37:08: pid 2874: CONTEXT: while getting transaction isolation Jun 6 09:37:08 otp3 pgpool[2874]: [542-3] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:2337 Jun 6 09:37:08 otp3 pgpool[2874]: [543-1] 2016-06-06 09:37:08: pid 2874: DEBUG: do_query: kind: 'C' Jun 6 09:37:08 otp3 pgpool[2874]: [543-2] 2016-06-06 09:37:08: pid 2874: CONTEXT: while getting transaction isolation Jun 6 09:37:08 otp3 pgpool[2874]: [543-3] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:2149 Jun 6 09:37:08 otp3 pgpool[2874]: [544-1] 2016-06-06 09:37:08: pid 2874: DEBUG: do_query: received COMMAND COMPLETE ('C') Jun 6 09:37:08 otp3 pgpool[2874]: [544-2] 2016-06-06 09:37:08: pid 2874: CONTEXT: while getting transaction isolation Jun 6 09:37:08 otp3 pgpool[2874]: [544-3] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:2219 Jun 6 09:37:08 otp3 pgpool[2874]: [545-1] 2016-06-06 09:37:08: pid 2874: DEBUG: do_query: kind: '3' Jun 6 09:37:08 otp3 pgpool[2874]: [545-2] 2016-06-06 09:37:08: pid 2874: CONTEXT: while getting transaction isolation Jun 6 09:37:08 otp3 pgpool[2874]: [545-3] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:2149 Jun 6 09:37:08 otp3 pgpool[2874]: [546-1] 2016-06-06 09:37:08: pid 2874: DEBUG: do_query: received CLOSE COMPLETE ('3') Jun 6 09:37:08 otp3 pgpool[2874]: [546-2] 2016-06-06 09:37:08: pid 2874: CONTEXT: while getting transaction isolation Jun 6 09:37:08 otp3 pgpool[2874]: [546-3] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:2251 Jun 6 09:37:08 otp3 pgpool[2874]: [547-1] 2016-06-06 09:37:08: pid 2874: DEBUG: do_query: all state completed. returning Jun 6 09:37:08 otp3 pgpool[2874]: [547-2] 2016-06-06 09:37:08: pid 2874: CONTEXT: while getting transaction isolation Jun 6 09:37:08 otp3 pgpool[2874]: [547-3] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:2445 Jun 6 09:37:08 otp3 pgpool[2874]: [548-1] 2016-06-06 09:37:08: pid 2874: DEBUG: Parse: waiting for master completing the query Jun 6 09:37:08 otp3 pgpool[2874]: [548-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_proto_modules.c:1064 Jun 6 09:37:08 otp3 pgpool[2874]: [549-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_send_and_wait: pool_set_sync_map: 1 Jun 6 09:37:08 otp3 pgpool[2874]: [549-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_query_context.c:854 Jun 6 09:37:08 otp3 pgpool[2874]: [550-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_write: to backend: kind:P Jun 6 09:37:08 otp3 pgpool[2874]: [550-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:08 otp3 pgpool[2874]: [551-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:08 otp3 pgpool[2874]: [551-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:08 otp3 pgpool[2874]: [552-1] 2016-06-06 09:37:08: pid 2874: DEBUG: waiting for query response Jun 6 09:37:08 otp3 pgpool[2874]: [552-2] 2016-06-06 09:37:08: pid 2874: DETAIL: waiting for backend:1 to complete the query Jun 6 09:37:08 otp3 pgpool[2874]: [552-3] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:479 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: CONTEXT: while getting transaction isolation Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_read: read 59 bytes from backend 0 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: CONTEXT: while getting transaction isolation Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:190 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: do_query: kind: '1' Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: CONTEXT: while getting transaction isolation Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:2149 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: do_query: received PARSE COMPLETE ('1') Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: CONTEXT: while getting transaction isolation Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:2238 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: do_query: kind: '2' Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: CONTEXT: while getting transaction isolation Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:2149 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: do_query: received BIND COMPLETE ('2') Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: CONTEXT: while getting transaction isolation Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:2245 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: do_query: kind: '3' Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: CONTEXT: while getting transaction isolation Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:2149 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: do_query: received CLOSE COMPLETE ('3') Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: CONTEXT: while getting transaction isolation Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:2251 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: do_query: kind: 'D' Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: CONTEXT: while getting transaction isolation Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:2149 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: do_query: received DATA ROW ('D') Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: CONTEXT: while getting transaction isolation Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:2337 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: do_query: kind: 'C' Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: CONTEXT: while getting transaction isolation Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:2149 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: do_query: received COMMAND COMPLETE ('C') Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: CONTEXT: while getting transaction isolation Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:2219 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: do_query: kind: '3' Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: CONTEXT: while getting transaction isolation Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:2149 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: do_query: received CLOSE COMPLETE ('3') Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: CONTEXT: while getting transaction isolation Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:2251 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: do_query: all state completed. returning Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: CONTEXT: while getting transaction isolation Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:2445 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: Parse: waiting for master completing the query Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_proto_modules.c:1064 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_send_and_wait: pool_set_sync_map: 1 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_query_context.c:854 Jun 6 09:37:08 otp3 pgpool[2874]: [553-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_read: read 5 bytes from backend 1 Jun 6 09:37:08 otp3 pgpool[2874]: [553-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:190 Jun 6 09:37:08 otp3 pgpool[2874]: [554-1] 2016-06-06 09:37:08: pid 2874: DEBUG: detect error: kind: 1 Jun 6 09:37:08 otp3 pgpool[2874]: [554-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:4166 Jun 6 09:37:08 otp3 pgpool[2874]: [555-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:08 otp3 pgpool[2874]: [555-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:37:08 otp3 pgpool[2874]: [556-1] 2016-06-06 09:37:08: pid 2874: DEBUG: reading backend data packet kind Jun 6 09:37:08 otp3 pgpool[2874]: [556-2] 2016-06-06 09:37:08: pid 2874: DETAIL: backend:1 of 2 kind = '1' Jun 6 09:37:08 otp3 pgpool[2874]: [556-3] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:3349 Jun 6 09:37:08 otp3 pgpool[2874]: [557-1] 2016-06-06 09:37:08: pid 2874: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:08 otp3 pgpool[2874]: [557-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:3365 Jun 6 09:37:08 otp3 pgpool[2874]: [558-1] 2016-06-06 09:37:08: pid 2874: DEBUG: processing backend response Jun 6 09:37:08 otp3 pgpool[2874]: [558-2] 2016-06-06 09:37:08: pid 2874: DETAIL: received kind '1'(31) from backend Jun 6 09:37:08 otp3 pgpool[2874]: [558-3] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:08 otp3 pgpool[2874]: [559-1] 2016-06-06 09:37:08: pid 2874: DEBUG: called by pool_add_sent_message: sent message: address: 2406d18 kind: P name: == Jun 6 09:37:08 otp3 pgpool[2874]: [559-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:436 Jun 6 09:37:08 otp3 pgpool[2874]: [560-1] 2016-06-06 09:37:08: pid 2874: DEBUG: adding sent message to list Jun 6 09:37:08 otp3 pgpool[2874]: [560-2] 2016-06-06 09:37:08: pid 2874: DETAIL: prepared statement "" already exists Jun 6 09:37:08 otp3 pgpool[2874]: [560-3] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:516 Jun 6 09:37:08 otp3 pgpool[2874]: [561-1] 2016-06-06 09:37:08: pid 2874: DEBUG: called by pool_sent_message_destroy: sent message: address: 2406d98 kind: P name: == Jun 6 09:37:08 otp3 pgpool[2874]: [561-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:436 Jun 6 09:37:08 otp3 pgpool[2874]: [562-1] 2016-06-06 09:37:08: pid 2874: DEBUG: checking if query context can be safely destroyed Jun 6 09:37:08 otp3 pgpool[2874]: [562-2] 2016-06-06 09:37:08: pid 2874: DETAIL: query context 0x802482830 is still used 2 times. query:"BEGIN" Jun 6 09:37:08 otp3 pgpool[2874]: [562-3] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:873 Jun 6 09:37:08 otp3 pgpool[2874]: [563-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:08 otp3 pgpool[2874]: [563-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:37:08 otp3 pgpool[2874]: [564-1] 2016-06-06 09:37:08: pid 2874: DEBUG: SimpleForwardToFrontend: packet:1 length:0 Jun 6 09:37:08 otp3 pgpool[2874]: [564-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:792 Jun 6 09:37:08 otp3 pgpool[2874]: [565-1] 2016-06-06 09:37:08: pid 2874: DEBUG: session context: setting command success. DONE Jun 6 09:37:08 otp3 pgpool[2874]: [565-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:741 Jun 6 09:37:08 otp3 pgpool[2874]: [566-1] 2016-06-06 09:37:08: pid 2874: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:08 otp3 pgpool[2874]: [566-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:219 Jun 6 09:37:08 otp3 pgpool[2874]: [567-1] 2016-06-06 09:37:08: pid 2874: DEBUG: processing frontend response Jun 6 09:37:08 otp3 pgpool[2874]: [567-2] 2016-06-06 09:37:08: pid 2874: DETAIL: received kind 'B'(42) from frontend Jun 6 09:37:08 otp3 pgpool[2874]: [567-3] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:08 otp3 pgpool[2874]: [568-1] 2016-06-06 09:37:08: pid 2874: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:08 otp3 pgpool[2874]: [568-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:280 Jun 6 09:37:08 otp3 pgpool[2874]: [569-1] 2016-06-06 09:37:08: pid 2874: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:08 otp3 pgpool[2874]: [569-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:269 Jun 6 09:37:08 otp3 pgpool[2874]: [570-1] 2016-06-06 09:37:08: pid 2874: DEBUG: Bind: checking strict query Jun 6 09:37:08 otp3 pgpool[2874]: [570-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_proto_modules.c:1211 Jun 6 09:37:08 otp3 pgpool[2874]: [571-1] 2016-06-06 09:37:08: pid 2874: DEBUG: Bind: checking insert lock Jun 6 09:37:08 otp3 pgpool[2874]: [571-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_proto_modules.c:1221 Jun 6 09:37:08 otp3 pgpool[2874]: [572-1] 2016-06-06 09:37:08: pid 2874: DEBUG: Bind: waiting for master completing the query Jun 6 09:37:08 otp3 pgpool[2874]: [572-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_proto_modules.c:1237 Jun 6 09:37:08 otp3 pgpool[2874]: [573-1] 2016-06-06 09:37:08: pid 2874: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:08 otp3 pgpool[2874]: [573-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:208 Jun 6 09:37:08 otp3 pgpool[2874]: [574-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_send_and_wait: pool_set_sync_map: 1 Jun 6 09:37:08 otp3 pgpool[2874]: [574-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_query_context.c:854 Jun 6 09:37:08 otp3 pgpool[2874]: [575-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_write: to backend: kind:B Jun 6 09:37:08 otp3 pgpool[2874]: [575-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:08 otp3 pgpool[2874]: [576-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:08 otp3 pgpool[2874]: [576-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:08 otp3 pgpool[2874]: [577-1] 2016-06-06 09:37:08: pid 2874: DEBUG: waiting for query response Jun 6 09:37:08 otp3 pgpool[2874]: [577-2] 2016-06-06 09:37:08: pid 2874: DETAIL: waiting for backend:1 to complete the query Jun 6 09:37:08 otp3 pgpool[2874]: [577-3] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:479 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_write: to backend: kind:P Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: waiting for query response Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DETAIL: waiting for backend:1 to complete the query Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:479 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_read: read 5 bytes from backend 1 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:190 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: detect error: kind: 1 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:4166 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: reading backend data packet kind Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DETAIL: backend:1 of 2 kind = '1' Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:3349 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:3365 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: processing backend response Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DETAIL: received kind '1'(31) from backend Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: called by pool_add_sent_message: sent message: address: 2406d18 kind: P name: == Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:436 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: adding sent message to list Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DETAIL: prepared statement "" already exists Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:516 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: called by pool_sent_message_destroy: sent message: address: 2406d98 kind: P name: == Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:436 Jun 6 09:37:08 otp3 pgpool[2874]: [578-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_read: read 5 bytes from backend 1 Jun 6 09:37:08 otp3 pgpool[2874]: [578-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:190 Jun 6 09:37:08 otp3 pgpool[2874]: [579-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:08 otp3 pgpool[2874]: [579-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:37:08 otp3 pgpool[2874]: [580-1] 2016-06-06 09:37:08: pid 2874: DEBUG: reading backend data packet kind Jun 6 09:37:08 otp3 pgpool[2874]: [580-2] 2016-06-06 09:37:08: pid 2874: DETAIL: backend:1 of 2 kind = '2' Jun 6 09:37:08 otp3 pgpool[2874]: [580-3] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:3349 Jun 6 09:37:08 otp3 pgpool[2874]: [581-1] 2016-06-06 09:37:08: pid 2874: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:08 otp3 pgpool[2874]: [581-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:3365 Jun 6 09:37:08 otp3 pgpool[2874]: [582-1] 2016-06-06 09:37:08: pid 2874: DEBUG: processing backend response Jun 6 09:37:08 otp3 pgpool[2874]: [582-2] 2016-06-06 09:37:08: pid 2874: DETAIL: received kind '2'(32) from backend Jun 6 09:37:08 otp3 pgpool[2874]: [582-3] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:08 otp3 pgpool[2874]: [583-1] 2016-06-06 09:37:08: pid 2874: DEBUG: called by pool_add_sent_message: sent message: address: 2406d98 kind: B name: == Jun 6 09:37:08 otp3 pgpool[2874]: [583-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:436 Jun 6 09:37:08 otp3 pgpool[2874]: [584-1] 2016-06-06 09:37:08: pid 2874: DEBUG: adding sent message to list Jun 6 09:37:08 otp3 pgpool[2874]: [584-2] 2016-06-06 09:37:08: pid 2874: DETAIL: portal "" already exists Jun 6 09:37:08 otp3 pgpool[2874]: [584-3] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:512 Jun 6 09:37:08 otp3 pgpool[2874]: [585-1] 2016-06-06 09:37:08: pid 2874: DEBUG: called by pool_sent_message_destroy: sent message: address: 2406c80 kind: B name: == Jun 6 09:37:08 otp3 pgpool[2874]: [585-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:436 Jun 6 09:37:08 otp3 pgpool[2874]: [586-1] 2016-06-06 09:37:08: pid 2874: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:08 otp3 pgpool[2874]: [586-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:219 Jun 6 09:37:08 otp3 pgpool[2874]: [587-1] 2016-06-06 09:37:08: pid 2874: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:08 otp3 pgpool[2874]: [587-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:208 Jun 6 09:37:08 otp3 pgpool[2874]: [588-1] 2016-06-06 09:37:08: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:08 otp3 pgpool[2874]: [588-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:37:08 otp3 pgpool[2874]: [589-1] 2016-06-06 09:37:08: pid 2874: DEBUG: SimpleForwardToFrontend: packet:2 length:0 Jun 6 09:37:08 otp3 pgpool[2874]: [589-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:792 Jun 6 09:37:08 otp3 pgpool[2874]: [590-1] 2016-06-06 09:37:08: pid 2874: DEBUG: session context: setting command success. DONE Jun 6 09:37:08 otp3 pgpool[2874]: [590-2] 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:741 Jun 6 09:37:09 otp3 pgpool[2874]: [591-1] 2016-06-06 09:37:09: pid 2874: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:09 otp3 pgpool[2874]: [591-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:219 Jun 6 09:37:09 otp3 pgpool[2874]: [592-1] 2016-06-06 09:37:09: pid 2874: DEBUG: processing frontend response Jun 6 09:37:09 otp3 pgpool[2874]: [592-2] 2016-06-06 09:37:09: pid 2874: DETAIL: received kind 'D'(44) from frontend Jun 6 09:37:09 otp3 pgpool[2874]: [592-3] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:09 otp3 pgpool[2874]: [593-1] 2016-06-06 09:37:09: pid 2874: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:09 otp3 pgpool[2874]: [593-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:280 Jun 6 09:37:09 otp3 pgpool[2874]: [594-1] 2016-06-06 09:37:09: pid 2874: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:09 otp3 pgpool[2874]: [594-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:269 Jun 6 09:37:09 otp3 pgpool[2874]: [595-1] 2016-06-06 09:37:09: pid 2874: DEBUG: Describe: waiting for master completing the query Jun 6 09:37:09 otp3 pgpool[2874]: [595-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_proto_modules.c:1310 Jun 6 09:37:09 otp3 pgpool[2874]: [596-1] 2016-06-06 09:37:09: pid 2874: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:09 otp3 pgpool[2874]: [596-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:208 Jun 6 09:37:09 otp3 pgpool[2874]: [597-1] 2016-06-06 09:37:09: pid 2874: DEBUG: pool_send_and_wait: pool_set_sync_map: 1 Jun 6 09:37:09 otp3 pgpool[2874]: [597-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_query_context.c:854 Jun 6 09:37:09 otp3 pgpool[2874]: [598-1] 2016-06-06 09:37:09: pid 2874: DEBUG: pool_write: to backend: kind:D Jun 6 09:37:09 otp3 pgpool[2874]: [598-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:09 otp3 pgpool[2874]: [599-1] 2016-06-06 09:37:09: pid 2874: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:09 otp3 pgpool[2874]: [599-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:09 otp3 pgpool[2874]: [600-1] 2016-06-06 09:37:09: pid 2874: DEBUG: waiting for query response Jun 6 09:37:09 otp3 pgpool[2874]: [600-2] 2016-06-06 09:37:09: pid 2874: DETAIL: waiting for backend:1 to complete the query Jun 6 09:37:09 otp3 pgpool[2874]: [600-3] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_process_query.c:479 Jun 6 09:37:08 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: checking if query context can be safely destroyed Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DETAIL: query context 0x802482830 is still used 2 times. query:"BEGIN" Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:873 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: SimpleForwardToFrontend: packet:1 length:0 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:792 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: session context: setting command success. DONE Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:741 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:219 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: processing frontend response Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DETAIL: received kind 'B'(42) from frontend Jun 6 09:37:09 otp3 pgpool[2874]: [601-1] 2016-06-06 09:37:09: pid 2874: DEBUG: pool_read: read 310 bytes from backend 1 Jun 6 09:37:09 otp3 pgpool[2874]: [601-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_stream.c:190 Jun 6 09:37:09 otp3 pgpool[2874]: [602-1] 2016-06-06 09:37:09: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:09 otp3 pgpool[2874]: [602-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:37:09 otp3 pgpool[2874]: [603-1] 2016-06-06 09:37:09: pid 2874: DEBUG: reading backend data packet kind Jun 6 09:37:09 otp3 pgpool[2874]: [603-2] 2016-06-06 09:37:09: pid 2874: DETAIL: backend:1 of 2 kind = 'T' Jun 6 09:37:09 otp3 pgpool[2874]: [603-3] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_process_query.c:3349 Jun 6 09:37:09 otp3 pgpool[2874]: [604-1] 2016-06-06 09:37:09: pid 2874: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:09 otp3 pgpool[2874]: [604-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_process_query.c:3365 Jun 6 09:37:09 otp3 pgpool[2874]: [605-1] 2016-06-06 09:37:09: pid 2874: DEBUG: processing backend response Jun 6 09:37:09 otp3 pgpool[2874]: [605-2] 2016-06-06 09:37:09: pid 2874: DETAIL: received kind 'T'(54) from backend Jun 6 09:37:09 otp3 pgpool[2874]: [605-3] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:09 otp3 pgpool[2874]: [606-1] 2016-06-06 09:37:09: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:09 otp3 pgpool[2874]: [606-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:37:09 otp3 pgpool[2874]: [607-1] 2016-06-06 09:37:09: pid 2874: DEBUG: SimpleForwardToFrontend: packet:T length:305 Jun 6 09:37:09 otp3 pgpool[2874]: [607-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_process_query.c:792 Jun 6 09:37:09 otp3 pgpool[2874]: [608-1] 2016-06-06 09:37:09: pid 2874: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:09 otp3 pgpool[2874]: [608-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:219 Jun 6 09:37:09 otp3 pgpool[2874]: [609-1] 2016-06-06 09:37:09: pid 2874: DEBUG: processing frontend response Jun 6 09:37:09 otp3 pgpool[2874]: [609-2] 2016-06-06 09:37:09: pid 2874: DETAIL: received kind 'E'(45) from frontend Jun 6 09:37:09 otp3 pgpool[2874]: [609-3] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:09 otp3 pgpool[2874]: [610-1] 2016-06-06 09:37:09: pid 2874: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:09 otp3 pgpool[2874]: [610-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:280 Jun 6 09:37:09 otp3 pgpool[2874]: [611-1] 2016-06-06 09:37:09: pid 2874: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:09 otp3 pgpool[2874]: [611-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:269 Jun 6 09:37:09 otp3 pgpool[2874]: [612-1] 2016-06-06 09:37:09: pid 2874: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:09 otp3 pgpool[2874]: [612-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:208 Jun 6 09:37:09 otp3 pgpool[2874]: [613-1] 2016-06-06 09:37:09: pid 2874: DEBUG: pool_send_and_wait: pool_set_sync_map: 1 Jun 6 09:37:09 otp3 pgpool[2874]: [613-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_query_context.c:854 Jun 6 09:37:09 otp3 pgpool[2874]: [614-1] 2016-06-06 09:37:09: pid 2874: DEBUG: pool_write: to backend: kind:E Jun 6 09:37:09 otp3 pgpool[2874]: [614-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:09 otp3 pgpool[2874]: [615-1] 2016-06-06 09:37:09: pid 2874: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:09 otp3 pgpool[2874]: [615-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:09 otp3 pgpool[2874]: [616-1] 2016-06-06 09:37:09: pid 2874: DEBUG: waiting for query response Jun 6 09:37:09 otp3 pgpool[2874]: [616-2] 2016-06-06 09:37:09: pid 2874: DETAIL: waiting for backend:1 to complete the query Jun 6 09:37:09 otp3 pgpool[2874]: [616-3] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_process_query.c:479 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:09 otp3 pgpool[2874]: [617-1] 2016-06-06 09:37:09: pid 2874: DEBUG: pool_read: read 132 bytes from backend 1 Jun 6 09:37:09 otp3 pgpool[2874]: [617-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_stream.c:190 Jun 6 09:37:09 otp3 pgpool[2874]: [618-1] 2016-06-06 09:37:09: pid 2874: DEBUG: detect error: kind: D Jun 6 09:37:09 otp3 pgpool[2874]: [618-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_process_query.c:4166 Jun 6 09:37:09 otp3 pgpool[2874]: [619-1] 2016-06-06 09:37:09: pid 2874: DEBUG: detect error: kind: D Jun 6 09:37:09 otp3 pgpool[2874]: [619-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_process_query.c:4166 Jun 6 09:37:09 otp3 pgpool[2874]: [620-1] 2016-06-06 09:37:09: pid 2874: DEBUG: detect error: kind: D Jun 6 09:37:09 otp3 pgpool[2874]: [620-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_process_query.c:4166 Jun 6 09:37:09 otp3 pgpool[2874]: [621-1] 2016-06-06 09:37:09: pid 2874: DEBUG: detect error: kind: D Jun 6 09:37:09 otp3 pgpool[2874]: [621-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_process_query.c:4166 Jun 6 09:37:09 otp3 pgpool[2874]: [622-1] 2016-06-06 09:37:09: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:09 otp3 pgpool[2874]: [622-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:37:09 otp3 pgpool[2874]: [623-1] 2016-06-06 09:37:09: pid 2874: DEBUG: reading backend data packet kind Jun 6 09:37:09 otp3 pgpool[2874]: [623-2] 2016-06-06 09:37:09: pid 2874: DETAIL: backend:1 of 2 kind = 'D' Jun 6 09:37:09 otp3 pgpool[2874]: [623-3] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_process_query.c:3349 Jun 6 09:37:09 otp3 pgpool[2874]: [624-1] 2016-06-06 09:37:09: pid 2874: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:09 otp3 pgpool[2874]: [624-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_process_query.c:3365 Jun 6 09:37:09 otp3 pgpool[2874]: [625-1] 2016-06-06 09:37:09: pid 2874: DEBUG: processing backend response Jun 6 09:37:09 otp3 pgpool[2874]: [625-2] 2016-06-06 09:37:09: pid 2874: DETAIL: received kind 'D'(44) from backend Jun 6 09:37:09 otp3 pgpool[2874]: [625-3] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:09 otp3 pgpool[2874]: [626-1] 2016-06-06 09:37:09: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:09 otp3 pgpool[2874]: [626-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:37:09 otp3 pgpool[2874]: [627-1] 2016-06-06 09:37:09: pid 2874: DEBUG: SimpleForwardToFrontend: packet:D length:113 Jun 6 09:37:09 otp3 pgpool[2874]: [627-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_process_query.c:792 Jun 6 09:37:09 otp3 pgpool[2874]: [628-1] 2016-06-06 09:37:09: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:09 otp3 pgpool[2874]: [628-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:37:09 otp3 pgpool[2874]: [629-1] 2016-06-06 09:37:09: pid 2874: DEBUG: reading backend data packet kind Jun 6 09:37:09 otp3 pgpool[2874]: [629-2] 2016-06-06 09:37:09: pid 2874: DETAIL: backend:1 of 2 kind = 'C' Jun 6 09:37:09 otp3 pgpool[2874]: [629-3] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_process_query.c:3349 Jun 6 09:37:09 otp3 pgpool[2874]: [630-1] 2016-06-06 09:37:09: pid 2874: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:09 otp3 pgpool[2874]: [630-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_process_query.c:3365 Jun 6 09:37:09 otp3 pgpool[2874]: [631-1] 2016-06-06 09:37:09: pid 2874: DEBUG: processing backend response Jun 6 09:37:09 otp3 pgpool[2874]: [631-2] 2016-06-06 09:37:09: pid 2874: DETAIL: received kind 'C'(43) from backend Jun 6 09:37:09 otp3 pgpool[2874]: [631-3] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:09 otp3 pgpool[2874]: [632-1] 2016-06-06 09:37:09: pid 2874: DEBUG: session context: setting command success. DONE Jun 6 09:37:09 otp3 pgpool[2874]: [632-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:741 Jun 6 09:37:09 otp3 pgpool[2874]: [633-1] 2016-06-06 09:37:09: pid 2874: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:09 otp3 pgpool[2874]: [633-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:219 Jun 6 09:37:09 otp3 pgpool[2874]: [634-1] 2016-06-06 09:37:09: pid 2874: DEBUG: processing frontend response Jun 6 09:37:09 otp3 pgpool[2874]: [634-2] 2016-06-06 09:37:09: pid 2874: DETAIL: received kind 'S'(53) from frontend Jun 6 09:37:09 otp3 pgpool[2874]: [634-3] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:09 otp3 pgpool[2874]: [635-1] 2016-06-06 09:37:09: pid 2874: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:09 otp3 pgpool[2874]: [635-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:280 Jun 6 09:37:09 otp3 pgpool[2874]: [636-1] 2016-06-06 09:37:09: pid 2874: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:09 otp3 pgpool[2874]: [636-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:269 Jun 6 09:37:09 otp3 pgpool[2874]: [637-1] 2016-06-06 09:37:09: pid 2874: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:09 otp3 pgpool[2874]: [637-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:208 Jun 6 09:37:09 otp3 pgpool[2874]: [638-1] 2016-06-06 09:37:09: pid 2874: DEBUG: pool_write: to backend: kind:S Jun 6 09:37:09 otp3 pgpool[2874]: [638-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:09 otp3 pgpool[2874]: [639-1] 2016-06-06 09:37:09: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:09 otp3 pgpool[2874]: [639-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:280 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:269 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: Bind: checking strict query Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_proto_modules.c:1211 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: Bind: checking insert lock Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_proto_modules.c:1221 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: Bind: waiting for master completing the query Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_proto_modules.c:1237 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:208 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_send_and_wait: pool_set_sync_map: 1 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_query_context.c:854 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_write: to backend: kind:B Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: waiting for query response Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DETAIL: waiting for backend:1 to complete the query Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:479 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_read: read 5 bytes from backend 1 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_stream.c:190 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: reading backend data packet kind Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DETAIL: backend:1 of 2 kind = '2' Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:3349 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:3365 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: processing backend response Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DETAIL: received kind '2'(32) from backend Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: called by pool_add_sent_message: sent message: address: 2406d98 kind: B name: == Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:436 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: adding sent message to list Jun 6 09:37:09 otp3 pgpool[2874]: [640-1] 2016-06-06 09:37:09: pid 2874: DEBUG: pool_read: read 6 bytes from backend 1 Jun 6 09:37:09 otp3 pgpool[2874]: [640-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_stream.c:190 Jun 6 09:37:09 otp3 pgpool[2874]: [641-1] 2016-06-06 09:37:09: pid 2874: DEBUG: reading backend data packet kind Jun 6 09:37:09 otp3 pgpool[2874]: [641-2] 2016-06-06 09:37:09: pid 2874: DETAIL: backend:1 of 2 kind = 'Z' Jun 6 09:37:09 otp3 pgpool[2874]: [641-3] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_process_query.c:3349 Jun 6 09:37:09 otp3 pgpool[2874]: [642-1] 2016-06-06 09:37:09: pid 2874: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:09 otp3 pgpool[2874]: [642-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_process_query.c:3365 Jun 6 09:37:09 otp3 pgpool[2874]: [643-1] 2016-06-06 09:37:09: pid 2874: DEBUG: processing backend response Jun 6 09:37:09 otp3 pgpool[2874]: [643-2] 2016-06-06 09:37:09: pid 2874: DETAIL: received kind 'Z'(5a) from backend Jun 6 09:37:09 otp3 pgpool[2874]: [643-3] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:09 otp3 pgpool[2874]: [644-1] 2016-06-06 09:37:09: pid 2874: DEBUG: processing backend response Jun 6 09:37:09 otp3 pgpool[2874]: [644-2] 2016-06-06 09:37:09: pid 2874: DETAIL: Ready For Query received Jun 6 09:37:09 otp3 pgpool[2874]: [644-3] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_proto_modules.c:2442 Jun 6 09:37:09 otp3 pgpool[2874]: [645-1] 2016-06-06 09:37:09: pid 2874: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:37:09 otp3 pgpool[2874]: [645-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:310 Jun 6 09:37:09 otp3 pgpool[2874]: [646-1] 2016-06-06 09:37:09: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:09 otp3 pgpool[2874]: [646-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:37:09 otp3 pgpool[2874]: [647-1] 2016-06-06 09:37:09: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:09 otp3 pgpool[2874]: [647-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:37:09 otp3 pgpool[2874]: [648-1] 2016-06-06 09:37:09: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:09 otp3 pgpool[2874]: [648-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:37:09 otp3 pgpool[2874]: [649-1] 2016-06-06 09:37:09: pid 2874: DEBUG: reading message length Jun 6 09:37:09 otp3 pgpool[2874]: [649-2] 2016-06-06 09:37:09: pid 2874: DETAIL: slot: 1 length: 5 Jun 6 09:37:09 otp3 pgpool[2874]: [649-3] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_auth.c:1107 Jun 6 09:37:09 otp3 pgpool[2874]: [650-1] 2016-06-06 09:37:09: pid 2874: DEBUG: processing ReadyForQuery Jun 6 09:37:09 otp3 pgpool[2874]: [650-2] 2016-06-06 09:37:09: pid 2874: DETAIL: transaction state 'T'(54) Jun 6 09:37:09 otp3 pgpool[2874]: [650-3] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_proto_modules.c:1612 Jun 6 09:37:09 otp3 pgpool[2874]: [651-1] 2016-06-06 09:37:09: pid 2874: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:09 otp3 pgpool[2874]: [651-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:219 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DETAIL: portal "" already exists Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:512 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: called by pool_sent_message_destroy: sent message: address: 2406c80 kind: B name: == Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:436 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:219 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:208 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: SimpleForwardToFrontend: packet:2 length:0 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_process_query.c:792 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: DEBUG: session context: setting command success. DONE Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:08: pid 2874: LOCATION: pool_session_context.c:741 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:219 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: processing frontend response Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DETAIL: received kind 'D'(44) from frontend Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:280 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:269 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: Describe: waiting for master completing the query Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_proto_modules.c:1310 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:208 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: pool_send_and_wait: pool_set_sync_map: 1 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_query_context.c:854 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: pool_write: to backend: kind:D Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: waiting for query response Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DETAIL: waiting for backend:1 to complete the query Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_process_query.c:479 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: pool_read: read 310 bytes from backend 1 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_stream.c:190 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: reading backend data packet kind Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DETAIL: backend:1 of 2 kind = 'T' Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_process_query.c:3349 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_process_query.c:3365 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: processing backend response Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DETAIL: received kind 'T'(54) from backend Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: SimpleForwardToFrontend: packet:T length:305 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_process_query.c:792 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:219 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: processing frontend response Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DETAIL: received kind 'E'(45) from frontend Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:280 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:269 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:208 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: pool_send_and_wait: pool_set_sync_map: 1 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_query_context.c:854 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: pool_write: to backend: kind:E Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: waiting for query response Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DETAIL: waiting for backend:1 to complete the query Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_process_query.c:479 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: pool_read: read 132 bytes from backend 1 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_stream.c:190 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: detect error: kind: D Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_process_query.c:4166 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: detect error: kind: D Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_process_query.c:4166 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: detect error: kind: D Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_process_query.c:4166 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: detect error: kind: D Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_process_query.c:4166 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: reading backend data packet kind Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DETAIL: backend:1 of 2 kind = 'D' Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_process_query.c:3349 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_process_query.c:3365 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: processing backend response Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DETAIL: received kind 'D'(44) from backend Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: SimpleForwardToFrontend: packet:D length:113 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_process_query.c:792 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: reading backend data packet kind Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DETAIL: backend:1 of 2 kind = 'C' Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_process_query.c:3349 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_process_query.c:3365 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: processing backend response Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DETAIL: received kind 'C'(43) from backend Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: session context: setting command success. DONE Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:741 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:219 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: processing frontend response Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DETAIL: received kind 'S'(53) from frontend Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:280 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:269 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:208 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: pool_write: to backend: kind:S Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: pool_read: read 6 bytes from backend 1 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_stream.c:190 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: reading backend data packet kind Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DETAIL: backend:1 of 2 kind = 'Z' Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_process_query.c:3349 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_process_query.c:3365 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: processing backend response Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DETAIL: received kind 'Z'(5a) from backend Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: processing backend response Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DETAIL: Ready For Query received Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_proto_modules.c:2442 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:310 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: reading message length Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DETAIL: slot: 1 length: 5 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_auth.c:1107 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: processing ReadyForQuery Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DETAIL: transaction state 'T'(54) Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_proto_modules.c:1612 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:219 Jun 6 09:37:09 otp3 pgpool[2874]: [652-1] 2016-06-06 09:37:09: pid 2874: DEBUG: processing frontend response Jun 6 09:37:09 otp3 pgpool[2874]: [652-2] 2016-06-06 09:37:09: pid 2874: DETAIL: received kind 'P'(50) from frontend Jun 6 09:37:09 otp3 pgpool[2874]: [652-3] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:09 otp3 pgpool[2874]: [653-1] 2016-06-06 09:37:09: pid 2874: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:09 otp3 pgpool[2874]: [653-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:280 Jun 6 09:37:09 otp3 pgpool[2874]: [654-1] 2016-06-06 09:37:09: pid 2874: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:09 otp3 pgpool[2874]: [654-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:269 Jun 6 09:37:09 otp3 pgpool[2874]: [655-1] 2016-06-06 09:37:09: pid 2874: DEBUG: Parse: statement name <S_1> Jun 6 09:37:09 otp3 pgpool[2874]: [655-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_proto_modules.c:817 Jun 6 09:37:09 otp3 pgpool[2874]: [656-1] 2016-06-06 09:37:09: pid 2874: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:09 otp3 pgpool[2874]: [656-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:208 Jun 6 09:37:09 otp3 pgpool[2874]: [657-1] 2016-06-06 09:37:09: pid 2874: DEBUG: Parse: waiting for master completing the query Jun 6 09:37:09 otp3 pgpool[2874]: [657-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_proto_modules.c:1064 Jun 6 09:37:09 otp3 pgpool[2874]: [658-1] 2016-06-06 09:37:09: pid 2874: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:37:09 otp3 pgpool[2874]: [658-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_query_context.c:854 Jun 6 09:37:09 otp3 pgpool[2874]: [659-1] 2016-06-06 09:37:09: pid 2874: DEBUG: pool_write: to backend: kind:P Jun 6 09:37:09 otp3 pgpool[2874]: [659-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:09 otp3 pgpool[2874]: [660-1] 2016-06-06 09:37:09: pid 2874: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:09 otp3 pgpool[2874]: [660-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:09 otp3 pgpool[2874]: [661-1] 2016-06-06 09:37:09: pid 2874: DEBUG: waiting for query response Jun 6 09:37:09 otp3 pgpool[2874]: [661-2] 2016-06-06 09:37:09: pid 2874: DETAIL: waiting for backend:0 to complete the query Jun 6 09:37:09 otp3 pgpool[2874]: [661-3] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_process_query.c:479 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: processing frontend response Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DETAIL: received kind 'P'(50) from frontend Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:280 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:269 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: Parse: statement name <S_1> Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_proto_modules.c:817 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:208 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: Parse: waiting for master completing the query Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_proto_modules.c:1064 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_query_context.c:854 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: pool_write: to backend: kind:P Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: waiting for query response Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DETAIL: waiting for backend:0 to complete the query Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_process_query.c:479 Jun 6 09:37:09 otp3 pgpool[2874]: [662-1] 2016-06-06 09:37:09: pid 2874: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:37:09 otp3 pgpool[2874]: [662-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_stream.c:190 Jun 6 09:37:09 otp3 pgpool[2874]: [663-1] 2016-06-06 09:37:09: pid 2874: DEBUG: detect error: kind: 1 Jun 6 09:37:09 otp3 pgpool[2874]: [663-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_process_query.c:4166 Jun 6 09:37:09 otp3 pgpool[2874]: [664-1] 2016-06-06 09:37:09: pid 2874: DEBUG: pool_send_and_wait: pool_set_sync_map: 1 Jun 6 09:37:09 otp3 pgpool[2874]: [664-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_query_context.c:854 Jun 6 09:37:09 otp3 pgpool[2874]: [665-1] 2016-06-06 09:37:09: pid 2874: DEBUG: pool_write: to backend: kind:P Jun 6 09:37:09 otp3 pgpool[2874]: [665-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:09 otp3 pgpool[2874]: [666-1] 2016-06-06 09:37:09: pid 2874: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:09 otp3 pgpool[2874]: [666-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:09 otp3 pgpool[2874]: [667-1] 2016-06-06 09:37:09: pid 2874: DEBUG: waiting for query response Jun 6 09:37:09 otp3 pgpool[2874]: [667-2] 2016-06-06 09:37:09: pid 2874: DETAIL: waiting for backend:1 to complete the query Jun 6 09:37:09 otp3 pgpool[2874]: [667-3] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_process_query.c:479 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_stream.c:190 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: detect error: kind: 1 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_process_query.c:4166 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: pool_send_and_wait: pool_set_sync_map: 1 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_query_context.c:854 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: pool_write: to backend: kind:P Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: waiting for query response Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DETAIL: waiting for backend:1 to complete the query Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_process_query.c:479 Jun 6 09:37:09 otp3 pgpool[2874]: [668-1] 2016-06-06 09:37:09: pid 2874: DEBUG: pool_read: read 5 bytes from backend 1 Jun 6 09:37:09 otp3 pgpool[2874]: [668-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_stream.c:190 Jun 6 09:37:09 otp3 pgpool[2874]: [669-1] 2016-06-06 09:37:09: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:09 otp3 pgpool[2874]: [669-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:37:09 otp3 pgpool[2874]: [670-1] 2016-06-06 09:37:09: pid 2874: DEBUG: reading backend data packet kind Jun 6 09:37:09 otp3 pgpool[2874]: [670-2] 2016-06-06 09:37:09: pid 2874: DETAIL: backend:0 of 2 kind = '1' Jun 6 09:37:09 otp3 pgpool[2874]: [670-3] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_process_query.c:3349 Jun 6 09:37:09 otp3 pgpool[2874]: [671-1] 2016-06-06 09:37:09: pid 2874: DEBUG: reading backend data packet kind Jun 6 09:37:09 otp3 pgpool[2874]: [671-2] 2016-06-06 09:37:09: pid 2874: DETAIL: backend:1 of 2 kind = '1' Jun 6 09:37:09 otp3 pgpool[2874]: [671-3] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_process_query.c:3349 Jun 6 09:37:09 otp3 pgpool[2874]: [672-1] 2016-06-06 09:37:09: pid 2874: DEBUG: read_kind_from_backend max_count:2.000000 num_executed_nodes:2 Jun 6 09:37:09 otp3 pgpool[2874]: [672-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_process_query.c:3365 Jun 6 09:37:09 otp3 pgpool[2874]: [673-1] 2016-06-06 09:37:09: pid 2874: DEBUG: processing backend response Jun 6 09:37:09 otp3 pgpool[2874]: [673-2] 2016-06-06 09:37:09: pid 2874: DETAIL: received kind '1'(31) from backend Jun 6 09:37:09 otp3 pgpool[2874]: [673-3] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:09 otp3 pgpool[2874]: [674-1] 2016-06-06 09:37:09: pid 2874: DEBUG: called by pool_add_sent_message: sent message: address: 2406c80 kind: P name: =S_1= Jun 6 09:37:09 otp3 pgpool[2874]: [674-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:436 Jun 6 09:37:09 otp3 pgpool[2874]: [675-1] 2016-06-06 09:37:09: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:09 otp3 pgpool[2874]: [675-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:37:09 otp3 pgpool[2874]: [676-1] 2016-06-06 09:37:09: pid 2874: DEBUG: SimpleForwardToFrontend: packet:1 length:0 Jun 6 09:37:09 otp3 pgpool[2874]: [676-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_process_query.c:792 Jun 6 09:37:09 otp3 pgpool[2874]: [677-1] 2016-06-06 09:37:09: pid 2874: DEBUG: session context: setting command success. DONE Jun 6 09:37:09 otp3 pgpool[2874]: [677-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:741 Jun 6 09:37:09 otp3 pgpool[2874]: [678-1] 2016-06-06 09:37:09: pid 2874: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:09 otp3 pgpool[2874]: [678-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:219 Jun 6 09:37:09 otp3 pgpool[2874]: [679-1] 2016-06-06 09:37:09: pid 2874: DEBUG: processing frontend response Jun 6 09:37:09 otp3 pgpool[2874]: [679-2] 2016-06-06 09:37:09: pid 2874: DETAIL: received kind 'B'(42) from frontend Jun 6 09:37:09 otp3 pgpool[2874]: [679-3] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:09 otp3 pgpool[2874]: [680-1] 2016-06-06 09:37:09: pid 2874: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:09 otp3 pgpool[2874]: [680-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:280 Jun 6 09:37:09 otp3 pgpool[2874]: [681-1] 2016-06-06 09:37:09: pid 2874: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:09 otp3 pgpool[2874]: [681-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:269 Jun 6 09:37:09 otp3 pgpool[2874]: [682-1] 2016-06-06 09:37:09: pid 2874: DEBUG: Bind: checking strict query Jun 6 09:37:09 otp3 pgpool[2874]: [682-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_proto_modules.c:1211 Jun 6 09:37:09 otp3 pgpool[2874]: [683-1] 2016-06-06 09:37:09: pid 2874: DEBUG: Bind: checking insert lock Jun 6 09:37:09 otp3 pgpool[2874]: [683-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_proto_modules.c:1221 Jun 6 09:37:09 otp3 pgpool[2874]: [684-1] 2016-06-06 09:37:09: pid 2874: DEBUG: Bind: waiting for master completing the query Jun 6 09:37:09 otp3 pgpool[2874]: [684-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_proto_modules.c:1237 Jun 6 09:37:09 otp3 pgpool[2874]: [685-1] 2016-06-06 09:37:09: pid 2874: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:09 otp3 pgpool[2874]: [685-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:208 Jun 6 09:37:09 otp3 pgpool[2874]: [686-1] 2016-06-06 09:37:09: pid 2874: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:37:09 otp3 pgpool[2874]: [686-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_query_context.c:854 Jun 6 09:37:09 otp3 pgpool[2874]: [687-1] 2016-06-06 09:37:09: pid 2874: DEBUG: pool_write: to backend: kind:B Jun 6 09:37:09 otp3 pgpool[2874]: [687-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:09 otp3 pgpool[2874]: [688-1] 2016-06-06 09:37:09: pid 2874: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:09 otp3 pgpool[2874]: [688-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:09 otp3 pgpool[2874]: [689-1] 2016-06-06 09:37:09: pid 2874: DEBUG: waiting for query response Jun 6 09:37:09 otp3 pgpool[2874]: [689-2] 2016-06-06 09:37:09: pid 2874: DETAIL: waiting for backend:0 to complete the query Jun 6 09:37:09 otp3 pgpool[2874]: [689-3] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_process_query.c:479 Jun 6 09:37:09 otp3 pgpool[2874]: [690-1] 2016-06-06 09:37:09: pid 2874: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:37:09 otp3 pgpool[2874]: [690-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_stream.c:190 Jun 6 09:37:09 otp3 pgpool[2874]: [691-1] 2016-06-06 09:37:09: pid 2874: DEBUG: pool_send_and_wait: pool_set_sync_map: 1 Jun 6 09:37:09 otp3 pgpool[2874]: [691-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_query_context.c:854 Jun 6 09:37:09 otp3 pgpool[2874]: [692-1] 2016-06-06 09:37:09: pid 2874: DEBUG: pool_write: to backend: kind:B Jun 6 09:37:09 otp3 pgpool[2874]: [692-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:09 otp3 pgpool[2874]: [693-1] 2016-06-06 09:37:09: pid 2874: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:09 otp3 pgpool[2874]: [693-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:09 otp3 pgpool[2874]: [694-1] 2016-06-06 09:37:09: pid 2874: DEBUG: waiting for query response Jun 6 09:37:09 otp3 pgpool[2874]: [694-2] 2016-06-06 09:37:09: pid 2874: DETAIL: waiting for backend:1 to complete the query Jun 6 09:37:09 otp3 pgpool[2874]: [694-3] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_process_query.c:479 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: pool_read: read 5 bytes from backend 1 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_stream.c:190 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: reading backend data packet kind Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DETAIL: backend:0 of 2 kind = '1' Jun 6 09:37:09 otp3 pgpool[2874]: [695-1] 2016-06-06 09:37:09: pid 2874: DEBUG: pool_read: read 5 bytes from backend 1 Jun 6 09:37:09 otp3 pgpool[2874]: [695-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_stream.c:190 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_process_query.c:3349 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: reading backend data packet kind Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DETAIL: backend:1 of 2 kind = '1' Jun 6 09:37:09 otp3 pgpool[2874]: [696-1] 2016-06-06 09:37:09: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:09 otp3 pgpool[2874]: [696-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_process_query.c:3349 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: read_kind_from_backend max_count:2.000000 num_executed_nodes:2 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_process_query.c:3365 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: processing backend response Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DETAIL: received kind '1'(31) from backend Jun 6 09:37:09 otp3 pgpool[2874]: [697-1] 2016-06-06 09:37:09: pid 2874: DEBUG: reading backend data packet kind Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:09 otp3 pgpool[2874]: [697-2] 2016-06-06 09:37:09: pid 2874: DETAIL: backend:0 of 2 kind = '2' Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: called by pool_add_sent_message: sent message: address: 2406c80 kind: P name: =S_1= Jun 6 09:37:09 otp3 pgpool[2874]: [697-3] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_process_query.c:3349 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:436 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: SimpleForwardToFrontend: packet:1 length:0 Jun 6 09:37:09 otp3 pgpool[2874]: [698-1] 2016-06-06 09:37:09: pid 2874: DEBUG: reading backend data packet kind Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_process_query.c:792 Jun 6 09:37:09 otp3 pgpool[2874]: [698-2] 2016-06-06 09:37:09: pid 2874: DETAIL: backend:1 of 2 kind = '2' Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: session context: setting command success. DONE Jun 6 09:37:09 otp3 pgpool[2874]: [698-3] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_process_query.c:3349 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:741 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:219 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: processing frontend response Jun 6 09:37:09 otp3 pgpool[2874]: [699-1] 2016-06-06 09:37:09: pid 2874: DEBUG: read_kind_from_backend max_count:2.000000 num_executed_nodes:2 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DETAIL: received kind 'B'(42) from frontend Jun 6 09:37:09 otp3 pgpool[2874]: [699-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_process_query.c:3365 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:280 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:09 otp3 pgpool[2874]: [700-1] 2016-06-06 09:37:09: pid 2874: DEBUG: processing backend response Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:269 Jun 6 09:37:09 otp3 pgpool[2874]: [700-2] 2016-06-06 09:37:09: pid 2874: DETAIL: received kind '2'(32) from backend Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: Bind: checking strict query Jun 6 09:37:09 otp3 pgpool[2874]: [700-3] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_proto_modules.c:1211 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: Bind: checking insert lock Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_proto_modules.c:1221 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: Bind: waiting for master completing the query Jun 6 09:37:09 otp3 pgpool[2874]: [701-1] 2016-06-06 09:37:09: pid 2874: DEBUG: called by pool_add_sent_message: sent message: address: 2483a40 kind: B name: == Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_proto_modules.c:1237 Jun 6 09:37:09 otp3 pgpool[2874]: [701-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:436 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:208 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_query_context.c:854 Jun 6 09:37:09 otp3 pgpool[2874]: [702-1] 2016-06-06 09:37:09: pid 2874: DEBUG: adding sent message to list Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: pool_write: to backend: kind:B Jun 6 09:37:09 otp3 pgpool[2874]: [702-2] 2016-06-06 09:37:09: pid 2874: DETAIL: portal "" already exists Jun 6 09:37:09 otp3 pgpool[2874]: [702-3] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:512 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: waiting for query response Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DETAIL: waiting for backend:0 to complete the query Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_process_query.c:479 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_stream.c:190 Jun 6 09:37:09 otp3 pgpool[2874]: [703-1] 2016-06-06 09:37:09: pid 2874: DEBUG: called by pool_sent_message_destroy: sent message: address: 2406d98 kind: B name: == Jun 6 09:37:09 otp3 pgpool[2874]: [703-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:436 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: pool_send_and_wait: pool_set_sync_map: 1 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_query_context.c:854 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: pool_write: to backend: kind:B Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: waiting for query response Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DETAIL: waiting for backend:1 to complete the query Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_process_query.c:479 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: pool_read: read 5 bytes from backend 1 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_stream.c:190 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: reading backend data packet kind Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DETAIL: backend:0 of 2 kind = '2' Jun 6 09:37:09 otp3 pgpool[2874]: [704-1] 2016-06-06 09:37:09: pid 2874: DEBUG: checking if query context can be safely destroyed Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_process_query.c:3349 Jun 6 09:37:09 otp3 pgpool[2874]: [704-2] 2016-06-06 09:37:09: pid 2874: DETAIL: query context 0x802481830 is still used 2 times. query:"select theme0_.id as id1_63_, theme0_.captcha as captcha2_63_, theme0_.colour as colour3_63_, theme0_.display_title as display_4_63_, theme0_.footer_on_off as footer_o5_63_, theme0_.is_anonymous as is_anony6_63_, theme0_.is_pick_ticket as is_pick_7_63_, theme0_.logo as logo8_63_, theme0_.name as name9_63_, theme0_.search_title as search_10_63_ from theme theme0_" Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: reading backend data packet kind Jun 6 09:37:09 otp3 pgpool[2874]: [704-3] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:873 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DETAIL: backend:1 of 2 kind = '2' Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_process_query.c:3349 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: read_kind_from_backend max_count:2.000000 num_executed_nodes:2 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_process_query.c:3365 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: processing backend response Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DETAIL: received kind '2'(32) from backend Jun 6 09:37:09 otp3 pgpool[2874]: [705-1] 2016-06-06 09:37:09: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:09 otp3 pgpool[2874]: [705-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: called by pool_add_sent_message: sent message: address: 2483a40 kind: B name: == Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:436 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: adding sent message to list Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DETAIL: portal "" already exists Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:512 Jun 6 09:37:09 otp3 pgpool[2874]: [706-1] 2016-06-06 09:37:09: pid 2874: DEBUG: SimpleForwardToFrontend: packet:2 length:0 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: called by pool_sent_message_destroy: sent message: address: 2406d98 kind: B name: == Jun 6 09:37:09 otp3 pgpool[2874]: [706-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_process_query.c:792 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:436 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: checking if query context can be safely destroyed Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DETAIL: query context 0x802481830 is still used 2 times. query:"select theme0_.id as id1_63_, theme0_.captcha as captcha2_63_, theme0_.colour as colour3_63_, theme0_.display_title as display_4_63_, theme0_.footer_on_off as footer_o5_63_, theme0_.is_anonymous as is_anony6_63_, theme0_.is_pick_ticket as is_pick_7_63_, theme0_.logo as logo8_63_, theme0_.name as name9_63_, theme0_.search_title as search_10_63_ from theme theme0_" Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:873 Jun 6 09:37:09 otp3 pgpool[2874]: [707-1] 2016-06-06 09:37:09: pid 2874: DEBUG: session context: setting command success. DONE Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:09 otp3 pgpool[2874]: [707-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:741 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: SimpleForwardToFrontend: packet:2 length:0 Jun 6 09:37:09 otp3 pgpool[2874]: [708-1] 2016-06-06 09:37:09: pid 2874: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:09 otp3 pgpool[2874]: [708-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:219 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_process_query.c:792 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: session context: setting command success. DONE Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:741 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:09 otp3 pgpool[2874]: [709-1] 2016-06-06 09:37:09: pid 2874: DEBUG: processing frontend response Jun 6 09:37:09 otp3 pgpool[2874]: [709-2] 2016-06-06 09:37:09: pid 2874: DETAIL: received kind 'E'(45) from frontend Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:219 Jun 6 09:37:09 otp3 pgpool[2874]: [709-3] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: processing frontend response Jun 6 09:37:09 otp3 pgpool[2874]: [710-1] 2016-06-06 09:37:09: pid 2874: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DETAIL: received kind 'E'(45) from frontend Jun 6 09:37:09 otp3 pgpool[2874]: [710-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:280 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:280 Jun 6 09:37:09 otp3 pgpool[2874]: [711-1] 2016-06-06 09:37:09: pid 2874: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:09 otp3 pgpool[2874]: [711-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:269 Jun 6 09:37:09 otp3 pgpool[2874]: [712-1] 2016-06-06 09:37:09: pid 2874: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:09 otp3 pgpool[2874]: [712-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:208 Jun 6 09:37:09 otp3 pgpool[2874]: [713-1] 2016-06-06 09:37:09: pid 2874: DEBUG: pool_send_and_wait: pool_set_sync_map: 1 Jun 6 09:37:09 otp3 pgpool[2874]: [713-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_query_context.c:854 Jun 6 09:37:09 otp3 pgpool[2874]: [714-1] 2016-06-06 09:37:09: pid 2874: DEBUG: pool_write: to backend: kind:E Jun 6 09:37:09 otp3 pgpool[2874]: [714-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:09 otp3 pgpool[2874]: [715-1] 2016-06-06 09:37:09: pid 2874: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:09 otp3 pgpool[2874]: [715-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:09 otp3 pgpool[2874]: [716-1] 2016-06-06 09:37:09: pid 2874: DEBUG: waiting for query response Jun 6 09:37:09 otp3 pgpool[2874]: [716-2] 2016-06-06 09:37:09: pid 2874: DETAIL: waiting for backend:1 to complete the query Jun 6 09:37:09 otp3 pgpool[2874]: [716-3] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_process_query.c:479 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:269 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:208 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: pool_send_and_wait: pool_set_sync_map: 1 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_query_context.c:854 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: pool_write: to backend: kind:E Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: waiting for query response Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DETAIL: waiting for backend:1 to complete the query Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_process_query.c:479 Jun 6 09:37:09 otp3 pgpool[2874]: [717-1] 2016-06-06 09:37:09: pid 2874: DEBUG: pool_read: read 12 bytes from backend 1 Jun 6 09:37:09 otp3 pgpool[2874]: [717-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_stream.c:190 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: pool_read: read 12 bytes from backend 1 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_stream.c:190 Jun 6 09:37:09 otp3 pgpool[2874]: [718-1] 2016-06-06 09:37:09: pid 2874: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:37:09 otp3 pgpool[2874]: [718-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_query_context.c:854 Jun 6 09:37:09 otp3 pgpool[2874]: [719-1] 2016-06-06 09:37:09: pid 2874: DEBUG: pool_write: to backend: kind:E Jun 6 09:37:09 otp3 pgpool[2874]: [719-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:09 otp3 pgpool[2874]: [720-1] 2016-06-06 09:37:09: pid 2874: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:09 otp3 pgpool[2874]: [720-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:09 otp3 pgpool[2874]: [721-1] 2016-06-06 09:37:09: pid 2874: DEBUG: waiting for query response Jun 6 09:37:09 otp3 pgpool[2874]: [721-2] 2016-06-06 09:37:09: pid 2874: DETAIL: waiting for backend:0 to complete the query Jun 6 09:37:09 otp3 pgpool[2874]: [721-3] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_process_query.c:479 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_query_context.c:854 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: pool_write: to backend: kind:E Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: waiting for query response Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DETAIL: waiting for backend:0 to complete the query Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_process_query.c:479 Jun 6 09:37:09 otp3 pgpool[2874]: [722-1] 2016-06-06 09:37:09: pid 2874: DEBUG: pool_read: read 12 bytes from backend 0 Jun 6 09:37:09 otp3 pgpool[2874]: [722-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_stream.c:190 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: pool_read: read 12 bytes from backend 0 Jun 6 09:37:09 otp3 pgpool[2874]: [723-1] 2016-06-06 09:37:09: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_stream.c:190 Jun 6 09:37:09 otp3 pgpool[2874]: [723-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:37:09 otp3 pgpool[2874]: [724-1] 2016-06-06 09:37:09: pid 2874: DEBUG: reading backend data packet kind Jun 6 09:37:09 otp3 pgpool[2874]: [724-2] 2016-06-06 09:37:09: pid 2874: DETAIL: backend:0 of 2 kind = 'C' Jun 6 09:37:09 otp3 pgpool[2874]: [724-3] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_process_query.c:3349 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: reading backend data packet kind Jun 6 09:37:09 otp3 pgpool[2874]: [725-1] 2016-06-06 09:37:09: pid 2874: DEBUG: reading backend data packet kind Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DETAIL: backend:0 of 2 kind = 'C' Jun 6 09:37:09 otp3 pgpool[2874]: [725-2] 2016-06-06 09:37:09: pid 2874: DETAIL: backend:1 of 2 kind = 'C' Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_process_query.c:3349 Jun 6 09:37:09 otp3 pgpool[2874]: [725-3] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_process_query.c:3349 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: reading backend data packet kind Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DETAIL: backend:1 of 2 kind = 'C' Jun 6 09:37:09 otp3 pgpool[2874]: [726-1] 2016-06-06 09:37:09: pid 2874: DEBUG: read_kind_from_backend max_count:2.000000 num_executed_nodes:2 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_process_query.c:3349 Jun 6 09:37:09 otp3 pgpool[2874]: [726-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_process_query.c:3365 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: read_kind_from_backend max_count:2.000000 num_executed_nodes:2 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_process_query.c:3365 Jun 6 09:37:09 otp3 pgpool[2874]: [727-1] 2016-06-06 09:37:09: pid 2874: DEBUG: processing backend response Jun 6 09:37:09 otp3 pgpool[2874]: [727-2] 2016-06-06 09:37:09: pid 2874: DETAIL: received kind 'C'(43) from backend Jun 6 09:37:09 otp3 pgpool[2874]: [727-3] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: processing backend response Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DETAIL: received kind 'C'(43) from backend Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:09 otp3 pgpool[2874]: [728-1] 2016-06-06 09:37:09: pid 2874: DEBUG: session context: setting command success. DONE Jun 6 09:37:09 otp3 pgpool[2874]: [728-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:741 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: session context: setting command success. DONE Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:741 Jun 6 09:37:09 otp3 pgpool[2874]: [729-1] 2016-06-06 09:37:09: pid 2874: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:09 otp3 pgpool[2874]: [729-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:219 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:219 Jun 6 09:37:09 otp3 pgpool[2874]: [730-1] 2016-06-06 09:37:09: pid 2874: DEBUG: processing frontend response Jun 6 09:37:09 otp3 pgpool[2874]: [730-2] 2016-06-06 09:37:09: pid 2874: DETAIL: received kind 'S'(53) from frontend Jun 6 09:37:09 otp3 pgpool[2874]: [730-3] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: processing frontend response Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DETAIL: received kind 'S'(53) from frontend Jun 6 09:37:09 otp3 pgpool[2874]: [731-1] 2016-06-06 09:37:09: pid 2874: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:09 otp3 pgpool[2874]: [731-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:280 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:280 Jun 6 09:37:09 otp3 pgpool[2874]: [732-1] 2016-06-06 09:37:09: pid 2874: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:09 otp3 pgpool[2874]: [732-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:269 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:269 Jun 6 09:37:09 otp3 pgpool[2874]: [733-1] 2016-06-06 09:37:09: pid 2874: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:09 otp3 pgpool[2874]: [733-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:208 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:208 Jun 6 09:37:09 otp3 pgpool[2874]: [734-1] 2016-06-06 09:37:09: pid 2874: DEBUG: pool_write: to backend: kind:S Jun 6 09:37:09 otp3 pgpool[2874]: [734-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: pool_write: to backend: kind:S Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:09 otp3 pgpool[2874]: [735-1] 2016-06-06 09:37:09: pid 2874: DEBUG: pool_write: to backend: kind:S Jun 6 09:37:09 otp3 pgpool[2874]: [735-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: pool_write: to backend: kind:S Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_stream.c:431 Jun 6 09:37:09 otp3 pgpool[2874]: [736-1] 2016-06-06 09:37:09: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:09 otp3 pgpool[2874]: [736-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:37:09 otp3 pgpool[2874]: [737-1] 2016-06-06 09:37:09: pid 2874: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:37:09 otp3 pgpool[2874]: [737-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_stream.c:190 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_stream.c:190 Jun 6 09:37:09 otp3 pgpool[2874]: [738-1] 2016-06-06 09:37:09: pid 2874: DEBUG: reading backend data packet kind Jun 6 09:37:09 otp3 pgpool[2874]: [738-2] 2016-06-06 09:37:09: pid 2874: DETAIL: backend:0 of 2 kind = 'Z' Jun 6 09:37:09 otp3 pgpool[2874]: [738-3] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_process_query.c:3349 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: reading backend data packet kind Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DETAIL: backend:0 of 2 kind = 'Z' Jun 6 09:37:09 otp3 pgpool[2874]: [739-1] 2016-06-06 09:37:09: pid 2874: DEBUG: pool_read: read 6 bytes from backend 1 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_process_query.c:3349 Jun 6 09:37:09 otp3 pgpool[2874]: [739-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_stream.c:190 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: pool_read: read 6 bytes from backend 1 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_stream.c:190 Jun 6 09:37:09 otp3 pgpool[2874]: [740-1] 2016-06-06 09:37:09: pid 2874: DEBUG: reading backend data packet kind Jun 6 09:37:09 otp3 pgpool[2874]: [740-2] 2016-06-06 09:37:09: pid 2874: DETAIL: backend:1 of 2 kind = 'Z' Jun 6 09:37:09 otp3 pgpool[2874]: [740-3] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_process_query.c:3349 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: reading backend data packet kind Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DETAIL: backend:1 of 2 kind = 'Z' Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_process_query.c:3349 Jun 6 09:37:09 otp3 pgpool[2874]: [741-1] 2016-06-06 09:37:09: pid 2874: DEBUG: read_kind_from_backend max_count:2.000000 num_executed_nodes:2 Jun 6 09:37:09 otp3 pgpool[2874]: [741-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_process_query.c:3365 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: read_kind_from_backend max_count:2.000000 num_executed_nodes:2 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_process_query.c:3365 Jun 6 09:37:09 otp3 pgpool[2874]: [742-1] 2016-06-06 09:37:09: pid 2874: DEBUG: processing backend response Jun 6 09:37:09 otp3 pgpool[2874]: [742-2] 2016-06-06 09:37:09: pid 2874: DETAIL: received kind 'Z'(5a) from backend Jun 6 09:37:09 otp3 pgpool[2874]: [742-3] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: processing backend response Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DETAIL: received kind 'Z'(5a) from backend Jun 6 09:37:09 otp3 pgpool[2874]: [743-1] 2016-06-06 09:37:09: pid 2874: DEBUG: processing backend response Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:09 otp3 pgpool[2874]: [743-2] 2016-06-06 09:37:09: pid 2874: DETAIL: Ready For Query received Jun 6 09:37:09 otp3 pgpool[2874]: [743-3] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_proto_modules.c:2442 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: processing backend response Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DETAIL: Ready For Query received Jun 6 09:37:09 otp3 pgpool[2874]: [744-1] 2016-06-06 09:37:09: pid 2874: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_proto_modules.c:2442 Jun 6 09:37:09 otp3 pgpool[2874]: [744-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:310 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:37:09 otp3 pgpool[2874]: [745-1] 2016-06-06 09:37:09: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:310 Jun 6 09:37:09 otp3 pgpool[2874]: [745-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:09 otp3 pgpool[2874]: [746-1] 2016-06-06 09:37:09: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:37:09 otp3 pgpool[2874]: [746-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:37:09 otp3 pgpool[2874]: [747-1] 2016-06-06 09:37:09: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:09 otp3 pgpool[2874]: [747-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:969 Jun 6 09:37:09 otp3 pgpool[2874]: [748-1] 2016-06-06 09:37:09: pid 2874: DEBUG: reading message length Jun 6 09:37:09 otp3 pgpool[2874]: [748-2] 2016-06-06 09:37:09: pid 2874: DETAIL: slot: 0 length: 5 Jun 6 09:37:09 otp3 pgpool[2874]: [748-3] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_auth.c:1107 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: reading message length Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DETAIL: slot: 0 length: 5 Jun 6 09:37:09 otp3 pgpool[2874]: [749-1] 2016-06-06 09:37:09: pid 2874: DEBUG: reading message length Jun 6 09:37:09 otp3 pgpool[2874]: [749-2] 2016-06-06 09:37:09: pid 2874: DETAIL: slot: 1 length: 5 Jun 6 09:37:09 otp3 pgpool[2874]: [749-3] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_auth.c:1126 Jun 6 09:37:09 otp3 pgpool[2874]: [750-1] 2016-06-06 09:37:09: pid 2874: DEBUG: processing ReadyForQuery Jun 6 09:37:09 otp3 pgpool[2874]: [750-2] 2016-06-06 09:37:09: pid 2874: DETAIL: transaction state 'T'(54) Jun 6 09:37:09 otp3 pgpool[2874]: [750-3] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_proto_modules.c:1612 Jun 6 09:37:09 otp3 pgpool[2874]: [751-1] 2016-06-06 09:37:09: pid 2874: DEBUG: processing ReadyForQuery Jun 6 09:37:09 otp3 pgpool[2874]: [751-2] 2016-06-06 09:37:09: pid 2874: DETAIL: transaction state 'I'(49) Jun 6 09:37:09 otp3 pgpool[2874]: [751-3] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_proto_modules.c:1612 Jun 6 09:37:09 otp3 pgpool[2874]: [752-1] 2016-06-06 09:37:09: pid 2874: DEBUG: session context: clearing writing transaction. DONE Jun 6 09:37:09 otp3 pgpool[2874]: [752-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:565 Jun 6 09:37:09 otp3 pgpool[2874]: [753-1] 2016-06-06 09:37:09: pid 2874: DEBUG: session context: clearing failed transaction. DONE Jun 6 09:37:09 otp3 pgpool[2874]: [753-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:594 Jun 6 09:37:09 otp3 pgpool[2874]: [754-1] 2016-06-06 09:37:09: pid 2874: DEBUG: session context: clearing failed transaction. DONE Jun 6 09:37:09 otp3 pgpool[2874]: [754-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:624 Jun 6 09:37:09 otp3 pgpool[2874]: [755-1] 2016-06-06 09:37:09: pid 2874: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:09 otp3 pgpool[2874]: [755-2] 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:219 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_auth.c:1107 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: reading message length Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DETAIL: slot: 1 length: 5 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_auth.c:1126 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: processing ReadyForQuery Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DETAIL: transaction state 'T'(54) Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_proto_modules.c:1612 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: processing ReadyForQuery Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DETAIL: transaction state 'I'(49) Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_proto_modules.c:1612 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: session context: clearing writing transaction. DONE Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:565 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: session context: clearing failed transaction. DONE Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:594 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: session context: clearing failed transaction. DONE Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:624 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2874: LOCATION: pool_session_context.c:219 Jun 6 09:37:09 otp3 pgpool[2873]: [1085-1] 2016-06-06 09:37:09: pid 2873: DEBUG: processing frontend response Jun 6 09:37:09 otp3 pgpool[2873]: [1085-2] 2016-06-06 09:37:09: pid 2873: DETAIL: received kind 'P'(50) from frontend Jun 6 09:37:09 otp3 pgpool[2873]: [1085-3] 2016-06-06 09:37:09: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2873: DEBUG: processing frontend response Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2873: DETAIL: received kind 'P'(50) from frontend Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:09 otp3 pgpool[2873]: [1086-1] 2016-06-06 09:37:09: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:09 otp3 pgpool[2873]: [1086-2] 2016-06-06 09:37:09: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:37:09 otp3 pgpool[2873]: [1087-1] 2016-06-06 09:37:09: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:09 otp3 pgpool[2873]: [1087-2] 2016-06-06 09:37:09: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:37:09 otp3 pgpool[2873]: [1088-1] 2016-06-06 09:37:09: pid 2873: DEBUG: Parse: statement name <> Jun 6 09:37:09 otp3 pgpool[2873]: [1088-2] 2016-06-06 09:37:09: pid 2873: LOCATION: pool_proto_modules.c:817 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2873: DEBUG: Parse: statement name <> Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2873: LOCATION: pool_proto_modules.c:817 Jun 6 09:37:09 otp3 pgpool[2873]: [1089-1] 2016-06-06 09:37:09: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:09 otp3 pgpool[2873]: [1089-2] 2016-06-06 09:37:09: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:09 otp3 pgpool[2873]: [1090-1] 2016-06-06 09:37:09: pid 2873: DEBUG: pool_write: to backend: kind:S Jun 6 09:37:09 otp3 pgpool[2873]: [1090-2] 2016-06-06 09:37:09: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2873: DEBUG: pool_write: to backend: kind:S Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:09 otp3 pgpool[2873]: [1091-1] 2016-06-06 09:37:09: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:09 otp3 pgpool[2873]: [1091-2] 2016-06-06 09:37:09: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:09 otp3 pgpool[2873]: [1092-1] 2016-06-06 09:37:09: pid 2873: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:37:09 otp3 pgpool[2873]: [1092-2] 2016-06-06 09:37:09: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2873: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:37:09 otp3 pgpool[2873]: [1093-1] 2016-06-06 09:37:09: pid 2873: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:37:09 otp3 pgpool[2873]: [1093-2] 2016-06-06 09:37:09: pid 2873: LOCATION: pool_session_context.c:310 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2873: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2873: LOCATION: pool_session_context.c:310 Jun 6 09:37:09 otp3 pgpool[2873]: [1094-1] 2016-06-06 09:37:09: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:09 otp3 pgpool[2873]: [1094-2] 2016-06-06 09:37:09: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:09 otp3 pgpool[2873]: [1095-1] 2016-06-06 09:37:09: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:09 otp3 pgpool[2873]: [1095-2] 2016-06-06 09:37:09: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:09 otp3 pgpool[2873]: [1096-1] 2016-06-06 09:37:09: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:09 otp3 pgpool[2873]: [1096-2] 2016-06-06 09:37:09: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:09 otp3 pgpool[2873]: [1097-1] 2016-06-06 09:37:09: pid 2873: DEBUG: reading message length Jun 6 09:37:09 otp3 pgpool[2873]: [1097-2] 2016-06-06 09:37:09: pid 2873: DETAIL: slot: 0 length: 5 Jun 6 09:37:09 otp3 pgpool[2873]: [1097-3] 2016-06-06 09:37:09: pid 2873: LOCATION: pool_auth.c:1107 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2873: DEBUG: reading message length Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2873: DETAIL: slot: 0 length: 5 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2873: LOCATION: pool_auth.c:1107 Jun 6 09:37:09 otp3 pgpool[2873]: [1098-1] 2016-06-06 09:37:09: pid 2873: DEBUG: processing ReadyForQuery Jun 6 09:37:09 otp3 pgpool[2873]: [1098-2] 2016-06-06 09:37:09: pid 2873: DETAIL: transaction state 'I'(49) Jun 6 09:37:09 otp3 pgpool[2873]: [1098-3] 2016-06-06 09:37:09: pid 2873: LOCATION: pool_proto_modules.c:1612 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2873: DEBUG: processing ReadyForQuery Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2873: DETAIL: transaction state 'I'(49) Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2873: LOCATION: pool_proto_modules.c:1612 Jun 6 09:37:09 otp3 pgpool[2873]: [1099-1] 2016-06-06 09:37:09: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:09 otp3 pgpool[2873]: [1099-2] 2016-06-06 09:37:09: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:09 otp3 pgpool[2873]: [1100-1] 2016-06-06 09:37:09: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:09 otp3 pgpool[2873]: [1100-2] 2016-06-06 09:37:09: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:09 otp3 pgpool[2873]: [1101-1] 2016-06-06 09:37:09: pid 2873: DEBUG: Parse: waiting for master completing the query Jun 6 09:37:09 otp3 pgpool[2873]: [1101-2] 2016-06-06 09:37:09: pid 2873: LOCATION: pool_proto_modules.c:1064 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2873: DEBUG: Parse: waiting for master completing the query Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2873: LOCATION: pool_proto_modules.c:1064 Jun 6 09:37:09 otp3 pgpool[2873]: [1102-1] 2016-06-06 09:37:09: pid 2873: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:37:09 otp3 pgpool[2873]: [1102-2] 2016-06-06 09:37:09: pid 2873: LOCATION: pool_query_context.c:854 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2873: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2873: LOCATION: pool_query_context.c:854 Jun 6 09:37:09 otp3 pgpool[2873]: [1103-1] 2016-06-06 09:37:09: pid 2873: DEBUG: pool_write: to backend: kind:P Jun 6 09:37:09 otp3 pgpool[2873]: [1103-2] 2016-06-06 09:37:09: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2873: DEBUG: pool_write: to backend: kind:P Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:09 otp3 pgpool[2873]: [1104-1] 2016-06-06 09:37:09: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:09 otp3 pgpool[2873]: [1104-2] 2016-06-06 09:37:09: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:09 otp3 pgpool[2873]: [1105-1] 2016-06-06 09:37:09: pid 2873: DEBUG: waiting for query response Jun 6 09:37:09 otp3 pgpool[2873]: [1105-2] 2016-06-06 09:37:09: pid 2873: DETAIL: waiting for backend:0 to complete the query Jun 6 09:37:09 otp3 pgpool[2873]: [1105-3] 2016-06-06 09:37:09: pid 2873: LOCATION: pool_process_query.c:479 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2873: DEBUG: waiting for query response Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2873: DETAIL: waiting for backend:0 to complete the query Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2873: LOCATION: pool_process_query.c:479 Jun 6 09:37:09 otp3 pgpool[2873]: [1106-1] 2016-06-06 09:37:09: pid 2873: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:37:09 otp3 pgpool[2873]: [1106-2] 2016-06-06 09:37:09: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2873: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:37:09 otp3 pgpool[2873]: [1107-1] 2016-06-06 09:37:09: pid 2873: DEBUG: detect error: kind: 1 Jun 6 09:37:09 otp3 pgpool[2873]: [1107-2] 2016-06-06 09:37:09: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2873: DEBUG: detect error: kind: 1 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:37:09 otp3 pgpool[2873]: [1108-1] 2016-06-06 09:37:09: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:09 otp3 pgpool[2873]: [1108-2] 2016-06-06 09:37:09: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:09 otp3 pgpool[2873]: [1109-1] 2016-06-06 09:37:09: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:09 otp3 pgpool[2873]: [1109-2] 2016-06-06 09:37:09: pid 2873: DETAIL: backend:0 of 2 kind = '1' Jun 6 09:37:09 otp3 pgpool[2873]: [1109-3] 2016-06-06 09:37:09: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2873: DETAIL: backend:0 of 2 kind = '1' Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:09 otp3 pgpool[2873]: [1110-1] 2016-06-06 09:37:09: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:09 otp3 pgpool[2873]: [1110-2] 2016-06-06 09:37:09: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:09 otp3 pgpool[2873]: [1111-1] 2016-06-06 09:37:09: pid 2873: DEBUG: processing backend response Jun 6 09:37:09 otp3 pgpool[2873]: [1111-2] 2016-06-06 09:37:09: pid 2873: DETAIL: received kind '1'(31) from backend Jun 6 09:37:09 otp3 pgpool[2873]: [1111-3] 2016-06-06 09:37:09: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2873: DEBUG: processing backend response Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2873: DETAIL: received kind '1'(31) from backend Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:09 otp3 pgpool[2873]: [1112-1] 2016-06-06 09:37:09: pid 2873: DEBUG: called by pool_add_sent_message: sent message: address: 2406d18 kind: P name: == Jun 6 09:37:09 otp3 pgpool[2873]: [1112-2] 2016-06-06 09:37:09: pid 2873: LOCATION: pool_session_context.c:436 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2873: DEBUG: called by pool_add_sent_message: sent message: address: 2406d18 kind: P name: == Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2873: LOCATION: pool_session_context.c:436 Jun 6 09:37:09 otp3 pgpool[2873]: [1113-1] 2016-06-06 09:37:09: pid 2873: DEBUG: adding sent message to list Jun 6 09:37:09 otp3 pgpool[2873]: [1113-2] 2016-06-06 09:37:09: pid 2873: DETAIL: prepared statement "" already exists Jun 6 09:37:09 otp3 pgpool[2873]: [1113-3] 2016-06-06 09:37:09: pid 2873: LOCATION: pool_session_context.c:516 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2873: DEBUG: adding sent message to list Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2873: DETAIL: prepared statement "" already exists Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2873: LOCATION: pool_session_context.c:516 Jun 6 09:37:09 otp3 pgpool[2873]: [1114-1] 2016-06-06 09:37:09: pid 2873: DEBUG: called by pool_sent_message_destroy: sent message: address: 2406d98 kind: P name: == Jun 6 09:37:09 otp3 pgpool[2873]: [1114-2] 2016-06-06 09:37:09: pid 2873: LOCATION: pool_session_context.c:436 Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2873: DEBUG: called by pool_sent_message_destroy: sent message: address: 2406d98 kind: P name: == Jun 6 09:37:09 otp3 pgpool: 2016-06-06 09:37:09: pid 2873: LOCATION: pool_session_context.c:436 Jun 6 09:37:10 otp3 pgpool[2873]: [1115-1] 2016-06-06 09:37:10: pid 2873: DEBUG: checking if query context can be safely destroyed Jun 6 09:37:10 otp3 pgpool[2873]: [1115-2] 2016-06-06 09:37:10: pid 2873: DETAIL: query context 0x802482830 is still used 2 times. query:"select cltenants0_.plan_id as plan_id4_5_0_, cltenants0_.tenant_id as tenant_i1_3_0_, cltenants0_.tenant_id as tenant_i1_3_1_, cltenants0_.database_id as database3_3_1_, cltenants0_.plan_id as plan_id4_3_1_, cltenants0_.tenant_name as tenant_n2_3_1_, cldatabase1_.database_id as database1_0_2_, cldatabase1_.database_server_id as database7_0_2_, cldatabase1_.database_name as database2_0_2_, cldatabase1_.max_pool_size as max_pool3_0_2_, cldatabase1_.min_pool_size as min_pool4_0_2_, cldatabase1_.password as password5_0_2_, cldatabase1_.username as username6_0_2_, cldatabase2_.database_server_id as database1_1_3_, cldatabase2_.helpdesk_driver_class as helpdesk2_1_3_, cldatabase2_.host as host3_1_3_, cldatabase2_.jdbc_url as jdbc_url4_1_3_, cldatabase2_.port as port5_1_3_, Jun 6 09:37:10 otp3 pgpool[2873]: [1115-3] cldatabase2_.rule_engine_driver_class as rule_eng6_1_3_ from cl_tenant cltenants0_ left outer join cl_database cldatabase1_ on cltenants0_.database_id=cldatabase1_.database_id left outer join cl_database_server cldatabase2_ on cldatabase1_.database_server_id=cldatabase2_.database_server_id where cltenants0_.plan_id=$1" Jun 6 09:37:10 otp3 pgpool[2873]: [1115-4] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:873 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: checking if query context can be safely destroyed Jun 6 09:37:10 otp3 pgpool[2873]: [1116-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool[2873]: [1116-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool[2873]: [1117-1] 2016-06-06 09:37:10: pid 2873: DEBUG: SimpleForwardToFrontend: packet:1 length:0 Jun 6 09:37:10 otp3 pgpool[2873]: [1117-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:792 Jun 6 09:37:10 otp3 pgpool[2873]: [1118-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting command success. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1118-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:741 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: query context 0x802482830 is still used 2 times. query:"select cltenants0_.plan_id as plan_id4_5_0_, cltenants0_.tenant_id as tenant_i1_3_0_, cltenants0_.tenant_id as tenant_i1_3_1_, cltenants0_.database_id as database3_3_1_, cltenants0_.plan_id as plan_id4_3_1_, cltenants0_.tenant_name as tenant_n2_3_1_, cldatabase1_.database_id as database1_0_2_, cldatabase1_.database_server_id as database7_0_2_, cldatabase1_.database_name as database2_0_2_, cldatabase1_.max_pool_size as max_pool3_0_2_, cldatabase1_.min_pool_size as min_pool4_0_2_, cldatabase1_.password as password5_0_2_, cldatabase1_.username as username6_0_2_, cldatabase2_.database_server_id as database1_1_3_, cldatabase2_.helpdesk_driver_class as helpdesk2_1_3_, cldatabase2_.host as host3_1_3_, cldatabase2_.jdbc_url as jdbc_url4_1_3_, cldatabase2_.port as port5_1_3_, cldatabase2_.rule_engine_driver_class as rule_eng6_1_3_ from cl_tenant cltenants0_ left outer join cl_database cldatabase Jun 6 09:37:10 otp3 pgpool: d=cldatabase1_.database_id left outer join cl_database_server cldatabase2_ on cldatabase1_.database_server_id=cldatabase2_.database_server_id where cltenants0_.plan_id=$1" Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:873 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: SimpleForwardToFrontend: packet:1 length:0 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:792 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting command success. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:741 Jun 6 09:37:10 otp3 pgpool[2873]: [1119-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1119-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:10 otp3 pgpool[2873]: [1120-1] 2016-06-06 09:37:10: pid 2873: DEBUG: processing frontend response Jun 6 09:37:10 otp3 pgpool[2873]: [1120-2] 2016-06-06 09:37:10: pid 2873: DETAIL: received kind 'B'(42) from frontend Jun 6 09:37:10 otp3 pgpool[2873]: [1120-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: processing frontend response Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: received kind 'B'(42) from frontend Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:10 otp3 pgpool[2873]: [1121-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1121-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:37:10 otp3 pgpool[2873]: [1122-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1122-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:37:10 otp3 pgpool[2873]: [1123-1] 2016-06-06 09:37:10: pid 2873: DEBUG: Bind: checking strict query Jun 6 09:37:10 otp3 pgpool[2873]: [1123-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:1211 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: Bind: checking strict query Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:1211 Jun 6 09:37:10 otp3 pgpool[2873]: [1124-1] 2016-06-06 09:37:10: pid 2873: DEBUG: Bind: checking insert lock Jun 6 09:37:10 otp3 pgpool[2873]: [1124-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:1221 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: Bind: checking insert lock Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:1221 Jun 6 09:37:10 otp3 pgpool[2873]: [1125-1] 2016-06-06 09:37:10: pid 2873: DEBUG: Bind: waiting for master completing the query Jun 6 09:37:10 otp3 pgpool[2873]: [1125-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:1237 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: Bind: waiting for master completing the query Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:1237 Jun 6 09:37:10 otp3 pgpool[2873]: [1126-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1126-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:10 otp3 pgpool[2873]: [1127-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:37:10 otp3 pgpool[2873]: [1127-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_query_context.c:854 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_query_context.c:854 Jun 6 09:37:10 otp3 pgpool[2873]: [1128-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_write: to backend: kind:B Jun 6 09:37:10 otp3 pgpool[2873]: [1128-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_write: to backend: kind:B Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:10 otp3 pgpool[2873]: [1129-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:10 otp3 pgpool[2873]: [1129-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:10 otp3 pgpool[2873]: [1130-1] 2016-06-06 09:37:10: pid 2873: DEBUG: waiting for query response Jun 6 09:37:10 otp3 pgpool[2873]: [1130-2] 2016-06-06 09:37:10: pid 2873: DETAIL: waiting for backend:0 to complete the query Jun 6 09:37:10 otp3 pgpool[2873]: [1130-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:479 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: waiting for query response Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: waiting for backend:0 to complete the query Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:479 Jun 6 09:37:10 otp3 pgpool[2873]: [1131-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:37:10 otp3 pgpool[2873]: [1131-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:37:10 otp3 pgpool[2873]: [1132-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool[2873]: [1132-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool[2873]: [1133-1] 2016-06-06 09:37:10: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:10 otp3 pgpool[2873]: [1133-2] 2016-06-06 09:37:10: pid 2873: DETAIL: backend:0 of 2 kind = '2' Jun 6 09:37:10 otp3 pgpool[2873]: [1133-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: backend:0 of 2 kind = '2' Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:10 otp3 pgpool[2873]: [1134-1] 2016-06-06 09:37:10: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:10 otp3 pgpool[2873]: [1134-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:10 otp3 pgpool[2873]: [1135-1] 2016-06-06 09:37:10: pid 2873: DEBUG: processing backend response Jun 6 09:37:10 otp3 pgpool[2873]: [1135-2] 2016-06-06 09:37:10: pid 2873: DETAIL: received kind '2'(32) from backend Jun 6 09:37:10 otp3 pgpool[2873]: [1135-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: processing backend response Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: received kind '2'(32) from backend Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:10 otp3 pgpool[2873]: [1136-1] 2016-06-06 09:37:10: pid 2873: DEBUG: called by pool_add_sent_message: sent message: address: 2406d98 kind: B name: == Jun 6 09:37:10 otp3 pgpool[2873]: [1136-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:436 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: called by pool_add_sent_message: sent message: address: 2406d98 kind: B name: == Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:436 Jun 6 09:37:10 otp3 pgpool[2873]: [1137-1] 2016-06-06 09:37:10: pid 2873: DEBUG: adding sent message to list Jun 6 09:37:10 otp3 pgpool[2873]: [1137-2] 2016-06-06 09:37:10: pid 2873: DETAIL: portal "" already exists Jun 6 09:37:10 otp3 pgpool[2873]: [1137-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:512 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: adding sent message to list Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: portal "" already exists Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:512 Jun 6 09:37:10 otp3 pgpool[2873]: [1138-1] 2016-06-06 09:37:10: pid 2873: DEBUG: called by pool_sent_message_destroy: sent message: address: 2406c80 kind: B name: == Jun 6 09:37:10 otp3 pgpool[2873]: [1138-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:436 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: called by pool_sent_message_destroy: sent message: address: 2406c80 kind: B name: == Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:436 Jun 6 09:37:10 otp3 pgpool[2873]: [1139-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1139-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:10 otp3 pgpool[2873]: [1140-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1140-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:10 otp3 pgpool[2873]: [1141-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool[2873]: [1141-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool[2873]: [1142-1] 2016-06-06 09:37:10: pid 2873: DEBUG: SimpleForwardToFrontend: packet:2 length:0 Jun 6 09:37:10 otp3 pgpool[2873]: [1142-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:792 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: SimpleForwardToFrontend: packet:2 length:0 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:792 Jun 6 09:37:10 otp3 pgpool[2873]: [1143-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting command success. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1143-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:741 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting command success. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:741 Jun 6 09:37:10 otp3 pgpool[2873]: [1144-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1144-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:10 otp3 pgpool[2873]: [1145-1] 2016-06-06 09:37:10: pid 2873: DEBUG: processing frontend response Jun 6 09:37:10 otp3 pgpool[2873]: [1145-2] 2016-06-06 09:37:10: pid 2873: DETAIL: received kind 'D'(44) from frontend Jun 6 09:37:10 otp3 pgpool[2873]: [1145-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: processing frontend response Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: received kind 'D'(44) from frontend Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:10 otp3 pgpool[2873]: [1146-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1146-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:37:10 otp3 pgpool[2873]: [1147-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1147-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:37:10 otp3 pgpool[2873]: [1148-1] 2016-06-06 09:37:10: pid 2873: DEBUG: Describe: waiting for master completing the query Jun 6 09:37:10 otp3 pgpool[2873]: [1148-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:1310 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: Describe: waiting for master completing the query Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:1310 Jun 6 09:37:10 otp3 pgpool[2873]: [1149-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1149-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:10 otp3 pgpool[2873]: [1150-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:37:10 otp3 pgpool[2873]: [1150-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_query_context.c:854 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_query_context.c:854 Jun 6 09:37:10 otp3 pgpool[2873]: [1151-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_write: to backend: kind:D Jun 6 09:37:10 otp3 pgpool[2873]: [1151-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_write: to backend: kind:D Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:10 otp3 pgpool[2873]: [1152-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:10 otp3 pgpool[2873]: [1152-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:10 otp3 pgpool[2873]: [1153-1] 2016-06-06 09:37:10: pid 2873: DEBUG: waiting for query response Jun 6 09:37:10 otp3 pgpool[2873]: [1153-2] 2016-06-06 09:37:10: pid 2873: DETAIL: waiting for backend:0 to complete the query Jun 6 09:37:10 otp3 pgpool[2873]: [1153-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:479 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: waiting for query response Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: waiting for backend:0 to complete the query Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:479 Jun 6 09:37:10 otp3 pgpool[2873]: [1154-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_read: read 34 bytes from backend 0 Jun 6 09:37:10 otp3 pgpool[2873]: [1154-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_read: read 34 bytes from backend 0 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:37:10 otp3 pgpool[2873]: [1155-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool[2873]: [1155-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool[2873]: [1156-1] 2016-06-06 09:37:10: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:10 otp3 pgpool[2873]: [1156-2] 2016-06-06 09:37:10: pid 2873: DETAIL: backend:0 of 2 kind = 'T' Jun 6 09:37:10 otp3 pgpool[2873]: [1156-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: backend:0 of 2 kind = 'T' Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:10 otp3 pgpool[2873]: [1157-1] 2016-06-06 09:37:10: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:10 otp3 pgpool[2873]: [1157-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:10 otp3 pgpool[2873]: [1158-1] 2016-06-06 09:37:10: pid 2873: DEBUG: processing backend response Jun 6 09:37:10 otp3 pgpool[2873]: [1158-2] 2016-06-06 09:37:10: pid 2873: DETAIL: received kind 'T'(54) from backend Jun 6 09:37:10 otp3 pgpool[2873]: [1158-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: processing backend response Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: received kind 'T'(54) from backend Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:10 otp3 pgpool[2873]: [1159-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool[2873]: [1159-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool[2873]: [1160-1] 2016-06-06 09:37:10: pid 2873: DEBUG: SimpleForwardToFrontend: packet:T length:29 Jun 6 09:37:10 otp3 pgpool[2873]: [1160-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:792 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: SimpleForwardToFrontend: packet:T length:29 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:792 Jun 6 09:37:10 otp3 pgpool[2873]: [1161-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1161-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:10 otp3 pgpool[2873]: [1162-1] 2016-06-06 09:37:10: pid 2873: DEBUG: processing frontend response Jun 6 09:37:10 otp3 pgpool[2873]: [1162-2] 2016-06-06 09:37:10: pid 2873: DETAIL: received kind 'E'(45) from frontend Jun 6 09:37:10 otp3 pgpool[2873]: [1162-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: processing frontend response Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: received kind 'E'(45) from frontend Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:10 otp3 pgpool[2873]: [1163-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1163-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:37:10 otp3 pgpool[2873]: [1164-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1164-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:37:10 otp3 pgpool[2873]: [1165-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1165-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:10 otp3 pgpool[2873]: [1166-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:37:10 otp3 pgpool[2873]: [1166-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_query_context.c:854 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_query_context.c:854 Jun 6 09:37:10 otp3 pgpool[2873]: [1167-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_write: to backend: kind:E Jun 6 09:37:10 otp3 pgpool[2873]: [1167-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_write: to backend: kind:E Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:10 otp3 pgpool[2873]: [1168-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:10 otp3 pgpool[2873]: [1168-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:10 otp3 pgpool[2873]: [1169-1] 2016-06-06 09:37:10: pid 2873: DEBUG: waiting for query response Jun 6 09:37:10 otp3 pgpool[2873]: [1169-2] 2016-06-06 09:37:10: pid 2873: DETAIL: waiting for backend:0 to complete the query Jun 6 09:37:10 otp3 pgpool[2873]: [1169-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:479 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: waiting for query response Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: waiting for backend:0 to complete the query Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:479 Jun 6 09:37:10 otp3 pgpool[2873]: [1170-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_read: read 26 bytes from backend 0 Jun 6 09:37:10 otp3 pgpool[2873]: [1170-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_read: read 26 bytes from backend 0 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:37:10 otp3 pgpool[2873]: [1171-1] 2016-06-06 09:37:10: pid 2873: DEBUG: detect error: kind: D Jun 6 09:37:10 otp3 pgpool[2873]: [1171-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: detect error: kind: D Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:37:10 otp3 pgpool[2873]: [1172-1] 2016-06-06 09:37:10: pid 2873: DEBUG: detect error: kind: D Jun 6 09:37:10 otp3 pgpool[2873]: [1172-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: detect error: kind: D Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:37:10 otp3 pgpool[2873]: [1173-1] 2016-06-06 09:37:10: pid 2873: DEBUG: detect error: kind: D Jun 6 09:37:10 otp3 pgpool[2873]: [1173-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: detect error: kind: D Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:37:10 otp3 pgpool[2873]: [1174-1] 2016-06-06 09:37:10: pid 2873: DEBUG: detect error: kind: D Jun 6 09:37:10 otp3 pgpool[2873]: [1174-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: detect error: kind: D Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:37:10 otp3 pgpool[2873]: [1175-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool[2873]: [1175-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool[2873]: [1176-1] 2016-06-06 09:37:10: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:10 otp3 pgpool[2873]: [1176-2] 2016-06-06 09:37:10: pid 2873: DETAIL: backend:0 of 2 kind = 'D' Jun 6 09:37:10 otp3 pgpool[2873]: [1176-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: backend:0 of 2 kind = 'D' Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:10 otp3 pgpool[2873]: [1177-1] 2016-06-06 09:37:10: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:10 otp3 pgpool[2873]: [1177-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:10 otp3 pgpool[2873]: [1178-1] 2016-06-06 09:37:10: pid 2873: DEBUG: processing backend response Jun 6 09:37:10 otp3 pgpool[2873]: [1178-2] 2016-06-06 09:37:10: pid 2873: DETAIL: received kind 'D'(44) from backend Jun 6 09:37:10 otp3 pgpool[2873]: [1178-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: processing backend response Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: received kind 'D'(44) from backend Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:10 otp3 pgpool[2873]: [1179-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool[2873]: [1179-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool[2873]: [1180-1] 2016-06-06 09:37:10: pid 2873: DEBUG: SimpleForwardToFrontend: packet:D length:7 Jun 6 09:37:10 otp3 pgpool[2873]: [1180-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:792 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: SimpleForwardToFrontend: packet:D length:7 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:792 Jun 6 09:37:10 otp3 pgpool[2873]: [1181-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool[2873]: [1181-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool[2873]: [1182-1] 2016-06-06 09:37:10: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:10 otp3 pgpool[2873]: [1182-2] 2016-06-06 09:37:10: pid 2873: DETAIL: backend:0 of 2 kind = 'C' Jun 6 09:37:10 otp3 pgpool[2873]: [1182-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: backend:0 of 2 kind = 'C' Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:10 otp3 pgpool[2873]: [1183-1] 2016-06-06 09:37:10: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:10 otp3 pgpool[2873]: [1183-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:10 otp3 pgpool[2873]: [1184-1] 2016-06-06 09:37:10: pid 2873: DEBUG: processing backend response Jun 6 09:37:10 otp3 pgpool[2873]: [1184-2] 2016-06-06 09:37:10: pid 2873: DETAIL: received kind 'C'(43) from backend Jun 6 09:37:10 otp3 pgpool[2873]: [1184-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: processing backend response Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: received kind 'C'(43) from backend Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:10 otp3 pgpool[2873]: [1185-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting command success. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1185-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:741 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting command success. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:741 Jun 6 09:37:10 otp3 pgpool[2873]: [1186-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1186-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:10 otp3 pgpool[2873]: [1187-1] 2016-06-06 09:37:10: pid 2873: DEBUG: processing frontend response Jun 6 09:37:10 otp3 pgpool[2873]: [1187-2] 2016-06-06 09:37:10: pid 2873: DETAIL: received kind 'S'(53) from frontend Jun 6 09:37:10 otp3 pgpool[2873]: [1187-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: processing frontend response Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: received kind 'S'(53) from frontend Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:10 otp3 pgpool[2873]: [1188-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1188-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:37:10 otp3 pgpool[2873]: [1189-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1189-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:37:10 otp3 pgpool[2873]: [1190-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1190-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:10 otp3 pgpool[2873]: [1191-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_write: to backend: kind:S Jun 6 09:37:10 otp3 pgpool[2873]: [1191-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_write: to backend: kind:S Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:10 otp3 pgpool[2873]: [1192-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool[2873]: [1192-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool[2873]: [1193-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:37:10 otp3 pgpool[2873]: [1193-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:37:10 otp3 pgpool[2873]: [1194-1] 2016-06-06 09:37:10: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:10 otp3 pgpool[2873]: [1194-2] 2016-06-06 09:37:10: pid 2873: DETAIL: backend:0 of 2 kind = 'Z' Jun 6 09:37:10 otp3 pgpool[2873]: [1194-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: backend:0 of 2 kind = 'Z' Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:10 otp3 pgpool[2873]: [1195-1] 2016-06-06 09:37:10: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:10 otp3 pgpool[2873]: [1195-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:10 otp3 pgpool[2873]: [1196-1] 2016-06-06 09:37:10: pid 2873: DEBUG: processing backend response Jun 6 09:37:10 otp3 pgpool[2873]: [1196-2] 2016-06-06 09:37:10: pid 2873: DETAIL: received kind 'Z'(5a) from backend Jun 6 09:37:10 otp3 pgpool[2873]: [1196-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: processing backend response Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: received kind 'Z'(5a) from backend Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:10 otp3 pgpool[2873]: [1197-1] 2016-06-06 09:37:10: pid 2873: DEBUG: processing backend response Jun 6 09:37:10 otp3 pgpool[2873]: [1197-2] 2016-06-06 09:37:10: pid 2873: DETAIL: Ready For Query received Jun 6 09:37:10 otp3 pgpool[2873]: [1197-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:2442 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: processing backend response Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: Ready For Query received Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:2442 Jun 6 09:37:10 otp3 pgpool[2873]: [1198-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1198-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:310 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:310 Jun 6 09:37:10 otp3 pgpool[2873]: [1199-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool[2873]: [1199-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool[2873]: [1200-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool[2873]: [1200-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool[2873]: [1201-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool[2873]: [1201-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool[2873]: [1202-1] 2016-06-06 09:37:10: pid 2873: DEBUG: reading message length Jun 6 09:37:10 otp3 pgpool[2873]: [1202-2] 2016-06-06 09:37:10: pid 2873: DETAIL: slot: 0 length: 5 Jun 6 09:37:10 otp3 pgpool[2873]: [1202-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_auth.c:1107 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: reading message length Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: slot: 0 length: 5 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_auth.c:1107 Jun 6 09:37:10 otp3 pgpool[2873]: [1203-1] 2016-06-06 09:37:10: pid 2873: DEBUG: processing ReadyForQuery Jun 6 09:37:10 otp3 pgpool[2873]: [1203-2] 2016-06-06 09:37:10: pid 2873: DETAIL: transaction state 'I'(49) Jun 6 09:37:10 otp3 pgpool[2873]: [1203-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:1612 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: processing ReadyForQuery Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: transaction state 'I'(49) Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:1612 Jun 6 09:37:10 otp3 pgpool[2873]: [1204-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1204-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:10 otp3 pgpool[2873]: [1205-1] 2016-06-06 09:37:10: pid 2873: DEBUG: processing frontend response Jun 6 09:37:10 otp3 pgpool[2873]: [1205-2] 2016-06-06 09:37:10: pid 2873: DETAIL: received kind 'P'(50) from frontend Jun 6 09:37:10 otp3 pgpool[2873]: [1205-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: processing frontend response Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: received kind 'P'(50) from frontend Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:10 otp3 pgpool[2873]: [1206-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1206-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:37:10 otp3 pgpool[2873]: [1207-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1207-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:37:10 otp3 pgpool[2873]: [1208-1] 2016-06-06 09:37:10: pid 2873: DEBUG: Parse: statement name <> Jun 6 09:37:10 otp3 pgpool[2873]: [1208-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:817 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: Parse: statement name <> Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:817 Jun 6 09:37:10 otp3 pgpool[2873]: [1209-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1209-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:10 otp3 pgpool[2873]: [1210-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_write: to backend: kind:S Jun 6 09:37:10 otp3 pgpool[2873]: [1210-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_write: to backend: kind:S Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:10 otp3 pgpool[2873]: [1211-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:10 otp3 pgpool[2873]: [1211-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:10 otp3 pgpool[2873]: [1212-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:37:10 otp3 pgpool[2873]: [1212-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:37:10 otp3 pgpool[2873]: [1213-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1213-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:310 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:310 Jun 6 09:37:10 otp3 pgpool[2873]: [1214-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool[2873]: [1214-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool[2873]: [1215-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool[2873]: [1215-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool[2873]: [1216-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool[2873]: [1216-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool[2873]: [1217-1] 2016-06-06 09:37:10: pid 2873: DEBUG: reading message length Jun 6 09:37:10 otp3 pgpool[2873]: [1217-2] 2016-06-06 09:37:10: pid 2873: DETAIL: slot: 0 length: 5 Jun 6 09:37:10 otp3 pgpool[2873]: [1217-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_auth.c:1107 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: reading message length Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: slot: 0 length: 5 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_auth.c:1107 Jun 6 09:37:10 otp3 pgpool[2873]: [1218-1] 2016-06-06 09:37:10: pid 2873: DEBUG: processing ReadyForQuery Jun 6 09:37:10 otp3 pgpool[2873]: [1218-2] 2016-06-06 09:37:10: pid 2873: DETAIL: transaction state 'I'(49) Jun 6 09:37:10 otp3 pgpool[2873]: [1218-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:1612 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: processing ReadyForQuery Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: transaction state 'I'(49) Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:1612 Jun 6 09:37:10 otp3 pgpool[2873]: [1219-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1219-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:10 otp3 pgpool[2873]: [1220-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1220-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:10 otp3 pgpool[2873]: [1221-1] 2016-06-06 09:37:10: pid 2873: DEBUG: Parse: waiting for master completing the query Jun 6 09:37:10 otp3 pgpool[2873]: [1221-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:1064 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: Parse: waiting for master completing the query Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:1064 Jun 6 09:37:10 otp3 pgpool[2873]: [1222-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:37:10 otp3 pgpool[2873]: [1222-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_query_context.c:854 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_query_context.c:854 Jun 6 09:37:10 otp3 pgpool[2873]: [1223-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_write: to backend: kind:P Jun 6 09:37:10 otp3 pgpool[2873]: [1223-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_write: to backend: kind:P Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:10 otp3 pgpool[2873]: [1224-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:10 otp3 pgpool[2873]: [1224-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:10 otp3 pgpool[2873]: [1225-1] 2016-06-06 09:37:10: pid 2873: DEBUG: waiting for query response Jun 6 09:37:10 otp3 pgpool[2873]: [1225-2] 2016-06-06 09:37:10: pid 2873: DETAIL: waiting for backend:0 to complete the query Jun 6 09:37:10 otp3 pgpool[2873]: [1225-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:479 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: waiting for query response Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: waiting for backend:0 to complete the query Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:479 Jun 6 09:37:10 otp3 pgpool[2873]: [1226-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:37:10 otp3 pgpool[2873]: [1226-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:37:10 otp3 pgpool[2873]: [1227-1] 2016-06-06 09:37:10: pid 2873: DEBUG: detect error: kind: 1 Jun 6 09:37:10 otp3 pgpool[2873]: [1227-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: detect error: kind: 1 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:37:10 otp3 pgpool[2873]: [1228-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool[2873]: [1228-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool[2873]: [1229-1] 2016-06-06 09:37:10: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:10 otp3 pgpool[2873]: [1229-2] 2016-06-06 09:37:10: pid 2873: DETAIL: backend:0 of 2 kind = '1' Jun 6 09:37:10 otp3 pgpool[2873]: [1229-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: backend:0 of 2 kind = '1' Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:10 otp3 pgpool[2873]: [1230-1] 2016-06-06 09:37:10: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:10 otp3 pgpool[2873]: [1230-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:10 otp3 pgpool[2873]: [1231-1] 2016-06-06 09:37:10: pid 2873: DEBUG: processing backend response Jun 6 09:37:10 otp3 pgpool[2873]: [1231-2] 2016-06-06 09:37:10: pid 2873: DETAIL: received kind '1'(31) from backend Jun 6 09:37:10 otp3 pgpool[2873]: [1231-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: processing backend response Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: received kind '1'(31) from backend Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:10 otp3 pgpool[2873]: [1232-1] 2016-06-06 09:37:10: pid 2873: DEBUG: called by pool_add_sent_message: sent message: address: 2406c80 kind: P name: == Jun 6 09:37:10 otp3 pgpool[2873]: [1232-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:436 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: called by pool_add_sent_message: sent message: address: 2406c80 kind: P name: == Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:436 Jun 6 09:37:10 otp3 pgpool[2873]: [1233-1] 2016-06-06 09:37:10: pid 2873: DEBUG: adding sent message to list Jun 6 09:37:10 otp3 pgpool[2873]: [1233-2] 2016-06-06 09:37:10: pid 2873: DETAIL: prepared statement "" already exists Jun 6 09:37:10 otp3 pgpool[2873]: [1233-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:516 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: adding sent message to list Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: prepared statement "" already exists Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:516 Jun 6 09:37:10 otp3 pgpool[2873]: [1234-1] 2016-06-06 09:37:10: pid 2873: DEBUG: called by pool_sent_message_destroy: sent message: address: 2406d18 kind: P name: == Jun 6 09:37:10 otp3 pgpool[2873]: [1234-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:436 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: called by pool_sent_message_destroy: sent message: address: 2406d18 kind: P name: == Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:436 Jun 6 09:37:10 otp3 pgpool[2873]: [1235-1] 2016-06-06 09:37:10: pid 2873: DEBUG: checking if query context can be safely destroyed Jun 6 09:37:10 otp3 pgpool[2873]: [1235-2] 2016-06-06 09:37:10: pid 2873: DETAIL: query context 0x802481830 is still used 2 times. query:"SELECT 1" Jun 6 09:37:10 otp3 pgpool[2873]: [1235-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:873 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: checking if query context can be safely destroyed Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: query context 0x802481830 is still used 2 times. query:"SELECT 1" Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:873 Jun 6 09:37:10 otp3 pgpool[2873]: [1236-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool[2873]: [1236-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool[2873]: [1237-1] 2016-06-06 09:37:10: pid 2873: DEBUG: SimpleForwardToFrontend: packet:1 length:0 Jun 6 09:37:10 otp3 pgpool[2873]: [1237-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:792 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: SimpleForwardToFrontend: packet:1 length:0 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:792 Jun 6 09:37:10 otp3 pgpool[2873]: [1238-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting command success. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1238-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:741 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting command success. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:741 Jun 6 09:37:10 otp3 pgpool[2873]: [1239-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1239-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:10 otp3 pgpool[2873]: [1240-1] 2016-06-06 09:37:10: pid 2873: DEBUG: processing frontend response Jun 6 09:37:10 otp3 pgpool[2873]: [1240-2] 2016-06-06 09:37:10: pid 2873: DETAIL: received kind 'B'(42) from frontend Jun 6 09:37:10 otp3 pgpool[2873]: [1240-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: processing frontend response Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: received kind 'B'(42) from frontend Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:10 otp3 pgpool[2873]: [1241-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1241-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:37:10 otp3 pgpool[2873]: [1242-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1242-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:37:10 otp3 pgpool[2873]: [1243-1] 2016-06-06 09:37:10: pid 2873: DEBUG: Bind: checking strict query Jun 6 09:37:10 otp3 pgpool[2873]: [1243-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:1211 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: Bind: checking strict query Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:1211 Jun 6 09:37:10 otp3 pgpool[2873]: [1244-1] 2016-06-06 09:37:10: pid 2873: DEBUG: Bind: checking insert lock Jun 6 09:37:10 otp3 pgpool[2873]: [1244-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:1221 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: Bind: checking insert lock Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:1221 Jun 6 09:37:10 otp3 pgpool[2873]: [1245-1] 2016-06-06 09:37:10: pid 2873: DEBUG: Bind: waiting for master completing the query Jun 6 09:37:10 otp3 pgpool[2873]: [1245-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:1237 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: Bind: waiting for master completing the query Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:1237 Jun 6 09:37:10 otp3 pgpool[2873]: [1246-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1246-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:10 otp3 pgpool[2873]: [1247-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:37:10 otp3 pgpool[2873]: [1247-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_query_context.c:854 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_query_context.c:854 Jun 6 09:37:10 otp3 pgpool[2873]: [1248-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_write: to backend: kind:B Jun 6 09:37:10 otp3 pgpool[2873]: [1248-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_write: to backend: kind:B Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:10 otp3 pgpool[2873]: [1249-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:10 otp3 pgpool[2873]: [1249-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:10 otp3 pgpool[2873]: [1250-1] 2016-06-06 09:37:10: pid 2873: DEBUG: waiting for query response Jun 6 09:37:10 otp3 pgpool[2873]: [1250-2] 2016-06-06 09:37:10: pid 2873: DETAIL: waiting for backend:0 to complete the query Jun 6 09:37:10 otp3 pgpool[2873]: [1250-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:479 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: waiting for query response Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: waiting for backend:0 to complete the query Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:479 Jun 6 09:37:10 otp3 pgpool[2873]: [1251-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:37:10 otp3 pgpool[2873]: [1251-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:37:10 otp3 pgpool[2873]: [1252-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool[2873]: [1252-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool[2873]: [1253-1] 2016-06-06 09:37:10: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:10 otp3 pgpool[2873]: [1253-2] 2016-06-06 09:37:10: pid 2873: DETAIL: backend:0 of 2 kind = '2' Jun 6 09:37:10 otp3 pgpool[2873]: [1253-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: backend:0 of 2 kind = '2' Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:10 otp3 pgpool[2873]: [1254-1] 2016-06-06 09:37:10: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:10 otp3 pgpool[2873]: [1254-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:10 otp3 pgpool[2873]: [1255-1] 2016-06-06 09:37:10: pid 2873: DEBUG: processing backend response Jun 6 09:37:10 otp3 pgpool[2873]: [1255-2] 2016-06-06 09:37:10: pid 2873: DETAIL: received kind '2'(32) from backend Jun 6 09:37:10 otp3 pgpool[2873]: [1255-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: processing backend response Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: received kind '2'(32) from backend Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:10 otp3 pgpool[2873]: [1256-1] 2016-06-06 09:37:10: pid 2873: DEBUG: called by pool_add_sent_message: sent message: address: 2406d18 kind: B name: == Jun 6 09:37:10 otp3 pgpool[2873]: [1256-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:436 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: called by pool_add_sent_message: sent message: address: 2406d18 kind: B name: == Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:436 Jun 6 09:37:10 otp3 pgpool[2873]: [1257-1] 2016-06-06 09:37:10: pid 2873: DEBUG: adding sent message to list Jun 6 09:37:10 otp3 pgpool[2873]: [1257-2] 2016-06-06 09:37:10: pid 2873: DETAIL: portal "" already exists Jun 6 09:37:10 otp3 pgpool[2873]: [1257-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:512 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: adding sent message to list Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: portal "" already exists Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:512 Jun 6 09:37:10 otp3 pgpool[2873]: [1258-1] 2016-06-06 09:37:10: pid 2873: DEBUG: called by pool_sent_message_destroy: sent message: address: 2406d98 kind: B name: == Jun 6 09:37:10 otp3 pgpool[2873]: [1258-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:436 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: called by pool_sent_message_destroy: sent message: address: 2406d98 kind: B name: == Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:436 Jun 6 09:37:10 otp3 pgpool[2873]: [1259-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1259-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:10 otp3 pgpool[2873]: [1260-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1260-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:10 otp3 pgpool[2873]: [1261-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool[2873]: [1261-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool[2873]: [1262-1] 2016-06-06 09:37:10: pid 2873: DEBUG: SimpleForwardToFrontend: packet:2 length:0 Jun 6 09:37:10 otp3 pgpool[2873]: [1262-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:792 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: SimpleForwardToFrontend: packet:2 length:0 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:792 Jun 6 09:37:10 otp3 pgpool[2873]: [1263-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting command success. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1263-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:741 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting command success. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:741 Jun 6 09:37:10 otp3 pgpool[2873]: [1264-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1264-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:10 otp3 pgpool[2873]: [1265-1] 2016-06-06 09:37:10: pid 2873: DEBUG: processing frontend response Jun 6 09:37:10 otp3 pgpool[2873]: [1265-2] 2016-06-06 09:37:10: pid 2873: DETAIL: received kind 'D'(44) from frontend Jun 6 09:37:10 otp3 pgpool[2873]: [1265-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: processing frontend response Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: received kind 'D'(44) from frontend Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:10 otp3 pgpool[2873]: [1266-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1266-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:37:10 otp3 pgpool[2873]: [1267-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1267-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:37:10 otp3 pgpool[2873]: [1268-1] 2016-06-06 09:37:10: pid 2873: DEBUG: Describe: waiting for master completing the query Jun 6 09:37:10 otp3 pgpool[2873]: [1268-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:1310 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: Describe: waiting for master completing the query Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:1310 Jun 6 09:37:10 otp3 pgpool[2873]: [1269-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1269-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:10 otp3 pgpool[2873]: [1270-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:37:10 otp3 pgpool[2873]: [1270-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_query_context.c:854 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_query_context.c:854 Jun 6 09:37:10 otp3 pgpool[2873]: [1271-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_write: to backend: kind:D Jun 6 09:37:10 otp3 pgpool[2873]: [1271-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_write: to backend: kind:D Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:10 otp3 pgpool[2873]: [1272-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:10 otp3 pgpool[2873]: [1272-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:10 otp3 pgpool[2873]: [1273-1] 2016-06-06 09:37:10: pid 2873: DEBUG: waiting for query response Jun 6 09:37:10 otp3 pgpool[2873]: [1273-2] 2016-06-06 09:37:10: pid 2873: DETAIL: waiting for backend:0 to complete the query Jun 6 09:37:10 otp3 pgpool[2873]: [1273-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:479 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: waiting for query response Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: waiting for backend:0 to complete the query Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:479 Jun 6 09:37:10 otp3 pgpool[2873]: [1274-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_read: read 130 bytes from backend 0 Jun 6 09:37:10 otp3 pgpool[2873]: [1274-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_read: read 130 bytes from backend 0 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:37:10 otp3 pgpool[2873]: [1275-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool[2873]: [1275-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool[2873]: [1276-1] 2016-06-06 09:37:10: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:10 otp3 pgpool[2873]: [1276-2] 2016-06-06 09:37:10: pid 2873: DETAIL: backend:0 of 2 kind = 'T' Jun 6 09:37:10 otp3 pgpool[2873]: [1276-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: backend:0 of 2 kind = 'T' Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:10 otp3 pgpool[2873]: [1277-1] 2016-06-06 09:37:10: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:10 otp3 pgpool[2873]: [1277-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:10 otp3 pgpool[2873]: [1278-1] 2016-06-06 09:37:10: pid 2873: DEBUG: processing backend response Jun 6 09:37:10 otp3 pgpool[2873]: [1278-2] 2016-06-06 09:37:10: pid 2873: DETAIL: received kind 'T'(54) from backend Jun 6 09:37:10 otp3 pgpool[2873]: [1278-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: processing backend response Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: received kind 'T'(54) from backend Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:10 otp3 pgpool[2873]: [1279-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool[2873]: [1279-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool[2873]: [1280-1] 2016-06-06 09:37:10: pid 2873: DEBUG: SimpleForwardToFrontend: packet:T length:125 Jun 6 09:37:10 otp3 pgpool[2873]: [1280-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:792 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: SimpleForwardToFrontend: packet:T length:125 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:792 Jun 6 09:37:10 otp3 pgpool[2873]: [1281-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1281-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:10 otp3 pgpool[2873]: [1282-1] 2016-06-06 09:37:10: pid 2873: DEBUG: processing frontend response Jun 6 09:37:10 otp3 pgpool[2873]: [1282-2] 2016-06-06 09:37:10: pid 2873: DETAIL: received kind 'E'(45) from frontend Jun 6 09:37:10 otp3 pgpool[2873]: [1282-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: processing frontend response Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: received kind 'E'(45) from frontend Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:10 otp3 pgpool[2873]: [1283-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1283-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:37:10 otp3 pgpool[2873]: [1284-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1284-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:37:10 otp3 pgpool[2873]: [1285-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1285-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:10 otp3 pgpool[2873]: [1286-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:37:10 otp3 pgpool[2873]: [1286-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_query_context.c:854 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_query_context.c:854 Jun 6 09:37:10 otp3 pgpool[2873]: [1287-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_write: to backend: kind:E Jun 6 09:37:10 otp3 pgpool[2873]: [1287-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_write: to backend: kind:E Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:10 otp3 pgpool[2873]: [1288-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:10 otp3 pgpool[2873]: [1288-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:10 otp3 pgpool[2873]: [1289-1] 2016-06-06 09:37:10: pid 2873: DEBUG: waiting for query response Jun 6 09:37:10 otp3 pgpool[2873]: [1289-2] 2016-06-06 09:37:10: pid 2873: DETAIL: waiting for backend:0 to complete the query Jun 6 09:37:10 otp3 pgpool[2873]: [1289-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:479 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: waiting for query response Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: waiting for backend:0 to complete the query Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:479 Jun 6 09:37:10 otp3 pgpool[2873]: [1290-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_read: read 59 bytes from backend 0 Jun 6 09:37:10 otp3 pgpool[2873]: [1290-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_read: read 59 bytes from backend 0 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:37:10 otp3 pgpool[2873]: [1291-1] 2016-06-06 09:37:10: pid 2873: DEBUG: detect error: kind: D Jun 6 09:37:10 otp3 pgpool[2873]: [1291-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: detect error: kind: D Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:37:10 otp3 pgpool[2873]: [1292-1] 2016-06-06 09:37:10: pid 2873: DEBUG: detect error: kind: D Jun 6 09:37:10 otp3 pgpool[2873]: [1292-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: detect error: kind: D Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:37:10 otp3 pgpool[2873]: [1293-1] 2016-06-06 09:37:10: pid 2873: DEBUG: detect error: kind: D Jun 6 09:37:10 otp3 pgpool[2873]: [1293-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: detect error: kind: D Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:37:10 otp3 pgpool[2873]: [1294-1] 2016-06-06 09:37:10: pid 2873: DEBUG: detect error: kind: D Jun 6 09:37:10 otp3 pgpool[2873]: [1294-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: detect error: kind: D Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:37:10 otp3 pgpool[2873]: [1295-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool[2873]: [1295-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool[2873]: [1296-1] 2016-06-06 09:37:10: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:10 otp3 pgpool[2873]: [1296-2] 2016-06-06 09:37:10: pid 2873: DETAIL: backend:0 of 2 kind = 'D' Jun 6 09:37:10 otp3 pgpool[2873]: [1296-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: backend:0 of 2 kind = 'D' Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:10 otp3 pgpool[2873]: [1297-1] 2016-06-06 09:37:10: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:10 otp3 pgpool[2873]: [1297-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:10 otp3 pgpool[2873]: [1298-1] 2016-06-06 09:37:10: pid 2873: DEBUG: processing backend response Jun 6 09:37:10 otp3 pgpool[2873]: [1298-2] 2016-06-06 09:37:10: pid 2873: DETAIL: received kind 'D'(44) from backend Jun 6 09:37:10 otp3 pgpool[2873]: [1298-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: processing backend response Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: received kind 'D'(44) from backend Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:10 otp3 pgpool[2873]: [1299-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool[2873]: [1299-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool[2873]: [1300-1] 2016-06-06 09:37:10: pid 2873: DEBUG: SimpleForwardToFrontend: packet:D length:40 Jun 6 09:37:10 otp3 pgpool[2873]: [1300-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:792 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: SimpleForwardToFrontend: packet:D length:40 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:792 Jun 6 09:37:10 otp3 pgpool[2873]: [1301-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool[2873]: [1301-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool[2873]: [1302-1] 2016-06-06 09:37:10: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:10 otp3 pgpool[2873]: [1302-2] 2016-06-06 09:37:10: pid 2873: DETAIL: backend:0 of 2 kind = 'C' Jun 6 09:37:10 otp3 pgpool[2873]: [1302-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: backend:0 of 2 kind = 'C' Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:10 otp3 pgpool[2873]: [1303-1] 2016-06-06 09:37:10: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:10 otp3 pgpool[2873]: [1303-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:10 otp3 pgpool[2873]: [1304-1] 2016-06-06 09:37:10: pid 2873: DEBUG: processing backend response Jun 6 09:37:10 otp3 pgpool[2873]: [1304-2] 2016-06-06 09:37:10: pid 2873: DETAIL: received kind 'C'(43) from backend Jun 6 09:37:10 otp3 pgpool[2873]: [1304-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: processing backend response Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: received kind 'C'(43) from backend Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:10 otp3 pgpool[2873]: [1305-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting command success. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1305-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:741 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting command success. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:741 Jun 6 09:37:10 otp3 pgpool[2873]: [1306-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1306-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:10 otp3 pgpool[2873]: [1307-1] 2016-06-06 09:37:10: pid 2873: DEBUG: processing frontend response Jun 6 09:37:10 otp3 pgpool[2873]: [1307-2] 2016-06-06 09:37:10: pid 2873: DETAIL: received kind 'S'(53) from frontend Jun 6 09:37:10 otp3 pgpool[2873]: [1307-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: processing frontend response Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: received kind 'S'(53) from frontend Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:10 otp3 pgpool[2873]: [1308-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1308-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:37:10 otp3 pgpool[2873]: [1309-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1309-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:37:10 otp3 pgpool[2873]: [1310-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1310-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:10 otp3 pgpool[2873]: [1311-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_write: to backend: kind:S Jun 6 09:37:10 otp3 pgpool[2873]: [1311-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_write: to backend: kind:S Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:10 otp3 pgpool[2873]: [1312-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool[2873]: [1312-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool[2873]: [1313-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:37:10 otp3 pgpool[2873]: [1313-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:37:10 otp3 pgpool[2873]: [1314-1] 2016-06-06 09:37:10: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:10 otp3 pgpool[2873]: [1314-2] 2016-06-06 09:37:10: pid 2873: DETAIL: backend:0 of 2 kind = 'Z' Jun 6 09:37:10 otp3 pgpool[2873]: [1314-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: backend:0 of 2 kind = 'Z' Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:10 otp3 pgpool[2873]: [1315-1] 2016-06-06 09:37:10: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:10 otp3 pgpool[2873]: [1315-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:10 otp3 pgpool[2873]: [1316-1] 2016-06-06 09:37:10: pid 2873: DEBUG: processing backend response Jun 6 09:37:10 otp3 pgpool[2873]: [1316-2] 2016-06-06 09:37:10: pid 2873: DETAIL: received kind 'Z'(5a) from backend Jun 6 09:37:10 otp3 pgpool[2873]: [1316-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: processing backend response Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: received kind 'Z'(5a) from backend Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:10 otp3 pgpool[2873]: [1317-1] 2016-06-06 09:37:10: pid 2873: DEBUG: processing backend response Jun 6 09:37:10 otp3 pgpool[2873]: [1317-2] 2016-06-06 09:37:10: pid 2873: DETAIL: Ready For Query received Jun 6 09:37:10 otp3 pgpool[2873]: [1317-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:2442 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: processing backend response Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: Ready For Query received Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:2442 Jun 6 09:37:10 otp3 pgpool[2873]: [1318-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1318-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:310 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:310 Jun 6 09:37:10 otp3 pgpool[2873]: [1319-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool[2873]: [1319-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool[2873]: [1320-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool[2873]: [1320-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool[2873]: [1321-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool[2873]: [1321-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool[2873]: [1322-1] 2016-06-06 09:37:10: pid 2873: DEBUG: reading message length Jun 6 09:37:10 otp3 pgpool[2873]: [1322-2] 2016-06-06 09:37:10: pid 2873: DETAIL: slot: 0 length: 5 Jun 6 09:37:10 otp3 pgpool[2873]: [1322-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_auth.c:1107 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: reading message length Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: slot: 0 length: 5 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_auth.c:1107 Jun 6 09:37:10 otp3 pgpool[2873]: [1323-1] 2016-06-06 09:37:10: pid 2873: DEBUG: processing ReadyForQuery Jun 6 09:37:10 otp3 pgpool[2873]: [1323-2] 2016-06-06 09:37:10: pid 2873: DETAIL: transaction state 'I'(49) Jun 6 09:37:10 otp3 pgpool[2873]: [1323-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:1612 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: processing ReadyForQuery Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: transaction state 'I'(49) Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:1612 Jun 6 09:37:10 otp3 pgpool[2873]: [1324-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1324-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:10 otp3 pgpool[2873]: [1325-1] 2016-06-06 09:37:10: pid 2873: DEBUG: processing frontend response Jun 6 09:37:10 otp3 pgpool[2873]: [1325-2] 2016-06-06 09:37:10: pid 2873: DETAIL: received kind 'P'(50) from frontend Jun 6 09:37:10 otp3 pgpool[2873]: [1325-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: processing frontend response Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: received kind 'P'(50) from frontend Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:10 otp3 pgpool[2873]: [1326-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1326-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:37:10 otp3 pgpool[2873]: [1327-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1327-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:37:10 otp3 pgpool[2873]: [1328-1] 2016-06-06 09:37:10: pid 2873: DEBUG: Parse: statement name <> Jun 6 09:37:10 otp3 pgpool[2873]: [1328-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:817 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: Parse: statement name <> Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:817 Jun 6 09:37:10 otp3 pgpool[2873]: [1329-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1329-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:10 otp3 pgpool[2873]: [1330-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_write: to backend: kind:S Jun 6 09:37:10 otp3 pgpool[2873]: [1330-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_write: to backend: kind:S Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:10 otp3 pgpool[2873]: [1331-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:10 otp3 pgpool[2873]: [1331-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:10 otp3 pgpool[2873]: [1332-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:37:10 otp3 pgpool[2873]: [1332-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:37:10 otp3 pgpool[2873]: [1333-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1333-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:310 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:310 Jun 6 09:37:10 otp3 pgpool[2873]: [1334-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool[2873]: [1334-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool[2873]: [1335-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool[2873]: [1335-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool[2873]: [1336-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool[2873]: [1336-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool[2873]: [1337-1] 2016-06-06 09:37:10: pid 2873: DEBUG: reading message length Jun 6 09:37:10 otp3 pgpool[2873]: [1337-2] 2016-06-06 09:37:10: pid 2873: DETAIL: slot: 0 length: 5 Jun 6 09:37:10 otp3 pgpool[2873]: [1337-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_auth.c:1107 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: reading message length Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: slot: 0 length: 5 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_auth.c:1107 Jun 6 09:37:10 otp3 pgpool[2873]: [1338-1] 2016-06-06 09:37:10: pid 2873: DEBUG: processing ReadyForQuery Jun 6 09:37:10 otp3 pgpool[2873]: [1338-2] 2016-06-06 09:37:10: pid 2873: DETAIL: transaction state 'I'(49) Jun 6 09:37:10 otp3 pgpool[2873]: [1338-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:1612 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: processing ReadyForQuery Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: transaction state 'I'(49) Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:1612 Jun 6 09:37:10 otp3 pgpool[2873]: [1339-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1339-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:10 otp3 pgpool[2873]: [1340-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1340-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:10 otp3 pgpool[2873]: [1341-1] 2016-06-06 09:37:10: pid 2873: DEBUG: Parse: waiting for master completing the query Jun 6 09:37:10 otp3 pgpool[2873]: [1341-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:1064 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: Parse: waiting for master completing the query Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:1064 Jun 6 09:37:10 otp3 pgpool[2873]: [1342-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:37:10 otp3 pgpool[2873]: [1342-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_query_context.c:854 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_query_context.c:854 Jun 6 09:37:10 otp3 pgpool[2873]: [1343-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_write: to backend: kind:P Jun 6 09:37:10 otp3 pgpool[2873]: [1343-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_write: to backend: kind:P Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:10 otp3 pgpool[2873]: [1344-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:10 otp3 pgpool[2873]: [1344-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:10 otp3 pgpool[2873]: [1345-1] 2016-06-06 09:37:10: pid 2873: DEBUG: waiting for query response Jun 6 09:37:10 otp3 pgpool[2873]: [1345-2] 2016-06-06 09:37:10: pid 2873: DETAIL: waiting for backend:0 to complete the query Jun 6 09:37:10 otp3 pgpool[2873]: [1345-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:479 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: waiting for query response Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: waiting for backend:0 to complete the query Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:479 Jun 6 09:37:10 otp3 pgpool[2873]: [1346-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:37:10 otp3 pgpool[2873]: [1346-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:37:10 otp3 pgpool[2873]: [1347-1] 2016-06-06 09:37:10: pid 2873: DEBUG: detect error: kind: 1 Jun 6 09:37:10 otp3 pgpool[2873]: [1347-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: detect error: kind: 1 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:37:10 otp3 pgpool[2873]: [1348-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool[2873]: [1348-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool[2873]: [1349-1] 2016-06-06 09:37:10: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:10 otp3 pgpool[2873]: [1349-2] 2016-06-06 09:37:10: pid 2873: DETAIL: backend:0 of 2 kind = '1' Jun 6 09:37:10 otp3 pgpool[2873]: [1349-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: backend:0 of 2 kind = '1' Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:10 otp3 pgpool[2873]: [1350-1] 2016-06-06 09:37:10: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:10 otp3 pgpool[2873]: [1350-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:10 otp3 pgpool[2873]: [1351-1] 2016-06-06 09:37:10: pid 2873: DEBUG: processing backend response Jun 6 09:37:10 otp3 pgpool[2873]: [1351-2] 2016-06-06 09:37:10: pid 2873: DETAIL: received kind '1'(31) from backend Jun 6 09:37:10 otp3 pgpool[2873]: [1351-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: processing backend response Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: received kind '1'(31) from backend Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:10 otp3 pgpool[2873]: [1352-1] 2016-06-06 09:37:10: pid 2873: DEBUG: called by pool_add_sent_message: sent message: address: 2406d98 kind: P name: == Jun 6 09:37:10 otp3 pgpool[2873]: [1352-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:436 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: called by pool_add_sent_message: sent message: address: 2406d98 kind: P name: == Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:436 Jun 6 09:37:10 otp3 pgpool[2873]: [1353-1] 2016-06-06 09:37:10: pid 2873: DEBUG: adding sent message to list Jun 6 09:37:10 otp3 pgpool[2873]: [1353-2] 2016-06-06 09:37:10: pid 2873: DETAIL: prepared statement "" already exists Jun 6 09:37:10 otp3 pgpool[2873]: [1353-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:516 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: adding sent message to list Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: prepared statement "" already exists Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:516 Jun 6 09:37:10 otp3 pgpool[2873]: [1354-1] 2016-06-06 09:37:10: pid 2873: DEBUG: called by pool_sent_message_destroy: sent message: address: 2406c80 kind: P name: == Jun 6 09:37:10 otp3 pgpool[2873]: [1354-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:436 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: called by pool_sent_message_destroy: sent message: address: 2406c80 kind: P name: == Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:436 Jun 6 09:37:10 otp3 pgpool[2873]: [1355-1] 2016-06-06 09:37:10: pid 2873: DEBUG: checking if query context can be safely destroyed Jun 6 09:37:10 otp3 pgpool[2873]: [1355-2] 2016-06-06 09:37:10: pid 2873: DETAIL: query context 0x802482830 is still used 2 times. query:"select clhost0_.host_id as host_id1_2_, clhost0_.host_name as host_nam2_2_, clhost0_.is_https as is_https3_2_, clhost0_.tenant_id as tenant_i4_2_ from cl_host clhost0_ where clhost0_.host_name=$1" Jun 6 09:37:10 otp3 pgpool[2873]: [1355-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:873 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: checking if query context can be safely destroyed Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: query context 0x802482830 is still used 2 times. query:"select clhost0_.host_id as host_id1_2_, clhost0_.host_name as host_nam2_2_, clhost0_.is_https as is_https3_2_, clhost0_.tenant_id as tenant_i4_2_ from cl_host clhost0_ where clhost0_.host_name=$1" Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:873 Jun 6 09:37:10 otp3 pgpool[2873]: [1356-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool[2873]: [1356-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool[2873]: [1357-1] 2016-06-06 09:37:10: pid 2873: DEBUG: SimpleForwardToFrontend: packet:1 length:0 Jun 6 09:37:10 otp3 pgpool[2873]: [1357-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:792 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: SimpleForwardToFrontend: packet:1 length:0 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:792 Jun 6 09:37:10 otp3 pgpool[2873]: [1358-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting command success. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1358-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:741 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting command success. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:741 Jun 6 09:37:10 otp3 pgpool[2873]: [1359-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1359-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:10 otp3 pgpool[2873]: [1360-1] 2016-06-06 09:37:10: pid 2873: DEBUG: processing frontend response Jun 6 09:37:10 otp3 pgpool[2873]: [1360-2] 2016-06-06 09:37:10: pid 2873: DETAIL: received kind 'B'(42) from frontend Jun 6 09:37:10 otp3 pgpool[2873]: [1360-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: processing frontend response Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: received kind 'B'(42) from frontend Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:10 otp3 pgpool[2873]: [1361-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1361-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:37:10 otp3 pgpool[2873]: [1362-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1362-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:37:10 otp3 pgpool[2873]: [1363-1] 2016-06-06 09:37:10: pid 2873: DEBUG: Bind: checking strict query Jun 6 09:37:10 otp3 pgpool[2873]: [1363-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:1211 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: Bind: checking strict query Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:1211 Jun 6 09:37:10 otp3 pgpool[2873]: [1364-1] 2016-06-06 09:37:10: pid 2873: DEBUG: Bind: checking insert lock Jun 6 09:37:10 otp3 pgpool[2873]: [1364-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:1221 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: Bind: checking insert lock Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:1221 Jun 6 09:37:10 otp3 pgpool[2873]: [1365-1] 2016-06-06 09:37:10: pid 2873: DEBUG: Bind: waiting for master completing the query Jun 6 09:37:10 otp3 pgpool[2873]: [1365-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:1237 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: Bind: waiting for master completing the query Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:1237 Jun 6 09:37:10 otp3 pgpool[2873]: [1366-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1366-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:10 otp3 pgpool[2873]: [1367-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:37:10 otp3 pgpool[2873]: [1367-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_query_context.c:854 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_query_context.c:854 Jun 6 09:37:10 otp3 pgpool[2873]: [1368-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_write: to backend: kind:B Jun 6 09:37:10 otp3 pgpool[2873]: [1368-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_write: to backend: kind:B Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:10 otp3 pgpool[2873]: [1369-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:10 otp3 pgpool[2873]: [1369-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:10 otp3 pgpool[2873]: [1370-1] 2016-06-06 09:37:10: pid 2873: DEBUG: waiting for query response Jun 6 09:37:10 otp3 pgpool[2873]: [1370-2] 2016-06-06 09:37:10: pid 2873: DETAIL: waiting for backend:0 to complete the query Jun 6 09:37:10 otp3 pgpool[2873]: [1370-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:479 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: waiting for query response Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: waiting for backend:0 to complete the query Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:479 Jun 6 09:37:10 otp3 pgpool[2873]: [1371-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:37:10 otp3 pgpool[2873]: [1371-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:37:10 otp3 pgpool[2873]: [1372-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool[2873]: [1372-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool[2873]: [1373-1] 2016-06-06 09:37:10: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:10 otp3 pgpool[2873]: [1373-2] 2016-06-06 09:37:10: pid 2873: DETAIL: backend:0 of 2 kind = '2' Jun 6 09:37:10 otp3 pgpool[2873]: [1373-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: backend:0 of 2 kind = '2' Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:10 otp3 pgpool[2873]: [1374-1] 2016-06-06 09:37:10: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:10 otp3 pgpool[2873]: [1374-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:10 otp3 pgpool[2873]: [1375-1] 2016-06-06 09:37:10: pid 2873: DEBUG: processing backend response Jun 6 09:37:10 otp3 pgpool[2873]: [1375-2] 2016-06-06 09:37:10: pid 2873: DETAIL: received kind '2'(32) from backend Jun 6 09:37:10 otp3 pgpool[2873]: [1375-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: processing backend response Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: received kind '2'(32) from backend Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:10 otp3 pgpool[2873]: [1376-1] 2016-06-06 09:37:10: pid 2873: DEBUG: called by pool_add_sent_message: sent message: address: 2406c80 kind: B name: == Jun 6 09:37:10 otp3 pgpool[2873]: [1376-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:436 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: called by pool_add_sent_message: sent message: address: 2406c80 kind: B name: == Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:436 Jun 6 09:37:10 otp3 pgpool[2873]: [1377-1] 2016-06-06 09:37:10: pid 2873: DEBUG: adding sent message to list Jun 6 09:37:10 otp3 pgpool[2873]: [1377-2] 2016-06-06 09:37:10: pid 2873: DETAIL: portal "" already exists Jun 6 09:37:10 otp3 pgpool[2873]: [1377-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:512 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: adding sent message to list Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: portal "" already exists Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:512 Jun 6 09:37:10 otp3 pgpool[2873]: [1378-1] 2016-06-06 09:37:10: pid 2873: DEBUG: called by pool_sent_message_destroy: sent message: address: 2406d18 kind: B name: == Jun 6 09:37:10 otp3 pgpool[2873]: [1378-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:436 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: called by pool_sent_message_destroy: sent message: address: 2406d18 kind: B name: == Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:436 Jun 6 09:37:10 otp3 pgpool[2873]: [1379-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1379-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:10 otp3 pgpool[2873]: [1380-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1380-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:10 otp3 pgpool[2873]: [1381-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool[2873]: [1381-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool[2873]: [1382-1] 2016-06-06 09:37:10: pid 2873: DEBUG: SimpleForwardToFrontend: packet:2 length:0 Jun 6 09:37:10 otp3 pgpool[2873]: [1382-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:792 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: SimpleForwardToFrontend: packet:2 length:0 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:792 Jun 6 09:37:10 otp3 pgpool[2873]: [1383-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting command success. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1383-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:741 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting command success. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:741 Jun 6 09:37:10 otp3 pgpool[2873]: [1384-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1384-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:10 otp3 pgpool[2873]: [1385-1] 2016-06-06 09:37:10: pid 2873: DEBUG: processing frontend response Jun 6 09:37:10 otp3 pgpool[2873]: [1385-2] 2016-06-06 09:37:10: pid 2873: DETAIL: received kind 'D'(44) from frontend Jun 6 09:37:10 otp3 pgpool[2873]: [1385-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: processing frontend response Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: received kind 'D'(44) from frontend Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:10 otp3 pgpool[2873]: [1386-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1386-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:37:10 otp3 pgpool[2873]: [1387-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1387-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:37:10 otp3 pgpool[2873]: [1388-1] 2016-06-06 09:37:10: pid 2873: DEBUG: Describe: waiting for master completing the query Jun 6 09:37:10 otp3 pgpool[2873]: [1388-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:1310 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: Describe: waiting for master completing the query Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:1310 Jun 6 09:37:10 otp3 pgpool[2873]: [1389-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1389-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:10 otp3 pgpool[2873]: [1390-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:37:10 otp3 pgpool[2873]: [1390-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_query_context.c:854 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_query_context.c:854 Jun 6 09:37:10 otp3 pgpool[2873]: [1391-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_write: to backend: kind:D Jun 6 09:37:10 otp3 pgpool[2873]: [1391-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_write: to backend: kind:D Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:10 otp3 pgpool[2873]: [1392-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:10 otp3 pgpool[2873]: [1392-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:10 otp3 pgpool[2873]: [1393-1] 2016-06-06 09:37:10: pid 2873: DEBUG: waiting for query response Jun 6 09:37:10 otp3 pgpool[2873]: [1393-2] 2016-06-06 09:37:10: pid 2873: DETAIL: waiting for backend:0 to complete the query Jun 6 09:37:10 otp3 pgpool[2873]: [1393-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:479 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: waiting for query response Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: waiting for backend:0 to complete the query Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:479 Jun 6 09:37:10 otp3 pgpool[2873]: [1394-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_read: read 976 bytes from backend 0 Jun 6 09:37:10 otp3 pgpool[2873]: [1394-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_read: read 976 bytes from backend 0 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:37:10 otp3 pgpool[2873]: [1395-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool[2873]: [1395-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool[2873]: [1396-1] 2016-06-06 09:37:10: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:10 otp3 pgpool[2873]: [1396-2] 2016-06-06 09:37:10: pid 2873: DETAIL: backend:0 of 2 kind = 'T' Jun 6 09:37:10 otp3 pgpool[2873]: [1396-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: backend:0 of 2 kind = 'T' Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:10 otp3 pgpool[2873]: [1397-1] 2016-06-06 09:37:10: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:10 otp3 pgpool[2873]: [1397-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:10 otp3 pgpool[2873]: [1398-1] 2016-06-06 09:37:10: pid 2873: DEBUG: processing backend response Jun 6 09:37:10 otp3 pgpool[2873]: [1398-2] 2016-06-06 09:37:10: pid 2873: DETAIL: received kind 'T'(54) from backend Jun 6 09:37:10 otp3 pgpool[2873]: [1398-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: processing backend response Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: received kind 'T'(54) from backend Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:10 otp3 pgpool[2873]: [1399-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool[2873]: [1399-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool[2873]: [1400-1] 2016-06-06 09:37:10: pid 2873: DEBUG: SimpleForwardToFrontend: packet:T length:971 Jun 6 09:37:10 otp3 pgpool[2873]: [1400-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:792 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: SimpleForwardToFrontend: packet:T length:971 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:792 Jun 6 09:37:10 otp3 pgpool[2873]: [1401-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1401-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:10 otp3 pgpool[2873]: [1402-1] 2016-06-06 09:37:10: pid 2873: DEBUG: processing frontend response Jun 6 09:37:10 otp3 pgpool[2873]: [1402-2] 2016-06-06 09:37:10: pid 2873: DETAIL: received kind 'E'(45) from frontend Jun 6 09:37:10 otp3 pgpool[2873]: [1402-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: processing frontend response Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: received kind 'E'(45) from frontend Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:10 otp3 pgpool[2873]: [1403-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1403-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:37:10 otp3 pgpool[2873]: [1404-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1404-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:37:10 otp3 pgpool[2873]: [1405-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1405-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:10 otp3 pgpool[2873]: [1406-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:37:10 otp3 pgpool[2873]: [1406-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_query_context.c:854 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_query_context.c:854 Jun 6 09:37:10 otp3 pgpool[2873]: [1407-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_write: to backend: kind:E Jun 6 09:37:10 otp3 pgpool[2873]: [1407-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_write: to backend: kind:E Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:10 otp3 pgpool[2873]: [1408-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:10 otp3 pgpool[2873]: [1408-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:10 otp3 pgpool[2873]: [1409-1] 2016-06-06 09:37:10: pid 2873: DEBUG: waiting for query response Jun 6 09:37:10 otp3 pgpool[2873]: [1409-2] 2016-06-06 09:37:10: pid 2873: DETAIL: waiting for backend:0 to complete the query Jun 6 09:37:10 otp3 pgpool[2873]: [1409-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:479 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: waiting for query response Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: waiting for backend:0 to complete the query Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:479 Jun 6 09:37:10 otp3 pgpool[2873]: [1410-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_read: read 737 bytes from backend 0 Jun 6 09:37:10 otp3 pgpool[2873]: [1410-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_read: read 737 bytes from backend 0 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:37:10 otp3 pgpool[2873]: [1411-1] 2016-06-06 09:37:10: pid 2873: DEBUG: detect error: kind: D Jun 6 09:37:10 otp3 pgpool[2873]: [1411-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: detect error: kind: D Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:37:10 otp3 pgpool[2873]: [1412-1] 2016-06-06 09:37:10: pid 2873: DEBUG: detect error: kind: D Jun 6 09:37:10 otp3 pgpool[2873]: [1412-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: detect error: kind: D Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:37:10 otp3 pgpool[2873]: [1413-1] 2016-06-06 09:37:10: pid 2873: DEBUG: detect error: kind: D Jun 6 09:37:10 otp3 pgpool[2873]: [1413-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: detect error: kind: D Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:37:10 otp3 pgpool[2873]: [1414-1] 2016-06-06 09:37:10: pid 2873: DEBUG: detect error: kind: D Jun 6 09:37:10 otp3 pgpool[2873]: [1414-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: detect error: kind: D Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:37:10 otp3 pgpool[2873]: [1415-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool[2873]: [1415-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool[2873]: [1416-1] 2016-06-06 09:37:10: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:10 otp3 pgpool[2873]: [1416-2] 2016-06-06 09:37:10: pid 2873: DETAIL: backend:0 of 2 kind = 'D' Jun 6 09:37:10 otp3 pgpool[2873]: [1416-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: backend:0 of 2 kind = 'D' Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:10 otp3 pgpool[2873]: [1417-1] 2016-06-06 09:37:10: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:10 otp3 pgpool[2873]: [1417-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:10 otp3 pgpool[2873]: [1418-1] 2016-06-06 09:37:10: pid 2873: DEBUG: processing backend response Jun 6 09:37:10 otp3 pgpool[2873]: [1418-2] 2016-06-06 09:37:10: pid 2873: DETAIL: received kind 'D'(44) from backend Jun 6 09:37:10 otp3 pgpool[2873]: [1418-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: processing backend response Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: received kind 'D'(44) from backend Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:10 otp3 pgpool[2873]: [1419-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool[2873]: [1419-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool[2873]: [1420-1] 2016-06-06 09:37:10: pid 2873: DEBUG: SimpleForwardToFrontend: packet:D length:238 Jun 6 09:37:10 otp3 pgpool[2873]: [1420-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:792 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: SimpleForwardToFrontend: packet:D length:238 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:792 Jun 6 09:37:10 otp3 pgpool[2873]: [1421-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool[2873]: [1421-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool[2873]: [1422-1] 2016-06-06 09:37:10: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:10 otp3 pgpool[2873]: [1422-2] 2016-06-06 09:37:10: pid 2873: DETAIL: backend:0 of 2 kind = 'D' Jun 6 09:37:10 otp3 pgpool[2873]: [1422-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: backend:0 of 2 kind = 'D' Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:10 otp3 pgpool[2873]: [1423-1] 2016-06-06 09:37:10: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:10 otp3 pgpool[2873]: [1423-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:10 otp3 pgpool[2873]: [1424-1] 2016-06-06 09:37:10: pid 2873: DEBUG: processing backend response Jun 6 09:37:10 otp3 pgpool[2873]: [1424-2] 2016-06-06 09:37:10: pid 2873: DETAIL: received kind 'D'(44) from backend Jun 6 09:37:10 otp3 pgpool[2873]: [1424-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: processing backend response Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: received kind 'D'(44) from backend Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:10 otp3 pgpool[2873]: [1425-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool[2873]: [1425-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool[2873]: [1426-1] 2016-06-06 09:37:10: pid 2873: DEBUG: SimpleForwardToFrontend: packet:D length:239 Jun 6 09:37:10 otp3 pgpool[2873]: [1426-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:792 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: SimpleForwardToFrontend: packet:D length:239 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:792 Jun 6 09:37:10 otp3 pgpool[2873]: [1427-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool[2873]: [1427-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool[2873]: [1428-1] 2016-06-06 09:37:10: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:10 otp3 pgpool[2873]: [1428-2] 2016-06-06 09:37:10: pid 2873: DETAIL: backend:0 of 2 kind = 'D' Jun 6 09:37:10 otp3 pgpool[2873]: [1428-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: backend:0 of 2 kind = 'D' Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:10 otp3 pgpool[2873]: [1429-1] 2016-06-06 09:37:10: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:10 otp3 pgpool[2873]: [1429-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:10 otp3 pgpool[2873]: [1430-1] 2016-06-06 09:37:10: pid 2873: DEBUG: processing backend response Jun 6 09:37:10 otp3 pgpool[2873]: [1430-2] 2016-06-06 09:37:10: pid 2873: DETAIL: received kind 'D'(44) from backend Jun 6 09:37:10 otp3 pgpool[2873]: [1430-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: processing backend response Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: received kind 'D'(44) from backend Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:10 otp3 pgpool[2873]: [1431-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool[2873]: [1431-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool[2873]: [1432-1] 2016-06-06 09:37:10: pid 2873: DEBUG: SimpleForwardToFrontend: packet:D length:231 Jun 6 09:37:10 otp3 pgpool[2873]: [1432-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:792 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: SimpleForwardToFrontend: packet:D length:231 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:792 Jun 6 09:37:10 otp3 pgpool[2873]: [1433-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool[2873]: [1433-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool[2873]: [1434-1] 2016-06-06 09:37:10: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:10 otp3 pgpool[2873]: [1434-2] 2016-06-06 09:37:10: pid 2873: DETAIL: backend:0 of 2 kind = 'C' Jun 6 09:37:10 otp3 pgpool[2873]: [1434-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: backend:0 of 2 kind = 'C' Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:10 otp3 pgpool[2873]: [1435-1] 2016-06-06 09:37:10: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:10 otp3 pgpool[2873]: [1435-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:10 otp3 pgpool[2873]: [1436-1] 2016-06-06 09:37:10: pid 2873: DEBUG: processing backend response Jun 6 09:37:10 otp3 pgpool[2873]: [1436-2] 2016-06-06 09:37:10: pid 2873: DETAIL: received kind 'C'(43) from backend Jun 6 09:37:10 otp3 pgpool[2873]: [1436-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: processing backend response Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: received kind 'C'(43) from backend Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:10 otp3 pgpool[2873]: [1437-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting command success. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1437-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:741 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting command success. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:741 Jun 6 09:37:10 otp3 pgpool[2873]: [1438-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1438-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:10 otp3 pgpool[2873]: [1439-1] 2016-06-06 09:37:10: pid 2873: DEBUG: processing frontend response Jun 6 09:37:10 otp3 pgpool[2873]: [1439-2] 2016-06-06 09:37:10: pid 2873: DETAIL: received kind 'S'(53) from frontend Jun 6 09:37:10 otp3 pgpool[2873]: [1439-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: processing frontend response Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: received kind 'S'(53) from frontend Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:10 otp3 pgpool[2873]: [1440-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1440-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:37:10 otp3 pgpool[2873]: [1441-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1441-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:37:10 otp3 pgpool[2873]: [1442-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1442-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:10 otp3 pgpool[2873]: [1443-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_write: to backend: kind:S Jun 6 09:37:10 otp3 pgpool[2873]: [1443-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_write: to backend: kind:S Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:10 otp3 pgpool[2873]: [1444-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool[2873]: [1444-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool[2873]: [1445-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:37:10 otp3 pgpool[2873]: [1445-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:37:10 otp3 pgpool[2873]: [1446-1] 2016-06-06 09:37:10: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:10 otp3 pgpool[2873]: [1446-2] 2016-06-06 09:37:10: pid 2873: DETAIL: backend:0 of 2 kind = 'Z' Jun 6 09:37:10 otp3 pgpool[2873]: [1446-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: backend:0 of 2 kind = 'Z' Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:10 otp3 pgpool[2873]: [1447-1] 2016-06-06 09:37:10: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:10 otp3 pgpool[2873]: [1447-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:10 otp3 pgpool[2873]: [1448-1] 2016-06-06 09:37:10: pid 2873: DEBUG: processing backend response Jun 6 09:37:10 otp3 pgpool[2873]: [1448-2] 2016-06-06 09:37:10: pid 2873: DETAIL: received kind 'Z'(5a) from backend Jun 6 09:37:10 otp3 pgpool[2873]: [1448-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: processing backend response Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: received kind 'Z'(5a) from backend Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:10 otp3 pgpool[2873]: [1449-1] 2016-06-06 09:37:10: pid 2873: DEBUG: processing backend response Jun 6 09:37:10 otp3 pgpool[2873]: [1449-2] 2016-06-06 09:37:10: pid 2873: DETAIL: Ready For Query received Jun 6 09:37:10 otp3 pgpool[2873]: [1449-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:2442 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: processing backend response Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: Ready For Query received Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:2442 Jun 6 09:37:10 otp3 pgpool[2873]: [1450-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1450-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:310 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:310 Jun 6 09:37:10 otp3 pgpool[2873]: [1451-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool[2873]: [1451-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool[2873]: [1452-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool[2873]: [1452-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool[2873]: [1453-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool[2873]: [1453-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool[2873]: [1454-1] 2016-06-06 09:37:10: pid 2873: DEBUG: reading message length Jun 6 09:37:10 otp3 pgpool[2873]: [1454-2] 2016-06-06 09:37:10: pid 2873: DETAIL: slot: 0 length: 5 Jun 6 09:37:10 otp3 pgpool[2873]: [1454-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_auth.c:1107 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: reading message length Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: slot: 0 length: 5 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_auth.c:1107 Jun 6 09:37:10 otp3 pgpool[2873]: [1455-1] 2016-06-06 09:37:10: pid 2873: DEBUG: processing ReadyForQuery Jun 6 09:37:10 otp3 pgpool[2873]: [1455-2] 2016-06-06 09:37:10: pid 2873: DETAIL: transaction state 'I'(49) Jun 6 09:37:10 otp3 pgpool[2873]: [1455-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:1612 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: processing ReadyForQuery Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: transaction state 'I'(49) Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:1612 Jun 6 09:37:10 otp3 pgpool[2873]: [1456-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1456-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:10 otp3 pgpool[2873]: [1457-1] 2016-06-06 09:37:10: pid 2873: DEBUG: processing frontend response Jun 6 09:37:10 otp3 pgpool[2873]: [1457-2] 2016-06-06 09:37:10: pid 2873: DETAIL: received kind 'P'(50) from frontend Jun 6 09:37:10 otp3 pgpool[2873]: [1457-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: processing frontend response Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: received kind 'P'(50) from frontend Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:10 otp3 pgpool[2873]: [1458-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1458-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:37:10 otp3 pgpool[2873]: [1459-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1459-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:37:10 otp3 pgpool[2873]: [1460-1] 2016-06-06 09:37:10: pid 2873: DEBUG: Parse: statement name <> Jun 6 09:37:10 otp3 pgpool[2873]: [1460-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:817 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: Parse: statement name <> Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:817 Jun 6 09:37:10 otp3 pgpool[2873]: [1461-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1461-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:10 otp3 pgpool[2873]: [1462-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_write: to backend: kind:S Jun 6 09:37:10 otp3 pgpool[2873]: [1462-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_write: to backend: kind:S Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:10 otp3 pgpool[2873]: [1463-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:10 otp3 pgpool[2873]: [1463-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:10 otp3 pgpool[2873]: [1464-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:37:10 otp3 pgpool[2873]: [1464-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:37:10 otp3 pgpool[2873]: [1465-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1465-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:310 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:310 Jun 6 09:37:10 otp3 pgpool[2873]: [1466-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool[2873]: [1466-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool[2873]: [1467-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool[2873]: [1467-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool[2873]: [1468-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool[2873]: [1468-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool[2873]: [1469-1] 2016-06-06 09:37:10: pid 2873: DEBUG: reading message length Jun 6 09:37:10 otp3 pgpool[2873]: [1469-2] 2016-06-06 09:37:10: pid 2873: DETAIL: slot: 0 length: 5 Jun 6 09:37:10 otp3 pgpool[2873]: [1469-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_auth.c:1107 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: reading message length Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: slot: 0 length: 5 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_auth.c:1107 Jun 6 09:37:10 otp3 pgpool[2873]: [1470-1] 2016-06-06 09:37:10: pid 2873: DEBUG: processing ReadyForQuery Jun 6 09:37:10 otp3 pgpool[2873]: [1470-2] 2016-06-06 09:37:10: pid 2873: DETAIL: transaction state 'I'(49) Jun 6 09:37:10 otp3 pgpool[2873]: [1470-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:1612 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: processing ReadyForQuery Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: transaction state 'I'(49) Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:1612 Jun 6 09:37:10 otp3 pgpool[2873]: [1471-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1471-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:10 otp3 pgpool[2873]: [1472-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1472-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:10 otp3 pgpool[2873]: [1473-1] 2016-06-06 09:37:10: pid 2873: DEBUG: Parse: waiting for master completing the query Jun 6 09:37:10 otp3 pgpool[2873]: [1473-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:1064 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: Parse: waiting for master completing the query Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:1064 Jun 6 09:37:10 otp3 pgpool[2873]: [1474-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:37:10 otp3 pgpool[2873]: [1474-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_query_context.c:854 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_query_context.c:854 Jun 6 09:37:10 otp3 pgpool[2873]: [1475-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_write: to backend: kind:P Jun 6 09:37:10 otp3 pgpool[2873]: [1475-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_write: to backend: kind:P Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:10 otp3 pgpool[2873]: [1476-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:10 otp3 pgpool[2873]: [1476-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:10 otp3 pgpool[2873]: [1477-1] 2016-06-06 09:37:10: pid 2873: DEBUG: waiting for query response Jun 6 09:37:10 otp3 pgpool[2873]: [1477-2] 2016-06-06 09:37:10: pid 2873: DETAIL: waiting for backend:0 to complete the query Jun 6 09:37:10 otp3 pgpool[2873]: [1477-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:479 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: waiting for query response Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: waiting for backend:0 to complete the query Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:479 Jun 6 09:37:10 otp3 pgpool[2873]: [1478-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:37:10 otp3 pgpool[2873]: [1478-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:37:10 otp3 pgpool[2873]: [1479-1] 2016-06-06 09:37:10: pid 2873: DEBUG: detect error: kind: 1 Jun 6 09:37:10 otp3 pgpool[2873]: [1479-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: detect error: kind: 1 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:37:10 otp3 pgpool[2873]: [1480-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool[2873]: [1480-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool[2873]: [1481-1] 2016-06-06 09:37:10: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:10 otp3 pgpool[2873]: [1481-2] 2016-06-06 09:37:10: pid 2873: DETAIL: backend:0 of 2 kind = '1' Jun 6 09:37:10 otp3 pgpool[2873]: [1481-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: backend:0 of 2 kind = '1' Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:10 otp3 pgpool[2873]: [1482-1] 2016-06-06 09:37:10: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:10 otp3 pgpool[2873]: [1482-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:10 otp3 pgpool[2873]: [1483-1] 2016-06-06 09:37:10: pid 2873: DEBUG: processing backend response Jun 6 09:37:10 otp3 pgpool[2873]: [1483-2] 2016-06-06 09:37:10: pid 2873: DETAIL: received kind '1'(31) from backend Jun 6 09:37:10 otp3 pgpool[2873]: [1483-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: processing backend response Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: received kind '1'(31) from backend Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:10 otp3 pgpool[2873]: [1484-1] 2016-06-06 09:37:10: pid 2873: DEBUG: called by pool_add_sent_message: sent message: address: 2406d18 kind: P name: == Jun 6 09:37:10 otp3 pgpool[2873]: [1484-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:436 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: called by pool_add_sent_message: sent message: address: 2406d18 kind: P name: == Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:436 Jun 6 09:37:10 otp3 pgpool[2873]: [1485-1] 2016-06-06 09:37:10: pid 2873: DEBUG: adding sent message to list Jun 6 09:37:10 otp3 pgpool[2873]: [1485-2] 2016-06-06 09:37:10: pid 2873: DETAIL: prepared statement "" already exists Jun 6 09:37:10 otp3 pgpool[2873]: [1485-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:516 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: adding sent message to list Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: prepared statement "" already exists Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:516 Jun 6 09:37:10 otp3 pgpool[2873]: [1486-1] 2016-06-06 09:37:10: pid 2873: DEBUG: called by pool_sent_message_destroy: sent message: address: 2406d98 kind: P name: == Jun 6 09:37:10 otp3 pgpool[2873]: [1486-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:436 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: called by pool_sent_message_destroy: sent message: address: 2406d98 kind: P name: == Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:436 Jun 6 09:37:10 otp3 pgpool[2873]: [1487-1] 2016-06-06 09:37:10: pid 2873: DEBUG: checking if query context can be safely destroyed Jun 6 09:37:10 otp3 pgpool[2873]: [1487-2] 2016-06-06 09:37:10: pid 2873: DETAIL: query context 0x802481830 is still used 2 times. query:"select cltenant0_.tenant_id as tenant_i1_3_0_, cltenant0_.database_id as database3_3_0_, cltenant0_.plan_id as plan_id4_3_0_, cltenant0_.tenant_name as tenant_n2_3_0_, cldatabase1_.database_id as database1_0_1_, cldatabase1_.database_server_id as database7_0_1_, cldatabase1_.database_name as database2_0_1_, cldatabase1_.max_pool_size as max_pool3_0_1_, cldatabase1_.min_pool_size as min_pool4_0_1_, cldatabase1_.password as password5_0_1_, cldatabase1_.username as username6_0_1_, cldatabase2_.database_server_id as database1_1_2_, cldatabase2_.helpdesk_driver_class as helpdesk2_1_2_, cldatabase2_.host as host3_1_2_, cldatabase2_.jdbc_url as jdbc_url4_1_2_, cldatabase2_.port as port5_1_2_, cldatabase2_.rule_engine_driver_class as rule_eng6_1_2_, clhosts3_.tenant_id as tenant_i4_3_3_, Jun 6 09:37:10 otp3 pgpool[2873]: [1487-3] clhosts3_.host_id as host_id1_2_3_, clhosts3_.host_id as host_id1_2_4_, clhosts3_.host_name as host_nam2_2_4_, clhosts3_.is_https as is_https3_2_4_, clhosts3_.tenant_id as tenant_i4_2_4_, plan4_.id as id1_5_5_, plan4_.default_no_of_assets as default_2_5_5_, plan4_.default_number_of_agents as default_3_5_5_, plan4_.is_assets as is_asset4_5_5_, plan4_.plan as plan5_5_5_, plan4_.plan_name as plan_nam6_5_5_, plan4_.poller_source_reference_limit as poller_s7_5_5_ from cl_tenant cltenant0_ left outer join cl_database cldatabase1_ on cltenant0_.database_id=cldatabase1_.database_id left outer join cl_database_server cldatabase2_ on cldatabase1_.database_server_id=cldatabase2_.database_server_id left outer join cl_host clhosts3_ on cltenant0_.tenant_id=clhosts3_.tenant_id left outer join plan plan4_ on cltenant0_.plan_id=plan4_.id where cltenant0_.tenant_id=$1" Jun 6 09:37:10 otp3 pgpool[2873]: [1487-4] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:873 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: checking if query context can be safely destroyed Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: query context 0x802481830 is still used 2 times. query:"select cltenant0_.tenant_id as tenant_i1_3_0_, cltenant0_.database_id as database3_3_0_, cltenant0_.plan_id as plan_id4_3_0_, cltenant0_.tenant_name as tenant_n2_3_0_, cldatabase1_.database_id as database1_0_1_, cldatabase1_.database_server_id as database7_0_1_, cldatabase1_.database_name as database2_0_1_, cldatabase1_.max_pool_size as max_pool3_0_1_, cldatabase1_.min_pool_size as min_pool4_0_1_, cldatabase1_.password as password5_0_1_, cldatabase1_.username as username6_0_1_, cldatabase2_.database_server_id as database1_1_2_, cldatabase2_.helpdesk_driver_class as helpdesk2_1_2_, cldatabase2_.host as host3_1_2_, cldatabase2_.jdbc_url as jdbc_url4_1_2_, cldatabase2_.port as port5_1_2_, cldatabase2_.rule_engine_driver_class as rule_eng6_1_2_, clhosts3_.tenant_id as tenant_i4_3_3_, clhosts3_.host_id as host_id1_2_3_, clhosts3_.host_id as host_id1_2_4_, clhosts3_.host_name as host_nam2_2_4 Jun 6 09:37:10 otp3 pgpool: https3_2_4_, clhosts3_.tenant_id as tenant_i4_2_4_, plan4_.id as id1_5_5_, plan4_.default_no_of_assets as default_2_5_5_, plan4_.default_number_of_agents as default_3_5_5_, plan4_.is_assets as is_asset4_5_5_, plan4_.plan as plan5_5_5_, plan4_.plan_name as plan_nam6_5_5_, plan4_.poller_source_reference_limit as poller_s7_5_5_ from cl_tenant cltenant0_ left outer join cl_database cldatabase1_ on cltenant0_.database_id=cldatabase1_.database_id left outer join cl_database_server cldatabase2_ on cldatabase1_.database_server_id=cldatabase2_.database_server_id left outer join cl_host clhosts3_ on cltenant0_.tenant_id=clhosts3_.tenant_id left outer join plan plan4_ on cltenant0_.plan_id=plan4_.id where cltenant0_.tenant_id=$1" Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:873 Jun 6 09:37:10 otp3 pgpool[2873]: [1488-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool[2873]: [1488-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool[2873]: [1489-1] 2016-06-06 09:37:10: pid 2873: DEBUG: SimpleForwardToFrontend: packet:1 length:0 Jun 6 09:37:10 otp3 pgpool[2873]: [1489-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:792 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: SimpleForwardToFrontend: packet:1 length:0 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:792 Jun 6 09:37:10 otp3 pgpool[2873]: [1490-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting command success. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1490-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:741 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting command success. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:741 Jun 6 09:37:10 otp3 pgpool[2873]: [1491-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1491-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:10 otp3 pgpool[2873]: [1492-1] 2016-06-06 09:37:10: pid 2873: DEBUG: processing frontend response Jun 6 09:37:10 otp3 pgpool[2873]: [1492-2] 2016-06-06 09:37:10: pid 2873: DETAIL: received kind 'B'(42) from frontend Jun 6 09:37:10 otp3 pgpool[2873]: [1492-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: processing frontend response Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: received kind 'B'(42) from frontend Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:10 otp3 pgpool[2873]: [1493-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1493-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:37:10 otp3 pgpool[2873]: [1494-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1494-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:37:10 otp3 pgpool[2873]: [1495-1] 2016-06-06 09:37:10: pid 2873: DEBUG: Bind: checking strict query Jun 6 09:37:10 otp3 pgpool[2873]: [1495-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:1211 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: Bind: checking strict query Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:1211 Jun 6 09:37:10 otp3 pgpool[2873]: [1496-1] 2016-06-06 09:37:10: pid 2873: DEBUG: Bind: checking insert lock Jun 6 09:37:10 otp3 pgpool[2873]: [1496-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:1221 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: Bind: checking insert lock Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:1221 Jun 6 09:37:10 otp3 pgpool[2873]: [1497-1] 2016-06-06 09:37:10: pid 2873: DEBUG: Bind: waiting for master completing the query Jun 6 09:37:10 otp3 pgpool[2873]: [1497-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:1237 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: Bind: waiting for master completing the query Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:1237 Jun 6 09:37:10 otp3 pgpool[2873]: [1498-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1498-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:10 otp3 pgpool[2873]: [1499-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:37:10 otp3 pgpool[2873]: [1499-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_query_context.c:854 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_query_context.c:854 Jun 6 09:37:10 otp3 pgpool[2873]: [1500-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_write: to backend: kind:B Jun 6 09:37:10 otp3 pgpool[2873]: [1500-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_write: to backend: kind:B Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:10 otp3 pgpool[2873]: [1501-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:10 otp3 pgpool[2873]: [1501-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:10 otp3 pgpool[2873]: [1502-1] 2016-06-06 09:37:10: pid 2873: DEBUG: waiting for query response Jun 6 09:37:10 otp3 pgpool[2873]: [1502-2] 2016-06-06 09:37:10: pid 2873: DETAIL: waiting for backend:0 to complete the query Jun 6 09:37:10 otp3 pgpool[2873]: [1502-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:479 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: waiting for query response Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: waiting for backend:0 to complete the query Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:479 Jun 6 09:37:10 otp3 pgpool[2873]: [1503-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:37:10 otp3 pgpool[2873]: [1503-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:37:10 otp3 pgpool[2873]: [1504-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool[2873]: [1504-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool[2873]: [1505-1] 2016-06-06 09:37:10: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:10 otp3 pgpool[2873]: [1505-2] 2016-06-06 09:37:10: pid 2873: DETAIL: backend:0 of 2 kind = '2' Jun 6 09:37:10 otp3 pgpool[2873]: [1505-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: backend:0 of 2 kind = '2' Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:10 otp3 pgpool[2873]: [1506-1] 2016-06-06 09:37:10: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:10 otp3 pgpool[2873]: [1506-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:10 otp3 pgpool[2873]: [1507-1] 2016-06-06 09:37:10: pid 2873: DEBUG: processing backend response Jun 6 09:37:10 otp3 pgpool[2873]: [1507-2] 2016-06-06 09:37:10: pid 2873: DETAIL: received kind '2'(32) from backend Jun 6 09:37:10 otp3 pgpool[2873]: [1507-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: processing backend response Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: received kind '2'(32) from backend Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:10 otp3 pgpool[2873]: [1508-1] 2016-06-06 09:37:10: pid 2873: DEBUG: called by pool_add_sent_message: sent message: address: 2406d98 kind: B name: == Jun 6 09:37:10 otp3 pgpool[2873]: [1508-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:436 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: called by pool_add_sent_message: sent message: address: 2406d98 kind: B name: == Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:436 Jun 6 09:37:10 otp3 pgpool[2873]: [1509-1] 2016-06-06 09:37:10: pid 2873: DEBUG: adding sent message to list Jun 6 09:37:10 otp3 pgpool[2873]: [1509-2] 2016-06-06 09:37:10: pid 2873: DETAIL: portal "" already exists Jun 6 09:37:10 otp3 pgpool[2873]: [1509-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:512 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: adding sent message to list Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: portal "" already exists Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:512 Jun 6 09:37:10 otp3 pgpool[2873]: [1510-1] 2016-06-06 09:37:10: pid 2873: DEBUG: called by pool_sent_message_destroy: sent message: address: 2406c80 kind: B name: == Jun 6 09:37:10 otp3 pgpool[2873]: [1510-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:436 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: called by pool_sent_message_destroy: sent message: address: 2406c80 kind: B name: == Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:436 Jun 6 09:37:10 otp3 pgpool[2873]: [1511-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1511-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:10 otp3 pgpool[2873]: [1512-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1512-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:10 otp3 pgpool[2873]: [1513-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool[2873]: [1513-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool[2873]: [1514-1] 2016-06-06 09:37:10: pid 2873: DEBUG: SimpleForwardToFrontend: packet:2 length:0 Jun 6 09:37:10 otp3 pgpool[2873]: [1514-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:792 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: SimpleForwardToFrontend: packet:2 length:0 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:792 Jun 6 09:37:10 otp3 pgpool[2873]: [1515-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting command success. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1515-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:741 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting command success. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:741 Jun 6 09:37:10 otp3 pgpool[2873]: [1516-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1516-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:10 otp3 pgpool[2873]: [1517-1] 2016-06-06 09:37:10: pid 2873: DEBUG: processing frontend response Jun 6 09:37:10 otp3 pgpool[2873]: [1517-2] 2016-06-06 09:37:10: pid 2873: DETAIL: received kind 'D'(44) from frontend Jun 6 09:37:10 otp3 pgpool[2873]: [1517-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: processing frontend response Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: received kind 'D'(44) from frontend Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:10 otp3 pgpool[2873]: [1518-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1518-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:37:10 otp3 pgpool[2873]: [1519-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1519-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:37:10 otp3 pgpool[2873]: [1520-1] 2016-06-06 09:37:10: pid 2873: DEBUG: Describe: waiting for master completing the query Jun 6 09:37:10 otp3 pgpool[2873]: [1520-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:1310 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: Describe: waiting for master completing the query Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:1310 Jun 6 09:37:10 otp3 pgpool[2873]: [1521-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1521-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:10 otp3 pgpool[2873]: [1522-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:37:10 otp3 pgpool[2873]: [1522-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_query_context.c:854 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_query_context.c:854 Jun 6 09:37:10 otp3 pgpool[2873]: [1523-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_write: to backend: kind:D Jun 6 09:37:10 otp3 pgpool[2873]: [1523-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_write: to backend: kind:D Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:10 otp3 pgpool[2873]: [1524-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:10 otp3 pgpool[2873]: [1524-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:10 otp3 pgpool[2873]: [1525-1] 2016-06-06 09:37:10: pid 2873: DEBUG: waiting for query response Jun 6 09:37:10 otp3 pgpool[2873]: [1525-2] 2016-06-06 09:37:10: pid 2873: DETAIL: waiting for backend:0 to complete the query Jun 6 09:37:10 otp3 pgpool[2873]: [1525-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:479 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: waiting for query response Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: waiting for backend:0 to complete the query Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:479 Jun 6 09:37:10 otp3 pgpool[2873]: [1526-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_read: read 624 bytes from backend 0 Jun 6 09:37:10 otp3 pgpool[2873]: [1526-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_read: read 624 bytes from backend 0 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:37:10 otp3 pgpool[2873]: [1527-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool[2873]: [1527-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool[2873]: [1528-1] 2016-06-06 09:37:10: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:10 otp3 pgpool[2873]: [1528-2] 2016-06-06 09:37:10: pid 2873: DETAIL: backend:0 of 2 kind = 'T' Jun 6 09:37:10 otp3 pgpool[2873]: [1528-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: backend:0 of 2 kind = 'T' Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:10 otp3 pgpool[2873]: [1529-1] 2016-06-06 09:37:10: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:10 otp3 pgpool[2873]: [1529-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:10 otp3 pgpool[2873]: [1530-1] 2016-06-06 09:37:10: pid 2873: DEBUG: processing backend response Jun 6 09:37:10 otp3 pgpool[2873]: [1530-2] 2016-06-06 09:37:10: pid 2873: DETAIL: received kind 'T'(54) from backend Jun 6 09:37:10 otp3 pgpool[2873]: [1530-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: processing backend response Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: received kind 'T'(54) from backend Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:10 otp3 pgpool[2873]: [1531-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool[2873]: [1531-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool[2873]: [1532-1] 2016-06-06 09:37:10: pid 2873: DEBUG: SimpleForwardToFrontend: packet:T length:619 Jun 6 09:37:10 otp3 pgpool[2873]: [1532-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:792 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: SimpleForwardToFrontend: packet:T length:619 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:792 Jun 6 09:37:10 otp3 pgpool[2873]: [1533-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1533-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:10 otp3 pgpool[2873]: [1534-1] 2016-06-06 09:37:10: pid 2873: DEBUG: processing frontend response Jun 6 09:37:10 otp3 pgpool[2873]: [1534-2] 2016-06-06 09:37:10: pid 2873: DETAIL: received kind 'E'(45) from frontend Jun 6 09:37:10 otp3 pgpool[2873]: [1534-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: processing frontend response Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: received kind 'E'(45) from frontend Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:10 otp3 pgpool[2873]: [1535-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1535-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:37:10 otp3 pgpool[2873]: [1536-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1536-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:37:10 otp3 pgpool[2873]: [1537-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1537-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:10 otp3 pgpool[2873]: [1538-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:37:10 otp3 pgpool[2873]: [1538-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_query_context.c:854 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_query_context.c:854 Jun 6 09:37:10 otp3 pgpool[2873]: [1539-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_write: to backend: kind:E Jun 6 09:37:10 otp3 pgpool[2873]: [1539-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_write: to backend: kind:E Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:10 otp3 pgpool[2873]: [1540-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:10 otp3 pgpool[2873]: [1540-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:10 otp3 pgpool[2873]: [1541-1] 2016-06-06 09:37:10: pid 2873: DEBUG: waiting for query response Jun 6 09:37:10 otp3 pgpool[2873]: [1541-2] 2016-06-06 09:37:10: pid 2873: DETAIL: waiting for backend:0 to complete the query Jun 6 09:37:10 otp3 pgpool[2873]: [1541-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:479 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: waiting for query response Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: waiting for backend:0 to complete the query Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:479 Jun 6 09:37:10 otp3 pgpool[2873]: [1542-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_read: read 182 bytes from backend 0 Jun 6 09:37:10 otp3 pgpool[2873]: [1542-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_read: read 182 bytes from backend 0 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:37:10 otp3 pgpool[2873]: [1543-1] 2016-06-06 09:37:10: pid 2873: DEBUG: detect error: kind: D Jun 6 09:37:10 otp3 pgpool[2873]: [1543-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: detect error: kind: D Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:37:10 otp3 pgpool[2873]: [1544-1] 2016-06-06 09:37:10: pid 2873: DEBUG: detect error: kind: D Jun 6 09:37:10 otp3 pgpool[2873]: [1544-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: detect error: kind: D Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:37:10 otp3 pgpool[2873]: [1545-1] 2016-06-06 09:37:10: pid 2873: DEBUG: detect error: kind: D Jun 6 09:37:10 otp3 pgpool[2873]: [1545-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: detect error: kind: D Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:37:10 otp3 pgpool[2873]: [1546-1] 2016-06-06 09:37:10: pid 2873: DEBUG: detect error: kind: D Jun 6 09:37:10 otp3 pgpool[2873]: [1546-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: detect error: kind: D Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:4166 Jun 6 09:37:10 otp3 pgpool[2873]: [1547-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool[2873]: [1547-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool[2873]: [1548-1] 2016-06-06 09:37:10: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:10 otp3 pgpool[2873]: [1548-2] 2016-06-06 09:37:10: pid 2873: DETAIL: backend:0 of 2 kind = 'D' Jun 6 09:37:10 otp3 pgpool[2873]: [1548-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: backend:0 of 2 kind = 'D' Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:10 otp3 pgpool[2873]: [1549-1] 2016-06-06 09:37:10: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:10 otp3 pgpool[2873]: [1549-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:10 otp3 pgpool[2873]: [1550-1] 2016-06-06 09:37:10: pid 2873: DEBUG: processing backend response Jun 6 09:37:10 otp3 pgpool[2873]: [1550-2] 2016-06-06 09:37:10: pid 2873: DETAIL: received kind 'D'(44) from backend Jun 6 09:37:10 otp3 pgpool[2873]: [1550-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: processing backend response Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: received kind 'D'(44) from backend Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:10 otp3 pgpool[2873]: [1551-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool[2873]: [1551-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool[2873]: [1552-1] 2016-06-06 09:37:10: pid 2873: DEBUG: SimpleForwardToFrontend: packet:D length:163 Jun 6 09:37:10 otp3 pgpool[2873]: [1552-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:792 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: SimpleForwardToFrontend: packet:D length:163 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:792 Jun 6 09:37:10 otp3 pgpool[2873]: [1553-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool[2873]: [1553-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool[2873]: [1554-1] 2016-06-06 09:37:10: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:10 otp3 pgpool[2873]: [1554-2] 2016-06-06 09:37:10: pid 2873: DETAIL: backend:0 of 2 kind = 'C' Jun 6 09:37:10 otp3 pgpool[2873]: [1554-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: backend:0 of 2 kind = 'C' Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:10 otp3 pgpool[2873]: [1555-1] 2016-06-06 09:37:10: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:10 otp3 pgpool[2873]: [1555-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:10 otp3 pgpool[2873]: [1556-1] 2016-06-06 09:37:10: pid 2873: DEBUG: processing backend response Jun 6 09:37:10 otp3 pgpool[2873]: [1556-2] 2016-06-06 09:37:10: pid 2873: DETAIL: received kind 'C'(43) from backend Jun 6 09:37:10 otp3 pgpool[2873]: [1556-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: processing backend response Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: received kind 'C'(43) from backend Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:10 otp3 pgpool[2873]: [1557-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting command success. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1557-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:741 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting command success. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:741 Jun 6 09:37:10 otp3 pgpool[2873]: [1558-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1558-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:10 otp3 pgpool[2873]: [1559-1] 2016-06-06 09:37:10: pid 2873: DEBUG: processing frontend response Jun 6 09:37:10 otp3 pgpool[2873]: [1559-2] 2016-06-06 09:37:10: pid 2873: DETAIL: received kind 'S'(53) from frontend Jun 6 09:37:10 otp3 pgpool[2873]: [1559-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: processing frontend response Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: received kind 'S'(53) from frontend Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:10 otp3 pgpool[2873]: [1560-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1560-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:280 Jun 6 09:37:10 otp3 pgpool[2873]: [1561-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1561-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:269 Jun 6 09:37:10 otp3 pgpool[2873]: [1562-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1562-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:208 Jun 6 09:37:10 otp3 pgpool[2873]: [1563-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_write: to backend: kind:S Jun 6 09:37:10 otp3 pgpool[2873]: [1563-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_write: to backend: kind:S Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:431 Jun 6 09:37:10 otp3 pgpool[2873]: [1564-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool[2873]: [1564-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool[2873]: [1565-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:37:10 otp3 pgpool[2873]: [1565-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_stream.c:190 Jun 6 09:37:10 otp3 pgpool[2873]: [1566-1] 2016-06-06 09:37:10: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:10 otp3 pgpool[2873]: [1566-2] 2016-06-06 09:37:10: pid 2873: DETAIL: backend:0 of 2 kind = 'Z' Jun 6 09:37:10 otp3 pgpool[2873]: [1566-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: reading backend data packet kind Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: backend:0 of 2 kind = 'Z' Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:3349 Jun 6 09:37:10 otp3 pgpool[2873]: [1567-1] 2016-06-06 09:37:10: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:10 otp3 pgpool[2873]: [1567-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: read_kind_from_backend max_count:1.000000 num_executed_nodes:1 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_process_query.c:3365 Jun 6 09:37:10 otp3 pgpool[2873]: [1568-1] 2016-06-06 09:37:10: pid 2873: DEBUG: processing backend response Jun 6 09:37:10 otp3 pgpool[2873]: [1568-2] 2016-06-06 09:37:10: pid 2873: DETAIL: received kind 'Z'(5a) from backend Jun 6 09:37:10 otp3 pgpool[2873]: [1568-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: processing backend response Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: received kind 'Z'(5a) from backend Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:10 otp3 pgpool[2873]: [1569-1] 2016-06-06 09:37:10: pid 2873: DEBUG: processing backend response Jun 6 09:37:10 otp3 pgpool[2873]: [1569-2] 2016-06-06 09:37:10: pid 2873: DETAIL: Ready For Query received Jun 6 09:37:10 otp3 pgpool[2873]: [1569-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:2442 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: processing backend response Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: Ready For Query received Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:2442 Jun 6 09:37:10 otp3 pgpool[2873]: [1570-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1570-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:310 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:310 Jun 6 09:37:10 otp3 pgpool[2873]: [1571-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool[2873]: [1571-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool[2873]: [1572-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool[2873]: [1572-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool[2873]: [1573-1] 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool[2873]: [1573-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:969 Jun 6 09:37:10 otp3 pgpool[2873]: [1574-1] 2016-06-06 09:37:10: pid 2873: DEBUG: reading message length Jun 6 09:37:10 otp3 pgpool[2873]: [1574-2] 2016-06-06 09:37:10: pid 2873: DETAIL: slot: 0 length: 5 Jun 6 09:37:10 otp3 pgpool[2873]: [1574-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_auth.c:1107 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: reading message length Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: slot: 0 length: 5 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_auth.c:1107 Jun 6 09:37:10 otp3 pgpool[2873]: [1575-1] 2016-06-06 09:37:10: pid 2873: DEBUG: processing ReadyForQuery Jun 6 09:37:10 otp3 pgpool[2873]: [1575-2] 2016-06-06 09:37:10: pid 2873: DETAIL: transaction state 'I'(49) Jun 6 09:37:10 otp3 pgpool[2873]: [1575-3] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:1612 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: processing ReadyForQuery Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DETAIL: transaction state 'I'(49) Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_proto_modules.c:1612 Jun 6 09:37:10 otp3 pgpool[2873]: [1576-1] 2016-06-06 09:37:10: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:10 otp3 pgpool[2873]: [1576-2] 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:10 otp3 pgpool: 2016-06-06 09:37:10: pid 2873: LOCATION: pool_session_context.c:219 Jun 6 09:37:27 otp3 pgpool[2871]: [395-1] 2016-06-06 09:37:27: pid 2871: DEBUG: I am 2871 accept fd 7 Jun 6 09:37:27 otp3 pgpool[2871]: [395-2] 2016-06-06 09:37:27: pid 2871: LOCATION: child.c:2097 Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: DEBUG: I am 2871 accept fd 7 Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: LOCATION: child.c:2097 Jun 6 09:37:27 otp3 pgpool[2871]: [396-1] 2016-06-06 09:37:27: pid 2871: LOG: new connection received Jun 6 09:37:27 otp3 pgpool[2871]: [396-2] 2016-06-06 09:37:27: pid 2871: DETAIL: connecting host=10.200.1.64 port=21170 Jun 6 09:37:27 otp3 pgpool[2871]: [396-3] 2016-06-06 09:37:27: pid 2871: LOCATION: child.c:2110 Jun 6 09:37:27 otp3 pgpool[2871]: [397-1] 2016-06-06 09:37:27: pid 2871: DEBUG: reading startup packet Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: LOG: new connection received Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: DETAIL: connecting host=10.200.1.64 port=21170 Jun 6 09:37:27 otp3 pgpool[2871]: [397-2] 2016-06-06 09:37:27: pid 2871: DETAIL: Protocol Major: 3 Minor: 0 database: ctl user: sparrowdesk Jun 6 09:37:27 otp3 pgpool[2871]: [397-3] 2016-06-06 09:37:27: pid 2871: LOCATION: child.c:614 Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: LOCATION: child.c:2110 Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: DEBUG: reading startup packet Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: DETAIL: Protocol Major: 3 Minor: 0 database: ctl user: sparrowdesk Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: LOCATION: child.c:614 Jun 6 09:37:27 otp3 pgpool[2871]: [398-1] 2016-06-06 09:37:27: pid 2871: DEBUG: sending backend key data Jun 6 09:37:27 otp3 pgpool[2871]: [398-2] 2016-06-06 09:37:27: pid 2871: DETAIL: send pid 97117 to frontend Jun 6 09:37:27 otp3 pgpool[2871]: [398-3] 2016-06-06 09:37:27: pid 2871: LOCATION: pool_auth.c:519 Jun 6 09:37:27 otp3 pgpool[2871]: [399-1] 2016-06-06 09:37:27: pid 2871: DEBUG: selecting load balance node Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: DEBUG: sending backend key data Jun 6 09:37:27 otp3 pgpool[2871]: [399-2] 2016-06-06 09:37:27: pid 2871: DETAIL: selected backend id is 1 Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: DETAIL: send pid 97117 to frontend Jun 6 09:37:27 otp3 pgpool[2871]: [399-3] 2016-06-06 09:37:27: pid 2871: LOCATION: child.c:1720 Jun 6 09:37:27 otp3 pgpool[2871]: [400-1] 2016-06-06 09:37:27: pid 2871: DEBUG: initializing session context Jun 6 09:37:27 otp3 pgpool[2871]: [400-2] 2016-06-06 09:37:27: pid 2871: DETAIL: selected load balancing node: 1 Jun 6 09:37:27 otp3 pgpool[2871]: [400-3] 2016-06-06 09:37:27: pid 2871: LOCATION: pool_session_context.c:99 Jun 6 09:37:27 otp3 pgpool[2871]: [401-1] 2016-06-06 09:37:27: pid 2871: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:27 otp3 pgpool[2871]: [401-2] 2016-06-06 09:37:27: pid 2871: LOCATION: pool_session_context.c:219 Jun 6 09:37:27 otp3 pgpool[2871]: [402-1] 2016-06-06 09:37:27: pid 2871: DEBUG: session context: clearing transaction isolation. DONE Jun 6 09:37:27 otp3 pgpool[2871]: [402-2] 2016-06-06 09:37:27: pid 2871: LOCATION: pool_session_context.c:731 Jun 6 09:37:27 otp3 pgpool[2871]: [403-1] 2016-06-06 09:37:27: pid 2871: DEBUG: session context: clearing writing transaction. DONE Jun 6 09:37:27 otp3 pgpool[2871]: [403-2] 2016-06-06 09:37:27: pid 2871: LOCATION: pool_session_context.c:565 Jun 6 09:37:27 otp3 pgpool[2871]: [404-1] 2016-06-06 09:37:27: pid 2871: DEBUG: session context: clearing failed transaction. DONE Jun 6 09:37:27 otp3 pgpool[2871]: [404-2] 2016-06-06 09:37:27: pid 2871: LOCATION: pool_session_context.c:594 Jun 6 09:37:27 otp3 pgpool[2871]: [405-1] 2016-06-06 09:37:27: pid 2871: DEBUG: session context: clearing failed transaction. DONE Jun 6 09:37:27 otp3 pgpool[2871]: [405-2] 2016-06-06 09:37:27: pid 2871: LOCATION: pool_session_context.c:624 Jun 6 09:37:27 otp3 pgpool[2871]: [406-1] 2016-06-06 09:37:27: pid 2871: DEBUG: session context: clearing skip reading from backends. DONE Jun 6 09:37:27 otp3 pgpool[2871]: [406-2] 2016-06-06 09:37:27: pid 2871: LOCATION: pool_session_context.c:250 Jun 6 09:37:27 otp3 pgpool[2871]: [407-1] 2016-06-06 09:37:27: pid 2871: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:37:27 otp3 pgpool[2871]: [407-2] 2016-06-06 09:37:27: pid 2871: LOCATION: pool_session_context.c:310 Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: LOCATION: pool_auth.c:519 Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: DEBUG: selecting load balance node Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: DETAIL: selected backend id is 1 Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: LOCATION: child.c:1720 Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: DEBUG: initializing session context Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: DETAIL: selected load balancing node: 1 Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: LOCATION: pool_session_context.c:99 Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: LOCATION: pool_session_context.c:219 Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: DEBUG: session context: clearing transaction isolation. DONE Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: LOCATION: pool_session_context.c:731 Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: DEBUG: session context: clearing writing transaction. DONE Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: LOCATION: pool_session_context.c:565 Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: DEBUG: session context: clearing failed transaction. DONE Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: LOCATION: pool_session_context.c:594 Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: DEBUG: session context: clearing failed transaction. DONE Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: LOCATION: pool_session_context.c:624 Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: DEBUG: session context: clearing skip reading from backends. DONE Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: LOCATION: pool_session_context.c:250 Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: LOCATION: pool_session_context.c:310 Jun 6 09:37:27 otp3 pgpool[2871]: [408-1] 2016-06-06 09:37:27: pid 2871: DEBUG: processing frontend response Jun 6 09:37:27 otp3 pgpool[2871]: [408-2] 2016-06-06 09:37:27: pid 2871: DETAIL: received kind 'P'(50) from frontend Jun 6 09:37:27 otp3 pgpool[2871]: [408-3] 2016-06-06 09:37:27: pid 2871: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:27 otp3 pgpool[2871]: [409-1] 2016-06-06 09:37:27: pid 2871: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:27 otp3 pgpool[2871]: [409-2] 2016-06-06 09:37:27: pid 2871: LOCATION: pool_session_context.c:280 Jun 6 09:37:27 otp3 pgpool[2871]: [410-1] 2016-06-06 09:37:27: pid 2871: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:27 otp3 pgpool[2871]: [410-2] 2016-06-06 09:37:27: pid 2871: LOCATION: pool_session_context.c:269 Jun 6 09:37:27 otp3 pgpool[2871]: [411-1] 2016-06-06 09:37:27: pid 2871: DEBUG: Parse: statement name <> Jun 6 09:37:27 otp3 pgpool[2871]: [411-2] 2016-06-06 09:37:27: pid 2871: LOCATION: pool_proto_modules.c:817 Jun 6 09:37:27 otp3 pgpool[2871]: [412-1] 2016-06-06 09:37:27: pid 2871: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:27 otp3 pgpool[2871]: [412-2] 2016-06-06 09:37:27: pid 2871: LOCATION: pool_session_context.c:208 Jun 6 09:37:27 otp3 pgpool[2871]: [413-1] 2016-06-06 09:37:27: pid 2871: DEBUG: pool_write: to backend: kind:S Jun 6 09:37:27 otp3 pgpool[2871]: [413-2] 2016-06-06 09:37:27: pid 2871: LOCATION: pool_stream.c:431 Jun 6 09:37:27 otp3 pgpool[2871]: [414-1] 2016-06-06 09:37:27: pid 2871: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:27 otp3 pgpool[2871]: [414-2] 2016-06-06 09:37:27: pid 2871: LOCATION: pool_stream.c:431 Jun 6 09:37:27 otp3 pgpool[2871]: [415-1] 2016-06-06 09:37:27: pid 2871: DEBUG: pool_write: to backend: kind:S Jun 6 09:37:27 otp3 pgpool[2871]: [415-2] 2016-06-06 09:37:27: pid 2871: LOCATION: pool_stream.c:431 Jun 6 09:37:27 otp3 pgpool[2871]: [416-1] 2016-06-06 09:37:27: pid 2871: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:27 otp3 pgpool[2871]: [416-2] 2016-06-06 09:37:27: pid 2871: LOCATION: pool_stream.c:431 Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: DEBUG: processing frontend response Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: DETAIL: received kind 'P'(50) from frontend Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: LOCATION: pool_session_context.c:280 Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: LOCATION: pool_session_context.c:269 Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: DEBUG: Parse: statement name <> Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: LOCATION: pool_proto_modules.c:817 Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: LOCATION: pool_session_context.c:208 Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: DEBUG: pool_write: to backend: kind:S Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: LOCATION: pool_stream.c:431 Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: LOCATION: pool_stream.c:431 Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: DEBUG: pool_write: to backend: kind:S Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: LOCATION: pool_stream.c:431 Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: LOCATION: pool_stream.c:431 Jun 6 09:37:27 otp3 pgpool[2871]: [417-1] 2016-06-06 09:37:27: pid 2871: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:37:27 otp3 pgpool[2871]: [417-2] 2016-06-06 09:37:27: pid 2871: LOCATION: pool_stream.c:190 Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:37:27 otp3 pgpool[2871]: [418-1] 2016-06-06 09:37:27: pid 2871: DEBUG: pool_read: read 6 bytes from backend 1 Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: LOCATION: pool_stream.c:190 Jun 6 09:37:27 otp3 pgpool[2871]: [418-2] 2016-06-06 09:37:27: pid 2871: LOCATION: pool_stream.c:190 Jun 6 09:37:27 otp3 pgpool[2871]: [419-1] 2016-06-06 09:37:27: pid 2871: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: DEBUG: pool_read: read 6 bytes from backend 1 Jun 6 09:37:27 otp3 pgpool[2871]: [419-2] 2016-06-06 09:37:27: pid 2871: LOCATION: pool_session_context.c:310 Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: LOCATION: pool_stream.c:190 Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: LOCATION: pool_session_context.c:310 Jun 6 09:37:27 otp3 pgpool[2871]: [420-1] 2016-06-06 09:37:27: pid 2871: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:27 otp3 pgpool[2871]: [420-2] 2016-06-06 09:37:27: pid 2871: LOCATION: pool_session_context.c:969 Jun 6 09:37:27 otp3 pgpool[2871]: [421-1] 2016-06-06 09:37:27: pid 2871: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:27 otp3 pgpool[2871]: [421-2] 2016-06-06 09:37:27: pid 2871: LOCATION: pool_session_context.c:969 Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: LOCATION: pool_session_context.c:969 Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: LOCATION: pool_session_context.c:969 Jun 6 09:37:27 otp3 pgpool[2871]: [422-1] 2016-06-06 09:37:27: pid 2871: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:27 otp3 pgpool[2871]: [422-2] 2016-06-06 09:37:27: pid 2871: LOCATION: pool_session_context.c:969 Jun 6 09:37:27 otp3 pgpool[2871]: [423-1] 2016-06-06 09:37:27: pid 2871: DEBUG: reading message length Jun 6 09:37:27 otp3 pgpool[2871]: [423-2] 2016-06-06 09:37:27: pid 2871: DETAIL: slot: 0 length: 5 Jun 6 09:37:27 otp3 pgpool[2871]: [423-3] 2016-06-06 09:37:27: pid 2871: LOCATION: pool_auth.c:1107 Jun 6 09:37:27 otp3 pgpool[2871]: [424-1] 2016-06-06 09:37:27: pid 2871: DEBUG: reading message length Jun 6 09:37:27 otp3 pgpool[2871]: [424-2] 2016-06-06 09:37:27: pid 2871: DETAIL: slot: 1 length: 5 Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:27 otp3 pgpool[2871]: [424-3] 2016-06-06 09:37:27: pid 2871: LOCATION: pool_auth.c:1126 Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: LOCATION: pool_session_context.c:969 Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: DEBUG: reading message length Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: DETAIL: slot: 0 length: 5 Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: LOCATION: pool_auth.c:1107 Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: DEBUG: reading message length Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: DETAIL: slot: 1 length: 5 Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: LOCATION: pool_auth.c:1126 Jun 6 09:37:27 otp3 pgpool[2871]: [425-1] 2016-06-06 09:37:27: pid 2871: DEBUG: processing ReadyForQuery Jun 6 09:37:27 otp3 pgpool[2871]: [425-2] 2016-06-06 09:37:27: pid 2871: DETAIL: transaction state 'I'(49) Jun 6 09:37:27 otp3 pgpool[2871]: [425-3] 2016-06-06 09:37:27: pid 2871: LOCATION: pool_proto_modules.c:1612 Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: DEBUG: processing ReadyForQuery Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: DETAIL: transaction state 'I'(49) Jun 6 09:37:27 otp3 pgpool[2871]: [426-1] 2016-06-06 09:37:27: pid 2871: DEBUG: processing ReadyForQuery Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: LOCATION: pool_proto_modules.c:1612 Jun 6 09:37:27 otp3 pgpool[2871]: [426-2] 2016-06-06 09:37:27: pid 2871: DETAIL: transaction state 'I'(49) Jun 6 09:37:27 otp3 pgpool[2871]: [426-3] 2016-06-06 09:37:27: pid 2871: LOCATION: pool_proto_modules.c:1612 Jun 6 09:37:27 otp3 pgpool[2871]: [427-1] 2016-06-06 09:37:27: pid 2871: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:27 otp3 pgpool[2871]: [427-2] 2016-06-06 09:37:27: pid 2871: LOCATION: pool_session_context.c:219 Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: DEBUG: processing ReadyForQuery Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: DETAIL: transaction state 'I'(49) Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: LOCATION: pool_proto_modules.c:1612 Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:27 otp3 pgpool[2871]: [428-1] 2016-06-06 09:37:27: pid 2871: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: LOCATION: pool_session_context.c:219 Jun 6 09:37:27 otp3 pgpool[2871]: [428-2] 2016-06-06 09:37:27: pid 2871: LOCATION: pool_session_context.c:208 Jun 6 09:37:27 otp3 pgpool[2871]: [429-1] 2016-06-06 09:37:27: pid 2871: DEBUG: Parse: waiting for master completing the query Jun 6 09:37:27 otp3 pgpool[2871]: [429-2] 2016-06-06 09:37:27: pid 2871: LOCATION: pool_proto_modules.c:1064 Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: LOCATION: pool_session_context.c:208 Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: DEBUG: Parse: waiting for master completing the query Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: LOCATION: pool_proto_modules.c:1064 Jun 6 09:37:27 otp3 pgpool[2871]: [430-1] 2016-06-06 09:37:27: pid 2871: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:37:27 otp3 pgpool[2871]: [430-2] 2016-06-06 09:37:27: pid 2871: LOCATION: pool_query_context.c:854 Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: LOCATION: pool_query_context.c:854 Jun 6 09:37:27 otp3 pgpool[2871]: [431-1] 2016-06-06 09:37:27: pid 2871: DEBUG: pool_write: to backend: kind:P Jun 6 09:37:27 otp3 pgpool[2871]: [431-2] 2016-06-06 09:37:27: pid 2871: LOCATION: pool_stream.c:431 Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: DEBUG: pool_write: to backend: kind:P Jun 6 09:37:27 otp3 pgpool[2871]: [432-1] 2016-06-06 09:37:27: pid 2871: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: LOCATION: pool_stream.c:431 Jun 6 09:37:27 otp3 pgpool[2871]: [432-2] 2016-06-06 09:37:27: pid 2871: LOCATION: pool_stream.c:431 Jun 6 09:37:27 otp3 pgpool[2871]: [433-1] 2016-06-06 09:37:27: pid 2871: DEBUG: waiting for query response Jun 6 09:37:27 otp3 pgpool[2871]: [433-2] 2016-06-06 09:37:27: pid 2871: DETAIL: waiting for backend:0 to complete the query Jun 6 09:37:27 otp3 pgpool[2871]: [433-3] 2016-06-06 09:37:27: pid 2871: LOCATION: pool_process_query.c:479 Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: LOCATION: pool_stream.c:431 Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: DEBUG: waiting for query response Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: DETAIL: waiting for backend:0 to complete the query Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: LOCATION: pool_process_query.c:479 Jun 6 09:37:27 otp3 pgpool[2871]: [434-1] 2016-06-06 09:37:27: pid 2871: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:37:27 otp3 pgpool[2871]: [434-2] 2016-06-06 09:37:27: pid 2871: LOCATION: pool_stream.c:190 Jun 6 09:37:27 otp3 pgpool[2871]: [435-1] 2016-06-06 09:37:27: pid 2871: DEBUG: detect error: kind: 1 Jun 6 09:37:27 otp3 pgpool[2871]: [435-2] 2016-06-06 09:37:27: pid 2871: LOCATION: pool_process_query.c:4166 Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: LOCATION: pool_stream.c:190 Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: DEBUG: detect error: kind: 1 Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: LOCATION: pool_process_query.c:4166 Jun 6 09:37:27 otp3 pgpool[2871]: [436-1] 2016-06-06 09:37:27: pid 2871: DEBUG: pool_send_and_wait: pool_set_sync_map: 1 Jun 6 09:37:27 otp3 pgpool[2871]: [436-2] 2016-06-06 09:37:27: pid 2871: LOCATION: pool_query_context.c:854 Jun 6 09:37:27 otp3 pgpool[2871]: [437-1] 2016-06-06 09:37:27: pid 2871: DEBUG: pool_write: to backend: kind:P Jun 6 09:37:27 otp3 pgpool[2871]: [437-2] 2016-06-06 09:37:27: pid 2871: LOCATION: pool_stream.c:431 Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: DEBUG: pool_send_and_wait: pool_set_sync_map: 1 Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: LOCATION: pool_query_context.c:854 Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: DEBUG: pool_write: to backend: kind:P Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: LOCATION: pool_stream.c:431 Jun 6 09:37:27 otp3 pgpool[2871]: [438-1] 2016-06-06 09:37:27: pid 2871: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:27 otp3 pgpool[2871]: [438-2] 2016-06-06 09:37:27: pid 2871: LOCATION: pool_stream.c:431 Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:27 otp3 pgpool[2871]: [439-1] 2016-06-06 09:37:27: pid 2871: DEBUG: waiting for query response Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: LOCATION: pool_stream.c:431 Jun 6 09:37:27 otp3 pgpool[2871]: [439-2] 2016-06-06 09:37:27: pid 2871: DETAIL: waiting for backend:1 to complete the query Jun 6 09:37:27 otp3 pgpool[2871]: [439-3] 2016-06-06 09:37:27: pid 2871: LOCATION: pool_process_query.c:479 Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: DEBUG: waiting for query response Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: DETAIL: waiting for backend:1 to complete the query Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: LOCATION: pool_process_query.c:479 Jun 6 09:37:27 otp3 pgpool[2871]: [440-1] 2016-06-06 09:37:27: pid 2871: DEBUG: pool_read: read 5 bytes from backend 1 Jun 6 09:37:27 otp3 pgpool[2871]: [440-2] 2016-06-06 09:37:27: pid 2871: LOCATION: pool_stream.c:190 Jun 6 09:37:27 otp3 pgpool[2871]: [441-1] 2016-06-06 09:37:27: pid 2871: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:27 otp3 pgpool[2871]: [441-2] 2016-06-06 09:37:27: pid 2871: LOCATION: pool_session_context.c:969 Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: DEBUG: pool_read: read 5 bytes from backend 1 Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: LOCATION: pool_stream.c:190 Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:27 otp3 pgpool[2871]: [442-1] 2016-06-06 09:37:27: pid 2871: DEBUG: reading backend data packet kind Jun 6 09:37:27 otp3 pgpool[2871]: [442-2] 2016-06-06 09:37:27: pid 2871: DETAIL: backend:0 of 2 kind = '1' Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: LOCATION: pool_session_context.c:969 Jun 6 09:37:27 otp3 pgpool[2871]: [442-3] 2016-06-06 09:37:27: pid 2871: LOCATION: pool_process_query.c:3349 Jun 6 09:37:27 otp3 pgpool[2871]: [443-1] 2016-06-06 09:37:27: pid 2871: DEBUG: reading backend data packet kind Jun 6 09:37:27 otp3 pgpool[2871]: [443-2] 2016-06-06 09:37:27: pid 2871: DETAIL: backend:1 of 2 kind = '1' Jun 6 09:37:27 otp3 pgpool[2871]: [443-3] 2016-06-06 09:37:27: pid 2871: LOCATION: pool_process_query.c:3349 Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: DEBUG: reading backend data packet kind Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: DETAIL: backend:0 of 2 kind = '1' Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: LOCATION: pool_process_query.c:3349 Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: DEBUG: reading backend data packet kind Jun 6 09:37:27 otp3 pgpool[2871]: [444-1] 2016-06-06 09:37:27: pid 2871: DEBUG: read_kind_from_backend max_count:2.000000 num_executed_nodes:2 Jun 6 09:37:27 otp3 pgpool[2871]: [444-2] 2016-06-06 09:37:27: pid 2871: LOCATION: pool_process_query.c:3365 Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: DETAIL: backend:1 of 2 kind = '1' Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: LOCATION: pool_process_query.c:3349 Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: DEBUG: read_kind_from_backend max_count:2.000000 num_executed_nodes:2 Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: LOCATION: pool_process_query.c:3365 Jun 6 09:37:27 otp3 pgpool[2871]: [445-1] 2016-06-06 09:37:27: pid 2871: DEBUG: processing backend response Jun 6 09:37:27 otp3 pgpool[2871]: [445-2] 2016-06-06 09:37:27: pid 2871: DETAIL: received kind '1'(31) from backend Jun 6 09:37:27 otp3 pgpool[2871]: [445-3] 2016-06-06 09:37:27: pid 2871: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:27 otp3 pgpool[2871]: [446-1] 2016-06-06 09:37:27: pid 2871: DEBUG: called by pool_add_sent_message: sent message: address: 2406c80 kind: P name: == Jun 6 09:37:27 otp3 pgpool[2871]: [446-2] 2016-06-06 09:37:27: pid 2871: LOCATION: pool_session_context.c:436 Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: DEBUG: processing backend response Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: DETAIL: received kind '1'(31) from backend Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: DEBUG: called by pool_add_sent_message: sent message: address: 2406c80 kind: P name: == Jun 6 09:37:27 otp3 pgpool[2871]: [447-1] 2016-06-06 09:37:27: pid 2871: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: LOCATION: pool_session_context.c:436 Jun 6 09:37:27 otp3 pgpool[2871]: [447-2] 2016-06-06 09:37:27: pid 2871: LOCATION: pool_session_context.c:969 Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: LOCATION: pool_session_context.c:969 Jun 6 09:37:27 otp3 pgpool[2871]: [448-1] 2016-06-06 09:37:27: pid 2871: DEBUG: SimpleForwardToFrontend: packet:1 length:0 Jun 6 09:37:27 otp3 pgpool[2871]: [448-2] 2016-06-06 09:37:27: pid 2871: LOCATION: pool_process_query.c:792 Jun 6 09:37:27 otp3 pgpool[2871]: [449-1] 2016-06-06 09:37:27: pid 2871: DEBUG: session context: setting command success. DONE Jun 6 09:37:27 otp3 pgpool[2871]: [449-2] 2016-06-06 09:37:27: pid 2871: LOCATION: pool_session_context.c:741 Jun 6 09:37:27 otp3 pgpool[2871]: [450-1] 2016-06-06 09:37:27: pid 2871: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:27 otp3 pgpool[2871]: [450-2] 2016-06-06 09:37:27: pid 2871: LOCATION: pool_session_context.c:219 Jun 6 09:37:27 otp3 pgpool[2871]: [451-1] 2016-06-06 09:37:27: pid 2871: DEBUG: processing frontend response Jun 6 09:37:27 otp3 pgpool[2871]: [451-2] 2016-06-06 09:37:27: pid 2871: DETAIL: received kind 'B'(42) from frontend Jun 6 09:37:27 otp3 pgpool[2871]: [451-3] 2016-06-06 09:37:27: pid 2871: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:27 otp3 pgpool[2871]: [452-1] 2016-06-06 09:37:27: pid 2871: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:27 otp3 pgpool[2871]: [452-2] 2016-06-06 09:37:27: pid 2871: LOCATION: pool_session_context.c:280 Jun 6 09:37:27 otp3 pgpool[2871]: [453-1] 2016-06-06 09:37:27: pid 2871: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:27 otp3 pgpool[2871]: [453-2] 2016-06-06 09:37:27: pid 2871: LOCATION: pool_session_context.c:269 Jun 6 09:37:27 otp3 pgpool[2871]: [454-1] 2016-06-06 09:37:27: pid 2871: DEBUG: Bind: checking strict query Jun 6 09:37:27 otp3 pgpool[2871]: [454-2] 2016-06-06 09:37:27: pid 2871: LOCATION: pool_proto_modules.c:1211 Jun 6 09:37:27 otp3 pgpool[2871]: [455-1] 2016-06-06 09:37:27: pid 2871: DEBUG: Bind: checking insert lock Jun 6 09:37:27 otp3 pgpool[2871]: [455-2] 2016-06-06 09:37:27: pid 2871: LOCATION: pool_proto_modules.c:1221 Jun 6 09:37:27 otp3 pgpool[2871]: [456-1] 2016-06-06 09:37:27: pid 2871: DEBUG: Bind: waiting for master completing the query Jun 6 09:37:27 otp3 pgpool[2871]: [456-2] 2016-06-06 09:37:27: pid 2871: LOCATION: pool_proto_modules.c:1237 Jun 6 09:37:27 otp3 pgpool[2871]: [457-1] 2016-06-06 09:37:27: pid 2871: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:27 otp3 pgpool[2871]: [457-2] 2016-06-06 09:37:27: pid 2871: LOCATION: pool_session_context.c:208 Jun 6 09:37:27 otp3 pgpool[2871]: [458-1] 2016-06-06 09:37:27: pid 2871: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:37:27 otp3 pgpool[2871]: [458-2] 2016-06-06 09:37:27: pid 2871: LOCATION: pool_query_context.c:854 Jun 6 09:37:27 otp3 pgpool[2871]: [459-1] 2016-06-06 09:37:27: pid 2871: DEBUG: pool_write: to backend: kind:B Jun 6 09:37:27 otp3 pgpool[2871]: [459-2] 2016-06-06 09:37:27: pid 2871: LOCATION: pool_stream.c:431 Jun 6 09:37:27 otp3 pgpool[2871]: [460-1] 2016-06-06 09:37:27: pid 2871: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:27 otp3 pgpool[2871]: [460-2] 2016-06-06 09:37:27: pid 2871: LOCATION: pool_stream.c:431 Jun 6 09:37:27 otp3 pgpool[2871]: [461-1] 2016-06-06 09:37:27: pid 2871: DEBUG: waiting for query response Jun 6 09:37:27 otp3 pgpool[2871]: [461-2] 2016-06-06 09:37:27: pid 2871: DETAIL: waiting for backend:0 to complete the query Jun 6 09:37:27 otp3 pgpool[2871]: [461-3] 2016-06-06 09:37:27: pid 2871: LOCATION: pool_process_query.c:479 Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: DEBUG: SimpleForwardToFrontend: packet:1 length:0 Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: LOCATION: pool_process_query.c:792 Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: DEBUG: session context: setting command success. DONE Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: LOCATION: pool_session_context.c:741 Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: LOCATION: pool_session_context.c:219 Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: DEBUG: processing frontend response Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: DETAIL: received kind 'B'(42) from frontend Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: LOCATION: pool_session_context.c:280 Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: LOCATION: pool_session_context.c:269 Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: DEBUG: Bind: checking strict query Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: LOCATION: pool_proto_modules.c:1211 Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: DEBUG: Bind: checking insert lock Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: LOCATION: pool_proto_modules.c:1221 Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: DEBUG: Bind: waiting for master completing the query Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: LOCATION: pool_proto_modules.c:1237 Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: LOCATION: pool_session_context.c:208 Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: LOCATION: pool_query_context.c:854 Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: DEBUG: pool_write: to backend: kind:B Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: LOCATION: pool_stream.c:431 Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: LOCATION: pool_stream.c:431 Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: DEBUG: waiting for query response Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: DETAIL: waiting for backend:0 to complete the query Jun 6 09:37:27 otp3 pgpool: 2016-06-06 09:37:27: pid 2871: LOCATION: pool_process_query.c:479 Jun 6 09:37:28 otp3 pgpool[2871]: [462-1] 2016-06-06 09:37:28: pid 2871: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:37:28 otp3 pgpool[2871]: [462-2] 2016-06-06 09:37:28: pid 2871: LOCATION: pool_stream.c:190 Jun 6 09:37:28 otp3 pgpool[2871]: [463-1] 2016-06-06 09:37:28: pid 2871: DEBUG: pool_send_and_wait: pool_set_sync_map: 1 Jun 6 09:37:28 otp3 pgpool[2871]: [463-2] 2016-06-06 09:37:28: pid 2871: LOCATION: pool_query_context.c:854 Jun 6 09:37:28 otp3 pgpool[2871]: [464-1] 2016-06-06 09:37:28: pid 2871: DEBUG: pool_write: to backend: kind:B Jun 6 09:37:28 otp3 pgpool[2871]: [464-2] 2016-06-06 09:37:28: pid 2871: LOCATION: pool_stream.c:431 Jun 6 09:37:28 otp3 pgpool[2871]: [465-1] 2016-06-06 09:37:28: pid 2871: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:28 otp3 pgpool[2871]: [465-2] 2016-06-06 09:37:28: pid 2871: LOCATION: pool_stream.c:431 Jun 6 09:37:28 otp3 pgpool[2871]: [466-1] 2016-06-06 09:37:28: pid 2871: DEBUG: waiting for query response Jun 6 09:37:28 otp3 pgpool[2871]: [466-2] 2016-06-06 09:37:28: pid 2871: DETAIL: waiting for backend:1 to complete the query Jun 6 09:37:28 otp3 pgpool[2871]: [466-3] 2016-06-06 09:37:28: pid 2871: LOCATION: pool_process_query.c:479 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: LOCATION: pool_stream.c:190 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: DEBUG: pool_send_and_wait: pool_set_sync_map: 1 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: LOCATION: pool_query_context.c:854 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: DEBUG: pool_write: to backend: kind:B Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: LOCATION: pool_stream.c:431 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: LOCATION: pool_stream.c:431 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: DEBUG: waiting for query response Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: DETAIL: waiting for backend:1 to complete the query Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: LOCATION: pool_process_query.c:479 Jun 6 09:37:28 otp3 pgpool[2871]: [467-1] 2016-06-06 09:37:28: pid 2871: DEBUG: pool_read: read 5 bytes from backend 1 Jun 6 09:37:28 otp3 pgpool[2871]: [467-2] 2016-06-06 09:37:28: pid 2871: LOCATION: pool_stream.c:190 Jun 6 09:37:28 otp3 pgpool[2871]: [468-1] 2016-06-06 09:37:28: pid 2871: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:28 otp3 pgpool[2871]: [468-2] 2016-06-06 09:37:28: pid 2871: LOCATION: pool_session_context.c:969 Jun 6 09:37:28 otp3 pgpool[2871]: [469-1] 2016-06-06 09:37:28: pid 2871: DEBUG: reading backend data packet kind Jun 6 09:37:28 otp3 pgpool[2871]: [469-2] 2016-06-06 09:37:28: pid 2871: DETAIL: backend:0 of 2 kind = '2' Jun 6 09:37:28 otp3 pgpool[2871]: [469-3] 2016-06-06 09:37:28: pid 2871: LOCATION: pool_process_query.c:3349 Jun 6 09:37:28 otp3 pgpool[2871]: [470-1] 2016-06-06 09:37:28: pid 2871: DEBUG: reading backend data packet kind Jun 6 09:37:28 otp3 pgpool[2871]: [470-2] 2016-06-06 09:37:28: pid 2871: DETAIL: backend:1 of 2 kind = '2' Jun 6 09:37:28 otp3 pgpool[2871]: [470-3] 2016-06-06 09:37:28: pid 2871: LOCATION: pool_process_query.c:3349 Jun 6 09:37:28 otp3 pgpool[2871]: [471-1] 2016-06-06 09:37:28: pid 2871: DEBUG: read_kind_from_backend max_count:2.000000 num_executed_nodes:2 Jun 6 09:37:28 otp3 pgpool[2871]: [471-2] 2016-06-06 09:37:28: pid 2871: LOCATION: pool_process_query.c:3365 Jun 6 09:37:28 otp3 pgpool[2871]: [472-1] 2016-06-06 09:37:28: pid 2871: DEBUG: processing backend response Jun 6 09:37:28 otp3 pgpool[2871]: [472-2] 2016-06-06 09:37:28: pid 2871: DETAIL: received kind '2'(32) from backend Jun 6 09:37:28 otp3 pgpool[2871]: [472-3] 2016-06-06 09:37:28: pid 2871: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:28 otp3 pgpool[2871]: [473-1] 2016-06-06 09:37:28: pid 2871: DEBUG: called by pool_add_sent_message: sent message: address: 2406d18 kind: B name: == Jun 6 09:37:28 otp3 pgpool[2871]: [473-2] 2016-06-06 09:37:28: pid 2871: LOCATION: pool_session_context.c:436 Jun 6 09:37:28 otp3 pgpool[2871]: [474-1] 2016-06-06 09:37:28: pid 2871: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:28 otp3 pgpool[2871]: [474-2] 2016-06-06 09:37:28: pid 2871: LOCATION: pool_session_context.c:969 Jun 6 09:37:28 otp3 pgpool[2871]: [475-1] 2016-06-06 09:37:28: pid 2871: DEBUG: SimpleForwardToFrontend: packet:2 length:0 Jun 6 09:37:28 otp3 pgpool[2871]: [475-2] 2016-06-06 09:37:28: pid 2871: LOCATION: pool_process_query.c:792 Jun 6 09:37:28 otp3 pgpool[2871]: [476-1] 2016-06-06 09:37:28: pid 2871: DEBUG: session context: setting command success. DONE Jun 6 09:37:28 otp3 pgpool[2871]: [476-2] 2016-06-06 09:37:28: pid 2871: LOCATION: pool_session_context.c:741 Jun 6 09:37:28 otp3 pgpool[2871]: [477-1] 2016-06-06 09:37:28: pid 2871: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:28 otp3 pgpool[2871]: [477-2] 2016-06-06 09:37:28: pid 2871: LOCATION: pool_session_context.c:219 Jun 6 09:37:28 otp3 pgpool[2871]: [478-1] 2016-06-06 09:37:28: pid 2871: DEBUG: processing frontend response Jun 6 09:37:28 otp3 pgpool[2871]: [478-2] 2016-06-06 09:37:28: pid 2871: DETAIL: received kind 'E'(45) from frontend Jun 6 09:37:28 otp3 pgpool[2871]: [478-3] 2016-06-06 09:37:28: pid 2871: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:28 otp3 pgpool[2871]: [479-1] 2016-06-06 09:37:28: pid 2871: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:28 otp3 pgpool[2871]: [479-2] 2016-06-06 09:37:28: pid 2871: LOCATION: pool_session_context.c:280 Jun 6 09:37:28 otp3 pgpool[2871]: [480-1] 2016-06-06 09:37:28: pid 2871: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:28 otp3 pgpool[2871]: [480-2] 2016-06-06 09:37:28: pid 2871: LOCATION: pool_session_context.c:269 Jun 6 09:37:28 otp3 pgpool[2871]: [481-1] 2016-06-06 09:37:28: pid 2871: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:28 otp3 pgpool[2871]: [481-2] 2016-06-06 09:37:28: pid 2871: LOCATION: pool_session_context.c:208 Jun 6 09:37:28 otp3 pgpool[2871]: [482-1] 2016-06-06 09:37:28: pid 2871: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:37:28 otp3 pgpool[2871]: [482-2] 2016-06-06 09:37:28: pid 2871: LOCATION: pool_query_context.c:854 Jun 6 09:37:28 otp3 pgpool[2871]: [483-1] 2016-06-06 09:37:28: pid 2871: DEBUG: pool_write: to backend: kind:E Jun 6 09:37:28 otp3 pgpool[2871]: [483-2] 2016-06-06 09:37:28: pid 2871: LOCATION: pool_stream.c:431 Jun 6 09:37:28 otp3 pgpool[2871]: [484-1] 2016-06-06 09:37:28: pid 2871: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:28 otp3 pgpool[2871]: [484-2] 2016-06-06 09:37:28: pid 2871: LOCATION: pool_stream.c:431 Jun 6 09:37:28 otp3 pgpool[2871]: [485-1] 2016-06-06 09:37:28: pid 2871: DEBUG: waiting for query response Jun 6 09:37:28 otp3 pgpool[2871]: [485-2] 2016-06-06 09:37:28: pid 2871: DETAIL: waiting for backend:0 to complete the query Jun 6 09:37:28 otp3 pgpool[2871]: [485-3] 2016-06-06 09:37:28: pid 2871: LOCATION: pool_process_query.c:479 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: DEBUG: pool_read: read 5 bytes from backend 1 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: LOCATION: pool_stream.c:190 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: LOCATION: pool_session_context.c:969 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: DEBUG: reading backend data packet kind Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: DETAIL: backend:0 of 2 kind = '2' Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: LOCATION: pool_process_query.c:3349 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: DEBUG: reading backend data packet kind Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: DETAIL: backend:1 of 2 kind = '2' Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: LOCATION: pool_process_query.c:3349 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: DEBUG: read_kind_from_backend max_count:2.000000 num_executed_nodes:2 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: LOCATION: pool_process_query.c:3365 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: DEBUG: processing backend response Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: DETAIL: received kind '2'(32) from backend Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: DEBUG: called by pool_add_sent_message: sent message: address: 2406d18 kind: B name: == Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: LOCATION: pool_session_context.c:436 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: LOCATION: pool_session_context.c:969 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: DEBUG: SimpleForwardToFrontend: packet:2 length:0 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: LOCATION: pool_process_query.c:792 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: DEBUG: session context: setting command success. DONE Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: LOCATION: pool_session_context.c:741 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: LOCATION: pool_session_context.c:219 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: DEBUG: processing frontend response Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: DETAIL: received kind 'E'(45) from frontend Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: LOCATION: pool_session_context.c:280 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: LOCATION: pool_session_context.c:269 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: LOCATION: pool_session_context.c:208 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: LOCATION: pool_query_context.c:854 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: DEBUG: pool_write: to backend: kind:E Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: LOCATION: pool_stream.c:431 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: LOCATION: pool_stream.c:431 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: DEBUG: waiting for query response Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: DETAIL: waiting for backend:0 to complete the query Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: LOCATION: pool_process_query.c:479 Jun 6 09:37:28 otp3 pgpool[2871]: [486-1] 2016-06-06 09:37:28: pid 2871: DEBUG: pool_read: read 9 bytes from backend 0 Jun 6 09:37:28 otp3 pgpool[2871]: [486-2] 2016-06-06 09:37:28: pid 2871: LOCATION: pool_stream.c:190 Jun 6 09:37:28 otp3 pgpool[2871]: [487-1] 2016-06-06 09:37:28: pid 2871: DEBUG: detect error: kind: C Jun 6 09:37:28 otp3 pgpool[2871]: [487-2] 2016-06-06 09:37:28: pid 2871: LOCATION: pool_process_query.c:4166 Jun 6 09:37:28 otp3 pgpool[2871]: [488-1] 2016-06-06 09:37:28: pid 2871: DEBUG: detect error: kind: C Jun 6 09:37:28 otp3 pgpool[2871]: [488-2] 2016-06-06 09:37:28: pid 2871: LOCATION: pool_process_query.c:4166 Jun 6 09:37:28 otp3 pgpool[2871]: [489-1] 2016-06-06 09:37:28: pid 2871: DEBUG: detect error: kind: C Jun 6 09:37:28 otp3 pgpool[2871]: [489-2] 2016-06-06 09:37:28: pid 2871: LOCATION: pool_process_query.c:4166 Jun 6 09:37:28 otp3 pgpool[2871]: [490-1] 2016-06-06 09:37:28: pid 2871: DEBUG: detect error: kind: C Jun 6 09:37:28 otp3 pgpool[2871]: [490-2] 2016-06-06 09:37:28: pid 2871: LOCATION: pool_process_query.c:4166 Jun 6 09:37:28 otp3 pgpool[2871]: [491-1] 2016-06-06 09:37:28: pid 2871: DEBUG: pool_send_and_wait: pool_set_sync_map: 1 Jun 6 09:37:28 otp3 pgpool[2871]: [491-2] 2016-06-06 09:37:28: pid 2871: LOCATION: pool_query_context.c:854 Jun 6 09:37:28 otp3 pgpool[2871]: [492-1] 2016-06-06 09:37:28: pid 2871: DEBUG: pool_write: to backend: kind:E Jun 6 09:37:28 otp3 pgpool[2871]: [492-2] 2016-06-06 09:37:28: pid 2871: LOCATION: pool_stream.c:431 Jun 6 09:37:28 otp3 pgpool[2871]: [493-1] 2016-06-06 09:37:28: pid 2871: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:28 otp3 pgpool[2871]: [493-2] 2016-06-06 09:37:28: pid 2871: LOCATION: pool_stream.c:431 Jun 6 09:37:28 otp3 pgpool[2871]: [494-1] 2016-06-06 09:37:28: pid 2871: DEBUG: waiting for query response Jun 6 09:37:28 otp3 pgpool[2871]: [494-2] 2016-06-06 09:37:28: pid 2871: DETAIL: waiting for backend:1 to complete the query Jun 6 09:37:28 otp3 pgpool[2871]: [494-3] 2016-06-06 09:37:28: pid 2871: LOCATION: pool_process_query.c:479 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: DEBUG: pool_read: read 9 bytes from backend 0 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: LOCATION: pool_stream.c:190 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: DEBUG: detect error: kind: C Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: LOCATION: pool_process_query.c:4166 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: DEBUG: detect error: kind: C Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: LOCATION: pool_process_query.c:4166 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: DEBUG: detect error: kind: C Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: LOCATION: pool_process_query.c:4166 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: DEBUG: detect error: kind: C Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: LOCATION: pool_process_query.c:4166 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: DEBUG: pool_send_and_wait: pool_set_sync_map: 1 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: LOCATION: pool_query_context.c:854 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: DEBUG: pool_write: to backend: kind:E Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: LOCATION: pool_stream.c:431 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: LOCATION: pool_stream.c:431 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: DEBUG: waiting for query response Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: DETAIL: waiting for backend:1 to complete the query Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: LOCATION: pool_process_query.c:479 Jun 6 09:37:28 otp3 pgpool[2871]: [495-1] 2016-06-06 09:37:28: pid 2871: DEBUG: pool_read: read 9 bytes from backend 1 Jun 6 09:37:28 otp3 pgpool[2871]: [495-2] 2016-06-06 09:37:28: pid 2871: LOCATION: pool_stream.c:190 Jun 6 09:37:28 otp3 pgpool[2871]: [496-1] 2016-06-06 09:37:28: pid 2871: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:28 otp3 pgpool[2871]: [496-2] 2016-06-06 09:37:28: pid 2871: LOCATION: pool_session_context.c:969 Jun 6 09:37:28 otp3 pgpool[2871]: [497-1] 2016-06-06 09:37:28: pid 2871: DEBUG: reading backend data packet kind Jun 6 09:37:28 otp3 pgpool[2871]: [497-2] 2016-06-06 09:37:28: pid 2871: DETAIL: backend:0 of 2 kind = 'C' Jun 6 09:37:28 otp3 pgpool[2871]: [497-3] 2016-06-06 09:37:28: pid 2871: LOCATION: pool_process_query.c:3349 Jun 6 09:37:28 otp3 pgpool[2871]: [498-1] 2016-06-06 09:37:28: pid 2871: DEBUG: reading backend data packet kind Jun 6 09:37:28 otp3 pgpool[2871]: [498-2] 2016-06-06 09:37:28: pid 2871: DETAIL: backend:1 of 2 kind = 'C' Jun 6 09:37:28 otp3 pgpool[2871]: [498-3] 2016-06-06 09:37:28: pid 2871: LOCATION: pool_process_query.c:3349 Jun 6 09:37:28 otp3 pgpool[2871]: [499-1] 2016-06-06 09:37:28: pid 2871: DEBUG: read_kind_from_backend max_count:2.000000 num_executed_nodes:2 Jun 6 09:37:28 otp3 pgpool[2871]: [499-2] 2016-06-06 09:37:28: pid 2871: LOCATION: pool_process_query.c:3365 Jun 6 09:37:28 otp3 pgpool[2871]: [500-1] 2016-06-06 09:37:28: pid 2871: DEBUG: processing backend response Jun 6 09:37:28 otp3 pgpool[2871]: [500-2] 2016-06-06 09:37:28: pid 2871: DETAIL: received kind 'C'(43) from backend Jun 6 09:37:28 otp3 pgpool[2871]: [500-3] 2016-06-06 09:37:28: pid 2871: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:28 otp3 pgpool[2871]: [501-1] 2016-06-06 09:37:28: pid 2871: DEBUG: session context: setting command success. DONE Jun 6 09:37:28 otp3 pgpool[2871]: [501-2] 2016-06-06 09:37:28: pid 2871: LOCATION: pool_session_context.c:741 Jun 6 09:37:28 otp3 pgpool[2871]: [502-1] 2016-06-06 09:37:28: pid 2871: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:28 otp3 pgpool[2871]: [502-2] 2016-06-06 09:37:28: pid 2871: LOCATION: pool_session_context.c:219 Jun 6 09:37:28 otp3 pgpool[2871]: [503-1] 2016-06-06 09:37:28: pid 2871: DEBUG: processing frontend response Jun 6 09:37:28 otp3 pgpool[2871]: [503-2] 2016-06-06 09:37:28: pid 2871: DETAIL: received kind 'S'(53) from frontend Jun 6 09:37:28 otp3 pgpool[2871]: [503-3] 2016-06-06 09:37:28: pid 2871: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:28 otp3 pgpool[2871]: [504-1] 2016-06-06 09:37:28: pid 2871: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:28 otp3 pgpool[2871]: [504-2] 2016-06-06 09:37:28: pid 2871: LOCATION: pool_session_context.c:280 Jun 6 09:37:28 otp3 pgpool[2871]: [505-1] 2016-06-06 09:37:28: pid 2871: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:28 otp3 pgpool[2871]: [505-2] 2016-06-06 09:37:28: pid 2871: LOCATION: pool_session_context.c:269 Jun 6 09:37:28 otp3 pgpool[2871]: [506-1] 2016-06-06 09:37:28: pid 2871: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:28 otp3 pgpool[2871]: [506-2] 2016-06-06 09:37:28: pid 2871: LOCATION: pool_session_context.c:208 Jun 6 09:37:28 otp3 pgpool[2871]: [507-1] 2016-06-06 09:37:28: pid 2871: DEBUG: pool_write: to backend: kind:S Jun 6 09:37:28 otp3 pgpool[2871]: [507-2] 2016-06-06 09:37:28: pid 2871: LOCATION: pool_stream.c:431 Jun 6 09:37:28 otp3 pgpool[2871]: [508-1] 2016-06-06 09:37:28: pid 2871: DEBUG: pool_write: to backend: kind:S Jun 6 09:37:28 otp3 pgpool[2871]: [508-2] 2016-06-06 09:37:28: pid 2871: LOCATION: pool_stream.c:431 Jun 6 09:37:28 otp3 pgpool[2871]: [509-1] 2016-06-06 09:37:28: pid 2871: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:28 otp3 pgpool[2871]: [509-2] 2016-06-06 09:37:28: pid 2871: LOCATION: pool_session_context.c:969 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: DEBUG: pool_read: read 9 bytes from backend 1 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: LOCATION: pool_stream.c:190 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: LOCATION: pool_session_context.c:969 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: DEBUG: reading backend data packet kind Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: DETAIL: backend:0 of 2 kind = 'C' Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: LOCATION: pool_process_query.c:3349 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: DEBUG: reading backend data packet kind Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: DETAIL: backend:1 of 2 kind = 'C' Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: LOCATION: pool_process_query.c:3349 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: DEBUG: read_kind_from_backend max_count:2.000000 num_executed_nodes:2 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: LOCATION: pool_process_query.c:3365 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: DEBUG: processing backend response Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: DETAIL: received kind 'C'(43) from backend Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: DEBUG: session context: setting command success. DONE Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: LOCATION: pool_session_context.c:741 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: LOCATION: pool_session_context.c:219 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: DEBUG: processing frontend response Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: DETAIL: received kind 'S'(53) from frontend Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: LOCATION: pool_session_context.c:280 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: LOCATION: pool_session_context.c:269 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: LOCATION: pool_session_context.c:208 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: DEBUG: pool_write: to backend: kind:S Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: LOCATION: pool_stream.c:431 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: DEBUG: pool_write: to backend: kind:S Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: LOCATION: pool_stream.c:431 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: LOCATION: pool_session_context.c:969 Jun 6 09:37:28 otp3 pgpool[2871]: [510-1] 2016-06-06 09:37:28: pid 2871: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:37:28 otp3 pgpool[2871]: [510-2] 2016-06-06 09:37:28: pid 2871: LOCATION: pool_stream.c:190 Jun 6 09:37:28 otp3 pgpool[2871]: [511-1] 2016-06-06 09:37:28: pid 2871: DEBUG: reading backend data packet kind Jun 6 09:37:28 otp3 pgpool[2871]: [511-2] 2016-06-06 09:37:28: pid 2871: DETAIL: backend:0 of 2 kind = 'Z' Jun 6 09:37:28 otp3 pgpool[2871]: [511-3] 2016-06-06 09:37:28: pid 2871: LOCATION: pool_process_query.c:3349 Jun 6 09:37:28 otp3 pgpool[2871]: [512-1] 2016-06-06 09:37:28: pid 2871: DEBUG: pool_read: read 6 bytes from backend 1 Jun 6 09:37:28 otp3 pgpool[2871]: [512-2] 2016-06-06 09:37:28: pid 2871: LOCATION: pool_stream.c:190 Jun 6 09:37:28 otp3 pgpool[2871]: [513-1] 2016-06-06 09:37:28: pid 2871: DEBUG: reading backend data packet kind Jun 6 09:37:28 otp3 pgpool[2871]: [513-2] 2016-06-06 09:37:28: pid 2871: DETAIL: backend:1 of 2 kind = 'Z' Jun 6 09:37:28 otp3 pgpool[2871]: [513-3] 2016-06-06 09:37:28: pid 2871: LOCATION: pool_process_query.c:3349 Jun 6 09:37:28 otp3 pgpool[2871]: [514-1] 2016-06-06 09:37:28: pid 2871: DEBUG: read_kind_from_backend max_count:2.000000 num_executed_nodes:2 Jun 6 09:37:28 otp3 pgpool[2871]: [514-2] 2016-06-06 09:37:28: pid 2871: LOCATION: pool_process_query.c:3365 Jun 6 09:37:28 otp3 pgpool[2871]: [515-1] 2016-06-06 09:37:28: pid 2871: DEBUG: processing backend response Jun 6 09:37:28 otp3 pgpool[2871]: [515-2] 2016-06-06 09:37:28: pid 2871: DETAIL: received kind 'Z'(5a) from backend Jun 6 09:37:28 otp3 pgpool[2871]: [515-3] 2016-06-06 09:37:28: pid 2871: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:28 otp3 pgpool[2871]: [516-1] 2016-06-06 09:37:28: pid 2871: DEBUG: processing backend response Jun 6 09:37:28 otp3 pgpool[2871]: [516-2] 2016-06-06 09:37:28: pid 2871: DETAIL: Ready For Query received Jun 6 09:37:28 otp3 pgpool[2871]: [516-3] 2016-06-06 09:37:28: pid 2871: LOCATION: pool_proto_modules.c:2442 Jun 6 09:37:28 otp3 pgpool[2871]: [517-1] 2016-06-06 09:37:28: pid 2871: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:37:28 otp3 pgpool[2871]: [517-2] 2016-06-06 09:37:28: pid 2871: LOCATION: pool_session_context.c:310 Jun 6 09:37:28 otp3 pgpool[2871]: [518-1] 2016-06-06 09:37:28: pid 2871: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:28 otp3 pgpool[2871]: [518-2] 2016-06-06 09:37:28: pid 2871: LOCATION: pool_session_context.c:969 Jun 6 09:37:28 otp3 pgpool[2871]: [519-1] 2016-06-06 09:37:28: pid 2871: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:28 otp3 pgpool[2871]: [519-2] 2016-06-06 09:37:28: pid 2871: LOCATION: pool_session_context.c:969 Jun 6 09:37:28 otp3 pgpool[2871]: [520-1] 2016-06-06 09:37:28: pid 2871: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:28 otp3 pgpool[2871]: [520-2] 2016-06-06 09:37:28: pid 2871: LOCATION: pool_session_context.c:969 Jun 6 09:37:28 otp3 pgpool[2871]: [521-1] 2016-06-06 09:37:28: pid 2871: DEBUG: reading message length Jun 6 09:37:28 otp3 pgpool[2871]: [521-2] 2016-06-06 09:37:28: pid 2871: DETAIL: slot: 0 length: 5 Jun 6 09:37:28 otp3 pgpool[2871]: [521-3] 2016-06-06 09:37:28: pid 2871: LOCATION: pool_auth.c:1107 Jun 6 09:37:28 otp3 pgpool[2871]: [522-1] 2016-06-06 09:37:28: pid 2871: DEBUG: reading message length Jun 6 09:37:28 otp3 pgpool[2871]: [522-2] 2016-06-06 09:37:28: pid 2871: DETAIL: slot: 1 length: 5 Jun 6 09:37:28 otp3 pgpool[2871]: [522-3] 2016-06-06 09:37:28: pid 2871: LOCATION: pool_auth.c:1126 Jun 6 09:37:28 otp3 pgpool[2871]: [523-1] 2016-06-06 09:37:28: pid 2871: DEBUG: processing ReadyForQuery Jun 6 09:37:28 otp3 pgpool[2871]: [523-2] 2016-06-06 09:37:28: pid 2871: DETAIL: transaction state 'I'(49) Jun 6 09:37:28 otp3 pgpool[2871]: [523-3] 2016-06-06 09:37:28: pid 2871: LOCATION: pool_proto_modules.c:1612 Jun 6 09:37:28 otp3 pgpool[2871]: [524-1] 2016-06-06 09:37:28: pid 2871: DEBUG: processing ReadyForQuery Jun 6 09:37:28 otp3 pgpool[2871]: [524-2] 2016-06-06 09:37:28: pid 2871: DETAIL: transaction state 'I'(49) Jun 6 09:37:28 otp3 pgpool[2871]: [524-3] 2016-06-06 09:37:28: pid 2871: LOCATION: pool_proto_modules.c:1612 Jun 6 09:37:28 otp3 pgpool[2871]: [525-1] 2016-06-06 09:37:28: pid 2871: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:28 otp3 pgpool[2871]: [525-2] 2016-06-06 09:37:28: pid 2871: LOCATION: pool_session_context.c:219 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: LOCATION: pool_stream.c:190 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: DEBUG: reading backend data packet kind Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: DETAIL: backend:0 of 2 kind = 'Z' Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: LOCATION: pool_process_query.c:3349 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: DEBUG: pool_read: read 6 bytes from backend 1 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: LOCATION: pool_stream.c:190 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: DEBUG: reading backend data packet kind Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: DETAIL: backend:1 of 2 kind = 'Z' Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: LOCATION: pool_process_query.c:3349 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: DEBUG: read_kind_from_backend max_count:2.000000 num_executed_nodes:2 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: LOCATION: pool_process_query.c:3365 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: DEBUG: processing backend response Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: DETAIL: received kind 'Z'(5a) from backend Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: DEBUG: processing backend response Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: DETAIL: Ready For Query received Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: LOCATION: pool_proto_modules.c:2442 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: LOCATION: pool_session_context.c:310 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: LOCATION: pool_session_context.c:969 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: LOCATION: pool_session_context.c:969 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: LOCATION: pool_session_context.c:969 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: DEBUG: reading message length Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: DETAIL: slot: 0 length: 5 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: LOCATION: pool_auth.c:1107 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: DEBUG: reading message length Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: DETAIL: slot: 1 length: 5 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: LOCATION: pool_auth.c:1126 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: DEBUG: processing ReadyForQuery Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: DETAIL: transaction state 'I'(49) Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: LOCATION: pool_proto_modules.c:1612 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: DEBUG: processing ReadyForQuery Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: DETAIL: transaction state 'I'(49) Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: LOCATION: pool_proto_modules.c:1612 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2871: LOCATION: pool_session_context.c:219 Jun 6 09:37:28 otp3 pgpool[2875]: [280-1] 2016-06-06 09:37:28: pid 2875: DEBUG: I am 2875 accept fd 7 Jun 6 09:37:28 otp3 pgpool[2875]: [280-2] 2016-06-06 09:37:28: pid 2875: LOCATION: child.c:2097 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: I am 2875 accept fd 7 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: child.c:2097 Jun 6 09:37:28 otp3 pgpool[2875]: [281-1] 2016-06-06 09:37:28: pid 2875: LOG: new connection received Jun 6 09:37:28 otp3 pgpool[2875]: [281-2] 2016-06-06 09:37:28: pid 2875: DETAIL: connecting host=10.200.1.64 port=15457 Jun 6 09:37:28 otp3 pgpool[2875]: [281-3] 2016-06-06 09:37:28: pid 2875: LOCATION: child.c:2110 Jun 6 09:37:28 otp3 pgpool[2875]: [282-1] 2016-06-06 09:37:28: pid 2875: DEBUG: reading startup packet Jun 6 09:37:28 otp3 pgpool[2875]: [282-2] 2016-06-06 09:37:28: pid 2875: DETAIL: Protocol Major: 3 Minor: 0 database: ctl user: sparrowdesk Jun 6 09:37:28 otp3 pgpool[2875]: [282-3] 2016-06-06 09:37:28: pid 2875: LOCATION: child.c:614 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOG: new connection received Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DETAIL: connecting host=10.200.1.64 port=15457 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: child.c:2110 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: reading startup packet Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DETAIL: Protocol Major: 3 Minor: 0 database: ctl user: sparrowdesk Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: child.c:614 Jun 6 09:37:28 otp3 pgpool[2875]: [283-1] 2016-06-06 09:37:28: pid 2875: DEBUG: sending backend key data Jun 6 09:37:28 otp3 pgpool[2875]: [283-2] 2016-06-06 09:37:28: pid 2875: DETAIL: send pid 97120 to frontend Jun 6 09:37:28 otp3 pgpool[2875]: [283-3] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_auth.c:519 Jun 6 09:37:28 otp3 pgpool[2875]: [284-1] 2016-06-06 09:37:28: pid 2875: DEBUG: selecting load balance node Jun 6 09:37:28 otp3 pgpool[2875]: [284-2] 2016-06-06 09:37:28: pid 2875: DETAIL: selected backend id is 1 Jun 6 09:37:28 otp3 pgpool[2875]: [284-3] 2016-06-06 09:37:28: pid 2875: LOCATION: child.c:1720 Jun 6 09:37:28 otp3 pgpool[2875]: [285-1] 2016-06-06 09:37:28: pid 2875: DEBUG: initializing session context Jun 6 09:37:28 otp3 pgpool[2875]: [285-2] 2016-06-06 09:37:28: pid 2875: DETAIL: selected load balancing node: 1 Jun 6 09:37:28 otp3 pgpool[2875]: [285-3] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_session_context.c:99 Jun 6 09:37:28 otp3 pgpool[2875]: [286-1] 2016-06-06 09:37:28: pid 2875: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:28 otp3 pgpool[2875]: [286-2] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_session_context.c:219 Jun 6 09:37:28 otp3 pgpool[2875]: [287-1] 2016-06-06 09:37:28: pid 2875: DEBUG: session context: clearing transaction isolation. DONE Jun 6 09:37:28 otp3 pgpool[2875]: [287-2] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_session_context.c:731 Jun 6 09:37:28 otp3 pgpool[2875]: [288-1] 2016-06-06 09:37:28: pid 2875: DEBUG: session context: clearing writing transaction. DONE Jun 6 09:37:28 otp3 pgpool[2875]: [288-2] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_session_context.c:565 Jun 6 09:37:28 otp3 pgpool[2875]: [289-1] 2016-06-06 09:37:28: pid 2875: DEBUG: session context: clearing failed transaction. DONE Jun 6 09:37:28 otp3 pgpool[2875]: [289-2] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_session_context.c:594 Jun 6 09:37:28 otp3 pgpool[2875]: [290-1] 2016-06-06 09:37:28: pid 2875: DEBUG: session context: clearing failed transaction. DONE Jun 6 09:37:28 otp3 pgpool[2875]: [290-2] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_session_context.c:624 Jun 6 09:37:28 otp3 pgpool[2875]: [291-1] 2016-06-06 09:37:28: pid 2875: DEBUG: session context: clearing skip reading from backends. DONE Jun 6 09:37:28 otp3 pgpool[2875]: [291-2] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_session_context.c:250 Jun 6 09:37:28 otp3 pgpool[2875]: [292-1] 2016-06-06 09:37:28: pid 2875: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:37:28 otp3 pgpool[2875]: [292-2] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_session_context.c:310 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: sending backend key data Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DETAIL: send pid 97120 to frontend Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_auth.c:519 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: selecting load balance node Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DETAIL: selected backend id is 1 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: child.c:1720 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: initializing session context Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DETAIL: selected load balancing node: 1 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_session_context.c:99 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_session_context.c:219 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: session context: clearing transaction isolation. DONE Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_session_context.c:731 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: session context: clearing writing transaction. DONE Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_session_context.c:565 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: session context: clearing failed transaction. DONE Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_session_context.c:594 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: session context: clearing failed transaction. DONE Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_session_context.c:624 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: session context: clearing skip reading from backends. DONE Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_session_context.c:250 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_session_context.c:310 Jun 6 09:37:28 otp3 pgpool[2875]: [293-1] 2016-06-06 09:37:28: pid 2875: DEBUG: processing frontend response Jun 6 09:37:28 otp3 pgpool[2875]: [293-2] 2016-06-06 09:37:28: pid 2875: DETAIL: received kind 'P'(50) from frontend Jun 6 09:37:28 otp3 pgpool[2875]: [293-3] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:28 otp3 pgpool[2875]: [294-1] 2016-06-06 09:37:28: pid 2875: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:28 otp3 pgpool[2875]: [294-2] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_session_context.c:280 Jun 6 09:37:28 otp3 pgpool[2875]: [295-1] 2016-06-06 09:37:28: pid 2875: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:28 otp3 pgpool[2875]: [295-2] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_session_context.c:269 Jun 6 09:37:28 otp3 pgpool[2875]: [296-1] 2016-06-06 09:37:28: pid 2875: DEBUG: Parse: statement name <> Jun 6 09:37:28 otp3 pgpool[2875]: [296-2] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_proto_modules.c:817 Jun 6 09:37:28 otp3 pgpool[2875]: [297-1] 2016-06-06 09:37:28: pid 2875: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:28 otp3 pgpool[2875]: [297-2] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_session_context.c:208 Jun 6 09:37:28 otp3 pgpool[2875]: [298-1] 2016-06-06 09:37:28: pid 2875: DEBUG: pool_write: to backend: kind:S Jun 6 09:37:28 otp3 pgpool[2875]: [298-2] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_stream.c:431 Jun 6 09:37:28 otp3 pgpool[2875]: [299-1] 2016-06-06 09:37:28: pid 2875: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:28 otp3 pgpool[2875]: [299-2] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_stream.c:431 Jun 6 09:37:28 otp3 pgpool[2875]: [300-1] 2016-06-06 09:37:28: pid 2875: DEBUG: pool_write: to backend: kind:S Jun 6 09:37:28 otp3 pgpool[2875]: [300-2] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_stream.c:431 Jun 6 09:37:28 otp3 pgpool[2875]: [301-1] 2016-06-06 09:37:28: pid 2875: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:28 otp3 pgpool[2875]: [301-2] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_stream.c:431 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: processing frontend response Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DETAIL: received kind 'P'(50) from frontend Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_session_context.c:280 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_session_context.c:269 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: Parse: statement name <> Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_proto_modules.c:817 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_session_context.c:208 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: pool_write: to backend: kind:S Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_stream.c:431 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_stream.c:431 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: pool_write: to backend: kind:S Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_stream.c:431 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_stream.c:431 Jun 6 09:37:28 otp3 pgpool[2875]: [302-1] 2016-06-06 09:37:28: pid 2875: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:37:28 otp3 pgpool[2875]: [302-2] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_stream.c:190 Jun 6 09:37:28 otp3 pgpool[2875]: [303-1] 2016-06-06 09:37:28: pid 2875: DEBUG: pool_read: read 6 bytes from backend 1 Jun 6 09:37:28 otp3 pgpool[2875]: [303-2] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_stream.c:190 Jun 6 09:37:28 otp3 pgpool[2875]: [304-1] 2016-06-06 09:37:28: pid 2875: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:37:28 otp3 pgpool[2875]: [304-2] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_session_context.c:310 Jun 6 09:37:28 otp3 pgpool[2875]: [305-1] 2016-06-06 09:37:28: pid 2875: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:28 otp3 pgpool[2875]: [305-2] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_session_context.c:969 Jun 6 09:37:28 otp3 pgpool[2875]: [306-1] 2016-06-06 09:37:28: pid 2875: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:28 otp3 pgpool[2875]: [306-2] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_session_context.c:969 Jun 6 09:37:28 otp3 pgpool[2875]: [307-1] 2016-06-06 09:37:28: pid 2875: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:28 otp3 pgpool[2875]: [307-2] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_session_context.c:969 Jun 6 09:37:28 otp3 pgpool[2875]: [308-1] 2016-06-06 09:37:28: pid 2875: DEBUG: reading message length Jun 6 09:37:28 otp3 pgpool[2875]: [308-2] 2016-06-06 09:37:28: pid 2875: DETAIL: slot: 0 length: 5 Jun 6 09:37:28 otp3 pgpool[2875]: [308-3] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_auth.c:1107 Jun 6 09:37:28 otp3 pgpool[2875]: [309-1] 2016-06-06 09:37:28: pid 2875: DEBUG: reading message length Jun 6 09:37:28 otp3 pgpool[2875]: [309-2] 2016-06-06 09:37:28: pid 2875: DETAIL: slot: 1 length: 5 Jun 6 09:37:28 otp3 pgpool[2875]: [309-3] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_auth.c:1126 Jun 6 09:37:28 otp3 pgpool[2875]: [310-1] 2016-06-06 09:37:28: pid 2875: DEBUG: processing ReadyForQuery Jun 6 09:37:28 otp3 pgpool[2875]: [310-2] 2016-06-06 09:37:28: pid 2875: DETAIL: transaction state 'I'(49) Jun 6 09:37:28 otp3 pgpool[2875]: [310-3] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_proto_modules.c:1612 Jun 6 09:37:28 otp3 pgpool[2875]: [311-1] 2016-06-06 09:37:28: pid 2875: DEBUG: processing ReadyForQuery Jun 6 09:37:28 otp3 pgpool[2875]: [311-2] 2016-06-06 09:37:28: pid 2875: DETAIL: transaction state 'I'(49) Jun 6 09:37:28 otp3 pgpool[2875]: [311-3] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_proto_modules.c:1612 Jun 6 09:37:28 otp3 pgpool[2875]: [312-1] 2016-06-06 09:37:28: pid 2875: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:28 otp3 pgpool[2875]: [312-2] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_session_context.c:219 Jun 6 09:37:28 otp3 pgpool[2875]: [313-1] 2016-06-06 09:37:28: pid 2875: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:28 otp3 pgpool[2875]: [313-2] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_session_context.c:208 Jun 6 09:37:28 otp3 pgpool[2875]: [314-1] 2016-06-06 09:37:28: pid 2875: DEBUG: Parse: waiting for master completing the query Jun 6 09:37:28 otp3 pgpool[2875]: [314-2] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_proto_modules.c:1064 Jun 6 09:37:28 otp3 pgpool[2875]: [315-1] 2016-06-06 09:37:28: pid 2875: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:37:28 otp3 pgpool[2875]: [315-2] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_query_context.c:854 Jun 6 09:37:28 otp3 pgpool[2875]: [316-1] 2016-06-06 09:37:28: pid 2875: DEBUG: pool_write: to backend: kind:P Jun 6 09:37:28 otp3 pgpool[2875]: [316-2] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_stream.c:431 Jun 6 09:37:28 otp3 pgpool[2875]: [317-1] 2016-06-06 09:37:28: pid 2875: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:28 otp3 pgpool[2875]: [317-2] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_stream.c:431 Jun 6 09:37:28 otp3 pgpool[2875]: [318-1] 2016-06-06 09:37:28: pid 2875: DEBUG: waiting for query response Jun 6 09:37:28 otp3 pgpool[2875]: [318-2] 2016-06-06 09:37:28: pid 2875: DETAIL: waiting for backend:0 to complete the query Jun 6 09:37:28 otp3 pgpool[2875]: [318-3] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_process_query.c:479 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_stream.c:190 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: pool_read: read 6 bytes from backend 1 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_stream.c:190 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_session_context.c:310 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_session_context.c:969 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_session_context.c:969 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_session_context.c:969 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: reading message length Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DETAIL: slot: 0 length: 5 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_auth.c:1107 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: reading message length Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DETAIL: slot: 1 length: 5 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_auth.c:1126 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: processing ReadyForQuery Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DETAIL: transaction state 'I'(49) Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_proto_modules.c:1612 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: processing ReadyForQuery Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DETAIL: transaction state 'I'(49) Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_proto_modules.c:1612 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_session_context.c:219 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_session_context.c:208 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: Parse: waiting for master completing the query Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_proto_modules.c:1064 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_query_context.c:854 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: pool_write: to backend: kind:P Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_stream.c:431 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_stream.c:431 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: waiting for query response Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DETAIL: waiting for backend:0 to complete the query Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_process_query.c:479 Jun 6 09:37:28 otp3 pgpool[2875]: [319-1] 2016-06-06 09:37:28: pid 2875: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:37:28 otp3 pgpool[2875]: [319-2] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_stream.c:190 Jun 6 09:37:28 otp3 pgpool[2875]: [320-1] 2016-06-06 09:37:28: pid 2875: DEBUG: detect error: kind: 1 Jun 6 09:37:28 otp3 pgpool[2875]: [320-2] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_process_query.c:4166 Jun 6 09:37:28 otp3 pgpool[2875]: [321-1] 2016-06-06 09:37:28: pid 2875: DEBUG: pool_send_and_wait: pool_set_sync_map: 1 Jun 6 09:37:28 otp3 pgpool[2875]: [321-2] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_query_context.c:854 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_stream.c:190 Jun 6 09:37:28 otp3 pgpool[2875]: [322-1] 2016-06-06 09:37:28: pid 2875: DEBUG: pool_write: to backend: kind:P Jun 6 09:37:28 otp3 pgpool[2875]: [322-2] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_stream.c:431 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: detect error: kind: 1 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_process_query.c:4166 Jun 6 09:37:28 otp3 pgpool[2875]: [323-1] 2016-06-06 09:37:28: pid 2875: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:28 otp3 pgpool[2875]: [323-2] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_stream.c:431 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: pool_send_and_wait: pool_set_sync_map: 1 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_query_context.c:854 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: pool_write: to backend: kind:P Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_stream.c:431 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:28 otp3 pgpool[2875]: [324-1] 2016-06-06 09:37:28: pid 2875: DEBUG: waiting for query response Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_stream.c:431 Jun 6 09:37:28 otp3 pgpool[2875]: [324-2] 2016-06-06 09:37:28: pid 2875: DETAIL: waiting for backend:1 to complete the query Jun 6 09:37:28 otp3 pgpool[2875]: [324-3] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_process_query.c:479 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: waiting for query response Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DETAIL: waiting for backend:1 to complete the query Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_process_query.c:479 Jun 6 09:37:28 otp3 pgpool[2875]: [325-1] 2016-06-06 09:37:28: pid 2875: DEBUG: pool_read: read 5 bytes from backend 1 Jun 6 09:37:28 otp3 pgpool[2875]: [325-2] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_stream.c:190 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: pool_read: read 5 bytes from backend 1 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_stream.c:190 Jun 6 09:37:28 otp3 pgpool[2875]: [326-1] 2016-06-06 09:37:28: pid 2875: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:28 otp3 pgpool[2875]: [326-2] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_session_context.c:969 Jun 6 09:37:28 otp3 pgpool[2875]: [327-1] 2016-06-06 09:37:28: pid 2875: DEBUG: reading backend data packet kind Jun 6 09:37:28 otp3 pgpool[2875]: [327-2] 2016-06-06 09:37:28: pid 2875: DETAIL: backend:0 of 2 kind = '1' Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:28 otp3 pgpool[2875]: [327-3] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_process_query.c:3349 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_session_context.c:969 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: reading backend data packet kind Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DETAIL: backend:0 of 2 kind = '1' Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_process_query.c:3349 Jun 6 09:37:28 otp3 pgpool[2875]: [328-1] 2016-06-06 09:37:28: pid 2875: DEBUG: reading backend data packet kind Jun 6 09:37:28 otp3 pgpool[2875]: [328-2] 2016-06-06 09:37:28: pid 2875: DETAIL: backend:1 of 2 kind = '1' Jun 6 09:37:28 otp3 pgpool[2875]: [328-3] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_process_query.c:3349 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: reading backend data packet kind Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DETAIL: backend:1 of 2 kind = '1' Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_process_query.c:3349 Jun 6 09:37:28 otp3 pgpool[2875]: [329-1] 2016-06-06 09:37:28: pid 2875: DEBUG: read_kind_from_backend max_count:2.000000 num_executed_nodes:2 Jun 6 09:37:28 otp3 pgpool[2875]: [329-2] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_process_query.c:3365 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: read_kind_from_backend max_count:2.000000 num_executed_nodes:2 Jun 6 09:37:28 otp3 pgpool[2875]: [330-1] 2016-06-06 09:37:28: pid 2875: DEBUG: processing backend response Jun 6 09:37:28 otp3 pgpool[2875]: [330-2] 2016-06-06 09:37:28: pid 2875: DETAIL: received kind '1'(31) from backend Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_process_query.c:3365 Jun 6 09:37:28 otp3 pgpool[2875]: [330-3] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:28 otp3 pgpool[2875]: [331-1] 2016-06-06 09:37:28: pid 2875: DEBUG: called by pool_add_sent_message: sent message: address: 2406c80 kind: P name: == Jun 6 09:37:28 otp3 pgpool[2875]: [331-2] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_session_context.c:436 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: processing backend response Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DETAIL: received kind '1'(31) from backend Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: called by pool_add_sent_message: sent message: address: 2406c80 kind: P name: == Jun 6 09:37:28 otp3 pgpool[2875]: [332-1] 2016-06-06 09:37:28: pid 2875: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_session_context.c:436 Jun 6 09:37:28 otp3 pgpool[2875]: [332-2] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_session_context.c:969 Jun 6 09:37:28 otp3 pgpool[2875]: [333-1] 2016-06-06 09:37:28: pid 2875: DEBUG: SimpleForwardToFrontend: packet:1 length:0 Jun 6 09:37:28 otp3 pgpool[2875]: [333-2] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_process_query.c:792 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_session_context.c:969 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: SimpleForwardToFrontend: packet:1 length:0 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_process_query.c:792 Jun 6 09:37:28 otp3 pgpool[2875]: [334-1] 2016-06-06 09:37:28: pid 2875: DEBUG: session context: setting command success. DONE Jun 6 09:37:28 otp3 pgpool[2875]: [334-2] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_session_context.c:741 Jun 6 09:37:28 otp3 pgpool[2875]: [335-1] 2016-06-06 09:37:28: pid 2875: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:28 otp3 pgpool[2875]: [335-2] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_session_context.c:219 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: session context: setting command success. DONE Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_session_context.c:741 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_session_context.c:219 Jun 6 09:37:28 otp3 pgpool[2875]: [336-1] 2016-06-06 09:37:28: pid 2875: DEBUG: processing frontend response Jun 6 09:37:28 otp3 pgpool[2875]: [336-2] 2016-06-06 09:37:28: pid 2875: DETAIL: received kind 'B'(42) from frontend Jun 6 09:37:28 otp3 pgpool[2875]: [336-3] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: processing frontend response Jun 6 09:37:28 otp3 pgpool[2875]: [337-1] 2016-06-06 09:37:28: pid 2875: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:28 otp3 pgpool[2875]: [337-2] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_session_context.c:280 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DETAIL: received kind 'B'(42) from frontend Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_session_context.c:280 Jun 6 09:37:28 otp3 pgpool[2875]: [338-1] 2016-06-06 09:37:28: pid 2875: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:28 otp3 pgpool[2875]: [338-2] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_session_context.c:269 Jun 6 09:37:28 otp3 pgpool[2875]: [339-1] 2016-06-06 09:37:28: pid 2875: DEBUG: Bind: checking strict query Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:28 otp3 pgpool[2875]: [339-2] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_proto_modules.c:1211 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_session_context.c:269 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: Bind: checking strict query Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_proto_modules.c:1211 Jun 6 09:37:28 otp3 pgpool[2875]: [340-1] 2016-06-06 09:37:28: pid 2875: DEBUG: Bind: checking insert lock Jun 6 09:37:28 otp3 pgpool[2875]: [340-2] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_proto_modules.c:1221 Jun 6 09:37:28 otp3 pgpool[2875]: [341-1] 2016-06-06 09:37:28: pid 2875: DEBUG: Bind: waiting for master completing the query Jun 6 09:37:28 otp3 pgpool[2875]: [341-2] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_proto_modules.c:1237 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: Bind: checking insert lock Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_proto_modules.c:1221 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: Bind: waiting for master completing the query Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_proto_modules.c:1237 Jun 6 09:37:28 otp3 pgpool[2875]: [342-1] 2016-06-06 09:37:28: pid 2875: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:28 otp3 pgpool[2875]: [342-2] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_session_context.c:208 Jun 6 09:37:28 otp3 pgpool[2875]: [343-1] 2016-06-06 09:37:28: pid 2875: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:37:28 otp3 pgpool[2875]: [343-2] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_query_context.c:854 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_session_context.c:208 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_query_context.c:854 Jun 6 09:37:28 otp3 pgpool[2875]: [344-1] 2016-06-06 09:37:28: pid 2875: DEBUG: pool_write: to backend: kind:B Jun 6 09:37:28 otp3 pgpool[2875]: [344-2] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_stream.c:431 Jun 6 09:37:28 otp3 pgpool[2875]: [345-1] 2016-06-06 09:37:28: pid 2875: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:28 otp3 pgpool[2875]: [345-2] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_stream.c:431 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: pool_write: to backend: kind:B Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_stream.c:431 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_stream.c:431 Jun 6 09:37:28 otp3 pgpool[2875]: [346-1] 2016-06-06 09:37:28: pid 2875: DEBUG: waiting for query response Jun 6 09:37:28 otp3 pgpool[2875]: [346-2] 2016-06-06 09:37:28: pid 2875: DETAIL: waiting for backend:0 to complete the query Jun 6 09:37:28 otp3 pgpool[2875]: [346-3] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_process_query.c:479 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: waiting for query response Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DETAIL: waiting for backend:0 to complete the query Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_process_query.c:479 Jun 6 09:37:28 otp3 pgpool[2875]: [347-1] 2016-06-06 09:37:28: pid 2875: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:37:28 otp3 pgpool[2875]: [347-2] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_stream.c:190 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: pool_read: read 5 bytes from backend 0 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_stream.c:190 Jun 6 09:37:28 otp3 pgpool[2875]: [348-1] 2016-06-06 09:37:28: pid 2875: DEBUG: pool_send_and_wait: pool_set_sync_map: 1 Jun 6 09:37:28 otp3 pgpool[2875]: [348-2] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_query_context.c:854 Jun 6 09:37:28 otp3 pgpool[2875]: [349-1] 2016-06-06 09:37:28: pid 2875: DEBUG: pool_write: to backend: kind:B Jun 6 09:37:28 otp3 pgpool[2875]: [349-2] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_stream.c:431 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: pool_send_and_wait: pool_set_sync_map: 1 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_query_context.c:854 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: pool_write: to backend: kind:B Jun 6 09:37:28 otp3 pgpool[2875]: [350-1] 2016-06-06 09:37:28: pid 2875: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_stream.c:431 Jun 6 09:37:28 otp3 pgpool[2875]: [350-2] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_stream.c:431 Jun 6 09:37:28 otp3 pgpool[2875]: [351-1] 2016-06-06 09:37:28: pid 2875: DEBUG: waiting for query response Jun 6 09:37:28 otp3 pgpool[2875]: [351-2] 2016-06-06 09:37:28: pid 2875: DETAIL: waiting for backend:1 to complete the query Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:28 otp3 pgpool[2875]: [351-3] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_process_query.c:479 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_stream.c:431 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: waiting for query response Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DETAIL: waiting for backend:1 to complete the query Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_process_query.c:479 Jun 6 09:37:28 otp3 pgpool[2875]: [352-1] 2016-06-06 09:37:28: pid 2875: DEBUG: pool_read: read 5 bytes from backend 1 Jun 6 09:37:28 otp3 pgpool[2875]: [352-2] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_stream.c:190 Jun 6 09:37:28 otp3 pgpool[2875]: [353-1] 2016-06-06 09:37:28: pid 2875: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:28 otp3 pgpool[2875]: [353-2] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_session_context.c:969 Jun 6 09:37:28 otp3 pgpool[2875]: [354-1] 2016-06-06 09:37:28: pid 2875: DEBUG: reading backend data packet kind Jun 6 09:37:28 otp3 pgpool[2875]: [354-2] 2016-06-06 09:37:28: pid 2875: DETAIL: backend:0 of 2 kind = '2' Jun 6 09:37:28 otp3 pgpool[2875]: [354-3] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_process_query.c:3349 Jun 6 09:37:28 otp3 pgpool[2875]: [355-1] 2016-06-06 09:37:28: pid 2875: DEBUG: reading backend data packet kind Jun 6 09:37:28 otp3 pgpool[2875]: [355-2] 2016-06-06 09:37:28: pid 2875: DETAIL: backend:1 of 2 kind = '2' Jun 6 09:37:28 otp3 pgpool[2875]: [355-3] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_process_query.c:3349 Jun 6 09:37:28 otp3 pgpool[2875]: [356-1] 2016-06-06 09:37:28: pid 2875: DEBUG: read_kind_from_backend max_count:2.000000 num_executed_nodes:2 Jun 6 09:37:28 otp3 pgpool[2875]: [356-2] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_process_query.c:3365 Jun 6 09:37:28 otp3 pgpool[2875]: [357-1] 2016-06-06 09:37:28: pid 2875: DEBUG: processing backend response Jun 6 09:37:28 otp3 pgpool[2875]: [357-2] 2016-06-06 09:37:28: pid 2875: DETAIL: received kind '2'(32) from backend Jun 6 09:37:28 otp3 pgpool[2875]: [357-3] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:28 otp3 pgpool[2875]: [358-1] 2016-06-06 09:37:28: pid 2875: DEBUG: called by pool_add_sent_message: sent message: address: 2406d18 kind: B name: == Jun 6 09:37:28 otp3 pgpool[2875]: [358-2] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_session_context.c:436 Jun 6 09:37:28 otp3 pgpool[2875]: [359-1] 2016-06-06 09:37:28: pid 2875: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:28 otp3 pgpool[2875]: [359-2] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_session_context.c:969 Jun 6 09:37:28 otp3 pgpool[2875]: [360-1] 2016-06-06 09:37:28: pid 2875: DEBUG: SimpleForwardToFrontend: packet:2 length:0 Jun 6 09:37:28 otp3 pgpool[2875]: [360-2] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_process_query.c:792 Jun 6 09:37:28 otp3 pgpool[2875]: [361-1] 2016-06-06 09:37:28: pid 2875: DEBUG: session context: setting command success. DONE Jun 6 09:37:28 otp3 pgpool[2875]: [361-2] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_session_context.c:741 Jun 6 09:37:28 otp3 pgpool[2875]: [362-1] 2016-06-06 09:37:28: pid 2875: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:28 otp3 pgpool[2875]: [362-2] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_session_context.c:219 Jun 6 09:37:28 otp3 pgpool[2875]: [363-1] 2016-06-06 09:37:28: pid 2875: DEBUG: processing frontend response Jun 6 09:37:28 otp3 pgpool[2875]: [363-2] 2016-06-06 09:37:28: pid 2875: DETAIL: received kind 'E'(45) from frontend Jun 6 09:37:28 otp3 pgpool[2875]: [363-3] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:28 otp3 pgpool[2875]: [364-1] 2016-06-06 09:37:28: pid 2875: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:28 otp3 pgpool[2875]: [364-2] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_session_context.c:280 Jun 6 09:37:28 otp3 pgpool[2875]: [365-1] 2016-06-06 09:37:28: pid 2875: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:28 otp3 pgpool[2875]: [365-2] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_session_context.c:269 Jun 6 09:37:28 otp3 pgpool[2875]: [366-1] 2016-06-06 09:37:28: pid 2875: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:28 otp3 pgpool[2875]: [366-2] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_session_context.c:208 Jun 6 09:37:28 otp3 pgpool[2875]: [367-1] 2016-06-06 09:37:28: pid 2875: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:37:28 otp3 pgpool[2875]: [367-2] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_query_context.c:854 Jun 6 09:37:28 otp3 pgpool[2875]: [368-1] 2016-06-06 09:37:28: pid 2875: DEBUG: pool_write: to backend: kind:E Jun 6 09:37:28 otp3 pgpool[2875]: [368-2] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_stream.c:431 Jun 6 09:37:28 otp3 pgpool[2875]: [369-1] 2016-06-06 09:37:28: pid 2875: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:28 otp3 pgpool[2875]: [369-2] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_stream.c:431 Jun 6 09:37:28 otp3 pgpool[2875]: [370-1] 2016-06-06 09:37:28: pid 2875: DEBUG: waiting for query response Jun 6 09:37:28 otp3 pgpool[2875]: [370-2] 2016-06-06 09:37:28: pid 2875: DETAIL: waiting for backend:0 to complete the query Jun 6 09:37:28 otp3 pgpool[2875]: [370-3] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_process_query.c:479 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: pool_read: read 5 bytes from backend 1 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_stream.c:190 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_session_context.c:969 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: reading backend data packet kind Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DETAIL: backend:0 of 2 kind = '2' Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_process_query.c:3349 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: reading backend data packet kind Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DETAIL: backend:1 of 2 kind = '2' Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_process_query.c:3349 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: read_kind_from_backend max_count:2.000000 num_executed_nodes:2 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_process_query.c:3365 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: processing backend response Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DETAIL: received kind '2'(32) from backend Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: called by pool_add_sent_message: sent message: address: 2406d18 kind: B name: == Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_session_context.c:436 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_session_context.c:969 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: SimpleForwardToFrontend: packet:2 length:0 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_process_query.c:792 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: session context: setting command success. DONE Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_session_context.c:741 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_session_context.c:219 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: processing frontend response Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DETAIL: received kind 'E'(45) from frontend Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_session_context.c:280 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_session_context.c:269 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_session_context.c:208 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: pool_send_and_wait: pool_set_sync_map: 0 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_query_context.c:854 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: pool_write: to backend: kind:E Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_stream.c:431 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_stream.c:431 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: waiting for query response Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DETAIL: waiting for backend:0 to complete the query Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_process_query.c:479 Jun 6 09:37:28 otp3 pgpool[2875]: [371-1] 2016-06-06 09:37:28: pid 2875: DEBUG: pool_read: read 9 bytes from backend 0 Jun 6 09:37:28 otp3 pgpool[2875]: [371-2] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_stream.c:190 Jun 6 09:37:28 otp3 pgpool[2875]: [372-1] 2016-06-06 09:37:28: pid 2875: DEBUG: detect error: kind: C Jun 6 09:37:28 otp3 pgpool[2875]: [372-2] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_process_query.c:4166 Jun 6 09:37:28 otp3 pgpool[2875]: [373-1] 2016-06-06 09:37:28: pid 2875: DEBUG: detect error: kind: C Jun 6 09:37:28 otp3 pgpool[2875]: [373-2] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_process_query.c:4166 Jun 6 09:37:28 otp3 pgpool[2875]: [374-1] 2016-06-06 09:37:28: pid 2875: DEBUG: detect error: kind: C Jun 6 09:37:28 otp3 pgpool[2875]: [374-2] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_process_query.c:4166 Jun 6 09:37:28 otp3 pgpool[2875]: [375-1] 2016-06-06 09:37:28: pid 2875: DEBUG: detect error: kind: C Jun 6 09:37:28 otp3 pgpool[2875]: [375-2] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_process_query.c:4166 Jun 6 09:37:28 otp3 pgpool[2875]: [376-1] 2016-06-06 09:37:28: pid 2875: DEBUG: pool_send_and_wait: pool_set_sync_map: 1 Jun 6 09:37:28 otp3 pgpool[2875]: [376-2] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_query_context.c:854 Jun 6 09:37:28 otp3 pgpool[2875]: [377-1] 2016-06-06 09:37:28: pid 2875: DEBUG: pool_write: to backend: kind:E Jun 6 09:37:28 otp3 pgpool[2875]: [377-2] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_stream.c:431 Jun 6 09:37:28 otp3 pgpool[2875]: [378-1] 2016-06-06 09:37:28: pid 2875: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:28 otp3 pgpool[2875]: [378-2] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_stream.c:431 Jun 6 09:37:28 otp3 pgpool[2875]: [379-1] 2016-06-06 09:37:28: pid 2875: DEBUG: waiting for query response Jun 6 09:37:28 otp3 pgpool[2875]: [379-2] 2016-06-06 09:37:28: pid 2875: DETAIL: waiting for backend:1 to complete the query Jun 6 09:37:28 otp3 pgpool[2875]: [379-3] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_process_query.c:479 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: pool_read: read 9 bytes from backend 0 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_stream.c:190 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: detect error: kind: C Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_process_query.c:4166 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: detect error: kind: C Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_process_query.c:4166 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: detect error: kind: C Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_process_query.c:4166 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: detect error: kind: C Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_process_query.c:4166 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: pool_send_and_wait: pool_set_sync_map: 1 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_query_context.c:854 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: pool_write: to backend: kind:E Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_stream.c:431 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: pool_write: to backend: kind:H Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_stream.c:431 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: waiting for query response Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DETAIL: waiting for backend:1 to complete the query Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_process_query.c:479 Jun 6 09:37:28 otp3 pgpool[2875]: [380-1] 2016-06-06 09:37:28: pid 2875: DEBUG: pool_read: read 9 bytes from backend 1 Jun 6 09:37:28 otp3 pgpool[2875]: [380-2] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_stream.c:190 Jun 6 09:37:28 otp3 pgpool[2875]: [381-1] 2016-06-06 09:37:28: pid 2875: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:28 otp3 pgpool[2875]: [381-2] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_session_context.c:969 Jun 6 09:37:28 otp3 pgpool[2875]: [382-1] 2016-06-06 09:37:28: pid 2875: DEBUG: reading backend data packet kind Jun 6 09:37:28 otp3 pgpool[2875]: [382-2] 2016-06-06 09:37:28: pid 2875: DETAIL: backend:0 of 2 kind = 'C' Jun 6 09:37:28 otp3 pgpool[2875]: [382-3] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_process_query.c:3349 Jun 6 09:37:28 otp3 pgpool[2875]: [383-1] 2016-06-06 09:37:28: pid 2875: DEBUG: reading backend data packet kind Jun 6 09:37:28 otp3 pgpool[2875]: [383-2] 2016-06-06 09:37:28: pid 2875: DETAIL: backend:1 of 2 kind = 'C' Jun 6 09:37:28 otp3 pgpool[2875]: [383-3] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_process_query.c:3349 Jun 6 09:37:28 otp3 pgpool[2875]: [384-1] 2016-06-06 09:37:28: pid 2875: DEBUG: read_kind_from_backend max_count:2.000000 num_executed_nodes:2 Jun 6 09:37:28 otp3 pgpool[2875]: [384-2] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_process_query.c:3365 Jun 6 09:37:28 otp3 pgpool[2875]: [385-1] 2016-06-06 09:37:28: pid 2875: DEBUG: processing backend response Jun 6 09:37:28 otp3 pgpool[2875]: [385-2] 2016-06-06 09:37:28: pid 2875: DETAIL: received kind 'C'(43) from backend Jun 6 09:37:28 otp3 pgpool[2875]: [385-3] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:28 otp3 pgpool[2875]: [386-1] 2016-06-06 09:37:28: pid 2875: DEBUG: session context: setting command success. DONE Jun 6 09:37:28 otp3 pgpool[2875]: [386-2] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_session_context.c:741 Jun 6 09:37:28 otp3 pgpool[2875]: [387-1] 2016-06-06 09:37:28: pid 2875: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:28 otp3 pgpool[2875]: [387-2] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_session_context.c:219 Jun 6 09:37:28 otp3 pgpool[2875]: [388-1] 2016-06-06 09:37:28: pid 2875: DEBUG: processing frontend response Jun 6 09:37:28 otp3 pgpool[2875]: [388-2] 2016-06-06 09:37:28: pid 2875: DETAIL: received kind 'S'(53) from frontend Jun 6 09:37:28 otp3 pgpool[2875]: [388-3] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:28 otp3 pgpool[2875]: [389-1] 2016-06-06 09:37:28: pid 2875: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:28 otp3 pgpool[2875]: [389-2] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_session_context.c:280 Jun 6 09:37:28 otp3 pgpool[2875]: [390-1] 2016-06-06 09:37:28: pid 2875: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:28 otp3 pgpool[2875]: [390-2] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_session_context.c:269 Jun 6 09:37:28 otp3 pgpool[2875]: [391-1] 2016-06-06 09:37:28: pid 2875: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:28 otp3 pgpool[2875]: [391-2] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_session_context.c:208 Jun 6 09:37:28 otp3 pgpool[2875]: [392-1] 2016-06-06 09:37:28: pid 2875: DEBUG: pool_write: to backend: kind:S Jun 6 09:37:28 otp3 pgpool[2875]: [392-2] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_stream.c:431 Jun 6 09:37:28 otp3 pgpool[2875]: [393-1] 2016-06-06 09:37:28: pid 2875: DEBUG: pool_write: to backend: kind:S Jun 6 09:37:28 otp3 pgpool[2875]: [393-2] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_stream.c:431 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: pool_read: read 9 bytes from backend 1 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_stream.c:190 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_session_context.c:969 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: reading backend data packet kind Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DETAIL: backend:0 of 2 kind = 'C' Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_process_query.c:3349 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: reading backend data packet kind Jun 6 09:37:28 otp3 pgpool[2875]: [394-1] 2016-06-06 09:37:28: pid 2875: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DETAIL: backend:1 of 2 kind = 'C' Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_process_query.c:3349 Jun 6 09:37:28 otp3 pgpool[2875]: [394-2] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_session_context.c:969 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: read_kind_from_backend max_count:2.000000 num_executed_nodes:2 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_process_query.c:3365 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: processing backend response Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DETAIL: received kind 'C'(43) from backend Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: session context: setting command success. DONE Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_session_context.c:741 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_session_context.c:219 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: processing frontend response Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DETAIL: received kind 'S'(53) from frontend Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_proto_modules.c:2188 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: session context: clearing doing extended query messaging. DONE Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_session_context.c:280 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: session context: setting doing extended query messaging. DONE Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_session_context.c:269 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: session context: setting query in progress. DONE Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_session_context.c:208 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: pool_write: to backend: kind:S Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_stream.c:431 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: pool_write: to backend: kind:S Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_stream.c:431 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_session_context.c:969 Jun 6 09:37:28 otp3 pgpool[2875]: [395-1] 2016-06-06 09:37:28: pid 2875: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:37:28 otp3 pgpool[2875]: [395-2] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_stream.c:190 Jun 6 09:37:28 otp3 pgpool[2875]: [396-1] 2016-06-06 09:37:28: pid 2875: DEBUG: reading backend data packet kind Jun 6 09:37:28 otp3 pgpool[2875]: [396-2] 2016-06-06 09:37:28: pid 2875: DETAIL: backend:0 of 2 kind = 'Z' Jun 6 09:37:28 otp3 pgpool[2875]: [396-3] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_process_query.c:3349 Jun 6 09:37:28 otp3 pgpool[2875]: [397-1] 2016-06-06 09:37:28: pid 2875: DEBUG: pool_read: read 6 bytes from backend 1 Jun 6 09:37:28 otp3 pgpool[2875]: [397-2] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_stream.c:190 Jun 6 09:37:28 otp3 pgpool[2875]: [398-1] 2016-06-06 09:37:28: pid 2875: DEBUG: reading backend data packet kind Jun 6 09:37:28 otp3 pgpool[2875]: [398-2] 2016-06-06 09:37:28: pid 2875: DETAIL: backend:1 of 2 kind = 'Z' Jun 6 09:37:28 otp3 pgpool[2875]: [398-3] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_process_query.c:3349 Jun 6 09:37:28 otp3 pgpool[2875]: [399-1] 2016-06-06 09:37:28: pid 2875: DEBUG: read_kind_from_backend max_count:2.000000 num_executed_nodes:2 Jun 6 09:37:28 otp3 pgpool[2875]: [399-2] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_process_query.c:3365 Jun 6 09:37:28 otp3 pgpool[2875]: [400-1] 2016-06-06 09:37:28: pid 2875: DEBUG: processing backend response Jun 6 09:37:28 otp3 pgpool[2875]: [400-2] 2016-06-06 09:37:28: pid 2875: DETAIL: received kind 'Z'(5a) from backend Jun 6 09:37:28 otp3 pgpool[2875]: [400-3] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:28 otp3 pgpool[2875]: [401-1] 2016-06-06 09:37:28: pid 2875: DEBUG: processing backend response Jun 6 09:37:28 otp3 pgpool[2875]: [401-2] 2016-06-06 09:37:28: pid 2875: DETAIL: Ready For Query received Jun 6 09:37:28 otp3 pgpool[2875]: [401-3] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_proto_modules.c:2442 Jun 6 09:37:28 otp3 pgpool[2875]: [402-1] 2016-06-06 09:37:28: pid 2875: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:37:28 otp3 pgpool[2875]: [402-2] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_session_context.c:310 Jun 6 09:37:28 otp3 pgpool[2875]: [403-1] 2016-06-06 09:37:28: pid 2875: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:28 otp3 pgpool[2875]: [403-2] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_session_context.c:969 Jun 6 09:37:28 otp3 pgpool[2875]: [404-1] 2016-06-06 09:37:28: pid 2875: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:28 otp3 pgpool[2875]: [404-2] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_session_context.c:969 Jun 6 09:37:28 otp3 pgpool[2875]: [405-1] 2016-06-06 09:37:28: pid 2875: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:28 otp3 pgpool[2875]: [405-2] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_session_context.c:969 Jun 6 09:37:28 otp3 pgpool[2875]: [406-1] 2016-06-06 09:37:28: pid 2875: DEBUG: reading message length Jun 6 09:37:28 otp3 pgpool[2875]: [406-2] 2016-06-06 09:37:28: pid 2875: DETAIL: slot: 0 length: 5 Jun 6 09:37:28 otp3 pgpool[2875]: [406-3] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_auth.c:1107 Jun 6 09:37:28 otp3 pgpool[2875]: [407-1] 2016-06-06 09:37:28: pid 2875: DEBUG: reading message length Jun 6 09:37:28 otp3 pgpool[2875]: [407-2] 2016-06-06 09:37:28: pid 2875: DETAIL: slot: 1 length: 5 Jun 6 09:37:28 otp3 pgpool[2875]: [407-3] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_auth.c:1126 Jun 6 09:37:28 otp3 pgpool[2875]: [408-1] 2016-06-06 09:37:28: pid 2875: DEBUG: processing ReadyForQuery Jun 6 09:37:28 otp3 pgpool[2875]: [408-2] 2016-06-06 09:37:28: pid 2875: DETAIL: transaction state 'I'(49) Jun 6 09:37:28 otp3 pgpool[2875]: [408-3] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_proto_modules.c:1612 Jun 6 09:37:28 otp3 pgpool[2875]: [409-1] 2016-06-06 09:37:28: pid 2875: DEBUG: processing ReadyForQuery Jun 6 09:37:28 otp3 pgpool[2875]: [409-2] 2016-06-06 09:37:28: pid 2875: DETAIL: transaction state 'I'(49) Jun 6 09:37:28 otp3 pgpool[2875]: [409-3] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_proto_modules.c:1612 Jun 6 09:37:28 otp3 pgpool[2875]: [410-1] 2016-06-06 09:37:28: pid 2875: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:28 otp3 pgpool[2875]: [410-2] 2016-06-06 09:37:28: pid 2875: LOCATION: pool_session_context.c:219 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: pool_read: read 6 bytes from backend 0 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_stream.c:190 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: reading backend data packet kind Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DETAIL: backend:0 of 2 kind = 'Z' Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_process_query.c:3349 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: pool_read: read 6 bytes from backend 1 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_stream.c:190 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: reading backend data packet kind Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DETAIL: backend:1 of 2 kind = 'Z' Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_process_query.c:3349 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: read_kind_from_backend max_count:2.000000 num_executed_nodes:2 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_process_query.c:3365 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: processing backend response Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DETAIL: received kind 'Z'(5a) from backend Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_proto_modules.c:2424 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: processing backend response Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DETAIL: Ready For Query received Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_proto_modules.c:2442 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: session context: clearing ignore till sync. DONE Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_session_context.c:310 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_session_context.c:969 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_session_context.c:969 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: pool_use_sync_map: we cannot use sync map because STREAM: 0 query in progress: 1 doing extended query: 1 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_session_context.c:969 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: reading message length Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DETAIL: slot: 0 length: 5 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_auth.c:1107 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: reading message length Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DETAIL: slot: 1 length: 5 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_auth.c:1126 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: processing ReadyForQuery Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DETAIL: transaction state 'I'(49) Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_proto_modules.c:1612 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: processing ReadyForQuery Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DETAIL: transaction state 'I'(49) Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_proto_modules.c:1612 Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: DEBUG: session context: unsetting query in progress. DONE Jun 6 09:37:28 otp3 pgpool: 2016-06-06 09:37:28: pid 2875: LOCATION: pool_session_context.c:219 |
|
|
Hi Sorry I didn't have a FreeBsd setup, so was not able to verify the problem earlier. Though I faced some issues with building the Pgpool-II on FreeBSD, but I never ran into any connection stuck issue even testing with a heavy load. I suspect the reason you are running into the connection stuck is because of the very low value you set for the num_init_children (num_init_children = 5 in your shared pgpool.conf), Since with this num_init_children config the Pgpool-II can only handle 5 client connections at a time and all subsequent connection requests get queued up and waits for the existing connection to close, and from the client point of view this may appear as the connection stuck. Can you verify if increasing the num_init_children solve the problem you are facing. |
| Date Modified | Username | Field | Change |
|---|---|---|---|
| 2016-05-30 23:04 | shanmu | New Issue | |
| 2016-06-03 11:28 | pengbo | Assigned To | => Muhammad Usama |
| 2016-06-03 11:28 | pengbo | Status | new => assigned |
| 2016-06-03 17:01 | Muhammad Usama | Note Added: 0000847 | |
| 2016-06-03 17:01 | Muhammad Usama | Status | assigned => feedback |
| 2016-06-05 22:05 | shanmu | Note Added: 0000849 | |
| 2016-06-05 22:05 | shanmu | Status | feedback => assigned |
| 2016-06-06 13:30 | shanmu | Note Added: 0000850 | |
| 2017-03-02 00:26 | Muhammad Usama | Note Added: 0001373 | |
| 2017-03-02 00:27 | Muhammad Usama | Status | assigned => feedback |
| 2017-08-29 09:34 | pengbo | Status | feedback => closed |