Open meteorgan opened 1 month ago
Hi, I think this issue is part of a bigger scope that returning metadata after writing. This will require a major refactor of our write-related public API.
Hi, I think this issue is part of a bigger scope that returning metadata after writing. This will require a major refactor of our write-related public API.
Yes. as I mentioned in: https://github.com/apache/opendal/issues/2611#issuecomment-2363304110. I'll submit a RFC for this. This issue serves as a reminder to refactor the code in #5132.
Currently, the
write
operation does not return any metadata. As a result, in PR #5132, allversioning
tests utilize thestat
operation to retrieve the current object versions. Once thewrite
operation is update to return the version ID, we can eliminate the need for these additionalstat
operations.