nsivabalan commented on code in PR #6085:
URL: https://github.com/apache/hudi/pull/6085#discussion_r923226460
##########
hudi-spark-datasource/hudi-spark-common/src/main/java/org/apache/hudi/HoodieDatasetBulkInsertHelper.java:
##########
@@ -87,18 +86,15 @@ public static Dataset<Row>
prepareHoodieDatasetForBulkInsert(SQLContext sqlConte
BuiltinKeyGenerator keyGenerator = (BuiltinKeyGenerator)
ReflectionUtils.loadClass(keyGeneratorClass, properties);
Dataset<Row> rowDatasetWithRecordKeysAndPartitionPath;
- if (keyGeneratorClass.equals(NonpartitionedKeyGenerator.class.getName())) {
+ if (keyGeneratorClass.equals(NonpartitionedKeyGenerator.class.getName())
+ || (keyGeneratorClass.equals(SimpleKeyGenerator.class.getName()) &&
!config.isHiveStylePartitioningEnabled())) {
Review Comment:
if hive style partitioning is enabled, we are falling back to using udf flow
is it? guess the intent was to do use udf based key gen only for non simple
use-cases. Can we honor the same even w/ hive style partitioning enabled
please?
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]