rdsr commented on code in PR #3574: URL: https://github.com/apache/gobblin/pull/3574#discussion_r990469644
########## gobblin-modules/gobblin-orc/src/main/java/org/apache/gobblin/writer/GobblinBaseOrcWriter.java: ########## @@ -153,14 +157,18 @@ public GobblinBaseOrcWriter(FsDataWriterBuilder<S, D> builder, State properties) // Create value-writer which is essentially a record-by-record-converter with buffering in batch. this.inputSchema = builder.getSchema(); - TypeDescription typeDescription = getOrcSchema(); + this.typeDescription = getOrcSchema(); this.valueWriter = getOrcValueWriter(typeDescription, this.inputSchema, properties); this.batchSize = properties.getPropAsInt(ORC_WRITER_BATCH_SIZE, DEFAULT_ORC_WRITER_BATCH_SIZE); - this.rowBatch = typeDescription.createRowBatch(this.batchSize); + this.rowBatchPool = RowBatchPool.instance(properties); + this.enableRowBatchPool = properties.getPropAsBoolean(RowBatchPool.ENABLE_ROW_BATCH_POOL, true); + this.rowBatch = enableRowBatchPool ? rowBatchPool.getRowBatch(typeDescription, batchSize) : typeDescription.createRowBatch(batchSize); this.deepCleanBatch = properties.getPropAsBoolean(ORC_WRITER_DEEP_CLEAN_EVERY_BATCH, false); log.info("Created ORC writer, batch size: {}, {}: {}", - batchSize, OrcConf.ROWS_BETWEEN_CHECKS.name(), properties.getProp(OrcConf.ROWS_BETWEEN_CHECKS.name(), + batchSize, OrcConf.ROWS_BETWEEN_CHECKS.getAttribute(), Review Comment: OrcConf.ROWS_BETWEEN_CHECKS.getAttribute() is the right key to use not the other one -- 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: dev-unsubscr...@gobblin.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org