mirror of https://github.com/apache/druid.git
fix compress fail when file size is Integer.MAX_VALUE (#6159)
This commit is contained in:
parent
c47032d566
commit
8d886e59bf
|
@ -125,7 +125,7 @@ public class CompressionUtils
|
|||
long totalSize = 0;
|
||||
for (File file : directory.listFiles()) {
|
||||
log.info("Adding file[%s] with size[%,d]. Total size so far[%,d]", file, file.length(), totalSize);
|
||||
if (file.length() >= Integer.MAX_VALUE) {
|
||||
if (file.length() > Integer.MAX_VALUE) {
|
||||
zipOut.finish();
|
||||
throw new IOE("file[%s] too large [%,d]", file, file.length());
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue