Skip to content

Commit bf2c2d0

Browse files
committed
fix: batcher parameters
1 parent c4aaf7e commit bf2c2d0

File tree

2 files changed

+3
-13
lines changed

2 files changed

+3
-13
lines changed

infra/ansible/playbooks/batcher.yaml

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -118,13 +118,6 @@
118118
ansible_ssh_user: "{{ admin_user }}"
119119
batcher_domain: "{{ lookup('ini', 'batcher_domain', file='ini/caddy-batcher.ini') }}"
120120

121-
# - name: Copy keystore to server
122-
# ansible.builtin.copy:
123-
# src: '{{ keystore_path }}'
124-
# dest: /home/{{ ansible_user }}/.keystores/batcher
125-
# owner: '{{ ansible_user }}'
126-
# group: '{{ ansible_user }}'
127-
128121
- name: Start Batcher service
129122
ansible.builtin.systemd_service:
130123
name: batcher
@@ -139,8 +132,3 @@
139132
state: restarted
140133
vars:
141134
ansible_ssh_user: "{{ admin_user }}"
142-
143-
# - name: Run node_exporter playbook
144-
# ansible.builtin.import_playbook: node_exporter.yaml
145-
# vars:
146-
# host: batcher

infra/ansible/playbooks/templates/config-files/config-batcher.yaml.j2

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,9 @@ batcher:
2222
batch_size_interval: 10
2323
transaction_wait_timeout: 36000 # 3 blocks
2424
max_proof_size: 67108864 # 64 MiB
25-
max_batch_size: 268435456 # 256 MiB
25+
max_batch_byte_size: 268435456 # 256 MiB
26+
max_batch_proof_qty: 3000 # 3000 proofs in a batch
27+
max_queue_size: 10000
2628
pre_verification_is_enabled: true
2729
eth_ws_reconnects: 99999999999999
2830
metrics_port: 9093

0 commit comments

Comments
 (0)