Обсуждение: PATCH: pgbench - break out timing data for initialization phases

Поиск
Список
Период
Сортировка

PATCH: pgbench - break out timing data for initialization phases

От
"Rady, Doug"
Дата:

This patch breaks out the timing info for the individual initialization phases.

 

Today without the patch:

pgrun pgbench -i -s 2000 -F 90 -q

dropping old tables...

creating tables...

generating data...

200000000 of 200000000 tuples (100%) done (elapsed 171.39 s, remaining 0.00 s)

vacuuming...

creating primary keys...

done.

 

 

With patch & default init options:

pgrun pgbench -i -s 2000 -F 90 -q

dropping old tables...

creating tables...

generating data...

200000000 of 200000000 tuples (100%) done (elapsed 166.53 s, remaining 0.00 s)

vacuuming...

creating primary keys...

total time: 312.94 s (drop 0.00 s, tables 0.03 s, insert 166.58 s, commit 0.51 s, primary 92.59 s, foreign 0.00 s, vacuum 53.23 s)

done.

 

With patch and ‘-I dtgvpf’ options:

pgrun pgbench -i -s 2000 -F 90 -q -I dtgvpf

dropping old tables...

creating tables...

generating data...

200000000 of 200000000 tuples (100%) done (elapsed 168.76 s, remaining 0.00 s)

vacuuming...

creating primary keys...

creating foreign keys...

total time: 353.52 s (drop 1.67 s, tables 0.11 s, insert 168.82 s, commit 0.46 s, primary 92.32 s, foreign 40.11 s, vacuum 50.03 s)

done.

 

 

pgbench -i -s 2000 -F 90 -q -I d

dropping old tables...

total time: 1.96 s (drop 1.96 s, tables 0.00 s, insert 0.00 s, commit 0.00 s, primary 0.00 s, foreign 0.00 s, vacuum 0.00 s)

done.

 

pgrun pgbench -i -s 2000 -F 90 -q -I t

creating tables...

total time: 0.08 s (drop 0.00 s, tables 0.08 s, insert 0.00 s, commit 0.00 s, primary 0.00 s, foreign 0.00 s, vacuum 0.00 s)

done.

 

 

pgrun pgbench -i -s 2000 -F 90 -q -I g

creating tables...

200000000 of 200000000 tuples (100%) done (elapsed 165.62 s, remaining 0.00 s)

total time: 166.33 s (drop 0.00 s, tables 0.00 s, insert 165.68 s, commit 0.66 s, primary 0.00 s, foreign 0.00 s, vacuum 0.00 s)

done.

 

pgrun pgbench -i -s 2000 -F 90 -q -I p

creating primary keys...

total time: 100.93 s (drop 0.00 s, tables 0.00 s, insert 0.00 s, commit 0.00 s, primary 100.93 s, foreign 0.00 s, vacuum 0.00 s)

done.

 

 

doug

Вложения

Re: PATCH: pgbench - break out timing data for initializationphases

От
Fabien COELHO
Дата:
Hello Doug,

> With patch and ‘-I dtgvpf’ options:
> pgrun pgbench -i -s 2000 -F 90 -q -I dtgvpf
> dropping old tables...
> creating tables...
> generating data...
> …
> 200000000 of 200000000 tuples (100%) done (elapsed 168.76 s, remaining 0.00 s)
> vacuuming...
> creating primary keys...
> creating foreign keys...
> total time: 353.52 s (drop 1.67 s, tables 0.11 s, insert 168.82 s, commit 0.46 s, primary 92.32 s, foreign 40.11 s,
vacuum50.03 s)
 
> done.

I'm in favor of such a feature.

However, I think that the durations should be shown in the order in which 
the initialization is performed.

I would suggest to:

- move the time measure in the initialization loop, instead of doing it
  in each function, so that it is done just in one place.

- maybe store the actions in some array/list data structure, eg:
   "{ char * phase; double duration; }", so that they can be kept
   in order and eventually repeated.

In order to extract the commit time, I'd say that explicit begin and 
commit should be separate instructions triggerred by '(' and ')'.

Also, I'm not sure of the one line display, maybe it could be done while 
it is in progress, i.e. something like:
   dropping table...
   table drop: 1.67 s
   creating table...
   table creation: 0.11 s
   ...
