You can subscribe to this list here.
2010 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(2) |
Jun
|
Jul
|
Aug
(6) |
Sep
|
Oct
(19) |
Nov
(1) |
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2011 |
Jan
(12) |
Feb
(1) |
Mar
(4) |
Apr
(4) |
May
(32) |
Jun
(12) |
Jul
(11) |
Aug
(1) |
Sep
(6) |
Oct
(3) |
Nov
|
Dec
(10) |
2012 |
Jan
(11) |
Feb
(1) |
Mar
(3) |
Apr
(25) |
May
(53) |
Jun
(38) |
Jul
(103) |
Aug
(54) |
Sep
(31) |
Oct
(66) |
Nov
(77) |
Dec
(20) |
2013 |
Jan
(91) |
Feb
(86) |
Mar
(103) |
Apr
(107) |
May
(25) |
Jun
(37) |
Jul
(17) |
Aug
(59) |
Sep
(38) |
Oct
(78) |
Nov
(29) |
Dec
(15) |
2014 |
Jan
(23) |
Feb
(82) |
Mar
(118) |
Apr
(101) |
May
(103) |
Jun
(45) |
Jul
(6) |
Aug
(10) |
Sep
|
Oct
(32) |
Nov
|
Dec
(9) |
2015 |
Jan
(3) |
Feb
(5) |
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
(9) |
Aug
(4) |
Sep
(3) |
Oct
|
Nov
|
Dec
|
2016 |
Jan
(3) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2017 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(3) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2018 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(4) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Koichi S. <koi...@gm...> - 2011-01-05 15:15:26
|
Hi, Using local pg_dump will consume local XID, which may affect the following cluster operation. You may have to give GTM safe GXID value to begin with. It will be safer to simply copy $PGDATA, which will not consume any local XID. Regards; ---------- Koichi Suzuki 2011/1/5 Marcin Krol <mr...@gm...>: > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > > Thanks a lot for reply, Suzuki! > > I presume that at the moment to recover (fail-back?) a node a following > course of action would also be effective: > > 1. stop the cluster > > 2. dump the coordinator and datanode dbs, e.g. using pg_dump > > 3. send the dumps to the node being recovered and recreate coord and > datanode using the dumps? > > > Regards, > Marcin Krol > > > Koichi Suzuki wrote: >> Hi, >> >> So far, we can use PITR for individual datanode. Unfortunately, >> we've not released any utility to set it up. >> >> Now we're working to add mirroring capability of datanodes, which >> allow whole cluster continue to run and maintain cluster integrity >> even when some mirror fails with disk failure. In this case, mirror >> can be failed back by stopping whole cluster, copying files from >> another surviving mirrors and restart the cluster. >> >> In the case of coordinator, because all the coordinators are >> essentially clones, we can continue to run the cluster without the >> failed coordinator. To fail-back the coordinator, we can copy whole >> database from another coordinator while the cluster is shut down and >> restart whole cluster. >> >> When a coordinator is failed and is involved in outstanding 2PC, we >> need to clear it up to prevent them to appear in snapshots for a long >> time. We're now implemeting this capability. >> >> Ideally, it's so nice to have each component failed back without >> stopping cluster operation. This will be a challenge of this year. >> >> Regards; >> ---------- >> Koichi Suzuki >> >> >> >> 2011/1/5 Marcin Krol <mr...@gm...>: >> Hello everyone, >> >> Suppose a node falls out of a cluster: say, it had a disk failure. >> >> After getting that node back online, how can I resync that node with a >> cluster so cluster integrity is preserved? >> >> >>> > - > ------------------------------------------------------------------------------ > Learn how Oracle Real Application Clusters (RAC) One Node allows customers > to consolidate database storage, standardize their database environment, > and, > should the need arise, upgrade to a full multi-node Oracle RAC database > without downtime or disruption > http://p.sf.net/sfu/oracle-sfdevnl > _______________________________________________ > Postgres-xc-general mailing list > Pos...@li... > https://lists.sourceforge.net/lists/listinfo/postgres-xc-general >>> > > - -- > > Regards, > mk > > - -- > Premature optimization is the root of all fun. > -----BEGIN PGP SIGNATURE----- > Version: GnuPG v1.4.9 (MingW32) > Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/ > > iQEcBAEBAgAGBQJNJGOTAAoJEFMgHzhQQ7hOnJwH/2GteBKvhHUIEaAa1TUsKY7M > zasEpQihvnE63OZYldFJDCo2v+NBKPCfiOgx1eOFjtocxZPNfFaM5S8a2zDTdAKz > ut8LVg0+SiCEaN5ryJqUhakFf/3gW8w8UCjoSxxf8DIYHQvpvMk3pLJrIQs6jbF6 > /GpHOZNznpZN4Syk70PyvCcdQ3u1RuAkthgc80jJjydRaWn9iibyuDe8uQSqZwf1 > PsK+5/bibEUVYf0zcQ8lyxsSC48hU6bN9ha5UAlKGvrYdx1rdJPoRlgzjTVEfexo > ff4jvyJNoG2F7GeGrcVhyZEz7S17Krt0EjJxMEPWxNa6D2nmPyr8hK2zcJOtfIo= > =nPj6 > -----END PGP SIGNATURE----- > > ------------------------------------------------------------------------------ > Learn how Oracle Real Application Clusters (RAC) One Node allows customers > to consolidate database storage, standardize their database environment, and, > should the need arise, upgrade to a full multi-node Oracle RAC database > without downtime or disruption > http://p.sf.net/sfu/oracle-sfdevnl > _______________________________________________ > Postgres-xc-general mailing list > Pos...@li... > https://lists.sourceforge.net/lists/listinfo/postgres-xc-general > |
From: Marcin K. <mr...@gm...> - 2011-01-05 12:27:11
|
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Thanks a lot for reply, Suzuki! I presume that at the moment to recover (fail-back?) a node a following course of action would also be effective: 1. stop the cluster 2. dump the coordinator and datanode dbs, e.g. using pg_dump 3. send the dumps to the node being recovered and recreate coord and datanode using the dumps? Regards, Marcin Krol Koichi Suzuki wrote: > Hi, > > So far, we can use PITR for individual datanode. Unfortunately, > we've not released any utility to set it up. > > Now we're working to add mirroring capability of datanodes, which > allow whole cluster continue to run and maintain cluster integrity > even when some mirror fails with disk failure. In this case, mirror > can be failed back by stopping whole cluster, copying files from > another surviving mirrors and restart the cluster. > > In the case of coordinator, because all the coordinators are > essentially clones, we can continue to run the cluster without the > failed coordinator. To fail-back the coordinator, we can copy whole > database from another coordinator while the cluster is shut down and > restart whole cluster. > > When a coordinator is failed and is involved in outstanding 2PC, we > need to clear it up to prevent them to appear in snapshots for a long > time. We're now implemeting this capability. > > Ideally, it's so nice to have each component failed back without > stopping cluster operation. This will be a challenge of this year. > > Regards; > ---------- > Koichi Suzuki > > > > 2011/1/5 Marcin Krol <mr...@gm...>: > Hello everyone, > > Suppose a node falls out of a cluster: say, it had a disk failure. > > After getting that node back online, how can I resync that node with a > cluster so cluster integrity is preserved? > > >> - ------------------------------------------------------------------------------ Learn how Oracle Real Application Clusters (RAC) One Node allows customers to consolidate database storage, standardize their database environment, and, should the need arise, upgrade to a full multi-node Oracle RAC database without downtime or disruption http://p.sf.net/sfu/oracle-sfdevnl _______________________________________________ Postgres-xc-general mailing list Pos...@li... https://lists.sourceforge.net/lists/listinfo/postgres-xc-general >> - -- Regards, mk - -- Premature optimization is the root of all fun. -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (MingW32) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/ iQEcBAEBAgAGBQJNJGOTAAoJEFMgHzhQQ7hOnJwH/2GteBKvhHUIEaAa1TUsKY7M zasEpQihvnE63OZYldFJDCo2v+NBKPCfiOgx1eOFjtocxZPNfFaM5S8a2zDTdAKz ut8LVg0+SiCEaN5ryJqUhakFf/3gW8w8UCjoSxxf8DIYHQvpvMk3pLJrIQs6jbF6 /GpHOZNznpZN4Syk70PyvCcdQ3u1RuAkthgc80jJjydRaWn9iibyuDe8uQSqZwf1 PsK+5/bibEUVYf0zcQ8lyxsSC48hU6bN9ha5UAlKGvrYdx1rdJPoRlgzjTVEfexo ff4jvyJNoG2F7GeGrcVhyZEz7S17Krt0EjJxMEPWxNa6D2nmPyr8hK2zcJOtfIo= =nPj6 -----END PGP SIGNATURE----- |
From: Koichi S. <koi...@gm...> - 2011-01-05 02:01:04
|
Hi, So far, we can use PITR for individual datanode. Unfortunately, we've not released any utility to set it up. Now we're working to add mirroring capability of datanodes, which allow whole cluster continue to run and maintain cluster integrity even when some mirror fails with disk failure. In this case, mirror can be failed back by stopping whole cluster, copying files from another surviving mirrors and restart the cluster. In the case of coordinator, because all the coordinators are essentially clones, we can continue to run the cluster without the failed coordinator. To fail-back the coordinator, we can copy whole database from another coordinator while the cluster is shut down and restart whole cluster. When a coordinator is failed and is involved in outstanding 2PC, we need to clear it up to prevent them to appear in snapshots for a long time. We're now implemeting this capability. Ideally, it's so nice to have each component failed back without stopping cluster operation. This will be a challenge of this year. Regards; ---------- Koichi Suzuki 2011/1/5 Marcin Krol <mr...@gm...>: > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > Hello everyone, > > Suppose a node falls out of a cluster: say, it had a disk failure. > > After getting that node back online, how can I resync that node with a > cluster so cluster integrity is preserved? > > > - -- > > Regards, > mk > > - -- > Premature optimization is the root of all fun. > -----BEGIN PGP SIGNATURE----- > Version: GnuPG v1.4.9 (MingW32) > Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/ > > iQEcBAEBAgAGBQJNI38tAAoJEFMgHzhQQ7hOD60H/R9DhEfSU//+v/ab+N/MJ/oB > ksbbWowklFo71iLonW/P9ZmeRD6NROX3a/gYNmBetQ7KUp2fAmyb35ijJNmwL7mA > FTC9fpVD1Vv3DL1jWWo/7EyYA/mdcHsPhHGgKe4/s6mvESOU8dR0bFep1FDYFYuK > 1DCsvB+l++Yu1HLJlbzJzmeS8E7f+pjPDzWyt8fPZ8StROc5lHq393c75gg2MKx7 > 03ylfxAqW6JIKbrqNwSsk7B5AoQ+tJETxbAzSaK5FoZ63fXcAtGFfOTQbSJ8pyyt > HXfGziR0qgwjbhLGMLV+O56Dhj5lKT/UB8lrEljAJQUfPH4mpva/b2u84IkVQ98= > =3wVa > -----END PGP SIGNATURE----- > > ------------------------------------------------------------------------------ > Learn how Oracle Real Application Clusters (RAC) One Node allows customers > to consolidate database storage, standardize their database environment, and, > should the need arise, upgrade to a full multi-node Oracle RAC database > without downtime or disruption > http://p.sf.net/sfu/oracle-sfdevnl > _______________________________________________ > Postgres-xc-general mailing list > Pos...@li... > https://lists.sourceforge.net/lists/listinfo/postgres-xc-general > |
From: Michael P. <mic...@gm...> - 2011-01-05 01:44:32
|
For the answers to your questions... please see inline. About CREATE DATABASE, there is since version 0.9.3 all he necessary mechanisms to synchronize automatically Coordinators (well, DDL...) through the whole cluster. So it is not necessary to resynchronize the catalog files of Coordinators manually. If you are getting snapshots warning when creating a Database, you may have configuration problems. You should double check your configuration files. > I have NOT set up GTM proxy. Do I have to do that? Is it related to my problem? It is not necessary to set up a GTM Proxy to have your cluster working correctly. > Ok, but is the code in git repo stable enough for production use? Code is not stable enough to be used in production, we are currently working a lot on the code stabilization, SQL support and HA features. -- Michael Paquier http://michaelpq.users.sourceforge.net |
From: Michael P. <mic...@gm...> - 2011-01-04 21:39:53
|
Hi Martin, Well I checked this command: git clone git:// postgres-xc.git.sourceforge.net/gitroot/postgres-xc/postgres-xc and it worked well. I also checked if server was online. It looks OK. ping 216.34.181.91 PING 216.34.181.91 (216.34.181.91) 56(84) bytes of data. 64 bytes from 216.34.181.91: icmp_seq=1 ttl=240 time=187 ms 64 bytes from 216.34.181.91: icmp_seq=2 ttl=240 time=189 ms 64 bytes from 216.34.181.91: icmp_seq=3 ttl=240 time=188 ms Perhaps sf servers were not online at the moment you tried to upload the code, or perhaps you have firewall restrictions. Can you ping source forge server correctly? Regards, Michael On Wed, Jan 5, 2011 at 5:27 AM, Marcin Krol <mr...@gm...> wrote: > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > Hello everyone, > > I can't even check out postgres-xc from sf: > > % git clone git://postgres-xc.git.sourceforge.net/postgres-xc/postgres-xc > Initialized empty Git repository in /root/tmp/t/postgres-xc/.git/ > postgres-xc.git.sourceforge.net[0: 216.34.181.91]: errno=No route to host > fatal: unable to connect a socket (No route to host) > > Do I do smth wrong? > > > > - -- > > Regards, > mk > > - -- > Premature optimization is the root of all fun. > -----BEGIN PGP SIGNATURE----- > Version: GnuPG v1.4.9 (MingW32) > Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/ > > iQEcBAEBAgAGBQJNI4KmAAoJEFMgHzhQQ7hO5FwH/A+ff+vdISCWJKr714fCmG75 > f/YymbK//EIg+bUnu3iufBddJQAOE7hXxRTGI7iHpVT1WeN7QYFh5bHNTStJkgyV > 1lWO7p9R6ryYSZ9u1anUJr6yn1afgrrf9+tEcfATb6Ock0rWpG43ScoynBvidsAN > pJLn6nkhpeIfE3R1guow5FsrR4hZchM1eiJ4fz2YC/fSqc6z3iQ5geGYBmnjoagi > RoFRAIoIyEOaCcpiJRVx3+oUWUXFgZNNkyeC0OjxT14N6P9UKKgIi/d1erUmcFW0 > N6+pf56MbCU+MgHIgvgu4G2WgYwwyYfsnUP7g6rxkjHPWUL/8cDZY6qgzGdvG5U= > =9gty > -----END PGP SIGNATURE----- > > > ------------------------------------------------------------------------------ > Learn how Oracle Real Application Clusters (RAC) One Node allows customers > to consolidate database storage, standardize their database environment, > and, > should the need arise, upgrade to a full multi-node Oracle RAC database > without downtime or disruption > http://p.sf.net/sfu/oracle-sfdevnl > _______________________________________________ > Postgres-xc-general mailing list > Pos...@li... > https://lists.sourceforge.net/lists/listinfo/postgres-xc-general > -- Michael Paquier http://michaelpq.users.sourceforge.net |
From: Marcin K. <mr...@gm...> - 2011-01-04 20:27:33
|
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hello everyone, I can't even check out postgres-xc from sf: % git clone git://postgres-xc.git.sourceforge.net/postgres-xc/postgres-xc Initialized empty Git repository in /root/tmp/t/postgres-xc/.git/ postgres-xc.git.sourceforge.net[0: 216.34.181.91]: errno=No route to host fatal: unable to connect a socket (No route to host) Do I do smth wrong? - -- Regards, mk - -- Premature optimization is the root of all fun. -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (MingW32) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/ iQEcBAEBAgAGBQJNI4KmAAoJEFMgHzhQQ7hO5FwH/A+ff+vdISCWJKr714fCmG75 f/YymbK//EIg+bUnu3iufBddJQAOE7hXxRTGI7iHpVT1WeN7QYFh5bHNTStJkgyV 1lWO7p9R6ryYSZ9u1anUJr6yn1afgrrf9+tEcfATb6Ock0rWpG43ScoynBvidsAN pJLn6nkhpeIfE3R1guow5FsrR4hZchM1eiJ4fz2YC/fSqc6z3iQ5geGYBmnjoagi RoFRAIoIyEOaCcpiJRVx3+oUWUXFgZNNkyeC0OjxT14N6P9UKKgIi/d1erUmcFW0 N6+pf56MbCU+MgHIgvgu4G2WgYwwyYfsnUP7g6rxkjHPWUL/8cDZY6qgzGdvG5U= =9gty -----END PGP SIGNATURE----- |
From: Marcin K. <mr...@gm...> - 2011-01-04 20:12:38
|
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hello everyone, Suppose a node falls out of a cluster: say, it had a disk failure. After getting that node back online, how can I resync that node with a cluster so cluster integrity is preserved? - -- Regards, mk - -- Premature optimization is the root of all fun. -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (MingW32) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/ iQEcBAEBAgAGBQJNI38tAAoJEFMgHzhQQ7hOD60H/R9DhEfSU//+v/ab+N/MJ/oB ksbbWowklFo71iLonW/P9ZmeRD6NROX3a/gYNmBetQ7KUp2fAmyb35ijJNmwL7mA FTC9fpVD1Vv3DL1jWWo/7EyYA/mdcHsPhHGgKe4/s6mvESOU8dR0bFep1FDYFYuK 1DCsvB+l++Yu1HLJlbzJzmeS8E7f+pjPDzWyt8fPZ8StROc5lHq393c75gg2MKx7 03ylfxAqW6JIKbrqNwSsk7B5AoQ+tJETxbAzSaK5FoZ63fXcAtGFfOTQbSJ8pyyt HXfGziR0qgwjbhLGMLV+O56Dhj5lKT/UB8lrEljAJQUfPH4mpva/b2u84IkVQ98= =3wVa -----END PGP SIGNATURE----- |
From: Marcin K. <mr...@gm...> - 2011-01-04 20:05:48
|
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hello everyone, P.S. I have NOT set up GTM proxy. Do I have to do that? Is it related to my problem? - -- Regards, mk - -- Premature optimization is the root of all fun. -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (MingW32) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/ iQEcBAEBAgAGBQJNI32UAAoJEFMgHzhQQ7hOOloIAIEeNHDjM2cMzRK7R4yUPN77 VxvoxZPO8tiRKh7nkQtBwzLVXp2myYtfGc+oiKG2FdlGXZaF7V61RE8xWwGIEYDd GDx0Xo4dYHAtIXLI+fR0sLGnrnPy1sQyybYTR/PDGklxPb+lrTV9emUjcgW/ArGH lvqhwckW8GpGgec5PWS6WMKK6WCPYfs0aEc9mmxRHVgLkrZrpRX8QfA/nRohlmDO ZzEcsptMjhKjsTF6zyleDWArxSziPvfuD13HVey4FdnP44o2AKDs3Hew1WC7S3vC kVpWJtWKbT65hQ60/U0rAKxeqy208/aK+MaQaQAfaXNsXBgFBCyW+Hx4MB820ps= =Ws44 -----END PGP SIGNATURE----- |
From: Marcin K. <mr...@gm...> - 2011-01-04 20:02:33
|
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hello everyone, I have set up XC on two nodes according to detailed installation instructions in installation manual and it seemed to be working at first, but the changes to my 2nd node do not seem to be replicated. I'm getting warnings in psql: STATEMENT: create database testd2; WARNING: Do not have a GTM snapshot available CREATE DATABASE I'm getting errors in GTM log: 157:1092475216:2011-01-04 19:58:35.646 CET -LOG: Sending transaction id 680 LOCATION: ProcessBeginTransactionGetGXIDCommand, gtm_txn.c:1088 158:1092475216:2011-01-04 19:58:35.668 CET -LOG: unexpected EOF on client connection LOCATION: ReadCommand, main.c:870 159:1092475216:2011-01-04 19:58:35.668 CET -LOG: Cleaning up thread state LOCATION: GTM_ThreadCleanup, gtm_thread.c:265 I have come across this: http://sourceforge.net/mailarchive/forum.php?thread_name=4CB71016.2020301%40enterprisedb.com&forum_name=postgres-xc-general "I think this is related to what Koichi pointed out, that you have to resync the other coordinators." ?? How do I do that, that is, resync the coordinators? " You may just want to use the latest code in the git repository so that you do not need to worry about it." Ok, but is the code in git repo stable enough for production use? - -- Regards, mk - -- Premature optimization is the root of all fun. -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (MingW32) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/ iQEcBAEBAgAGBQJNI3zRAAoJEFMgHzhQQ7hOYRwH/A249GOF7ywtL6Krg5Chjrfi HQYh+tqa/or8qZJ6/KyrZSArROe3YYe+R6EM6vwpMhr/1HT1Uu0mEoNivGgenDIk rINoqdxTpENsi3NQFo4sb61cqJdYyBTb3kThO0SOFRy1ov3/rV7opOER6Sr+q0JE 5AZxpCHZ/AB+g6Hq9kiMS5HOpBrnx2EVCsiIdImTVfxLUL294YP9k1BuxWiZDRxr Y06uxIK/IFeF5RjPLTXPaTMK/wcsL7laQsidPvHN8H8LF9ANn3OMHbcFJJhRPmby iCrgt8uJK4RFC4DFLM7N7wBeOZdcsV8E2DiQF/wy74ojfjbVD2n5npG93zEAHBw= =UAyW -----END PGP SIGNATURE----- |
From: Mason S. <mas...@en...> - 2010-11-01 15:52:51
|
On 10/29/10 3:23 AM, Dika Ye wrote: > Cool, does it supports GTM HA feature? > > No, not yet, but you can expect that sometime in 2011. Regards, Mason > Best wishes, > > Dika Ye > > > -----邮件原件----- > 发件人: Koichi Suzuki [mailto:koi...@gm...] > 发送时间: 2010年10月29日 14:27 > 收件人: pgsql-announce; pos...@li...; > pos...@li...; Postgres-XC Developers > 主题: [Postgres-xc-general] Postgres-XC 0.9.3 is now available > > Postgres-XC development team is pleased to announce that Postgres-XC > Version 0.9.3 is now available. > > Major additional features include: > > Transparent DDL. Now DDL is automatically propagated to all the > coordinators and data nodes. > General SQL support: Statements may include cross node joins. > Extended protocol support for libpq: This is needed to use > Postgres-XC from Java. > Cursor support: This is also needed by Java and other languages. > Global Timestamp: Timestamps are now supplied by GTM. > > This version includes many bug fixes and is much more stable than > previous ones. We've tested DBT-1 benchmark for one week with 90% of > full load. The test ran stably without any error in DBT-1. > > You can download the release from Postgres-XC project page: > https://sourceforge.net/projects/postgres-xc/ > General information is available in Project page: > http://postgres-xc.sourceforge.net/ > ---------- > Postgres-XC Development Team > Koichi Suzuki > > ------------------------------------------------------------------- > -- Mason Sharp EnterpriseDB Corporation The Enterprise Postgres Company This e-mail message (and any attachment) is intended for the use of the individual or entity to whom it is addressed. This message contains information from EnterpriseDB Corporation that may be privileged, confidential, or exempt from disclosure under applicable law. If you are not the intended recipient or authorized to receive this for the intended recipient, any use, dissemination, distribution, retention, archiving, or copying of this communication is strictly prohibited. If you have received this e-mail in error, please notify the sender immediately by reply e-mail and delete this message. |
From: Dika Y. <di...@nt...> - 2010-10-29 07:23:35
|
Cool, does it supports GTM HA feature? Best wishes, Dika Ye -----邮件原件----- 发件人: Koichi Suzuki [mailto:koi...@gm...] 发送时间: 2010年10月29日 14:27 收件人: pgsql-announce; pos...@li...; pos...@li...; Postgres-XC Developers 主题: [Postgres-xc-general] Postgres-XC 0.9.3 is now available Postgres-XC development team is pleased to announce that Postgres-XC Version 0.9.3 is now available. Major additional features include: Transparent DDL. Now DDL is automatically propagated to all the coordinators and data nodes. General SQL support: Statements may include cross node joins. Extended protocol support for libpq: This is needed to use Postgres-XC from Java. Cursor support: This is also needed by Java and other languages. Global Timestamp: Timestamps are now supplied by GTM. This version includes many bug fixes and is much more stable than previous ones. We've tested DBT-1 benchmark for one week with 90% of full load. The test ran stably without any error in DBT-1. You can download the release from Postgres-XC project page: https://sourceforge.net/projects/postgres-xc/ General information is available in Project page: http://postgres-xc.sourceforge.net/ ---------- Postgres-XC Development Team Koichi Suzuki ---------------------------------------------------------------------------- -- Nokia and AT&T present the 2010 Calling All Innovators-North America contest Create new apps & games for the Nokia N8 for consumers in U.S. and Canada $10 million total in prizes - $4M cash, 500 devices, nearly $6M in marketing Develop with Nokia Qt SDK, Web Runtime, or Java and Publish to Ovi Store http://p.sf.net/sfu/nokia-dev2dev _______________________________________________ Postgres-xc-general mailing list Pos...@li... https://lists.sourceforge.net/lists/listinfo/postgres-xc-general |
From: Koichi S. <koi...@gm...> - 2010-10-29 06:27:09
|
Postgres-XC development team is pleased to announce that Postgres-XC Version 0.9.3 is now available. Major additional features include: Transparent DDL. Now DDL is automatically propagated to all the coordinators and data nodes. General SQL support: Statements may include cross node joins. Extended protocol support for libpq: This is needed to use Postgres-XC from Java. Cursor support: This is also needed by Java and other languages. Global Timestamp: Timestamps are now supplied by GTM. This version includes many bug fixes and is much more stable than previous ones. We've tested DBT-1 benchmark for one week with 90% of full load. The test ran stably without any error in DBT-1. You can download the release from Postgres-XC project page: https://sourceforge.net/projects/postgres-xc/ General information is available in Project page: http://postgres-xc.sourceforge.net/ ---------- Postgres-XC Development Team Koichi Suzuki |
From: Dika Y. <di...@nt...> - 2010-10-15 04:09:51
|
Hi Paquier, That’s good; I got it, thanks very much, Best wishes, Dika Ye NTT Com Asia Limited _____ 发件人: Michael Paquier [mailto:mic...@gm...] 发送时间: 2010年10月15日 12:04 收件人: Dika Ye 抄送: pos...@li... 主题: Re: [Postgres-xc-general] 答复: gtm_coordinator_id or gtm_coord_id Hi Dika, You can get the latest code from the project's GIT repository. GIT is a CVS system. Install it and then take the head code with this git URL. git://postgres-xc.git.sourceforge.net/gitroot/postgres-xc/postgres-xc You can create a GIT repository with the following commands: mkdir pgxc cd pgxc git init git remote add pgxc git://postgres-xc.git.sourceforge.net/gitroot/postgres-xc/postgres-xc #Upload code to your local machine git fetch pgxc git branch --track master pgxc/master #extract branch master on your local machine git checkout master If you want to install GIT, have a look at their website http://git-scm.com/. They have also some documentation here http://git-scm.com/documentation. I also compiled a small manual here, I believe it is helpful. http://michaelpq.users.sourceforge.net/manuals/git_help.html Regards, -- Michael Paquier http://michaelpq.users.sourceforge.net |
From: Michael P. <mic...@gm...> - 2010-10-15 04:04:12
|
Hi Dika, You can get the latest code from the project's GIT repository. GIT is a CVS system. Install it and then take the head code with this git URL. git://postgres-xc.git.sourceforge.net/gitroot/postgres-xc/postgres-xc You can create a GIT repository with the following commands: mkdir pgxc cd pgxc git init git remote add pgxc git:// postgres-xc.git.sourceforge.net/gitroot/postgres-xc/postgres-xc #Upload code to your local machine git fetch pgxc git branch --track master pgxc/master #extract branch master on your local machine git checkout master If you want to install GIT, have a look at their website http://git-scm.com/ . They have also some documentation here http://git-scm.com/documentation. I also compiled a small manual here, I believe it is helpful. http://michaelpq.users.sourceforge.net/manuals/git_help.html Regards, -- Michael Paquier http://michaelpq.users.sourceforge.net |
From: Dika Y. <di...@nt...> - 2010-10-15 02:40:06
|
Where to get the latest source code? Can you send me the link? Thanks. Best wishes, Dika Ye NTT Com Asia Limited -----邮件原件----- 发件人: Mason Sharp [mailto:mas...@en...] 发送时间: 2010年10月14日 22:11 收件人: pos...@li...; di...@nt... 主题: Re: [Postgres-xc-general] gtm_coordinator_id or gtm_coord_id On 10/14/10 7:05 AM, Koichi Suzuki wrote: > Hi, > > I'm afraid you didn't copy coordinator's database to all the other > coordinators. In the current available release, DDL is not > synchronized to coordinators (synchronized to datanodes, though). To > make all the DDL effect avialable, you should stop all the > coordinators and statically copy $PGDATA to all the other coordinators > to make DDL effect visible. > > Next release will include DDL synchronization to coordinators. > > Dika, If you are comfortable with getting the latest source code from the repository, it includes automatic DDL synchronization between the Coordinators. Regards, Mason > Best Regards; > ---------- > Koichi Suzuki > > > > 2010/10/14 Dika Ye<di...@nt...>: > >> Hi all, >> >> >> >> In version 9.0.2, it uses the parameter use gtm_coordinator_id or >> gtm_coord_id? Are they the same? >> >> I found it in<PG-XC_InstallManual_v0_9_2.pdf>, it said “gtm_coord_id = i” >> in coordinatori postgresql.conf configure file, “gtm_coord_id = i+1” in >> datanodei postgresql.conf configure file, >> >> And I found it in<PG-XC_pgbench_Tutorial_v0_9_2.pdf> said >> “gtm_coordinator_id = 1” for the coordinator1 and “gtm_coordinator_id = 11” >> for the datanode1. >> >> >> >> >> >> >> >> >> >> >> >> >> >> Best wishes, >> >> >> >> Dika.Ye >> >> >> >> ---------------------------------------------------------------------------- -- >> Beautiful is writing same markup. Internet Explorer 9 supports >> standards for HTML5, CSS3, SVG 1.1, ECMAScript5, and DOM L2& L3. >> Spend less time writing and rewriting code and more time creating great >> experiences on the web. Be a part of the beta today. >> http://p.sf.net/sfu/beautyoftheweb >> _______________________________________________ >> Postgres-xc-general mailing list >> Pos...@li... >> https://lists.sourceforge.net/lists/listinfo/postgres-xc-general >> >> >> > ---------------------------------------------------------------------------- -- > Beautiful is writing same markup. Internet Explorer 9 supports > standards for HTML5, CSS3, SVG 1.1, ECMAScript5, and DOM L2& L3. > Spend less time writing and rewriting code and more time creating great > experiences on the web. Be a part of the beta today. > http://p.sf.net/sfu/beautyoftheweb > _______________________________________________ > Postgres-xc-general mailing list > Pos...@li... > https://lists.sourceforge.net/lists/listinfo/postgres-xc-general > -- Mason Sharp EnterpriseDB Corporation The Enterprise Postgres Company This e-mail message (and any attachment) is intended for the use of the individual or entity to whom it is addressed. This message contains information from EnterpriseDB Corporation that may be privileged, confidential, or exempt from disclosure under applicable law. If you are not the intended recipient or authorized to receive this for the intended recipient, any use, dissemination, distribution, retention, archiving, or copying of this communication is strictly prohibited. If you have received this e-mail in error, please notify the sender immediately by reply e-mail and delete this message. |
From: Mason S. <mas...@en...> - 2010-10-14 14:14:00
|
I think this is related to what Koichi pointed out, that you have to resync the other coordinators. You may just want to use the latest code in the git repository so that you do not need to worry about it. On 10/14/10 5:18 AM, Dika Ye wrote: > > I install four datanode/coordinator servers (db01, db02, db03, db04, > each db server include datanode and coordinator service) and one gtm > server, I try to install dbt1-pgxc and run build_db.sh in server db01, > all things seems normal. > > After then, I can check the dbt1 in server db01: > > ################# cut here ######################## > > [root@db01 pgsql]# /usr/local/pgsql/bin/psql -p 5432 -d DBT1 -U postgres > > The session started: 7541 > > psql (8.4.3) > > Type "help" for help. > > DBT1=# \dt > > List of relations > > Schema | Name | Type | Owner > > --------+--------------------+-------+----------- > > public | address | table | messenger > > public | author | table | messenger > > public | cc_xacts | table | messenger > > public | country | table | messenger > > public | customer | table | messenger > > public | item | table | messenger > > public | order_line | table | messenger > > public | orders | table | messenger > > public | shopping_cart | table | messenger > > public | shopping_cart_line | table | messenger > > public | stock | table | messenger > > (11 rows) > > DBT1=# > > ################# cut here ######################## > > But I can't check dbt1 in server db02 or others: > > ################# cut here ######################## > > [root@db02 share]# /usr/local/pgsql/bin/psql -p 5432 -d DBT1 -U postgres > > The session started: 4583 > > FATAL: database "DBT1" does not exist > > psql: FATAL: database "DBT1" does not exist > > [root@db02 share]# The session started: 4584 > > ################# cut here ######################## > > I check my gtm.log, it seems abnormal, please check below: > > ################# cut here ######################## > > LOCATION: ReadCommand, main.c:867 > > 625:1101769024:2010-10-14 17:08:47.060 HKT -LOG: Cleaning up thread state > > LOCATION: GTM_ThreadCleanup, gtm_thread.c:265 > > 626:1101769024:2010-10-14 17:08:49.408 HKT -LOG: Sending transaction > id 4527 > > LOCATION: ProcessBeginTransactionGetGXIDCommand, gtm_txn.c:916 > > 627:1101769024:2010-10-14 17:08:49.426 HKT -LOG: unexpected EOF on > client connection > > LOCATION: ReadCommand, main.c:867 > > 628:1101769024:2010-10-14 17:08:49.426 HKT -LOG: Cleaning up thread state > > LOCATION: GTM_ThreadCleanup, gtm_thread.c:265 > > 629:1101769024:2010-10-14 17:08:54.594 HKT -LOG: Sending transaction > id 4528 > > LOCATION: ProcessBeginTransactionGetGXIDCommand, gtm_txn.c:916 > > 630:1101769024:2010-10-14 17:08:54.612 HKT -LOG: unexpected EOF on > client connection > > LOCATION: ReadCommand, main.c:867 > > 631:1101769024:2010-10-14 17:08:54.612 HKT -LOG: Cleaning up thread state > > LOCATION: GTM_ThreadCleanup, gtm_thread.c:265 > > 632:1101769024:2010-10-14 17:08:54.873 HKT -LOG: Sending transaction > id 4529 > > LOCATION: ProcessBeginTransactionGetGXIDCommand, gtm_txn.c:916 > > 633:1101769024:2010-10-14 17:08:54.892 HKT -LOG: unexpected EOF on > client connection > > LOCATION: ReadCommand, main.c:867 > > 634:1101769024:2010-10-14 17:08:54.892 HKT -LOG: Cleaning up thread state > > LOCATION: GTM_ThreadCleanup, gtm_thread.c:265 > > 635:1101769024:2010-10-14 17:08:57.605 HKT -LOG: Sending transaction > id 4530 > > LOCATION: ProcessBeginTransactionGetGXIDCommand, gtm_txn.c:916 > > 636:1101769024:2010-10-14 17:08:57.625 HKT -LOG: unexpected EOF on > client connection > > LOCATION: ReadCommand, main.c:867 > > 637:1101769024:2010-10-14 17:08:57.625 HKT -LOG: Cleaning up thread state > > LOCATION: GTM_ThreadCleanup, gtm_thread.c:265 > > 638:1101769024:2010-10-14 17:08:58.179 HKT -LOG: Sending transaction > id 4531 > > LOCATION: ProcessBeginTransactionGetGXIDCommand, gtm_txn.c:916 > > 639:1101769024:2010-10-14 17:08:58.197 HKT -LOG: unexpected EOF on > client connection > > LOCATION: ReadCommand, main.c:867 > > 640:1101769024:2010-10-14 17:08:58.197 HKT -LOG: Cleaning up thread state > > LOCATION: GTM_ThreadCleanup, gtm_thread.c:265 > > 641:1101769024:2010-10-14 17:09:01.424 HKT -LOG: Sending transaction > id 4532 > > LOCATION: ProcessBeginTransactionGetGXIDCommand, gtm_txn.c:916 > > 642:1101769024:2010-10-14 17:09:01.443 HKT -LOG: unexpected EOF on > client connection > > LOCATION: ReadCommand, main.c:867 > > 643:1101769024:2010-10-14 17:09:01.443 HKT -LOG: Cleaning up thread state > > LOCATION: GTM_ThreadCleanup, gtm_thread.c:265 > > ################# cut here ######################## > > What will cause these, thanks. > > Best wishes, > > Dika.Ye > ------------------------------------------------------------------------------------ > NTT Com Asia Network Systems (Guangzhou) Company Limited. > > Tel: (86)-20-8113 0687 > Fax: (86)-20-8135 0322 > Mobile: (86)-135 3371 0342 > Email: di...@nt... <mailto:di...@nt...> > > www.ntt.com.hk <http://www.ntt.com.hk/> > > > ------------------------------------------------------------------------------ > Beautiful is writing same markup. Internet Explorer 9 supports > standards for HTML5, CSS3, SVG 1.1, ECMAScript5, and DOM L2& L3. > Spend less time writing and rewriting code and more time creating great > experiences on the web. Be a part of the beta today. > http://p.sf.net/sfu/beautyoftheweb > > > _______________________________________________ > Postgres-xc-general mailing list > Pos...@li... > https://lists.sourceforge.net/lists/listinfo/postgres-xc-general > -- Mason Sharp EnterpriseDB Corporation The Enterprise Postgres Company This e-mail message (and any attachment) is intended for the use of the individual or entity to whom it is addressed. This message contains information from EnterpriseDB Corporation that may be privileged, confidential, or exempt from disclosure under applicable law. If you are not the intended recipient or authorized to receive this for the intended recipient, any use, dissemination, distribution, retention, archiving, or copying of this communication is strictly prohibited. If you have received this e-mail in error, please notify the sender immediately by reply e-mail and delete this message. |
From: Mason S. <mas...@en...> - 2010-10-14 14:11:14
|
On 10/14/10 7:05 AM, Koichi Suzuki wrote: > Hi, > > I'm afraid you didn't copy coordinator's database to all the other > coordinators. In the current available release, DDL is not > synchronized to coordinators (synchronized to datanodes, though). To > make all the DDL effect avialable, you should stop all the > coordinators and statically copy $PGDATA to all the other coordinators > to make DDL effect visible. > > Next release will include DDL synchronization to coordinators. > > Dika, If you are comfortable with getting the latest source code from the repository, it includes automatic DDL synchronization between the Coordinators. Regards, Mason > Best Regards; > ---------- > Koichi Suzuki > > > > 2010/10/14 Dika Ye<di...@nt...>: > >> Hi all, >> >> >> >> In version 9.0.2, it uses the parameter use gtm_coordinator_id or >> gtm_coord_id? Are they the same? >> >> I found it in<PG-XC_InstallManual_v0_9_2.pdf>, it said “gtm_coord_id = i” >> in coordinatori postgresql.conf configure file, “gtm_coord_id = i+1” in >> datanodei postgresql.conf configure file, >> >> And I found it in<PG-XC_pgbench_Tutorial_v0_9_2.pdf> said >> “gtm_coordinator_id = 1” for the coordinator1 and “gtm_coordinator_id = 11” >> for the datanode1. >> >> >> >> >> >> >> >> >> >> >> >> >> >> Best wishes, >> >> >> >> Dika.Ye >> >> >> >> ------------------------------------------------------------------------------ >> Beautiful is writing same markup. Internet Explorer 9 supports >> standards for HTML5, CSS3, SVG 1.1, ECMAScript5, and DOM L2& L3. >> Spend less time writing and rewriting code and more time creating great >> experiences on the web. Be a part of the beta today. >> http://p.sf.net/sfu/beautyoftheweb >> _______________________________________________ >> Postgres-xc-general mailing list >> Pos...@li... >> https://lists.sourceforge.net/lists/listinfo/postgres-xc-general >> >> >> > ------------------------------------------------------------------------------ > Beautiful is writing same markup. Internet Explorer 9 supports > standards for HTML5, CSS3, SVG 1.1, ECMAScript5, and DOM L2& L3. > Spend less time writing and rewriting code and more time creating great > experiences on the web. Be a part of the beta today. > http://p.sf.net/sfu/beautyoftheweb > _______________________________________________ > Postgres-xc-general mailing list > Pos...@li... > https://lists.sourceforge.net/lists/listinfo/postgres-xc-general > -- Mason Sharp EnterpriseDB Corporation The Enterprise Postgres Company This e-mail message (and any attachment) is intended for the use of the individual or entity to whom it is addressed. This message contains information from EnterpriseDB Corporation that may be privileged, confidential, or exempt from disclosure under applicable law. If you are not the intended recipient or authorized to receive this for the intended recipient, any use, dissemination, distribution, retention, archiving, or copying of this communication is strictly prohibited. If you have received this e-mail in error, please notify the sender immediately by reply e-mail and delete this message. |
From: Mason S. <mas...@en...> - 2010-10-14 13:02:46
|
On 10/14/10 4:51 AM, Daniel Dettlaff wrote: > Hi > > > I'm just curious if You have some "tutorial"/ "detailed info" how to setup basic multimaster replication with postgres-xc. > Also, just to clarify, Postgres-XC does not use multi-master replication. The term "multi-master" is meant in the sense of "multi-head", that you can connect to anyone of the multiple coordinators and get the same consistent view of the data. We may update the web pages to clarify this. Regards, Mason > If You have one, just please tell me > > > Second question: Is postgres-xc stable? I want to use it on production server.. > > > As Koichi mentioned, no it is not ready for production use. We encourage you to try it out in a test environment and provide feedback. In addition, if you have a specific application in mind that would make for a good pilot project, feel free to contact me directly, as we may be willing to change development priorities so that XC can meet your needs and we have a good case study. Thanks, Mason > thank You > > > > > best regards > > Daniel (dmilith) Dettlaff > > > > ------------------------------------------------------------------------------ > Beautiful is writing same markup. Internet Explorer 9 supports > standards for HTML5, CSS3, SVG 1.1, ECMAScript5, and DOM L2& L3. > Spend less time writing and rewriting code and more time creating great > experiences on the web. Be a part of the beta today. > http://p.sf.net/sfu/beautyoftheweb > _______________________________________________ > Postgres-xc-general mailing list > Pos...@li... > https://lists.sourceforge.net/lists/listinfo/postgres-xc-general > -- Mason Sharp EnterpriseDB Corporation The Enterprise Postgres Company This e-mail message (and any attachment) is intended for the use of the individual or entity to whom it is addressed. This message contains information from EnterpriseDB Corporation that may be privileged, confidential, or exempt from disclosure under applicable law. If you are not the intended recipient or authorized to receive this for the intended recipient, any use, dissemination, distribution, retention, archiving, or copying of this communication is strictly prohibited. If you have received this e-mail in error, please notify the sender immediately by reply e-mail and delete this message. |
From: Koichi S. <koi...@gm...> - 2010-10-14 11:05:20
|
Hi, I'm afraid you didn't copy coordinator's database to all the other coordinators. In the current available release, DDL is not synchronized to coordinators (synchronized to datanodes, though). To make all the DDL effect avialable, you should stop all the coordinators and statically copy $PGDATA to all the other coordinators to make DDL effect visible. Next release will include DDL synchronization to coordinators. Best Regards; ---------- Koichi Suzuki 2010/10/14 Dika Ye <di...@nt...>: > Hi all, > > > > In version 9.0.2, it uses the parameter use gtm_coordinator_id or > gtm_coord_id? Are they the same? > > I found it in <PG-XC_InstallManual_v0_9_2.pdf>, it said “gtm_coord_id = i” > in coordinatori postgresql.conf configure file, “gtm_coord_id = i+1” in > datanodei postgresql.conf configure file, > > And I found it in <PG-XC_pgbench_Tutorial_v0_9_2.pdf> said > “gtm_coordinator_id = 1” for the coordinator1 and “gtm_coordinator_id = 11” > for the datanode1. > > > > > > > > > > > > > > Best wishes, > > > > Dika.Ye > > > > ------------------------------------------------------------------------------ > Beautiful is writing same markup. Internet Explorer 9 supports > standards for HTML5, CSS3, SVG 1.1, ECMAScript5, and DOM L2 & L3. > Spend less time writing and rewriting code and more time creating great > experiences on the web. Be a part of the beta today. > http://p.sf.net/sfu/beautyoftheweb > _______________________________________________ > Postgres-xc-general mailing list > Pos...@li... > https://lists.sourceforge.net/lists/listinfo/postgres-xc-general > > |
From: Dika Y. <di...@nt...> - 2010-10-14 09:18:40
|
I install four datanode/coordinator servers (db01, db02, db03, db04, each db server include datanode and coordinator service) and one gtm server, I try to install dbt1-pgxc and run build_db.sh in server db01, all things seems normal. After then, I can check the dbt1 in server db01: ################# cut here ######################## [root@db01 pgsql]# /usr/local/pgsql/bin/psql -p 5432 -d DBT1 -U postgres The session started: 7541 psql (8.4.3) Type "help" for help. DBT1=# \dt List of relations Schema | Name | Type | Owner --------+--------------------+-------+----------- public | address | table | messenger public | author | table | messenger public | cc_xacts | table | messenger public | country | table | messenger public | customer | table | messenger public | item | table | messenger public | order_line | table | messenger public | orders | table | messenger public | shopping_cart | table | messenger public | shopping_cart_line | table | messenger public | stock | table | messenger (11 rows) DBT1=# ################# cut here ######################## But I can't check dbt1 in server db02 or others: ################# cut here ######################## [root@db02 share]# /usr/local/pgsql/bin/psql -p 5432 -d DBT1 -U postgres The session started: 4583 FATAL: database "DBT1" does not exist psql: FATAL: database "DBT1" does not exist [root@db02 share]# The session started: 4584 ################# cut here ######################## I check my gtm.log, it seems abnormal, please check below: ################# cut here ######################## LOCATION: ReadCommand, main.c:867 625:1101769024:2010-10-14 17:08:47.060 HKT -LOG: Cleaning up thread state LOCATION: GTM_ThreadCleanup, gtm_thread.c:265 626:1101769024:2010-10-14 17:08:49.408 HKT -LOG: Sending transaction id 4527 LOCATION: ProcessBeginTransactionGetGXIDCommand, gtm_txn.c:916 627:1101769024:2010-10-14 17:08:49.426 HKT -LOG: unexpected EOF on client connection LOCATION: ReadCommand, main.c:867 628:1101769024:2010-10-14 17:08:49.426 HKT -LOG: Cleaning up thread state LOCATION: GTM_ThreadCleanup, gtm_thread.c:265 629:1101769024:2010-10-14 17:08:54.594 HKT -LOG: Sending transaction id 4528 LOCATION: ProcessBeginTransactionGetGXIDCommand, gtm_txn.c:916 630:1101769024:2010-10-14 17:08:54.612 HKT -LOG: unexpected EOF on client connection LOCATION: ReadCommand, main.c:867 631:1101769024:2010-10-14 17:08:54.612 HKT -LOG: Cleaning up thread state LOCATION: GTM_ThreadCleanup, gtm_thread.c:265 632:1101769024:2010-10-14 17:08:54.873 HKT -LOG: Sending transaction id 4529 LOCATION: ProcessBeginTransactionGetGXIDCommand, gtm_txn.c:916 633:1101769024:2010-10-14 17:08:54.892 HKT -LOG: unexpected EOF on client connection LOCATION: ReadCommand, main.c:867 634:1101769024:2010-10-14 17:08:54.892 HKT -LOG: Cleaning up thread state LOCATION: GTM_ThreadCleanup, gtm_thread.c:265 635:1101769024:2010-10-14 17:08:57.605 HKT -LOG: Sending transaction id 4530 LOCATION: ProcessBeginTransactionGetGXIDCommand, gtm_txn.c:916 636:1101769024:2010-10-14 17:08:57.625 HKT -LOG: unexpected EOF on client connection LOCATION: ReadCommand, main.c:867 637:1101769024:2010-10-14 17:08:57.625 HKT -LOG: Cleaning up thread state LOCATION: GTM_ThreadCleanup, gtm_thread.c:265 638:1101769024:2010-10-14 17:08:58.179 HKT -LOG: Sending transaction id 4531 LOCATION: ProcessBeginTransactionGetGXIDCommand, gtm_txn.c:916 639:1101769024:2010-10-14 17:08:58.197 HKT -LOG: unexpected EOF on client connection LOCATION: ReadCommand, main.c:867 640:1101769024:2010-10-14 17:08:58.197 HKT -LOG: Cleaning up thread state LOCATION: GTM_ThreadCleanup, gtm_thread.c:265 641:1101769024:2010-10-14 17:09:01.424 HKT -LOG: Sending transaction id 4532 LOCATION: ProcessBeginTransactionGetGXIDCommand, gtm_txn.c:916 642:1101769024:2010-10-14 17:09:01.443 HKT -LOG: unexpected EOF on client connection LOCATION: ReadCommand, main.c:867 643:1101769024:2010-10-14 17:09:01.443 HKT -LOG: Cleaning up thread state LOCATION: GTM_ThreadCleanup, gtm_thread.c:265 ################# cut here ######################## What will cause these, thanks. Best wishes, Dika.Ye ---------------------------------------------------------------------------- -------- NTT Com Asia Network Systems (Guangzhou) Company Limited. Tel: (86)-20-8113 0687 Fax: (86)-20-8135 0322 Mobile: (86)-135 3371 0342 Email: <mailto:di...@nt...> di...@nt... www.ntt.com.hk <http://www.ntt.com.hk/> |
From: Koichi S. <koi...@gm...> - 2010-10-14 09:17:31
|
They are available from sourceforge. Please visit http://sourceforge.net/projects/postgres-xc/files/ You will also find links to individual document from Postgres-XC page http://postgres-xc.sourceforge.net/ Please try "Download" button. BTW, postgres-xc is not stable yet. If you're interested in using it as a production, I think you should wait a bit. Anyway, testing current version will help. Best Regards; ---------- Koichi Suzuki 2010/10/14 Daniel Dettlaff <dm...@gm...>: > > Hi > > > I'm just curious if You have some "tutorial"/ "detailed info" how to setup basic multimaster replication with postgres-xc. > > If You have one, just please tell me > > > Second question: Is postgres-xc stable? I want to use it on production server.. > > > thank You > > > > > best regards > > Daniel (dmilith) Dettlaff > > > > ------------------------------------------------------------------------------ > Beautiful is writing same markup. Internet Explorer 9 supports > standards for HTML5, CSS3, SVG 1.1, ECMAScript5, and DOM L2 & L3. > Spend less time writing and rewriting code and more time creating great > experiences on the web. Be a part of the beta today. > http://p.sf.net/sfu/beautyoftheweb > _______________________________________________ > Postgres-xc-general mailing list > Pos...@li... > https://lists.sourceforge.net/lists/listinfo/postgres-xc-general > |
From: Dika Y. <di...@nt...> - 2010-10-14 09:07:55
|
Maybe you can download from https://sourceforge.net/projects/postgres-xc/files/. Best wishes, Dika Ye NTT Com Asia Limited -----邮件原件----- 发件人: Daniel Dettlaff [mailto:dm...@gm...] 发送时间: 2010年10月14日 16:52 收件人: pos...@li... 主题: [Postgres-xc-general] Instructions lack Hi I'm just curious if You have some "tutorial"/ "detailed info" how to setup basic multimaster replication with postgres-xc. If You have one, just please tell me Second question: Is postgres-xc stable? I want to use it on production server.. thank You best regards Daniel (dmilith) Dettlaff ---------------------------------------------------------------------------- -- Beautiful is writing same markup. Internet Explorer 9 supports standards for HTML5, CSS3, SVG 1.1, ECMAScript5, and DOM L2 & L3. Spend less time writing and rewriting code and more time creating great experiences on the web. Be a part of the beta today. http://p.sf.net/sfu/beautyoftheweb _______________________________________________ Postgres-xc-general mailing list Pos...@li... https://lists.sourceforge.net/lists/listinfo/postgres-xc-general |
From: Daniel D. <dm...@gm...> - 2010-10-14 08:51:41
|
Hi I'm just curious if You have some "tutorial"/ "detailed info" how to setup basic multimaster replication with postgres-xc. If You have one, just please tell me Second question: Is postgres-xc stable? I want to use it on production server.. thank You best regards Daniel (dmilith) Dettlaff |
From: Dika Y. <di...@nt...> - 2010-10-14 07:58:23
|
Hi all, In version 9.0.2, it uses the parameter use gtm_coordinator_id or gtm_coord_id? Are they the same? I found it in <PG-XC_InstallManual_v0_9_2.pdf>, it said "gtm_coord_id = i" in coordinatori postgresql.conf configure file, "gtm_coord_id = i+1" in datanodei postgresql.conf configure file, And I found it in <PG-XC_pgbench_Tutorial_v0_9_2.pdf> said "gtm_coordinator_id = 1" for the coordinator1 and "gtm_coordinator_id = 11" for the datanode1. Best wishes, Dika.Ye |
From: cheng c. <ke...@ho...> - 2010-10-07 03:29:25
|
pg_hba.conf has been config as allow all all 172.22.5.0/24 trust. psql works fine to create table and insert data. my pgamin version is latest one. Kent Date: Wed, 6 Oct 2010 09:48:12 -0400 From: mas...@en... To: ke...@ho... CC: pos...@li... Subject: Re: [Postgres-xc-general] Does postgres-XC support pgadmin? On 10/6/10 1:25 AM, cheng chung wrote: Dear All I have installed postgres-XC 0.9.2 version with single node. I met some problem with trying to use pgadmin to connect database from coordinate but it is sucess to connect from datanode. pgadmin is just hanging there. Are you able to connect to a coordinator via psql? Is your pg_hba.conf file ok? Regards, Mason -- Mason Sharp EnterpriseDB Corporation The Enterprise Postgres Company This e-mail message (and any attachment) is intended for the use of the individual or entity to whom it is addressed. This message contains information from EnterpriseDB Corporation that may be privileged, confidential, or exempt from disclosure under applicable law. If you are not the intended recipient or authorized to receive this for the intended recipient, any use, dissemination, distribution, retention, archiving, or copying of this communication is strictly prohibited. If you have received this e-mail in error, please notify the sender immediately by reply e-mail and delete this message. |