Re: RE: PostgreSQL and Unicode

From: Bruce Momjian <pgman(at)candle(dot)pha(dot)pa(dot)us>
To: Tatsuo Ishii <t-ishii(at)sra(dot)co(dot)jp>
Cc: tgl(at)sss(dot)pgh(dot)pa(dot)us, rmager(at)vgkk(dot)co(dot)jp, ishii(at)postgresql(dot)org, hackers(at)postgresql(dot)org
Subject: Re: RE: PostgreSQL and Unicode
Date: 2000-06-13 07:47:38
Message-ID: 200006130747.DAA23689@candle.pha.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

Seems this is applied.

> > > What about adding KEEPALIVE option to the socket?
> >
> > Of course, since whatever OS he's using on the client side is too broken
> > to notice that the socket is orphaned and close it, it might be so
> > broken as to respond to the keepalive pings :-(. Still, it'd be an easy
> > thing to try...
> >
> > Even though the stated case sounds more like an OS bug than anything
> > else, setting KEEPALIVE on our TCP connections is probably still a good
> > idea. If the client machine were to crash completely then it wouldn't
> > be reasonable to expect it to close the connection, and we'd want to
> > have some method of ensuring that the connected backend shuts down
> > eventually. KEEPALIVE seems sufficiently low-overhead (and easy to
> > implement) to be the right answer for this scenario.
>
> Ok. Here are patches against 7.0. BTW, does this break some platforms
> such as Windows NT or QUNX4?
>
> *** postgresql-7.0/src/backend/libpq/pqcomm.c.orig Tue May 16 18:06:42 2000
> --- postgresql-7.0/src/backend/libpq/pqcomm.c Wed May 17 08:23:09 2000
> ***************
> *** 375,381 ****
> if (setsockopt(port->sock, pe->p_proto, TCP_NODELAY,
> &on, sizeof(on)) < 0)
> {
> ! perror("postmaster: StreamConnection: setsockopt");
> return STATUS_ERROR;
> }
> }
> --- 375,387 ----
> if (setsockopt(port->sock, pe->p_proto, TCP_NODELAY,
> &on, sizeof(on)) < 0)
> {
> ! perror("postmaster: StreamConnection: setsockopt(TCP_NODELAY)");
> ! return STATUS_ERROR;
> ! }
> ! if (setsockopt(port->sock, SOL_SOCKET, SO_KEEPALIVE,
> ! &on, sizeof(on)) < 0)
> ! {
> ! perror("postmaster: StreamConnection: setsockopt(SO_KEEPALIVE)");
> return STATUS_ERROR;
> }
> }
>

--
Bruce Momjian | http://www.op.net/~candle
pgman(at)candle(dot)pha(dot)pa(dot)us | (610) 853-3000
+ If your life is a hard drive, | 830 Blythe Avenue
+ Christ can be your backup. | Drexel Hill, Pennsylvania 19026

In response to

Browse pgsql-hackers by date

  From Date Subject
Next Message Bruce Momjian 2000-06-13 07:50:49 Re: rules on INSERT can't UPDATE new instance?
Previous Message Bruce Momjian 2000-06-13 07:41:56 Re: Proposal for fixing numeric type-resolution issues