deemoliu commented on code in PR #14534: URL: https://github.com/apache/pinot/pull/14534#discussion_r1859073115
########## pinot-plugins/pinot-input-format/pinot-clp-log/src/main/java/org/apache/pinot/plugin/inputformat/clplog/CLPLogRecordExtractor.java: ########## @@ -253,5 +253,9 @@ private void encodeFieldWithClp(String key, Object value, GenericRow to) { to.putValue(key + ClpRewriter.LOGTYPE_COLUMN_SUFFIX, logtype); to.putValue(key + ClpRewriter.DICTIONARY_VARS_COLUMN_SUFFIX, dictVars); to.putValue(key + ClpRewriter.ENCODED_VARS_COLUMN_SUFFIX, encodedVars); + + if (!_config.getRemoveProcessedFields()) { + to.putValue(key, value); + } Review Comment: is this feature used for double ingestion? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org For additional commands, e-mail: commits-h...@pinot.apache.org