Skip to Content.
Sympa Menu

grouper-users - Re: [grouper-users] changelogTemp to changelog main processing

Subject: Grouper Users - Open Discussion List

List archive

Re: [grouper-users] changelogTemp to changelog main processing


Chronological Thread 
  • From: Andrew Morgan <>
  • To: Michael R Gettes <>
  • Cc: Shilen Patel <>, grouper-users <>
  • Subject: Re: [grouper-users] changelogTemp to changelog main processing
  • Date: Wed, 15 Feb 2017 12:07:23 -0800 (PST)
  • Ironport-phdr: 9a23:s6koohOB4sZb+I9vjSAl6mtUPXoX/o7sNwtQ0KIMzox0LfX+rarrMEGX3/hxlliBBdydsKMZzbKM+Pm7ACQp2tWoiDg6aptCVhsI2409vjcLJ4q7M3D9N+PgdCcgHc5PBxdP9nC/NlVJSo6lPwWB6nK94iQPFRrhKAF7Ovr6GpLIj8Swyuu+54Dfbx9GiTe5Yb5+Ngm6oRveusULj4ZuN7s6xwfUrHdPZ+lY335jK0iJnxb76Mew/Zpj/DpVtvk86cNOUrj0crohQ7BAAzsoL2465MvwtRneVgSP/WcTUn8XkhVTHQfI6gzxU4rrvSv7sup93zSaPdHzQLspVzmu87tnRRn1gyocKTU37H/YhdBxjKJDoRKuuRp/w5LPYIqIMPZyZ77Rcc8GSWZEWMtaSi5PDZ6mb4YXAeQPPfhWoZT/qFUNoxuxCwajC//0xz9UmnP6wbE23/g7HA3Y2gErAtIAsG7TrNXwLKofTea1w7TSzTrdYfJdxDDz6I/SchAuu/6MW697fM3UyUkoDQPFgU+fqYr+MjOSzOQNqHSb4/B+Wu2ylm4qsgd8qSWsyMc0koTFm5wZx1Pe+SlkxIs4K8e0RFN7bNK+H5ZcqjmWO5ZoTs4hWW1kpSI3x7MctZKmYiQG0okryh/ZZveaaYaH+AjjW/yUITpghHJqZra/hxGq/Ei7z+38StG03VhQoipDnNjMrWoB1xvJ6seZRft9+UGh2S2T1w/J9uFLP1o4mrTGJJ482rIwl5wTvlrfHiLuhUn6kqybel859uWs5enreKjqq5+GO4J7lw3yKqEulda+AeQ8PAgORW+b+eGk2b3m+k35WrpKgecwkqTCt5DaP98bprKjDwBLz4kj9g6zDy2639QAgXkHMFVFdQqIj4jzPFHOPej4Aumlg1i1jTdr3O7JPqf6ApjWKnjDkazhfapm60JC0gYzzNZf545KBbEbJvL8RFPxuMLCAhAnLgO03rWvNNIo84IVWWuCBuejeIzfrUOF/ap7JvODP9c9oC3gbfUp+qi9o2U+nAo0e6Wz0IRfTXeiEf1gaxGcZmDji9EpFn0RokwzQPG82w7KaiJae3vnB/F03To8Eo/zSN6bHo0=

On Tue, 14 Feb 2017, Michael R Gettes wrote:

And, in case anyone is interested, here is what I use to do the calculation:

select
to_char ( sum (TOTAL_COUNT) / (sum (MILLIS)/1000), '9999.99') as
AVERAGE_PER_SECOND,
to_char ( sum (TOTAL_COUNT), '9999999') as TOTAL_CHANGES,
to_char ( count ( MILLIS ), '999999') as TOTAL_JOBS,
to_char ( sum (MILLIS) / 1000, '999999.99' ) as TOTAL_SECONDS
from grouper_loader_log
where ( job_name like '%CHANGE_LOG_ch%' ) and ENDED_TIME is not null
and (STARTED_TIME >= trunc(sysdate-1) -- today and yesterday
)
and TOTAL_COUNT > 0 ;

I am curious as to the performance seen by others. We are on Oracle - but I am interested in other DB product numbers as well.

Here is our output:

AVERAGE_ TOTAL_CH TOTAL_J TOTAL_SECO
-------- -------- ------- ----------
14.25 7135 120 500.76


We are running on Oracle as well.

Andy



Archive powered by MHonArc 2.6.19.

Top of Page