RFR(L) 8237354: Add option to jcmd to write a gzipped heap dump

2020-02-07 Thread Schmelter, Ralf
Hi everyone, this change adds the option to write a hprof heap dump directly gzipped. Currently this is supported for the GC.heap_dump diagnostic command via the "-gz" flag. Since gzip is not particular fast when compressing the data, the actual compression will be done parallel in a bunch of

Re: RFR(L) 8237354: Add option to jcmd to write a gzipped heap dump

2020-02-08 Thread Yasumasa Suenaga
Hi Ralf, - diagnosticCommand.cpp You can use `DCmdArgument` for -gz option. If you want to use lesser type (e.g. int, unsigned char), I guess you need to modify GenDCmdArgument class. - heapDumper.cpp _nr_of_threads, _id_to_write, _current in CompressionBackend should be added `volatile` a

RE: RFR(L) 8237354: Add option to jcmd to write a gzipped heap dump

2020-02-10 Thread Schmelter, Ralf
eads by the compression level. Best regards, Ralf Schmelter -Original Message- From: Yasumasa Suenaga Sent: Samstag, 8. Februar 2020 14:46 To: Schmelter, Ralf ; OpenJDK Serviceability Cc: yasue...@gmail.com Subject: Re: RFR(L) 8237354: Add option to jcmd to write a gzipped heap dump Hi Ral

Re: RFR(L) 8237354: Add option to jcmd to write a gzipped heap dump

2020-02-10 Thread David Holmes
lter, Ralf ; OpenJDK Serviceability Cc: yasue...@gmail.com Subject: Re: RFR(L) 8237354: Add option to jcmd to write a gzipped heap dump Hi Ralf, - diagnosticCommand.cpp You can use `DCmdArgument` for -gz option. If you want to use lesser type (e.g. int, unsigned char), I guess y

Re: RFR(L) 8237354: Add option to jcmd to write a gzipped heap dump

2020-02-10 Thread David Holmes
hmelter -Original Message- From: Yasumasa Suenaga Sent: Samstag, 8. Februar 2020 14:46 To: Schmelter, Ralf ; OpenJDK Serviceability Cc: yasue...@gmail.com Subject: Re: RFR(L) 8237354: Add option to jcmd to write a gzipped heap dump Hi Ralf, - diagnosticCommand.cpp    You can use `

RE: RFR(L) 8237354: Add option to jcmd to write a gzipped heap dump

2020-02-11 Thread Schmelter, Ralf
) 8237354: Add option to jcmd to write a gzipped heap dump Hi Ralf, One part of this caught my eye and now I look at the webrev I have some concerns. Introducing new threads to the VM is not something that should be done lightly and it has to be done very carefully - I need to look closer at this

Re: RFR(L) 8237354: Add option to jcmd to write a gzipped heap dump

2020-02-11 Thread Yasumasa Suenaga
2020 14:46 To: Schmelter, Ralf ; OpenJDK Serviceability Cc: yasue...@gmail.com Subject: Re: RFR(L) 8237354: Add option to jcmd to write a gzipped heap dump Hi Ralf, - diagnosticCommand.cpp You can use `DCmdArgument` for -gz option. If you want to use lesser type (e.g. int, unsigned char), I g

RE: RFR(L) 8237354: Add option to jcmd to write a gzipped heap dump

2020-02-11 Thread Schmelter, Ralf
Hi Yasumasa, I think I've tried too much by using the -gz flag as a boolean plus a int value. I've decided to use two options instead: -gz as a boolean option to turn compression on and -gz-level to specify the compression level. E.g. GC.heap_dump -gz -gz-level=3 test.hprof.gz Best regards, Ra

Re: RFR(L) 8237354: Add option to jcmd to write a gzipped heap dump

2020-02-11 Thread serguei . spitsyn
Hi Ralf, I'd suggest for the option format something like this:   -gz[=level] where level is an int. The part [=level] is optional. The level is 0 by default (if it is not set). Thanks, Serguei On 2/11/20 7:35 AM, Schmelter, Ralf wrote: Hi Yasumasa, I think I've tried too much by using the -

Re: RFR(L) 8237354: Add option to jcmd to write a gzipped heap dump

2020-02-11 Thread serguei . spitsyn
Ralf, I see this feature adds a lot of code. In fact, I'm not sure, it is worth to add this kind of complexity (including new compressing threads) into the VM implementation. What is a real use case behind it? Could this compressing be done separately from VM implementation? Thanks, Serguei

Re: RFR(L) 8237354: Add option to jcmd to write a gzipped heap dump

2020-02-11 Thread Laurence Cable
On 2/11/20 11:41 AM, serguei.spit...@oracle.com wrote: Hi Ralf, I'd suggest for the option format something like this:   -gz[=level] where level is an int. The part [=level] is optional. The level is 0 by default (if it is not set). +1! Thanks, Serguei On 2/11/20 7:35 AM, Schmelter, Ral

Re: RFR(L) 8237354: Add option to jcmd to write a gzipped heap dump

2020-02-11 Thread Laurence Cable
On 2/11/20 11:49 AM, serguei.spit...@oracle.com wrote: Ralf, I see this feature adds a lot of code. In fact, I'm not sure, it is worth to add this kind of complexity (including new compressing threads) into the VM implementation. What is a real use case behind it? Could this compressing be

Re: RFR(L) 8237354: Add option to jcmd to write a gzipped heap dump

2020-02-11 Thread David Holmes
Cc: yasue...@gmail.com Subject: Re: RFR(L) 8237354: Add option to jcmd to write a gzipped heap dump Hi Ralf, - diagnosticCommand.cpp    You can use `DCmdArgument` for -gz option.    If you want to use lesser type (e.g. int, unsigned char), I guess you need to modify GenDCmdArgument cla

Re: RFR(L) 8237354: Add option to jcmd to write a gzipped heap dump

2020-02-11 Thread David Holmes
ks! Yasumasa (ysuenaga) Best regards, Ralf Schmelter -Original Message- From: Yasumasa Suenaga Sent: Samstag, 8. Februar 2020 14:46 To: Schmelter, Ralf ; OpenJDK Serviceability Cc: yasue...@gmail.com Subject: Re: RFR(L) 8237354: Add option to jcmd to write a gzipped heap dump H

Re: RFR(L) 8237354: Add option to jcmd to write a gzipped heap dump

2020-02-11 Thread Yasumasa Suenaga
Hi Ralf, I agree with Serguei and Laurence. +1 to -gz[=level] only. Yasumasa On 2020/02/12 0:35, Schmelter, Ralf wrote: Hi Yasumasa, I think I've tried too much by using the -gz flag as a boolean plus a int value. I've decided to use two options instead: -gz as a boolean option to turn co

RE: RFR(L) 8237354: Add option to jcmd to write a gzipped heap dump

2020-02-12 Thread Schmelter, Ralf
t: Dienstag, 11. Februar 2020 08:44 To: Schmelter, Ralf ; Yasumasa Suenaga ; OpenJDK Serviceability Cc: yasue...@gmail.com Subject: Re: RFR(L) 8237354: Add option to jcmd to write a gzipped heap dump Hi again Ralf, :) A few more comments after taking a closer look at the thread code. On the surface

RE: RFR(L) 8237354: Add option to jcmd to write a gzipped heap dump

2020-02-12 Thread Schmelter, Ralf
an integer seems strange too. Best regards, Ralf -Original Message- From: serguei.spit...@oracle.com Sent: Dienstag, 11. Februar 2020 20:42 To: Schmelter, Ralf ; Yasumasa Suenaga ; OpenJDK Serviceability Cc: yasue...@gmail.com Subject: Re: RFR(L) 8237354: Add option to jcmd to write

RE: RFR(L) 8237354: Add option to jcmd to write a gzipped heap dump

2020-02-12 Thread Schmelter, Ralf
- From: serguei.spit...@oracle.com Sent: Dienstag, 11. Februar 2020 20:49 To: Schmelter, Ralf ; Yasumasa Suenaga ; OpenJDK Serviceability Cc: yasue...@gmail.com Subject: Re: RFR(L) 8237354: Add option to jcmd to write a gzipped heap dump Ralf, I see this feature adds a lot of code. In fac

Re: RFR(L) 8237354: Add option to jcmd to write a gzipped heap dump

2020-02-12 Thread Laurence Cable
Re: RFR(L) 8237354: Add option to jcmd to write a gzipped heap dump Ralf, I see this feature adds a lot of code. In fact, I'm not sure, it is worth to add this kind of complexity (including new compressing threads) into the VM implementation. What is a real use case behind it? Could this comp

Re: RFR(L) 8237354: Add option to jcmd to write a gzipped heap dump

2020-02-12 Thread David Holmes
directly. Thanks, will do. Best regards, Ralf -Original Message- From: David Holmes Sent: Dienstag, 11. Februar 2020 08:44 To: Schmelter, Ralf ; Yasumasa Suenaga ; OpenJDK Serviceability Cc: yasue...@gmail.com Subject: Re: RFR(L) 8237354: Add option to jcmd to write a gzipped heap dump Hi a

Re: RFR(L) 8237354: Add option to jcmd to write a gzipped heap dump

2020-02-18 Thread Ioi Lam
; Yasumasa Suenaga ; OpenJDK Serviceability Cc: yasue...@gmail.com Subject: Re: RFR(L) 8237354: Add option to jcmd to write a gzipped heap dump Ralf, I see this feature adds a lot of code. In fact, I'm not sure, it is worth to add this kind of complexity (including new compressing threads) in

Re: RFR(L) 8237354: Add option to jcmd to write a gzipped heap dump

2020-02-18 Thread Laurence Cable
tag, 11. Februar 2020 20:49 To: Schmelter, Ralf ; Yasumasa Suenaga ; OpenJDK Serviceability Cc: yasue...@gmail.com Subject: Re: RFR(L) 8237354: Add option to jcmd to write a gzipped heap dump Ralf, I see this feature adds a lot of code. In fact, I'm not sure, it is worth to add thi

RE: RFR(L) 8237354: Add option to jcmd to write a gzipped heap dump

2020-02-19 Thread Schmelter, Ralf
They don't accesses objects, classes or other 'VM objects'. Best regards, Ralf -Original Message- From: David Holmes Sent: Donnerstag, 13. Februar 2020 05:28 To: Schmelter, Ralf ; Yasumasa Suenaga ; OpenJDK Serviceability Cc: yasue...@gmail.com Subject: Re: RFR(L)

RE: RFR(L) 8237354: Add option to jcmd to write a gzipped heap dump

2020-02-19 Thread Schmelter, Ralf
Original Message- From: Ioi Lam Sent: Mittwoch, 19. Februar 2020 01:16 To: serguei.spit...@oracle.com; Schmelter, Ralf ; hotspot-runtime-...@openjdk.java.net runtime Cc: Laurence Cable ; serviceability-dev@openjdk.java.net Subject: Re: RFR(L) 8237354: Add option to jcmd to write a gzipped

Re: RFR(L) 8237354: Add option to jcmd to write a gzipped heap dump

2020-02-19 Thread Ioi Lam
nsible. Thanks - Ioi Best regards, Ralf -Original Message- From: Ioi Lam Sent: Mittwoch, 19. Februar 2020 01:16 To: serguei.spit...@oracle.com; Schmelter, Ralf ; hotspot-runtime-...@openjdk.java.net runtime Cc: Laurence Cable ; serviceability-dev@openjdk.java.net Subject: Re: RFR

Re: RFR(L) 8237354: Add option to jcmd to write a gzipped heap dump

2020-02-19 Thread Laurence Cable
runtime-...@openjdk.java.net runtime Cc: Laurence Cable ; serviceability-dev@openjdk.java.net Subject: Re: RFR(L) 8237354: Add option to jcmd to write a gzipped heap dump Hi Ralf, We are usually pretty picky about adding new features into the JVM. This seems to be an edge case (where your environment has mo

Re: RFR(L) 8237354: Add option to jcmd to write a gzipped heap dump

2020-02-19 Thread Yasumasa Suenaga
, 19. Februar 2020 01:16 To: serguei.spit...@oracle.com; Schmelter, Ralf ; hotspot-runtime-...@openjdk.java.net runtime Cc: Laurence Cable ; serviceability-dev@openjdk.java.net Subject: Re: RFR(L) 8237354: Add option to jcmd to write a gzipped heap dump Hi Ralf, We are usually pretty picky abou

Re: RFR(L) 8237354: Add option to jcmd to write a gzipped heap dump

2020-02-19 Thread Ioi Lam
er, Ralf ; hotspot-runtime-...@openjdk.java.net runtime Cc: Laurence Cable ; serviceability-dev@openjdk.java.net Subject: Re: RFR(L) 8237354: Add option to jcmd to write a gzipped heap dump Hi Ralf, We are usually pretty picky about adding new features into the JVM. This seems to be an e

Re: RFR(L) 8237354: Add option to jcmd to write a gzipped heap dump

2020-02-19 Thread serguei . spitsyn
oi Lam Sent: Mittwoch, 19. Februar 2020 01:16 To: serguei.spit...@oracle.com; Schmelter, Ralf ; hotspot-runtime-...@openjdk.java.net runtime Cc: Laurence Cable ; serviceability-dev@openjdk.java.net Subject: Re: RFR(L) 8237354: Add option to jcmd to write a gzipped heap dump Hi Ralf, We are us

Re: RFR(L) 8237354: Add option to jcmd to write a gzipped heap dump

2020-02-19 Thread Yasumasa Suenaga
2020 01:16 To: serguei.spit...@oracle.com; Schmelter, Ralf ; hotspot-runtime-...@openjdk.java.net runtime Cc: Laurence Cable ; serviceability-dev@openjdk.java.net Subject: Re: RFR(L) 8237354: Add option to jcmd to write a gzipped heap dump Hi Ralf, We are usually pretty picky about adding new fea

Re: RFR(L) 8237354: Add option to jcmd to write a gzipped heap dump

2020-02-19 Thread Laurence Cable
riginal Message- From: Ioi Lam Sent: Mittwoch, 19. Februar 2020 01:16 To: serguei.spit...@oracle.com; Schmelter, Ralf ; hotspot-runtime-...@openjdk.java.net runtime Cc: Laurence Cable ; serviceability-dev@openjdk.java.net Subject: Re: RFR(L) 8237354: Add option to jcmd to write a gzipped heap dump

RE: RFR(L) 8237354: Add option to jcmd to write a gzipped heap dump

2020-02-20 Thread Schmelter, Ralf
Yasumasa Suenaga Sent: Donnerstag, 20. Februar 2020 00:59 To: Ioi Lam ; Schmelter, Ralf ; serguei.spit...@oracle.com; hotspot-runtime-...@openjdk.java.net runtime Cc: serviceability-dev@openjdk.java.net Subject: Re: RFR(L) 8237354: Add option to jcmd to write a gzipped heap dump Hi, Generally

Re: RFR(L) 8237354: Add option to jcmd to write a gzipped heap dump

2020-02-20 Thread Yasumasa Suenaga
o: Ioi Lam ; Schmelter, Ralf ; serguei.spit...@oracle.com; hotspot-runtime-...@openjdk.java.net runtime Cc: serviceability-dev@openjdk.java.net Subject: Re: RFR(L) 8237354: Add option to jcmd to write a gzipped heap dump Hi, Generally I agree with Ioi, but I think it is not a problem only for gzip

RE: RFR(L) 8237354: Add option to jcmd to write a gzipped heap dump

2020-02-21 Thread Langer, Christoph
rstag, 20. Februar 2020 14:21 > To: Yasumasa Suenaga ; Ioi Lam > ; serguei.spit...@oracle.com; hotspot-runtime- > d...@openjdk.java.net runtime > Cc: serviceability-dev@openjdk.java.net > Subject: [CAUTION] RE: RFR(L) 8237354: Add option to jcmd to write a > gzipped heap dump > > Hi Ya

Re: RFR(L) 8237354: Add option to jcmd to write a gzipped heap dump

2020-02-21 Thread Ioi Lam
-Original Message- From: Yasumasa Suenaga Sent: Donnerstag, 20. Februar 2020 00:59 To: Ioi Lam ; Schmelter, Ralf ; serguei.spit...@oracle.com; hotspot-runtime- d...@openjdk.java.net runtime Cc: serviceability-dev@openjdk.java.net Subject: Re: RFR(L) 8237354: Add option to jcmd to write a

Re: RFR(L) 8237354: Add option to jcmd to write a gzipped heap dump

2020-02-22 Thread Laurence Cable
ei.spit...@oracle.com; hotspot-runtime- d...@openjdk.java.net runtime Cc: serviceability-dev@openjdk.java.net Subject: [CAUTION] RE: RFR(L) 8237354: Add option to jcmd to write a gzipped heap dump Hi Yasumasa, I think it would be great if we could redirect larger chunks data to jcmd. But you

Re: RFR(L) 8237354: Add option to jcmd to write a gzipped heap dump

2020-02-22 Thread Yasumasa Suenaga
v On Behalf Of Schmelter, Ralf Sent: Donnerstag, 20. Februar 2020 14:21 To: Yasumasa Suenaga ; Ioi Lam ; serguei.spit...@oracle.com; hotspot-runtime- d...@openjdk.java.net runtime Cc: serviceability-dev@openjdk.java.net Subject: [CAUTION] RE: RFR(L) 8237354: Add option to jcmd to write a gzip

RE: RFR(L) 8237354: Add option to jcmd to write a gzipped heap dump

2020-02-25 Thread Langer, Christoph
Hi Ioi, > Ralf and Christoph, > > I agree that making it easy for the user is important, so dependency on > an external program like pgzip will be a hassle. Yes 😊 > How about implementing the compression in a Java program? Will something > like this be too much of a hassle? > >     jcmd $PID

Re: RFR(L) 8237354: Add option to jcmd to write a gzipped heap dump

2020-02-25 Thread Ioi Lam
Hi Christoph, This sounds fair. I will remove my objection :-) Thanks - Ioi On 2/25/20 2:21 AM, Langer, Christoph wrote: Hi Ioi, Ralf and Christoph, I agree that making it easy for the user is important, so dependency on an external program like pgzip will be a hassle. Yes 😊 How about im

RE: RFR(L) 8237354: Add option to jcmd to write a gzipped heap dump

2020-03-13 Thread Schmelter, Ralf
iceability-dev@openjdk.java.net Subject: Re: RFR(L) 8237354: Add option to jcmd to write a gzipped heap dump Hi Christoph, This sounds fair. I will remove my objection :-) Thanks - Ioi

Re: RFR(L) 8237354: Add option to jcmd to write a gzipped heap dump

2020-03-17 Thread David Holmes
020 18:03 To: Langer, Christoph ; Schmelter, Ralf ; Yasumasa Suenaga ; serguei.spit...@oracle.com; hotspot-runtime-...@openjdk.java.net runtime Cc: serviceability-dev@openjdk.java.net Subject: Re: RFR(L) 8237354: Add option to jcmd to write a gzipped heap dump Hi Christoph, This sounds fair. I will

Re: RFR(L) 8237354: Add option to jcmd to write a gzipped heap dump

2020-03-17 Thread Schmelter, Ralf
sumasa Suenaga ; serguei.spit...@oracle.com ; hotspot-runtime-...@openjdk.java.net runtime Cc: serviceability-dev@openjdk.java.net Subject: Re: RFR(L) 8237354: Add option to jcmd to write a gzipped heap dump   Hi Ralf, On 13/03/2020 9:43 pm, Schmelter, Ralf wrote: > Hi, > > I have up

Re: RFR(L) 8237354: Add option to jcmd to write a gzipped heap dump

2020-03-17 Thread David Holmes
olmes Sent: Wednesday, March 18, 2020 6:11 AM To: Schmelter, Ralf ; Ioi Lam ; Langer, Christoph ; Yasumasa Suenaga ; serguei.spit...@oracle.com ; hotspot-runtime-...@openjdk.java.net runtime Cc: serviceability-dev@openjdk.java.net Subject: Re: RFR(L) 8237354: Add option to jcmd to wr

RE: RFR(L) 8237354: Add option to jcmd to write a gzipped heap dump

2020-04-14 Thread Reingruber, Richard
Ralf Sent: Freitag, 13. März 2020 12:43 To: Ioi Lam ; Langer, Christoph ; Yasumasa Suenaga ; serguei.spit...@oracle.com; hotspot-runtime-...@openjdk.java.net runtime Cc: serviceability-dev@openjdk.java.net Subject: [CAUTION] RE: RFR(L) 8237354: Add option to jcmd to write a gzipped heap dump H

RE: RFR(L) 8237354: Add option to jcmd to write a gzipped heap dump

2020-04-20 Thread Schmelter, Ralf
enjdk.java.net runtime Cc: serviceability-dev@openjdk.java.net Subject: RE: RFR(L) 8237354: Add option to jcmd to write a gzipped heap dump Hi Ralf, thanks for providing this enhancement to parallel gzip-compress heap dumps! I reckon it's safe to say that the coding is sophisticated. It w

RE: RFR(L) 8237354: Add option to jcmd to write a gzipped heap dump

2020-04-20 Thread Reingruber, Richard
2020 10:30 To: Schmelter, Ralf ; Ioi Lam ; Langer, Christoph ; Yasumasa Suenaga ; serguei.spit...@oracle.com; hotspot-runtime-...@openjdk.java.net runtime Cc: serviceability-dev@openjdk.java.net Subject: RE: RFR(L) 8237354: Add option to jcmd to write a gzipped heap dump Hi Ralf, thanks for providing

Re: RFR(L) 8237354: Add option to jcmd to write a gzipped heap dump

2020-04-20 Thread coleen . phillimore
ber, Richard ; Ioi Lam ; Langer, Christoph ; Yasumasa Suenaga ; serguei.spit...@oracle.com; hotspot-runtime-...@openjdk.java.net runtime Cc: serviceability-dev@openjdk.java.net Subject: RE: RFR(L) 8237354: Add option to jcmd to write a gzipped heap dump Hi Richard, thanks for the review. I

RE: RFR(L) 8237354: Add option to jcmd to write a gzipped heap dump

2020-04-21 Thread Langer, Christoph
> Yasumasa Suenaga ; > serguei.spit...@oracle.com; hotspot-runtime-...@openjdk.java.net > runtime > Cc: serviceability-dev@openjdk.java.net > Subject: RE: RFR(L) 8237354: Add option to jcmd to write a gzipped heap > dump > > Hi Richard, > > thanks for the r

RE: RFR(L) 8237354: Add option to jcmd to write a gzipped heap dump

2020-05-01 Thread Langer, Christoph
Ralf > ; Ioi Lam ; Langer, Christoph > ; Yasumasa Suenaga > ; serguei.spit...@oracle.com; hotspot- > runtime-...@openjdk.java.net runtime d...@openjdk.java.net> > Cc: serviceability-dev@openjdk.java.net > Subject: Re: RFR(L) 8237354: Add option to jcmd to write a gzipped heap

RE: RFR(L) 8237354: Add option to jcmd to write a gzipped heap dump

2020-05-18 Thread Schmelter, Ralf
ot-runtime-...@openjdk.java.net runtime ; coleen.phillim...@oracle.com Subject: RE: RFR(L) 8237354: Add option to jcmd to write a gzipped heap dump Hi Ralf, while I'm reviewing your change I think extracting the compression coding to an own file would be a good idea. Maybe you could name it heapDumpCompres

RE: RFR(L) 8237354: Add option to jcmd to write a gzipped heap dump

2020-06-03 Thread Lindenmaier, Goetz
l Message- From: serviceability-dev On Behalf Of Schmelter, Ralf Sent: Montag, 18. Mai 2020 09:23 To: Langer, Christoph Cc: serviceability-dev@openjdk.java.net; hotspot-runtime-...@openjdk.java.net runtime Subject: [CAUTION] RE: RFR(L) 8237354: Add option to jcmd to write a gzipped heap dump Hi

Re: RFR(L) 8237354: Add option to jcmd to write a gzipped heap dump

2020-06-05 Thread Schmelter, Ralf
c: serviceability-dev@openjdk.java.net ; hotspot-runtime-...@openjdk.java.net runtime Subject: RE: RFR(L) 8237354: Add option to jcmd to write a gzipped heap dump Hi Ralf, I had a look at your change, webrev.3. Thanks for contributing this! Overall, a nicely engineered piece of work. Thus,

RE: RFR(L) 8237354: Add option to jcmd to write a gzipped heap dump

2020-06-05 Thread Lindenmaier, Goetz
ach @test block sperately and evaluate the @requires as expected. Best regards,   Goetz. -Original Message- From: serviceability-dev <mailto:serviceability-dev-boun...@openjdk.java.net> On Behalf Of Schmelter, Ralf Sent: Montag, 18. Mai 2020 09:23 To: Langer, Christoph <mailto:chri

RE: RFR(L) 8237354: Add option to jcmd to write a gzipped heap dump

2020-06-08 Thread Schmelter, Ralf
hange on Wednesday. Best regards, Ralf -Original Message- From: Lindenmaier, Goetz Sent: Friday, 5 June 2020 18:02 To: Schmelter, Ralf ; Langer, Christoph Cc: serviceability-dev@openjdk.java.net; hotspot-runtime-...@openjdk.java.net runtime Subject: RE: RFR(L) 8237354: Add option to jcmd to

RE: RFR(L) 8237354: Add option to jcmd to write a gzipped heap dump

2020-06-08 Thread Lindenmaier, Goetz
-...@openjdk.java.net runtime ; David Holmes ; serguei.spit...@oracle.com; Ioi Lam Subject: RE: RFR(L) 8237354: Add option to jcmd to write a gzipped heap dump Hi Goetz, > What kind of tests did you run? The jdk submit repo, the JCK tests (apart from API) and the jtreg tests on Windows x86/64, MacO

RE: RFR(L) 8237354: Add option to jcmd to write a gzipped heap dump

2020-06-09 Thread Langer, Christoph
; Langer, Christoph > > Cc: serviceability-dev@openjdk.java.net; hotspot-runtime- > d...@openjdk.java.net runtime ; > David Holmes ; serguei.spit...@oracle.com; Ioi > Lam > Subject: RE: RFR(L) 8237354: Add option to jcmd to write a gzipped heap > dump > > Hi Goetz, > > >

RE: RFR(L) 8237354: Add option to jcmd to write a gzipped heap dump

2020-06-09 Thread Schmelter, Ralf
23 To: Schmelter, Ralf Cc: serviceability-dev@openjdk.java.net; hotspot-runtime-...@openjdk.java.net runtime ; David Holmes ; serguei.spit...@oracle.com; Ioi Lam ; Lindenmaier, Goetz Subject: RE: RFR(L) 8237354: Add option to jcmd to write a gzipped heap dump Hi Ralf, I finally managed to fully read th