hudi-bot opened a new issue, #16044:
URL: https://github.com/apache/hudi/issues/16044
In HoodieAppendHandle.populateMetadataFields, the following code is
incorrect:
{code:java}
metadataValues.setFileName(fileId);{code}
because it is setting file id instead of file name. The code needs to be
changed to:
{code:java}
metadataValues.setFileName(writer.getLogFile().getPath().getName());{code}
## JIRA info
- Link: https://issues.apache.org/jira/browse/HUDI-6414
- Type: Bug
- Fix version(s):
- 1.1.0
--
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]