pgpool 2.5b2 released

Ask a Question related to PostgreSQL / PGSQL, Design and Development.

  1. #1

    Default pgpool 2.5b2 released

    Pgpool 2.5b2 supports "master slave mode" which can cope with
    master/slave replication softwares such as Slony-I. In this mode
    pgpool sends non SELECT queries to master only. SELECTs are load
    balanced by pgpool.

    Other features of 2.5b2 include:
    - ability to add timestamp to each log entry
    - control to whether cache connection info or not

    pgpool 2.5b2 is available at:
    [url]http://pgfoundry.org/projects/pgpool/[/url]

    Enjoy,
    --
    Tatsuo Ishii

    ---------------------------(end of broadcast)---------------------------
    TIP 3: if posting/reading through Usenet, please send an appropriate
    subscribe-nomail command to [email]majordomo@postgresql.org[/email] so that your
    message can get through to the mailing list cleanly

    Tatsuo Ishii Guest

  2. Similar Questions and Discussions

    1. D11 is released - when will SWplayer 11 be released
      hello; according to http://www.adobe.com/products/director/ D11 is available; but according to http://www.adobe.com/shockwave/download/ SW is...
    2. An interesting pgpool benchmark result
      Hi, I did a benchmarking on pgpool with replication mode enabled. The result is reported at http://pgpool.projects.postgresql.org/bench_24.html....
    3. pgpool
      I was considering putting pgpool in to place and was hoping to hear some feedback from those who use it. I am mostly concerned about the...
    4. pg_dump and pgpool
      I've noticed today that if one tries to pg_dump a database cluster running under pgpool, one gets the error message: pg_dump: query to get table...
    5. [PHP-DEV] PHP 4.3.3 released
      There was only a fix to ext/interbase after RC4. AFAIK nothing else. Edin "Thomas Seifert" <thomas.seifert@myphorum.de> wrote in message...
  3. #2

    Default Re: pgpool 2.5b2 released

    > > Pgpool 2.5b2 supports "master slave mode" which can cope with
    > > master/slave replication softwares such as Slony-I. In this mode
    > > pgpool sends non SELECT queries to master only. SELECTs are load
    > > balanced by pgpool.
    >
    > Sounds good!
    Thanks. Yesterday I have put offcial release of pgpool 2.5 on
    pgfoundry.org. The news release has not come up yet on the top page of
    pgfoundry.org for some reason I don't know, but I hope it will appear
    soon.

    pgpool 2.5 has the capabilty to perform periodical health checking to
    PostgreSQL.
    > Does it attempt any interaction with Slony when it detects a failure of the
    > master? It would seem a pity to have pgpool watching the pair to detect
    > failure but having to have a separate watcher process to tell Slony to
    > failover.
    If pgpool detects PostgreSQL failure, Slony should detect it as well,
    no?
    --
    Tatsuo Ishii

    ---------------------------(end of broadcast)---------------------------
    TIP 3: if posting/reading through Usenet, please send an appropriate
    subscribe-nomail command to [email]majordomo@postgresql.org[/email] so that your
    message can get through to the mailing list cleanly

    Tatsuo Ishii Guest

  4. #3

    Default Re: pgpool 2.5b2 released

    > I'm not suggesting that it's the place of pgpool to *force* a failover. I
    > am suggesting that one of the criteria that is likely to be useful is the
    > inability to connect to the master, and that's something that pgpool,
    > apparently, detects. It seems unnecessary to use completely different
    > failure-detection mechanisms for the purpose of failover to those used for
    > the connection management.
    >
    > So all I'm looking for is a way for pgpool to shout if it detects a failure.
    > That could initiate the investigation of the other criteria required for
    > failover.
    It's pretty easy. See main.c:failover_handler() for more details.
    --
    Tatsuo Ishii
    > > The last thing in the world you need is to fail over to a slave because
    > > somebody accidently tripped over a network cord.
    >
    > In our application, that's *exactly* what we need. We have a database that
    > receives data in a fairly continuous stream. If the datastream cannot be
    > written to the database, the database becomes worse than useless quite
    > rapidly. We need the ability to switchover or failover to another node as
    > master as soon as possible, to allow the datastream to be written to the
    > other node. We'll rebuild the "failed" master later, if necessary. But if
    > the failover doesn't happen promptly, we might as well rebuild the whole
    > cluster.
    >
    > Julian Scarfe
    >
    >
    >
    > ---------------------------(end of broadcast)---------------------------
    > TIP 5: Have you checked our extensive FAQ?
    >
    > [url]http://www.postgresql.org/docs/faq[/url]
    >
    ---------------------------(end of broadcast)---------------------------
    TIP 5: Have you checked our extensive FAQ?

    [url]http://www.postgresql.org/docs/faq[/url]

    Tatsuo Ishii Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139