diff options
| author | Chris Lu <chris.lu@gmail.com> | 2020-07-20 18:25:26 -0700 |
|---|---|---|
| committer | Chris Lu <chris.lu@gmail.com> | 2020-07-20 18:25:26 -0700 |
| commit | 6debe3c3ecdcab350c4716f03c00d9ae9a0992af (patch) | |
| tree | 43ea9337a9786babf038981eb1c310d6cc65f3ff /other/java/client/src | |
| parent | d02c0fe0c08cfd4a29d5b46ae8b310c4b73457e6 (diff) | |
| download | seaweedfs-6debe3c3ecdcab350c4716f03c00d9ae9a0992af.tar.xz seaweedfs-6debe3c3ecdcab350c4716f03c00d9ae9a0992af.zip | |
use 1000 as merge factor
Diffstat (limited to 'other/java/client/src')
| -rw-r--r-- | other/java/client/src/main/java/seaweedfs/client/FileChunkManifest.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/other/java/client/src/main/java/seaweedfs/client/FileChunkManifest.java b/other/java/client/src/main/java/seaweedfs/client/FileChunkManifest.java index 3cac46db9..608deaf80 100644 --- a/other/java/client/src/main/java/seaweedfs/client/FileChunkManifest.java +++ b/other/java/client/src/main/java/seaweedfs/client/FileChunkManifest.java @@ -12,7 +12,7 @@ public class FileChunkManifest { private static final Logger LOG = LoggerFactory.getLogger(FileChunkManifest.class); - private static final int mergeFactor = 3; + private static final int mergeFactor = 1000; public static boolean hasChunkManifest(List<FilerProto.FileChunk> chunks) { for (FilerProto.FileChunk chunk : chunks) { |
