zhangyue19921010 commented on issue #3499: URL: https://github.com/apache/hudi/issues/3499#issuecomment-902645799
Hi @codejoyan There was a bug in 0.7.0-release during clustering plan step, which use `int totalSizeSoFar = 0;` to calculate the size of the current data. As you can see the type of `totalSizeSoFar` is Integer and `getWriteConfig().getClusteringMaxBytesInGroup()` is long, so that will lead to overflow something like `Integer.MAX_VALUE + 1 = -2147483648` Also this bug is already fixed in https://github.com/apache/hudi/pull/2502 Maybe you can upgrade your hudi to 0.8.0 and have a try :) -- 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]
