RFR: 8159893: StringTable cleaning log line lacks the GC ID prefix

Stefan Karlsson stefan.karlsson at oracle.com
Wed Jun 22 09:28:22 UTC 2016


Hi Kirk,

On 2016-06-22 08:12, kirk at kodewerk.com wrote:
> Hi Stefan,
>
> The GC logs carry their own timers aside from the decorations provided by the logging framework. Should this entry also uses that timer?

Unfortunately, there's no separate string table and symbol table 
cleaning phase. The cleaning is done in parallel with the code cache 
cleaning and Klass cleaning in the Parallel Unloading phase:

GC(7) Parallel Unloading (4.591s, 4.596s) 4.902ms


StefanK

>
> Kind regards,
> Kirk Pepperdine
>
>> On Jun 21, 2016, at 1:58 PM, Stefan Karlsson <stefan.karlsson at oracle.com> wrote:
>>
>> Thanks, Jon.
>>
>> StefanK
>>
>> On 2016-06-20 18:08, Jon Masamitsu wrote:
>>> Change looks good.
>>>
>>> Jon
>>>
>>> On 06/20/2016 05:55 AM, Stefan Karlsson wrote:
>>>> Hi all,
>>>>
>>>> Please review this patch to fix the log line of the StringTable cleaning:
>>>>
>>>> http://cr.openjdk.java.net/~stefank/8159893/webrev.00/
>>>> https://bugs.openjdk.java.net/browse/JDK-8159893
>>>>
>>>> Before the patch:
>>>> [4.591s][debug][gc,phases,start ] GC(7) Parallel Unloading (4.591s)
>>>> [4.596s][info ][gc,stringtable  ] Cleaned string and symbol table, strings: 5899 processed, 0 removed, symbols: 34149 processed, 0 removed
>>>> [4.596s][debug][gc,phases       ] GC(7) Parallel Unloading (4.591s, 4.596s) 4.902ms
>>>> [4.596s][info ][gc              ] GC(7) Pause Remark 70M->70M(20480M) (4.578s, 4.596s) 18.161ms
>>>>
>>>> After the patch:
>>>> [4.591s][debug][gc,phases,start ] GC(7) Parallel Unloading (4.591s)
>>>> [4.596s][info ][gc,stringtable  ] GC(7) Cleaned string and symbol table, strings: 5899 processed, 0 removed, symbols: 34149 processed, 0 removed
>>>> [4.596s][debug][gc,phases       ] GC(7) Parallel Unloading (4.591s, 4.596s) 4.902ms
>>>> [4.596s][info ][gc              ] GC(7) Pause Remark 70M->70M(20480M) (4.578s, 4.596s) 18.161ms
>>>>
>>>> The TestStringSymbolTableStats test was update to match and test the new format.
>>>>
>>>> Thanks,
>>>> StefanK




More information about the hotspot-gc-dev mailing list