Re: realtime data inserts

From: Ericson Smith <eric(at)did-it(dot)com>
To: "alex b(dot)" <mailinglists1(at)gmx(dot)de>
Cc: Postgresql General <pgsql-general(at)postgresql(dot)org>
Subject: Re: realtime data inserts
Date: 2003-05-16 20:33:55
Message-ID: 1053117234.15138.23.camel@localhost.localdomain
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general pgsql-hackers pgsql-performance

You probably want to have a process that constantly stores the data in a
text file. Every "n" minutes, you will cause the logger to rotate the
text file, then process that batch.

Over here, we are able to dump around 5,000 records per second in one of
our tables using that methodology.

- Ericson Smith
eric(at)did-it(dot)com

On Fri, 2003-05-16 at 16:27, alex b. wrote:
> Doug McNaught wrote:
> > Ron Johnson <ron(dot)l(dot)johnson(at)cox(dot)net> writes:
> >
> >
> >>On Sat, 2003-05-10 at 21:46, Tom Lane wrote:
> >>
> >>>Ron Johnson <ron(dot)l(dot)johnson(at)cox(dot)net> writes:
> >>>
> >>>>On Sat, 2003-05-10 at 11:00, Tom Lane wrote:
> >>>>
> >>>>>Have you thought about using COPY?
> >>>
> >>>>Generate a temporary file, and then system("COPY /tmp/foobar ...") ?
> >>>
> >>>No, copy from stdin. No need for a temp file.
> >>
> >>But wouldn't that only work if the input stream is acceptable to
> >>COPY ?
> >
> >
> > Yes, but you could always pipe it through a script or C program to
> > make it so...
>
> lets say I have an about 1kb/s continuus datastream comming in for many
> hours and I'd like to store this data in my db using COPY table FROM stdin.
>
> At what time should I COMMIT or close the stream to feed the database
> and COPY FROM again?
>
>
>
>
> ---------------------------(end of broadcast)---------------------------
> TIP 5: Have you checked our extensive FAQ?
>
> http://www.postgresql.org/docs/faqs/FAQ.html
--
Ericson Smith <eric(at)did-it(dot)com>

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Network Administrator 2003-05-16 20:56:17 Re: MSSQL -> PostgreSQL
Previous Message alex b. 2003-05-16 20:27:42 Re: realtime data inserts

Browse pgsql-hackers by date

  From Date Subject
Next Message scott.marlowe 2003-05-16 21:13:37 Re: Heads up: 7.3.3 this Wednesday
Previous Message alex b. 2003-05-16 20:27:42 Re: realtime data inserts

Browse pgsql-performance by date

  From Date Subject
Next Message Ron Johnson 2003-05-16 22:29:05 Re: realtime data inserts
Previous Message alex b. 2003-05-16 20:27:42 Re: realtime data inserts