<html>
<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
</head>
<body bgcolor="#FFFFFF" text="#000000">
<br>
<br>
<div class="moz-cite-prefix">On 2015-09-24 18:14, Bernd wrote:<br>
</div>
<blockquote
cite="mid:CABOR3+wLgUvvWqJaF+rPEMNgzin4DP7Av_BixTJDyCh7f_MX5w@mail.gmail.com"
type="cite">
<pre wrap="">forget to cc the list:</pre>
</blockquote>
<br>
<div class="moz-text-flowed" style="font-family: -moz-fixed;
font-size: 12px;" lang="x-unicode">Hi Bernd,
<br>
<br>
On 2015-09-24 18:13, Bernd wrote:
<br>
<blockquote type="cite" style="color: #000000;">Are you planning
to use different locales for the number rendering? In
<br>
your example the comma is not only confusing but also makes it
harder
<br>
to parse.
<br>
</blockquote>
<br>
If you are referring the logging of times in my example then they
are printed with the %f formating in C++. So, they will by locale
dependent. This is the same as in the existing GC logging. My
locale is Swedish, thus the commas as decimal separators.
<br>
<br>
<br>
<blockquote type="cite" style="color: #000000;"> Will size
numbers always printed with dynamic units?
<br>
</blockquote>
<br>
Currently I use the same conversion as the existing GC logging.
Personally I don't like it when the unit for a repeated log record
changes dynamically. But I'll leave it the same way we have it now
for starters. In a second step we can review the unit formatting.
<br>
<br>
<blockquote type="cite" style="color: #000000;"> is it
<br>
possible to stick with one format for seperating units from
numbers
<br>
(i.e. "12 ms" vs. "12M")
<br>
</blockquote>
<br>
Sorry, I'm not sure understand this question. Are you referring to
the space between the number and the unit? In that case, sure, we
can try to standardize on it. What do you prefer ? With or without
space?
<br>
<br>
<blockquote type="cite" style="color: #000000;">
<br>
The GC number in all lines which belong together and the
different
<br>
levels look good. How do you handle collectiopns which kick off
other
<br>
collections?
<br>
</blockquote>
<br>
This will be the same as it is today with the GC number. The next
collection will get a new GC number.
<br>
<br>
Similarly concurrent collections. They will keep their GC number
throughout the concurrent cycle and young GCs that happen during
the cycle will have their own number.
<br>
<br>
<br>
<blockquote type="cite" style="color: #000000;">Personally I think
we dont need xml, but we should have a simple
<br>
pattern to parse those lines.
<br>
<br>
<blank>*[Name: att1=123 Unit, att2=123 Unit, ...]
<br>
<br>
This allows variable indention, variable number of attributes.
And if
<br>
you stick to "." decimal even the , has a function <span
class="moz-smiley-s1" title=":)"></span>
<br>
</blockquote>
<br>
Not sure we want to stick to "." as a decimal separator. I realize
that having it locale dependent can cause problems, but it is the
standard way of formating floating point numbers.
<br>
<br>
<blockquote type="cite" style="color: #000000;">
<br>
Gruss
<br>
Bernd
<br>
<br>
PS: while you are at it, does the new logging framewor allow
rolling
<br>
logging and avoids overwriting the current log on restart
(something
<br>
the current log settings not allow without using %p).
<br>
</blockquote>
<br>
I think all that is supported, but it is supported through the
unfied logging framework. So, it might be better to ask about that
in that email thread.
<br>
<br>
Cheers,
<br>
Bengt
<br>
<br>
<br>
<blockquote type="cite" style="color: #000000;">
<br>
<br>
<br>
<br>
<br>
2015-09-24 14:08 GMT+02:00 Bengt Rutisson <a
class="moz-txt-link-rfc2396E"
href="mailto:bengt.rutisson@oracle.com"><bengt.rutisson@oracle.com></a>:
<br>
<blockquote type="cite" style="color: #000000;">
<br>
On 2015-09-24 04:24, <a class="moz-txt-link-abbreviated"
href="mailto:mark.reinhold@oracle.com">mark.reinhold@oracle.com</a>
wrote:
<br>
<blockquote type="cite" style="color: #000000;">New JEP
Candidate: <a class="moz-txt-link-freetext"
href="http://openjdk.java.net/jeps/271">http://openjdk.java.net/jeps/271</a>
<br>
<br>
- Mark
<br>
</blockquote>
<br>
Hi everyone,
<br>
<br>
I've started implementing a prototype for this JEP and thought
I'd provide
<br>
some samples of what I have done so far. Below are a few
examples. There is
<br>
more to think about and discuss than what I have shown below,
but I hope
<br>
this is a good start. I will post more updates as I move
forward with the
<br>
prototype.
<br>
<br>
Running with -XX:+PrintGC in the current code will give
logging like this:
<br>
<br>
#14: [GC pause (G1 Evacuation Pause) (young)
106M->63M(128M), 0,0089484
<br>
secs]
<br>
<br>
This line is actually printed in several steps. At the start
of the GC the
<br>
first part is written, then at the end of the GC the second
part is written
<br>
(actually the last part is written in two steps, first the
heap usage
<br>
information and then the timing information).
<br>
<br>
The unified logging framework does not support logging partial
lines (for
<br>
good reasons), so I'm replacing this single line with two
lines logged on
<br>
the "gc" tag at "info" level. That is, in my prototype running
with -Xlog:gc
<br>
will give the following log lines:
<br>
<br>
[0,743s][info][gc] GC#14 start [young, G1 Evacuation Pause]
<br>
[0,756s][info][gc] GC#14 end [111,1M->100,2M(128,0M)]
[12,808 ms]
<br>
<br>
The exact formatting of these lines is not set in stone yet,
and I'm happy
<br>
to hear some suggestions on how to format this nicely, but
some important
<br>
things I'd like to point out:
<br>
<br>
- Splitting the single log line up into two lines makes sure
that we don't
<br>
get other logging interleaved inside the GC start/end log
lines.
<br>
- The timestamp decorations allows for nicer tracking of GC
times than just
<br>
the duration and a single timestamp (as if you would run with
<br>
PrintGCTimestamps today).
<br>
- I'm logging the duration of the GC in milliseconds rather
than seconds.
<br>
Using seconds sets the wrong expectations IMHO.
<br>
- The GC number (GC#14 in the example above) is logged using
the prefix
<br>
support in the unified logging framework. Thus it will be
added to all GC
<br>
logging automatically.
<br>
<br>
<br>
For those that really just want one line per GC, I've added a
"summary" tag.
<br>
Running with -Xlog:gc+summary will give one line per GC that
looks like
<br>
this:
<br>
<br>
[0,768s][info][gc,summary] GC#14 [young, G1 Evacuation Pause]
<br>
[112,5M->100,6M(128,0M)] [15,697 ms]
<br>
<br>
This line is printed at the <b class="moz-txt-star"><span
class="moz-txt-tag">*</span>end<span class="moz-txt-tag">*</span></b>
of the the GC. It will be logged with one
<br>
single log statement, so no other logging can be interleaved
with it.
<br>
<br>
<br>
<br>
Running with PrintGCDetails in the current code give some more
information
<br>
than with just PrintGC. In particular G1 is pretty verbose
when run with
<br>
PrintGCDetails. A typical G1 log section for a GC when run
with
<br>
PrintGCDetails looks like this:
<br>
<br>
#14: [GC pause (G1 Evacuation Pause) (young), 0,0098534 secs]
<br>
[Parallel Time: 3,2 ms, GC Workers: 23]
<br>
[GC Worker Start (ms): Min: 530,9, Avg: 531,3, Max:
531,6, Diff: 0,7]
<br>
[Ext Root Scanning (ms): Min: 0,0, Avg: 0,1, Max: 0,4,
Diff: 0,4, Sum:
<br>
1,8]
<br>
[Update RS (ms): Min: 0,0, Avg: 0,2, Max: 1,8, Diff:
1,8, Sum: 4,0]
<br>
[Processed Buffers: Min: 0, Avg: 1,0, Max: 3, Diff:
3, Sum: 24]
<br>
[Scan RS (ms): Min: 0,0, Avg: 0,0, Max: 0,1, Diff: 0,1,
Sum: 0,2]
<br>
[Code Root Scanning (ms): Min: 0,0, Avg: 0,0, Max: 0,0,
Diff: 0,0,
<br>
Sum: 0,0]
<br>
[Object Copy (ms): Min: 0,0, Avg: 1,1, Max: 1,3, Diff:
1,2, Sum: 26,2]
<br>
[Termination (ms): Min: 0,0, Avg: 0,6, Max: 0,6, Diff:
0,6, Sum: 13,1]
<br>
[Termination Attempts: Min: 1, Avg: 5,5, Max: 7,
Diff: 6, Sum: 127]
<br>
[GC Worker Other (ms): Min: 0,0, Avg: 0,0, Max: 0,2,
Diff: 0,2, Sum:
<br>
1,1]
<br>
[GC Worker Total (ms): Min: 1,7, Avg: 2,0, Max: 2,4,
Diff: 0,8, Sum:
<br>
46,5]
<br>
[GC Worker End (ms): Min: 533,3, Avg: 533,3, Max:
533,5, Diff: 0,2]
<br>
[Code Root Fixup: 0,0 ms]
<br>
[Code Root Purge: 0,0 ms]
<br>
[Clear CT: 2,4 ms]
<br>
[Other: 4,3 ms]
<br>
[Choose CSet: 0,0 ms]
<br>
[Ref Proc: 2,4 ms]
<br>
[Ref Enq: 0,0 ms]
<br>
[Redirty Cards: 1,7 ms]
<br>
[Humongous Register: 0,0 ms]
<br>
[Humongous Reclaim: 0,0 ms]
<br>
[Free CSet: 0,1 ms]
<br>
[Eden: 44,0M(44,0M)->0,0B(45,0M) Survivors:
4096,0K->4096,0K Heap:
<br>
107,6M(128,0M)->63,8M(128,0M)]
<br>
[Times: user=0,07 sys=0,00 real=0,01 secs]
<br>
<br>
<br>
<br>
I've split this logging up a bit over a few different tags to
give the user
<br>
more control over the output. This can be seen by running with
<br>
-Xlog:gc*=debug. Here's what that looks like in my prototype
today:
<br>
<br>
<br>
[0,782s][info ][gc ] GC#14 start [young, G1
Evacuation Pause]
<br>
[0,799s][debug ][gc,phases ] GC#14 Parallel Time: 5,4 ms
<br>
[0,799s][debug ][gc,phases ] GC#14 GC Worker
Start: Min:
<br>
782,6, Avg: 783,0, Max: 783,3, Diff: 0,7
<br>
[0,799s][debug ][gc,phases ] GC#14 Ext Root
Scanning: Min:
<br>
0,0, Avg: 0,1, Max: 0,4, Diff: 0,4, Sum: 2,8
<br>
[0,799s][debug ][gc,phases ] GC#14 Update
RS: Min:
<br>
0,0, Avg: 0,3, Max: 2,6, Diff: 2,6, Sum: 7,0
<br>
[0,799s][debug ][gc,phases ] GC#14 Processed
Buffers: Min:
<br>
0, Avg: 1,1, Max: 3, Diff: 3, Sum: 25
<br>
[0,799s][debug ][gc,phases ] GC#14 Scan
RS: Min:
<br>
0,0, Avg: 0,0, Max: 0,0, Diff: 0,0, Sum: 0,1
<br>
[0,799s][debug ][gc,phases ] GC#14 Code Root
Scanning: Min:
<br>
0,0, Avg: 0,0, Max: 0,0, Diff: 0,0, Sum: 0,0
<br>
[0,799s][debug ][gc,phases ] GC#14 Object
Copy: Min:
<br>
1,1, Avg: 3,3, Max: 3,6, Diff: 2,5, Sum: 75,7
<br>
[0,799s][debug ][gc,phases ] GC#14 Termination:
Min: 0,0,
<br>
Avg: 0,1, Max: 0,2, Diff: 0,2, Sum: 2,9
<br>
[0,799s][debug ][gc,phases ] GC#14 Termination
Attempts: Min:
<br>
1, Avg: 1,0, Max: 1, Diff: 0, Sum: 23
<br>
[0,799s][debug ][gc,phases ] GC#14 GC Worker
Other: Min:
<br>
0,0, Avg: 0,1, Max: 0,4, Diff: 0,4, Sum: 3,1
<br>
[0,799s][debug ][gc,phases ] GC#14 GC Worker
Total: Min:
<br>
3,6, Avg: 4,0, Max: 4,3, Diff: 0,7, Sum: 91,7
<br>
[0,799s][debug ][gc,phases ] GC#14 GC Worker
End: Min:
<br>
786,9, Avg: 787,0, Max: 787,2, Diff: 0,4
<br>
[0,799s][debug ][gc,phases ] GC#14 Code Root Fixup: 0,0 ms
<br>
[0,799s][debug ][gc,phases ] GC#14 Code Root Purge: 0,0 ms
<br>
[0,799s][debug ][gc,phases ] GC#14 Clear CT: 2,7 ms
<br>
[0,799s][debug ][gc,phases ] GC#14 Other: 8,5 ms
<br>
[0,800s][debug ][gc,phases ] GC#14 Choose CSet: 0,0 ms
<br>
[0,800s][debug ][gc,phases ] GC#14 Ref Proc: 2,4 ms
<br>
[0,800s][debug ][gc,phases ] GC#14 Ref Enq: 0,0 ms
<br>
[0,800s][debug ][gc,phases ] GC#14 Redirty Cards: 2,0
ms
<br>
[0,800s][debug ][gc,phases ] GC#14 Humongous Register:
0,0 ms
<br>
[0,800s][debug ][gc,phases ] GC#14 Humongous Reclaim:
0,0 ms
<br>
[0,800s][debug ][gc,phases ] GC#14 Free CSet: 3,5 ms
<br>
[0,800s][debug ][gc,heap ] GC#14 Eden: Used before:
17,0M Used
<br>
after: 0,0B Capacity: 17,0M
<br>
[0,800s][debug ][gc,heap ] GC#14 Survivor: Used before:
3072,0K Used
<br>
after: 3072,0K Capacity: 3072,0K
<br>
[0,800s][debug ][gc,heap ] GC#14 Heap: Used before:
110,7M Used
<br>
after: 94,3M Capacity: 128,0M
<br>
[0,800s][info ][gc,summary] GC#14 [young, G1 Evacuation
Pause]
<br>
[110,7M->94,3M(128,0M)] [16,562 ms]
<br>
[0,800s][info ][gc ] GC#14 end
[110,7M->94,3M(128,0M)] [16,562 ms]
<br>
[0,800s][debug ][gc ] GC#14 [Times: user=0,10 sys=0,00
real=0,02
<br>
secs]
<br>
<br>
<br>
<br>
For example, if you are not interested in the timing of the
different
<br>
phases, but still want to know the eden/survivor usage you can
run with
<br>
-Xlog:gc,gc+heap=debug and you get this information for each
GC:
<br>
<br>
[0,771s][info ][gc ] GC#14 start [young, G1 Evacuation
Pause]
<br>
[0,788s][debug ][gc,heap] GC#14 Eden: Used before: 15,0M
Used after:
<br>
0,0B Capacity: 14,0M
<br>
[0,788s][debug ][gc,heap] GC#14 Survivor: Used before:
3072,0K Used after:
<br>
3072,0K Capacity: 3072,0K
<br>
[0,788s][debug ][gc,heap] GC#14 Heap: Used before: 111,2M
Used after:
<br>
97,1M Capacity: 128,0M
<br>
[0,788s][info ][gc ] GC#14 end
[111,2M->97,1M(128,0M)] [16,651 ms]
<br>
<br>
<br>
<br>
My intent is to remove all Print*GC* and Trace*GC* flags that
we currently
<br>
have and replace them with tags for the unified logging
framework. As shown
<br>
with the PrintGCDetails example above it is not sure that
there will be a
<br>
simple mapping from one flag to one tag. But all information
that is
<br>
currently logged will be logged in the new implementation too.
Since the
<br>
decorations include the tags it is pretty easy to find out
what tags
<br>
interesting information is logged on and configure your
logging to show that
<br>
information.
<br>
<br>
I'm currently thinking that we should probably keep the
PrintGC and
<br>
PrintGCDetails flags since they are very widely used. We could
deprecate
<br>
them and just have them map to some -Xlog configuration. My
suggestion would
<br>
be to map PrintGC to -Xlog:gc and PrintGCDetails to
-Xlog:gc*=debug.
<br>
<br>
All the examples above are from my current prototype. This is
work in
<br>
progress and may well change when it is time for the final
review round.
<br>
<br>
I'm happy to hear feedback now, but I will also try to post
updates on this
<br>
mailing list as I move forward with my prototype.
<br>
<br>
Thanks,
<br>
Bengt
<br>
</blockquote>
</blockquote>
<br>
</div>
<br>
</body>
</html>