Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -249,6 +249,7 @@ public LogStorage createLogStorage(final String uri, final RaftOptions raftOptio
raftOptions.setMaxReplicatorInflightMsgs(
options.getRaftOptions().getMaxReplicatorInflightMsgs());
raftOptions.setMaxByteCountPerRpc(1024 * 1024);
raftOptions.setMaxBodySize(options.getRaftOptions().getMaxBodySize());
nodeOptions.setEnableMetrics(true);

final PeerId serverId = JRaftUtils.getPeerId(options.getRaftAddress());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,10 @@ public static class RaftOptions {
* The maximum number of entries in AppendEntriesRequest
*/
private int maxEntriesSize = 256;
/**
* The maximum byte size of AppendEntriesRequest
*/
private int maxBodySize = 512 * 1024;
/**
* Raft cluster data backlog occurs, rate limiting wait time in milliseconds.
**/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -172,18 +172,20 @@ public class Raft {
private int snapshotInterval;
@Value("${raft.disruptorBufferSize:0}")
private int disruptorBufferSize;
@Value("${raft.max-log-file-size: 50000000000}")
@Value("${raft.max-log-file-size:50000000000}")
private long maxLogFileSize;
@Value("${ave-logEntry-size-ratio : 0.95}")
@Value("${ave-logEntry-size-ratio:0.95}")
private double aveLogEntrySizeRation;
@Value("${raft.useRocksDBSegmentLogStorage: true}")
@Value("${raft.useRocksDBSegmentLogStorage:true}")
private boolean useRocksDBSegmentLogStorage;
@Value("${raft.maxSegmentFileSize:67108864}")
private int maxSegmentFileSize;
@Value("${raft.maxReplicatorInflightMsgs:256}")
private int maxReplicatorInflightMsgs;
@Value("${raft.maxEntriesSize:256}")
private int maxEntriesSize;
@Value("${raft.maxBodySize:524288}")
private int maxBodySize;

}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ public void init() {
setMaxSegmentFileSize(appConfig.getRaft().getMaxSegmentFileSize());
setMaxReplicatorInflightMsgs(appConfig.getRaft().getMaxReplicatorInflightMsgs());
setMaxEntriesSize(appConfig.getRaft().getMaxEntriesSize());
setMaxBodySize(appConfig.getRaft().getMaxBodySize());
}});
setFakePdOptions(new FakePdOptions() {{
setStoreList(appConfig.getFakePdConfig().getStoreList());
Expand Down