use of com.thinkbiganalytics.kylo.nifi.teradata.tdch.core.processor.base.TdchOperationType in project kylo by Teradata.
the class TdchUtilsTest method getTdchProcessResultWithLongInvalidTimeTaken.
private static TdchProcessResult getTdchProcessResultWithLongInvalidTimeTaken() {
int exitValue = 0;
TdchOperationType tdchOperationType = TdchOperationType.TDCH_EXPORT;
String[] logLines = new String[4];
logLines[0] = " Map input records=6";
logLines[1] = " Map output records=5";
logLines[2] = "18/03/21 05:43:24 INFO tool.ConnectorExportTool: job completed with exit code 0";
logLines[3] = "This log line does not contain a valid time taken from the run of the TDCH job";
return new TdchProcessResult(exitValue, logLines, tdchOperationType);
}
use of com.thinkbiganalytics.kylo.nifi.teradata.tdch.core.processor.base.TdchOperationType in project kylo by Teradata.
the class TdchUtilsTest method getTdchProcessResultWithEmptyInputRecordCountInfo.
private static TdchProcessResult getTdchProcessResultWithEmptyInputRecordCountInfo() {
int exitValue = 0;
TdchOperationType tdchOperationType = TdchOperationType.TDCH_EXPORT;
String[] logLines = new String[4];
logLines[0] = "";
logLines[1] = " Map output records=5";
logLines[2] = "18/03/21 05:43:24 INFO tool.ConnectorExportTool: job completed with exit code 0";
logLines[3] = "18/03/21 05:43:24 INFO tool.ConnectorExportTool: ConnectorExportTool time is 33s";
return new TdchProcessResult(exitValue, logLines, tdchOperationType);
}
use of com.thinkbiganalytics.kylo.nifi.teradata.tdch.core.processor.base.TdchOperationType in project kylo by Teradata.
the class TdchUtilsTest method getTdchProcessResultWithNoInputRecordCountInfo.
private static TdchProcessResult getTdchProcessResultWithNoInputRecordCountInfo() {
int exitValue = 0;
TdchOperationType tdchOperationType = TdchOperationType.TDCH_EXPORT;
String[] logLines = new String[4];
logLines[0] = null;
logLines[1] = " Map output records=5";
logLines[2] = "18/03/21 05:43:24 INFO tool.ConnectorExportTool: job completed with exit code 0";
logLines[3] = "18/03/21 05:43:24 INFO tool.ConnectorExportTool: ConnectorExportTool time is 33s";
return new TdchProcessResult(exitValue, logLines, tdchOperationType);
}
Aggregations