Re: slow performance with cursor

From: Justin Pryzby <pryzby(at)telsasoft(dot)com>
To: Ayub Khan <ayub(dot)hp(at)gmail(dot)com>
Cc: pgsql-performance(at)lists(dot)postgresql(dot)org
Subject: Re: slow performance with cursor
Date: 2021-07-01 16:32:31
Message-ID: 20210701163231.GR21248@telsasoft.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-performance

On Fri, 25 Jun 2021, 19:09 Ayub Khan, <ayub(dot)hp(at)gmail(dot)com> wrote:
> I am using postgresql 12 and using cursors in a stored procedure,
> executing procedure which has cursor is slowing down the call. However if I
> do not use the cursor and just execute the queries using JDBC (Java client)
> it's fast.
>
> Is there any setting which needs to be modified to improve the performance
> of cursors. Also facing slow response with reading blobs (images) from db.
> Not an ideal way for storing images in db but this is a legacy application
> and wanted to check if there a quick tweak which can improve the
> performance while reading blob data from db.

On Thu, Jul 01, 2021 at 07:29:31PM +0300, Ayub Khan wrote:
> I set the cursor_tuple_fraction to 1 now I am seeing high cpu for fetach
> all in
>
> The number of rows returned is less than 200. Why is the high cpu being
> shown for fetch all

It seems like you're asking for help, but need to show the stored procedure
you're asking for help with.

In response to

Browse pgsql-performance by date

  From Date Subject
Next Message Ayub Khan 2021-07-01 20:25:13 Re: slow performance with cursor
Previous Message Ayub Khan 2021-07-01 16:29:31 Re: slow performance with cursor