Re: [PERFORM] Regarding facing lot of time Consumed by Socket.Poll()

Поиск
Список
Период
Сортировка
От Heikki Linnakangas
Тема Re: [PERFORM] Regarding facing lot of time Consumed by Socket.Poll()
Дата
Msg-id 4AD78B0D.5010704@enterprisedb.com
обсуждение исходный текст
Ответ на Regarding facing lot of time Consumed by Socket.Poll()  (keshav upadhyaya <ukeshav2009@gmail.com>)
Список pgsql-novice
keshav upadhyaya wrote:
> 2- Internally it calls thse function i am listing the last stack
>
> NpgsqlConnector.Open()
> Npgsql.NpgsqlConnectedState.Startup(NpgsqlConnector)
> Npgsql.NpgsqlState.ProcessBackendResponses(NpgsqlConnector)
> *[Wall Time]  System.Net.Sockets.Socket.Poll(Int32, SelectMode)*
>
> Finally in last the socket.poll takes most of the time .
>
>
> I want to know the probably causes of the socket.poll() consumes allot of
> time .

I don't know much about Npgsql driver, but I'd guess that it's spending
a lot of time on Socket.Poll, because it's waiting for a response from
the server, sleeping. If you're investigating this because you feel that
queries are running too slowly, you should look at what the queries are
and investigate why they're slow in the server, e.g with EXPLAIN
ANALYZE. If you're investigating this because you're seeing high CPU
load in the client, try finding an option in the profiler to measure CPU
time, not Wall time.

--
  Heikki Linnakangas
  EnterpriseDB   http://www.enterprisedb.com

В списке pgsql-novice по дате отправления:

Предыдущее
От: Matthew Wakeling
Дата:
Сообщение: Re: [PERFORM] Regarding facing lot of time Consumed by Socket.Poll()
Следующее
От: Intengu Technologies
Дата:
Сообщение: Help to dump tables in a database and restore in another database