This commit is contained in:
Chris Lu
2020-07-29 18:26:26 -07:00
parent daf8c0c8ce
commit 5080bc1d69
2 changed files with 3 additions and 1 deletions

View File

@@ -59,7 +59,7 @@ public class FileChunkManifest {
.getBlockingStub().lookupVolume(lookupRequest.build()); .getBlockingStub().lookupVolume(lookupRequest.build());
locations = lookupResponse.getLocationsMapMap().get(vid); locations = lookupResponse.getLocationsMapMap().get(vid);
filerGrpcClient.vidLocations.put(vid, locations); filerGrpcClient.vidLocations.put(vid, locations);
LOG.warn("fetchChunk vid:{} locations:{}", vid, locations); LOG.debug("fetchChunk vid:{} locations:{}", vid, locations);
} }
SeaweedRead.ChunkView chunkView = new SeaweedRead.ChunkView( SeaweedRead.ChunkView chunkView = new SeaweedRead.ChunkView(

View File

@@ -108,6 +108,8 @@ public class SeaweedRead {
} }
} }
LOG.debug("doFetchFullChunkData fid:{} chunkData.length:{}", chunkView.fileId, data.length);
return data; return data;
} }