In which case there is no need for storing the actions and their 
durations, only the running total is needed.

-- 
Fabien.

Re: PATCH: pgbench - break out timing data for initialization phases

От
"Rady, Doug"
Дата:
On 1/29/18, 23:52, "Fabien COELHO" <coelho@cri.ensmp.fr> wrote:
    
    Hello Doug,
Hi Fabien,
    
    > With patch and ‘-I dtgvpf’ options:
    > pgrun pgbench -i -s 2000 -F 90 -q -I dtgvpf
    > dropping old tables...
    > creating tables...
    > generating data...
    > …
    > 200000000 of 200000000 tuples (100%) done (elapsed 168.76 s, remaining 0.00 s)
    > vacuuming...
    > creating primary keys...
    > creating foreign keys...
    > total time: 353.52 s (drop 1.67 s, tables 0.11 s, insert 168.82 s, commit 0.46 s, primary 92.32 s, foreign 40.11
s,vacuum 50.03 s)
 
    > done.
    
    I'm in favor of such a feature.
    
    However, I think that the durations should be shown in the order in which 
    the initialization is performed.

Agreed.
    
    I would suggest to:
    
    - move the time measure in the initialization loop, instead of doing it
      in each function, so that it is done just in one place.

I will do this.
    
    - maybe store the actions in some array/list data structure, eg:
       "{ char * phase; double duration; }", so that they can be kept
       in order and eventually repeated.
    
    In order to extract the commit time, I'd say that explicit begin and 
    commit should be separate instructions triggerred by '(' and ')'.
    
    Also, I'm not sure of the one line display, maybe it could be done while 

The one line display was for ease of parsing it from the output flow.

    it is in progress, i.e. something like:
       dropping table...
       table drop: 1.67 s
       creating table...
       table creation: 0.11 s
       ...
    In which case there is no need for storing the actions and their 
    durations, only the running total is needed.

Doing the "in progress" way suffers from everything before 'generating data' possibly scrolling off the screen/window.
For me, it is much handier to look at one set of duration times all reported together after all of the initialize
phasesare done.
 
    
    -- 
    Fabien.

Thanks!
doug


Re: PATCH: pgbench - break out timing data for initializationphases

От
Fabien COELHO
Дата:
Hello Doug,

> Doing the "in progress" way suffers from everything before 'generating 
> data' possibly scrolling off the screen/window.

Yeah, that is a point.

I tend to "| less" when I want to see a long output in details, so it is 
not an issue for me.

Also, I like to have an information when it is available, and not have to 
wait 
for the end.

Finally, note that pre data loading operations are expected to be quite 
fast, thus not that significant (create table, ...). Longer operations 
would occur after a large data set is loaded, thus after the large loading 
progress output which scrolls the screen.

> For me, it is much handier to look at one set of duration times all 
> reported together after all of the initialize phases are done.

Then for this apporach the duration data must be stored and then printed 
in the end.

-- 
Fabien.


Re: PATCH: pgbench - break out timing data for initialization phases

От
Andres Freund
Дата:
Hi,

On 2018-02-21 17:58:49 +0000, Rady, Doug wrote:
>     - move the time measure in the initialization loop, instead of doing it
>       in each function, so that it is done just in one place.
> 
> I will do this.

Given the last v11 CF is just about to start, there's no new version
yet, the patch is late in the cycle, I think we should / need to boot
this to the next CF.

Greetings,

Andres Freund


Re: Re: PATCH: pgbench - break out timing data for initializationphases

От
David Steele
Дата:
Hi Doug,

On 3/1/18 3:57 AM, Andres Freund wrote:
> Hi,
> 
> On 2018-02-21 17:58:49 +0000, Rady, Doug wrote:
>>     - move the time measure in the initialization loop, instead of doing it
>>       in each function, so that it is done just in one place.
>>
>> I will do this.
> 
> Given the last v11 CF is just about to start, there's no new version
> yet, the patch is late in the cycle, I think we should / need to boot
> this to the next CF.

Since this submission is in Waiting on Author state I have marked it
Returned with Feedback.  Please move this entry to the next CF when you
have an updated patch.

Regards,
-- 
-David
david@pgmasters.net