<?xml version="1.0" encoding="utf-8"?>
<feed xml:lang="en" xmlns="http://www.w3.org/2005/Atom"><title>Recent changes to support-requests</title><link href="https://sourceforge.net/p/postgres-xc/support-requests/" rel="alternate"/><link href="https://sourceforge.net/p/postgres-xc/support-requests/feed.atom" rel="self"/><id>https://sourceforge.net/p/postgres-xc/support-requests/</id><updated>2015-04-15T06:44:45.169000Z</updated><subtitle>Recent changes to support-requests</subtitle><entry><title>#7 Postgres-XC crashes with failed to find proc 0x7fb0cb34f7c0 in ProcArray and sorry, too many clients already</title><link href="https://sourceforge.net/p/postgres-xc/support-requests/7/?limit=25#158b" rel="alternate"/><published>2015-04-15T06:44:45.169000Z</published><updated>2015-04-15T06:44:45.169000Z</updated><author><name>Diancheng Wang</name><uri>https://sourceforge.net/u/dcwang/</uri></author><id>https://sourceforge.net302a4747942b613a8da8a1f606e348579d2a276f</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;attachment patch should fix this bug.&lt;/p&gt;&lt;/div&gt;</summary></entry><entry><title>#7 Postgres-XC crashes with failed to find proc 0x7fb0cb34f7c0 in ProcArray and sorry, too many clients already</title><link href="https://sourceforge.net/p/postgres-xc/support-requests/7/?limit=25#17e2" rel="alternate"/><published>2014-11-05T16:45:15.359000Z</published><updated>2014-11-05T16:45:15.359000Z</updated><author><name>yazun</name><uri>https://sourceforge.net/u/yazuna/</uri></author><id>https://sourceforge.net8a8b080ab3d534302640266014c370050bac1b26</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;Dear Koichi, &lt;/p&gt;
&lt;p&gt;I was hit by this bug too. Do you plan to apply the patch anytime soon?&lt;/p&gt;
&lt;p&gt;According to wikipedia, the licensing should not be an issue here as XL uses MPL version 2.0:&lt;/p&gt;
&lt;p&gt;&lt;a href="http://en.wikipedia.org/wiki/Mozilla_Public_License" rel="nofollow"&gt;http://en.wikipedia.org/wiki/Mozilla_Public_License&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;"In the absence of patents, MPL-licensed code can be freely used, altered, and redistributed. Versions with patented code can still be used, transferred, and even sold, but cannot be altered without special permission."&lt;/p&gt;
&lt;p&gt;happily, it's not patented and I would take word 'use' as permission to apply it as a patch elsewhere as it is constrained to the 'component'.&lt;/p&gt;
&lt;p&gt;But as usual with licensing it is confusing. Is there any chance to get a clear statement from XC and XL teams whether patches to already existing code in XC are moot if it comes to re-applying from MPL to BSD or there is chance for a mutual agreement to speed up development of both projects? &lt;/p&gt;
&lt;p&gt;Cheers,&lt;br /&gt;
Chris.&lt;/p&gt;&lt;/div&gt;</summary></entry><entry><title>Postgres-XC crashes with failed to find proc 0x7fb0cb34f7c0 in ProcArray and sorry, too many clients already</title><link href="https://sourceforge.net/p/postgres-xc/support-requests/7/" rel="alternate"/><published>2014-10-21T11:05:52.972000Z</published><updated>2014-10-21T11:05:52.972000Z</updated><author><name>Mladen Stefanov</name><uri>https://sourceforge.net/u/mlade77/</uri></author><id>https://sourceforge.net353abd7a01cce41b1e376d3f958c4112531b2ebe</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;I am really devastated. For the last week, week and half, I was trying to ran successfully almost all postgres-xc versions 1.1, 1.1.1, 1.2, 1.2.1...etc and the only one which runs without any problems was 1.0.4.&lt;br /&gt;
My setup is based on 4 AWS instances with Ubuntu 14.04 LTS on them.&lt;br /&gt;
2xData-Nodes 1xCordinator 1xGTM server. While I was strugling with it I tried many approaches like DL the code and compile it, install ubuntu package and so on.&lt;/p&gt;
&lt;p&gt;Here is my problem and steps I do.&lt;br /&gt;
1. DL the code from sourceforge.net&lt;br /&gt;
2. unpak and do ./configure, make and make install&lt;br /&gt;
3. Initdb on all related hosts:&lt;/p&gt;
&lt;p&gt;Cordinator&lt;br /&gt;
/usr/local/pgsql/bin/initdb -D /var/lib/postgres-xc/data --nodename cn1&lt;br /&gt;
DataNode1&lt;br /&gt;
/usr/local/pgsql/bin/initdb -D /var/lib/postgres-xc/data --nodename dn1&lt;br /&gt;
DataNode2&lt;br /&gt;
/usr/local/pgsql/bin/initdb -D /var/lib/postgres-xc/data --nodename dn2&lt;br /&gt;
GTM server&lt;br /&gt;
/usr/local/pgsql/bin/initgtm -Z gtm -D /var/lib/postgres-xc/data&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;Setting up the IP address of the GTM server on all nodes and start them with:&lt;br /&gt;
/usr/local/pgsql/bin/pg_ctl start -D /var/lib/postgres-xc/data -Z datanode -l /var/lib/postgres-xc/data/logfile&lt;br /&gt;
/usr/local/pgsql/bin/pg_ctl start -D /var/lib/postgres-xc/data -Z coordinator -l /var/lib/postgres-xc/data/logfile&lt;br /&gt;
/usr/local/pgsql/bin/gtm_ctl -Z gtm -D /var/lib/postgres-xc/data start&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Adding nodes into cordinator:&lt;br /&gt;
postgres=# CREATE NODE dn1 WITH (HOST = '172.30.0.14', type = 'datanode', PORT = 5432);&lt;br /&gt;
postgres=# CREATE NODE dn2 WITH (HOST = '172.30.0.15', type = 'datanode', PORT = 5432);&lt;br /&gt;
postgres=# SELECT pgxc_pool_reload();&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;When I issue "createdb -h 172.30.0.11(cordinatorIP) -Upostgres-xc pgbench" from 5th node, it creates the DB on all nodes. Then I populate the DB with "pgbench -h 172.30.0.11 -i -s 10 -Upostgres-xc pgbench" and when i try to run any tests the whole setup crashes with:&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;starting vacuum...end.&lt;/strong&gt;&lt;br /&gt;
&lt;strong&gt;starting vacuum pgbench_accounts...end.&lt;/strong&gt;&lt;br /&gt;
&lt;strong&gt;Client 0 aborted in state 13: ERROR:  failed to find GlobalTransaction for xid 10135&lt;/strong&gt;&lt;br /&gt;
&lt;strong&gt;WARNING:  unexpected EOF on datanode connection&lt;/strong&gt;&lt;br /&gt;
&lt;strong&gt;Client 1 aborted in state 13: ERROR:  sorry, too many clients already&lt;br /&gt;
transaction type: TPC-B (sort of)&lt;/strong&gt;&lt;br /&gt;
&lt;strong&gt;scaling factor: 10&lt;/strong&gt;&lt;br /&gt;
&lt;strong&gt;query mode: simple&lt;/strong&gt;&lt;br /&gt;
&lt;strong&gt;number of clients: 2&lt;/strong&gt;&lt;br /&gt;
&lt;strong&gt;number of threads: 2&lt;/strong&gt;&lt;br /&gt;
&lt;strong&gt;duration: 3600 s&lt;/strong&gt;&lt;br /&gt;
&lt;strong&gt;number of transactions actually processed: 126&lt;/strong&gt;&lt;br /&gt;
&lt;strong&gt;tps = 42.505160 (including connections establishing)&lt;/strong&gt;&lt;br /&gt;
&lt;strong&gt;tps = 42.612909 (excluding connections establishing)&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;On the coordinator node I am observing the folloging errors into log file:&lt;/p&gt;
&lt;p&gt;&lt;strong&gt; LOG:  failed to find proc 0x7fb0cb3f2480 in ProcArray&lt;/strong&gt;&lt;br /&gt;
&lt;strong&gt;STATEMENT:  drop table if exists pgbench_history&lt;/strong&gt;&lt;br /&gt;
&lt;strong&gt;LOG:  failed to find proc 0x7fb0cb3f2480 in ProcArray&lt;/strong&gt;&lt;br /&gt;
&lt;strong&gt;STATEMENT:  create table pgbench_history(tid int,bid int,aid    int,delta int,mtime timestamp,filler char(22))&lt;/strong&gt;&lt;br /&gt;
&lt;strong&gt;LOG:  failed to find proc 0x7fb0cb3f2480 in ProcArray&lt;/strong&gt;&lt;br /&gt;
&lt;strong&gt;STATEMENT:  drop table if exists pgbench_tellers&lt;/strong&gt;&lt;br /&gt;
&lt;strong&gt;LOG:  failed to find proc 0x7fb0cb3f2480 in ProcArray&lt;/strong&gt;&lt;br /&gt;
&lt;strong&gt;STATEMENT:  create table pgbench_tellers(tid int not null,bid int,tbalance int,filler char(84)) with (fillfactor=100)&lt;/strong&gt;&lt;br /&gt;
&lt;strong&gt;LOG:  failed to find proc 0x7fb0cb3f2480 in ProcArray&lt;/strong&gt;&lt;br /&gt;
&lt;strong&gt;STATEMENT:  drop table if exists pgbench_accounts&lt;/strong&gt;&lt;br /&gt;
&lt;strong&gt;LOG:  failed to find proc 0x7fb0cb3f2480 in ProcArray&lt;/strong&gt;&lt;br /&gt;
&lt;strong&gt;STATEMENT:  create table pgbench_accounts(aid    int not null,bid int,abalance int,filler char(84)) with (fillfactor=100)&lt;/strong&gt;&lt;br /&gt;
&lt;strong&gt;LOG:  failed to find proc 0x7fb0cb3f2480 in ProcArray&lt;/strong&gt;&lt;br /&gt;
&lt;strong&gt;STATEMENT:  drop table if exists pgbench_branches&lt;/strong&gt;&lt;br /&gt;
&lt;strong&gt;LOG:  failed to find proc 0x7fb0cb3f2480 in ProcArray&lt;/strong&gt;&lt;br /&gt;
&lt;strong&gt;STATEMENT:  create table pgbench_branches(bid int not null,bbalance int,filler char(88)) with (fillfactor=100)&lt;/strong&gt;&lt;br /&gt;
&lt;strong&gt;LOG:  failed to find proc 0x7fb0cb3f2480 in ProcArray&lt;br /&gt;
STATEMENT:  commit&lt;/strong&gt;&lt;br /&gt;
&lt;strong&gt;LOG:  failed to find proc 0x7fb0cb3f2480 in ProcArray&lt;/strong&gt;&lt;br /&gt;
&lt;strong&gt;STATEMENT:  alter table pgbench_branches add primary key (bid)&lt;/strong&gt;&lt;br /&gt;
&lt;strong&gt;LOG:  failed to find proc 0x7fb0cb3f2480 in ProcArray&lt;/strong&gt;&lt;br /&gt;
&lt;strong&gt;STATEMENT:  alter table pgbench_tellers add primary key (tid)&lt;/strong&gt;&lt;br /&gt;
&lt;strong&gt;LOG:  failed to find proc 0x7fb0cb3f2480 in ProcArray&lt;/strong&gt;&lt;br /&gt;
&lt;strong&gt;STATEMENT:  alter table pgbench_accounts add primary key (aid)&lt;/strong&gt;&lt;br /&gt;
&lt;strong&gt;LOG:  failed to find proc 0x7fb0cb3f2480 in ProcArray&lt;/strong&gt;&lt;br /&gt;
&lt;strong&gt;STATEMENT:  truncate pgbench_history&lt;/strong&gt;&lt;br /&gt;
&lt;strong&gt;ERROR:  failed to find GlobalTransaction for xid 11378&lt;/strong&gt;&lt;br /&gt;
&lt;strong&gt;STATEMENT:  END;&lt;/strong&gt;&lt;br /&gt;
&lt;strong&gt;WARNING:  unexpected EOF on datanode connection&lt;/strong&gt;&lt;br /&gt;
&lt;strong&gt;ERROR:  sorry, too many clients already&lt;/strong&gt;&lt;br /&gt;
&lt;strong&gt;STATEMENT:  END;&lt;/strong&gt;&lt;br /&gt;
&lt;strong&gt;WARNING:  unexpected EOF on datanode connection&lt;br /&gt;
&lt;/strong&gt;LOG:  Failed to ABORT at node 16384&lt;strong&gt;&lt;br /&gt;
&lt;/strong&gt;        Detail: unexpected EOF on datanode connection&lt;strong&gt;&lt;br /&gt;
&lt;/strong&gt;LOG:  Failed to ABORT an implicitly PREPARED transaction status - 7&lt;strong&gt;&lt;br /&gt;
&lt;/strong&gt;LOG:  could not send data to client: Broken pipe&lt;strong&gt;&lt;br /&gt;
&lt;/strong&gt;FATAL:  connection to client lost&lt;strong&gt;&lt;br /&gt;
&lt;/strong&gt;LOG:  failed to find proc 0x7fb0cb34f7c0 in ProcArray&lt;strong&gt;&lt;br /&gt;
&lt;/strong&gt;LOG:  failed to find proc 0x7fb0cb34f7c0 in ProcArray&lt;strong&gt;&lt;br /&gt;
&lt;/strong&gt;LOG:  failed to find proc 0x7fb0cb34f7c0 in ProcArray&lt;strong&gt;&lt;br /&gt;
&lt;/strong&gt;LOG:  failed to find proc 0x7fb0cb34f7c0 in ProcArray&lt;strong&gt;&lt;br /&gt;
&lt;/strong&gt;LOG:  failed to find proc 0x7fb0cb34f7c0 in ProcArray**&lt;/p&gt;
&lt;p&gt;On the data-nodes:&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;LOG:  failed to find proc 0x7f379dee4a00 in ProcArray&lt;/strong&gt;&lt;br /&gt;
&lt;strong&gt;LOG:  failed to find proc 0x7f379dee4a00 in ProcArray&lt;/strong&gt;&lt;br /&gt;
&lt;strong&gt;LOG:  failed to find proc 0x7f379dee4a00 in ProcArray&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;and some of the transactons are still uncommited on some of the nodes and if I want to connect to other node ot throws the error &lt;strong&gt;"psql: FATAL:  sorry, too many clients already"&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Please any ideas, clue help....etc.&lt;/p&gt;
&lt;p&gt;Thanks&lt;/p&gt;&lt;/div&gt;</summary></entry><entry><title>#6 Problems using Hibernate Hbm2DDLExporter</title><link href="https://sourceforge.net/p/postgres-xc/support-requests/6/?limit=25#d1d7" rel="alternate"/><published>2014-09-19T11:50:02.734000Z</published><updated>2014-09-19T11:50:02.734000Z</updated><author><name>GreatSUN</name><uri>https://sourceforge.net/u/greatsun2009/</uri></author><id>https://sourceforge.net0ef4c4c04d950d8df7992136c4bdd1428bb26b57</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;Thanks for your support. Everything seems to be working properly now.&lt;/p&gt;&lt;/div&gt;</summary></entry><entry><title>#6 Problems using Hibernate Hbm2DDLExporter</title><link href="https://sourceforge.net/p/postgres-xc/support-requests/6/?limit=25#e158" rel="alternate"/><published>2014-09-18T09:08:07.734000Z</published><updated>2014-09-18T09:08:07.734000Z</updated><author><name>GreatSUN</name><uri>https://sourceforge.net/u/greatsun2009/</uri></author><id>https://sourceforge.net0f3b7ac0d4801ecec229d1599c2b251327010567</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;Still one problem left now...&lt;/p&gt;
&lt;p&gt;Table is created via:&lt;/p&gt;
&lt;p&gt;CREATE TABLE qrtz_triggers (&lt;br /&gt;
    trigger_name character varying(200) NOT NULL,&lt;br /&gt;
    trigger_group character varying(200) NOT NULL,&lt;br /&gt;
    job_name character varying(200) NOT NULL,&lt;br /&gt;
    job_group character varying(200) NOT NULL,&lt;br /&gt;
    is_volatile boolean NOT NULL,&lt;br /&gt;
    description character varying(250),&lt;br /&gt;
    next_fire_time bigint,&lt;br /&gt;
    prev_fire_time bigint,&lt;br /&gt;
    trigger_state character varying(16) NOT NULL,&lt;br /&gt;
    trigger_type character varying(8) NOT NULL,&lt;br /&gt;
    start_time bigint NOT NULL,&lt;br /&gt;
    end_time bigint,&lt;br /&gt;
    calendar_name character varying(200),&lt;br /&gt;
    misfire_instr integer,&lt;br /&gt;
    job_data bytea,&lt;br /&gt;
    priority integer&lt;br /&gt;
)&lt;br /&gt;
DISTRIBUTE BY REPLICATION;&lt;br /&gt;
ALTER TABLE ONLY qrtz_triggers&lt;br /&gt;
    ADD CONSTRAINT qrtz_triggers_pkey PRIMARY KEY (trigger_name, trigger_group);&lt;/p&gt;
