aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorLuck <git@lucko.me>2019-06-02 09:35:04 +0100
committerLuck <git@lucko.me>2019-06-02 09:35:04 +0100
commiteedbb931fba57d398d62024cd77135610d6beadb (patch)
treeb597951715cbc9fcf403ed82d27f472497ba098c /README.md
parent10a73b7ef7910fae0010ea7e06c6ed303a90dc29 (diff)
downloadspark-eedbb931fba57d398d62024cd77135610d6beadb.tar.gz
spark-eedbb931fba57d398d62024cd77135610d6beadb.tar.bz2
spark-eedbb931fba57d398d62024cd77135610d6beadb.zip
Add support for heap dump compression (#16)
Diffstat (limited to 'README.md')
-rw-r--r--README.md6
1 files changed, 6 insertions, 0 deletions
diff --git a/README.md b/README.md
index fbdc562..00b60dc 100644
--- a/README.md
+++ b/README.md
@@ -191,6 +191,12 @@ Creates a new heapdump (.hprof snapshot) file and saves to the disk.
* Specifies that before recording data, spark should *suggest* that the system performs garbage collection.
* `--include-non-live`
* Specifies that "non-live" objects should be included. (objects that are not reachable from others)
+* `--xz`
+ * Compress the heap dump with LZMA2 (`.xz`) compression. (slower than gzip but a better compression ratio)
+* `--lzma`
+ * Compress the heap dump with LZMA (`.lzma`) compression. (prefer xz compression over this)
+* `--gzip`
+ * Compress the heap dump with gzip (`.gz`) compression. (faster than LZMA2 but a worse compression ratio)
___
#### `/spark activity`
Prints information about recent activity performed by the plugin.