public class DumpJournal extends Object
Constructor and Description |
---|
DumpJournal(Journal journal) |
Modifier and Type | Method and Description |
---|---|
void |
dumpJournal(boolean dumpHistory,
boolean dumpPages,
boolean dumpIndices,
boolean showTuples) |
void |
dumpJournal(PrintWriter out,
List<String> namespaces,
boolean dumpHistory,
boolean dumpPages,
boolean dumpIndices,
boolean showTuples) |
static void |
main(String[] args)
Dump one or more journal files:
|
public DumpJournal(Journal journal)
public static void main(String[] args)
usage: (option*) filename+where option is any of:
public void dumpJournal(boolean dumpHistory, boolean dumpPages, boolean dumpIndices, boolean showTuples)
dumpHistory
- Dump metadata for indices in all commit records (default only
dumps the metadata for the indices as of the most current
committed state).dumpPages
- Dump the pages of the indices and reports some information on
the page size.dumpIndices
- Dump the indices (does not show the tuples by default).showTuples
- Dump the records in the indices.public void dumpJournal(PrintWriter out, List<String> namespaces, boolean dumpHistory, boolean dumpPages, boolean dumpIndices, boolean showTuples)
out
- Where to write the output.namespaces
- When non-empty and non-null
, dump only those
indices having any of the specified namespaces.dumpHistory
- Dump metadata for indices in all commit records (default only
dumps the metadata for the indices as of the most current
committed state).dumpPages
- Dump the pages of the indices and reports some information on
the page size.dumpIndices
- Dump the indices (does not show the tuples by default).showTuples
- Dump the records in the indices.Copyright © 2006–2019 SYSTAP, LLC DBA Blazegraph. All rights reserved.