&lt;p&gt;Command that fails:&lt;br /&gt;
ALTER TABLE ONLY qrtz_triggers&lt;br /&gt;
    ADD CONSTRAINT eam_fk_qt_qjd FOREIGN KEY (job_name, job_group) REFERENCES qrtz_job_details(job_name, job_group) ON DELETE CASCADE;&lt;/p&gt;
&lt;p&gt;Errormessage:&lt;br /&gt;
ERROR:  Cannot create foreign key whose evaluation cannot be enforced to remote nodes&lt;/p&gt;
&lt;p&gt;Can you tell me how I can fix this perhaps?&lt;/p&gt;&lt;/div&gt;</summary></entry><entry><title>#6 Problems using Hibernate Hbm2DDLExporter</title><link href="https://sourceforge.net/p/postgres-xc/support-requests/6/?limit=25#9fdd" rel="alternate"/><published>2014-09-18T06:13:10.346000Z</published><updated>2014-09-18T06:13:10.346000Z</updated><author><name>GreatSUN</name><uri>https://sourceforge.net/u/greatsun2009/</uri></author><id>https://sourceforge.net57fb22c911b103445fbc5e1fd20c6aa46bbf7633</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;I am using the binary enterprise version of it. Problem occurs when creating tables:&lt;/p&gt;
&lt;p&gt;hq=&amp;gt; create table EAM_AGENT (&lt;br /&gt;
hq(&amp;gt; ID int4 not null,&lt;br /&gt;
hq(&amp;gt; VERSION_COL int8 default 0 not null,&lt;br /&gt;
hq(&amp;gt; ADDRESS varchar(255) not null,&lt;br /&gt;
hq(&amp;gt; PORT int4 not null,&lt;br /&gt;
hq(&amp;gt; AUTHTOKEN varchar(100) not null,&lt;br /&gt;
hq(&amp;gt; AGENTTOKEN varchar(100) not null unique,&lt;br /&gt;
hq(&amp;gt; VERSION varchar(50),&lt;br /&gt;
hq(&amp;gt; CTIME int8,&lt;br /&gt;
hq(&amp;gt; MTIME int8,&lt;br /&gt;
hq(&amp;gt; UNIDIRECTIONAL bool not null,&lt;br /&gt;
hq(&amp;gt; PLUGIN_INVENTORY_CHECKSUM varchar(128),&lt;br /&gt;
hq(&amp;gt; LAST_PLUGIN_INVENTORY_CHECKIN int8 default 0 not null,&lt;br /&gt;
hq(&amp;gt; AGENT_TYPE_ID int4,&lt;br /&gt;
hq(&amp;gt; primary key (ID)&lt;br /&gt;
hq(&amp;gt; );&lt;/p&gt;
&lt;p&gt;ERROR: Unique index of partitioned table must contain the hash/modulo distribution column.&lt;/p&gt;
&lt;p&gt;which can be fixed by adding DISTRIBUTE BY REPLICATION to the end of the query.&lt;/p&gt;
&lt;p&gt;The problem I have is that I am not able to add it, cause I don't know how I could do that (hence this stuff is done by hypernate).&lt;/p&gt;
&lt;p&gt;Can you help me there?&lt;/p&gt;&lt;/div&gt;</summary></entry><entry><title>Problems using Hibernate Hbm2DDLExporter</title><link href="https://sourceforge.net/p/postgres-xc/support-requests/6/" rel="alternate"/><published>2014-09-17T13:32:27.582000Z</published><updated>2014-09-17T13:32:27.582000Z</updated><author><name>GreatSUN</name><uri>https://sourceforge.net/u/greatsun2009/</uri></author><id>https://sourceforge.net0a608ff0f2a29568e3a23edbc3d9896e073434ee</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;Hi all,&lt;/p&gt;
&lt;p&gt;When trying to install hyperic server which supports PostgreSQL 9.1.x I get an error message stating that the database might not be supported.&lt;br /&gt;
Do you have an idea how to fix this possibly?&lt;/p&gt;
&lt;p&gt;Errormsg: hyperic-hqee-installer-5.8.2/installer/data/setup-db-hibernate.xml:102: org.hibernate.tool.hbm2x.ExporterException: Errors while performing Hbm2DDLExporter&lt;/p&gt;
&lt;p&gt;Thanks in advance for your help!&lt;/p&gt;&lt;/div&gt;</summary></entry><entry><title>v1.2 ERROR:  Cannot create index whose evaluation cannot be enforced to remote nodes</title><link href="https://sourceforge.net/p/postgres-xc/support-requests/5/" rel="alternate"/><published>2014-06-27T20:50:08.676000Z</published><updated>2014-06-27T20:50:08.676000Z</updated><author><name>Mike</name><uri>https://sourceforge.net/u/swampfoxmr/</uri></author><id>https://sourceforge.net7dd34ddc872a933df2e1684a0ba69f9d2b04655a</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;Create index for table cddos generates error message (I have no idea what it means or where to look for meaning). The only thing I can think of is that there are more fields in the index than in the key?&lt;/p&gt;
&lt;p&gt;Index create:&lt;br /&gt;
CREATE UNIQUE INDEX cidos1 ON cddos USING btree (cunges, ndomat, netima);&lt;/p&gt;
&lt;p&gt;Table definition:&lt;br /&gt;
 CREATE TABLE cddos (&lt;br /&gt;
 ndomat numeric(7,0) NOT NULL,&lt;br /&gt;
 netima numeric(1,0) NOT NULL,&lt;br /&gt;
 ndopfe character(15) NOT NULL,&lt;br /&gt;
 clcndo character(1) NOT NULL,&lt;br /&gt;
 didaff numeric(9,0) NOT NULL,&lt;br /&gt;
 dlvcpr numeric(9,0) NOT NULL,&lt;br /&gt;
 ciuges character(2) NOT NULL,&lt;br /&gt;
 d1odpl numeric(9,0) NOT NULL,&lt;br /&gt;
 csesoc character(4) NOT NULL,&lt;br /&gt;
 capres character(2) NOT NULL,&lt;br /&gt;
 dmcdos numeric(9,0) NOT NULL,&lt;br /&gt;
 cstacp character(1) NOT NULL,&lt;br /&gt;
 cunges character(7) NOT NULL,&lt;br /&gt;
 cmetra character(1) NOT NULL,&lt;br /&gt;
 danars numeric(9,0) NOT NULL,&lt;br /&gt;
 ddecra numeric(9,0) NOT NULL,&lt;br /&gt;
 dnotpa numeric(9,0) NOT NULL,&lt;br /&gt;
 ddecal numeric(9,0) NOT NULL,&lt;br /&gt;
 dmocgm numeric(9,0) NOT NULL,&lt;br /&gt;
 dapres numeric(9,0) NOT NULL,&lt;br /&gt;
 dreres numeric(9,0) NOT NULL,&lt;br /&gt;
 dmajdo numeric(9,0) NOT NULL,&lt;br /&gt;
 dndpot numeric(9,0) NOT NULL,&lt;br /&gt;
 confid character(4) NOT NULL,&lt;br /&gt;
 coeffk character(1) NOT NULL,&lt;br /&gt;
 corgim character(3) NOT NULL,&lt;br /&gt;
 confor character(1) NOT NULL,&lt;br /&gt;
 doheix numeric(9,0) NOT NULL,&lt;br /&gt;
 ctimco character(2) NOT NULL,&lt;br /&gt;
 depaje numeric(9,0) NOT NULL,&lt;br /&gt;
 daplma numeric(9,0) NOT NULL,&lt;br /&gt;
 dbarsa numeric(9,0) NOT NULL,&lt;br /&gt;
 ctybas character(1) NOT NULL,&lt;br /&gt;
 dmjdcp numeric(9,0) NOT NULL,&lt;br /&gt;
 hmjdcp numeric(7,0) NOT NULL,&lt;br /&gt;
 CONSTRAINT cidos0 PRIMARY KEY (ndomat, netima)&lt;br /&gt;
 )&lt;br /&gt;
 DISTRIBUTE BY HASH (ndomat);&lt;/p&gt;
&lt;p&gt;psql:run_alter.txt:1: ERROR:  Cannot create index whose evaluation cannot be enforced to remote nodes&lt;/p&gt;&lt;/div&gt;</summary></entry><entry><title>How to Define and Load large databases with lots of tables</title><link href="https://sourceforge.net/p/postgres-xc/support-requests/4/" rel="alternate"/><published>2014-06-24T12:50:48.558000Z</published><updated>2014-06-24T12:50:48.558000Z</updated><author><name>Mike</name><uri>https://sourceforge.net/u/swampfoxmr/</uri></author><id>https://sourceforge.netdc80aa19fb6afa204ac6d491c7f8a90158d5d1a7</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;I have worked to create a large environment and have encountered numerous problems. I used v1.2 as it showed to be released. It drops connections all of the time and complains about missing tuples though it seems to have loaded the correct number of records in the tables. I loaded the tables from csv files an got lots of the following messages:&lt;br /&gt;
LOG:  failed to find proc 0x7f6a7f638f20 in ProcArray&lt;br /&gt;
WARNING:  pgstat wait timeout&lt;/p&gt;
&lt;p&gt;There are 491 tables defined in this environment and 347 have data loaded for the application under test. There is about 30GB of data all together. On a number of occasions during the define of the tables and the load I received the following messages:&lt;br /&gt;
WARNING:  unexpected EOF on datanode connection&lt;br /&gt;
WARNING:  unexpected EOF on datanode connection&lt;br /&gt;
ERROR:  sorry, too many clients already&lt;br /&gt;
ERROR:  Failed to get pooled connections&lt;/p&gt;
&lt;p&gt;Can anyone provide insight into this?&lt;/p&gt;&lt;/div&gt;</summary></entry><entry><title>Best release to test postgres-xc</title><link href="https://sourceforge.net/p/postgres-xc/support-requests/3/" rel="alternate"/><published>2014-05-23T08:53:28.210000Z</published><updated>2014-05-23T08:53:28.210000Z</updated><author><name>crwm74b4x</name><uri>https://sourceforge.net/u/crwm74b4x/</uri></author><id>https://sourceforge.net088b811b15d278931b9e1f7f3dd2ed393ad57c88</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;I'd like to test postgres-xc.&lt;br /&gt;
I noticed that all the release are in parallel development.&lt;br /&gt;
What are the differences between release 1.0.x, 1.1.x and 1.2.x?&lt;br /&gt;
To test the platform, which one is the best?&lt;/p&gt;
&lt;p&gt;Thank you. &lt;/p&gt;&lt;/div&gt;</summary></entry></feed>