yihua commented on code in PR #8557:
URL: https://github.com/apache/hudi/pull/8557#discussion_r1186752046
##########
hudi-spark-datasource/hudi-spark/src/test/scala/org/apache/hudi/TestHoodieSparkSqlWriter.scala:
##########
@@ -591,8 +591,7 @@ class TestHoodieSparkSqlWriter {
HoodieBootstrapConfig.PARALLELISM_VALUE.key -> "4",
DataSourceWriteOptions.OPERATION.key ->
DataSourceWriteOptions.BOOTSTRAP_OPERATION_OPT_VAL,
DataSourceWriteOptions.RECORDKEY_FIELD.key -> "_row_key",
- DataSourceWriteOptions.PARTITIONPATH_FIELD.key -> "partition",
- HoodieBootstrapConfig.KEYGEN_CLASS_NAME.key ->
classOf[NonpartitionedKeyGenerator].getCanonicalName)
+ DataSourceWriteOptions.PARTITIONPATH_FIELD.key -> "")
Review Comment:
After this change, we have to set the partition path to empty String.
Otherwise, the following error is thrown:
```
org.apache.hudi.exception.HoodieException: Config conflict(key current
value existing value):
PartitionPath: partition
```
--
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]