Class TransformPipeline.Result
- java.lang.Object
-
- org.apache.pinot.segment.local.segment.creator.TransformPipeline.Result
-
- Enclosing class:
- TransformPipeline
public static class TransformPipeline.Result extends Object
Wrapper for transforming results. For efficiency, right now the failed rows have only a counter
-
-
Constructor Summary
Constructors Constructor Description Result()
-
Method Summary
Modifier and Type Method Description voidaddTransformedRows(GenericRow row)intgetIncompleteRowCount()intgetSkippedRowCount()List<GenericRow>getTransformedRows()voidincIncompleteRowCount()voidincSkippedRowCount()voidreset()
-
-
-
Method Detail
-
getTransformedRows
public List<GenericRow> getTransformedRows()
-
getSkippedRowCount
public int getSkippedRowCount()
-
getIncompleteRowCount
public int getIncompleteRowCount()
-
addTransformedRows
public void addTransformedRows(GenericRow row)
-
incSkippedRowCount
public void incSkippedRowCount()
-
incIncompleteRowCount
public void incIncompleteRowCount()
-
reset
public void reset()
-
-