Re: Per query FDW network stat collection

2021-08-24 Thread Ilya Gladyshev
On 24.08.2021 12:19, Julien Rouhaud wrote: However I'm not sure that having a new "network" option is the best way for that. It seems confusing as IIUC it won't be catching all network activity (like fe/be activity, or network disk...) but only FDW activity. I think it would be better to have

Re: Per query FDW network stat collection

2021-08-24 Thread Julien Rouhaud
On Tue, Aug 24, 2021 at 5:12 PM Ilya Gladyshev wrote: > > I have implemented per query network stat collection for FDW. It is done > in a similar way to how buffer and WAL stats are collected and it can be > seen with a new NETWORK option for explain command: > > explain (analyze, network) insert

Per query FDW network stat collection

2021-08-24 Thread Ilya Gladyshev
Hello, I have implemented per query network stat collection for FDW. It is done in a similar way to how buffer and WAL stats are collected and it can be seen with a new NETWORK option for explain command: explain (analyze, network) insert into itrtest values (2, 'blah');