mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2025-09-19 18:07:56 +08:00
HCFS: avoid lock bottleneck
This commit is contained in:
@@ -6,6 +6,8 @@ import org.apache.http.client.methods.HttpPost;
|
|||||||
import org.apache.http.entity.mime.HttpMultipartMode;
|
import org.apache.http.entity.mime.HttpMultipartMode;
|
||||||
import org.apache.http.entity.mime.MultipartEntityBuilder;
|
import org.apache.http.entity.mime.MultipartEntityBuilder;
|
||||||
import org.apache.http.util.EntityUtils;
|
import org.apache.http.util.EntityUtils;
|
||||||
|
import org.slf4j.Logger;
|
||||||
|
import org.slf4j.LoggerFactory;
|
||||||
|
|
||||||
import java.io.ByteArrayInputStream;
|
import java.io.ByteArrayInputStream;
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
@@ -15,6 +17,8 @@ import java.util.List;
|
|||||||
|
|
||||||
public class SeaweedWrite {
|
public class SeaweedWrite {
|
||||||
|
|
||||||
|
private static final Logger LOG = LoggerFactory.getLogger(SeaweedWrite.class);
|
||||||
|
|
||||||
private static final SecureRandom random = new SecureRandom();
|
private static final SecureRandom random = new SecureRandom();
|
||||||
|
|
||||||
public static void writeData(FilerProto.Entry.Builder entry,
|
public static void writeData(FilerProto.Entry.Builder entry,
|
||||||
@@ -23,8 +27,10 @@ public class SeaweedWrite {
|
|||||||
final long offset,
|
final long offset,
|
||||||
final byte[] bytes,
|
final byte[] bytes,
|
||||||
final long bytesOffset, final long bytesLength) throws IOException {
|
final long bytesOffset, final long bytesLength) throws IOException {
|
||||||
|
FilerProto.FileChunk.Builder chunkBuilder = writeChunk(
|
||||||
|
replication, filerGrpcClient, offset, bytes, bytesOffset, bytesLength);
|
||||||
synchronized (entry) {
|
synchronized (entry) {
|
||||||
entry.addChunks(writeChunk(replication, filerGrpcClient, offset, bytes, bytesOffset, bytesLength));
|
entry.addChunks(chunkBuilder);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -58,6 +64,8 @@ public class SeaweedWrite {
|
|||||||
// cache fileId ~ bytes
|
// cache fileId ~ bytes
|
||||||
SeaweedRead.chunkCache.setChunk(fileId, bytes);
|
SeaweedRead.chunkCache.setChunk(fileId, bytes);
|
||||||
|
|
||||||
|
LOG.debug("write file chunk {} size {}", targetUrl, bytesLength);
|
||||||
|
|
||||||
return FilerProto.FileChunk.newBuilder()
|
return FilerProto.FileChunk.newBuilder()
|
||||||
.setFileId(fileId)
|
.setFileId(fileId)
|
||||||
.setOffset(offset)
|
.setOffset(offset)
|
||||||
@@ -71,10 +79,8 @@ public class SeaweedWrite {
|
|||||||
final String parentDirectory,
|
final String parentDirectory,
|
||||||
final FilerProto.Entry.Builder entry) throws IOException {
|
final FilerProto.Entry.Builder entry) throws IOException {
|
||||||
|
|
||||||
int chunkSize = entry.getChunksCount();
|
|
||||||
List<FilerProto.FileChunk> chunks = FileChunkManifest.maybeManifestize(filerGrpcClient, entry.getChunksList());
|
|
||||||
|
|
||||||
synchronized (entry) {
|
synchronized (entry) {
|
||||||
|
List<FilerProto.FileChunk> chunks = FileChunkManifest.maybeManifestize(filerGrpcClient, entry.getChunksList());
|
||||||
entry.clearChunks();
|
entry.clearChunks();
|
||||||
entry.addAllChunks(chunks);
|
entry.addAllChunks(chunks);
|
||||||
filerGrpcClient.getBlockingStub().createEntry(
|
filerGrpcClient.getBlockingStub().createEntry(
|
||||||
|
Reference in New Issue
Block a user