fengjian428 commented on code in PR #7542:
URL: https://github.com/apache/hudi/pull/7542#discussion_r1058768721
##########
hudi-client/hudi-client-common/src/main/java/org/apache/hudi/keygen/KeyGenUtils.java:
##########
@@ -131,6 +131,9 @@ public static String getRecordPartitionPath(GenericRecord
record, List<String> p
} else {
if (encodePartitionPath) {
fieldVal = PartitionPathEncodeUtils.escapePathName(fieldVal);
+ } else {
+ // Hive doesn't respect the space at the end, so remove it to avoid
duplicate keys error
+ fieldVal = fieldVal.trim();
Review Comment:
In my case, the user's data has some wrong partition values with space at
the end(space shouldn't exist), then the data has been separated into two HDFS
paths, and those two paths cannot be synced to Hive.
I did this fix to avoid upstream change and hive sync errors.
if the user really wants two hdfs paths and two partitions in hive, they
should encode partition path
--
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]