You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The parquet files are failing during rename operation because of double slash (//) in the path. This has occurred after merging #318
Solution:
The rename for spark-events flow should be made conditional and the existing code is made default.
handle rename differently for eventlog appstatus files
if (pathToKey(src).endsWith(".inprogress")) {
// changed logic if the 'rename' method is called on file ending ".inprogress" (this will be appstatus file)
...
} else {
// existing code
}
The text was updated successfully, but these errors were encountered:
The parquet files are failing during rename operation because of double slash (//) in the path. This has occurred after merging #318
Solution:
The rename for spark-events flow should be made conditional and the existing code is made default.
handle rename differently for eventlog appstatus files
The text was updated successfully, but these errors were encountered: