nsivabalan commented on a change in pull request #3282: URL: https://github.com/apache/hudi/pull/3282#discussion_r670964858
########## File path: hudi-cli/src/main/scala/org/apache/hudi/cli/SparkHelpers.scala ########## @@ -51,7 +51,8 @@ object SparkHelpers { // Add current classLoad for config, if not will throw classNotFound of 'HoodieWrapperFileSystem'. parquetConfig.getHadoopConf().setClassLoader(Thread.currentThread.getContextClassLoader) - val writer = new HoodieParquetWriter[HoodieJsonPayload, IndexedRecord](instantTime, destinationFile, parquetConfig, schema, new SparkTaskContextSupplier()) + val writer = new HoodieParquetWriter[HoodieJsonPayload, IndexedRecord](instantTime, destinationFile, parquetConfig, schema, new SparkTaskContextSupplier(), + true) Review comment: yet to fix cli's for virtual keys ########## File path: hudi-common/src/main/java/org/apache/hudi/common/util/OrcUtils.java ########## @@ -105,6 +107,11 @@ return hoodieKeys; } + @Override + public List<HoodieKey> fetchRecordKeyPartitionPath(Configuration configuration, Path filePath, BaseKeyGenerator keyGenerator) { + return null; Review comment: Yet to add virtual keys support to Orc base files -- 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...@hudi.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org