org.apache.hadoop.hdfs.tools.offlineEditsViewer.OfflineEditsViewer Java Examples
The following examples show how to use
org.apache.hadoop.hdfs.tools.offlineEditsViewer.OfflineEditsViewer.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: OfflineEditsBinaryLoader.java From hadoop with Apache License 2.0 | 5 votes |
/** * Constructor */ public OfflineEditsBinaryLoader(OfflineEditsVisitor visitor, EditLogInputStream inputStream, OfflineEditsViewer.Flags flags) { this.visitor = visitor; this.inputStream = inputStream; this.fixTxIds = flags.getFixTxIds(); this.recoveryMode = flags.getRecoveryMode(); this.nextTxId = -1; }
Example #2
Source File: OfflineEditsXmlLoader.java From hadoop with Apache License 2.0 | 5 votes |
public OfflineEditsXmlLoader(OfflineEditsVisitor visitor, File inputFile, OfflineEditsViewer.Flags flags) throws FileNotFoundException { this.visitor = visitor; this.fileReader = new InputStreamReader(new FileInputStream(inputFile), Charsets.UTF_8); this.fixTxIds = flags.getFixTxIds(); }
Example #3
Source File: OfflineEditsBinaryLoader.java From big-c with Apache License 2.0 | 5 votes |
/** * Constructor */ public OfflineEditsBinaryLoader(OfflineEditsVisitor visitor, EditLogInputStream inputStream, OfflineEditsViewer.Flags flags) { this.visitor = visitor; this.inputStream = inputStream; this.fixTxIds = flags.getFixTxIds(); this.recoveryMode = flags.getRecoveryMode(); this.nextTxId = -1; }
Example #4
Source File: OfflineEditsXmlLoader.java From big-c with Apache License 2.0 | 5 votes |
public OfflineEditsXmlLoader(OfflineEditsVisitor visitor, File inputFile, OfflineEditsViewer.Flags flags) throws FileNotFoundException { this.visitor = visitor; this.fileReader = new InputStreamReader(new FileInputStream(inputFile), Charsets.UTF_8); this.fixTxIds = flags.getFixTxIds(); }
Example #5
Source File: TestOfflineEditsViewer.java From RDFS with Apache License 2.0 | 5 votes |
/** * Run OfflineEditsViewer * * @param inFilename input edits filename * @param outFilename oputput edits filename */ private void runOev(String inFilename, String outFilename, String processor) throws IOException { LOG.info("Running oev [" + inFilename + "] [" + outFilename + "]"); OfflineEditsViewer oev = new OfflineEditsViewer(); oev.go( EditsVisitorFactory.getEditsVisitor( outFilename, processor, TokenizerFactory.getTokenizer(inFilename), false)); }