Skip to content

Commit

Permalink
lockmanager uses 1 partition in a message queue
Browse files Browse the repository at this point in the history
  • Loading branch information
firestar committed Jan 24, 2024
1 parent 62c8468 commit 750068b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
}

group = 'com.nucleodb'
version = '1.15.1'
version = '1.15.2'

repositories {
mavenCentral()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,10 @@
public class LockConfig implements Serializable {
private static final long serialVersionUID = 1;
MQSConfiguration mqsConfiguration = new KafkaConfiguration();
Map<String, Object> settingsMap = new TreeMap<>();
Map<String, Object> settingsMap = new TreeMap<>(){{
put("partitions", 1);
put("replicas", 3);
}};
String topic = "locks";

public LockConfig() {
Expand Down

0 comments on commit 750068b

Please sign in to comment.