Skip to content

Commit 972c74d

Browse files
moetikeroetiker
authored andcommitted
increasing the buffersize (#361)
there are warnings from mbuffer: "mbuffer: warning: high value of number of blocks(10696): increase block size for better performance" with 256k mbuffer is happy.
1 parent 1a4e66a commit 972c74d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/ZnapZend/ZFS.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ has connectTimeout => sub { 30 };
1717
has propertyPrefix => sub { q{org.znapzend} };
1818
has sshCmdArray => sub { [qw(ssh),
1919
qw(-o batchMode=yes -o), 'ConnectTimeout=' . shift->connectTimeout] };
20-
has mbufferParam => sub { [qw(-q -s 128k -W 600 -m)] }; #don't remove the -m as the buffer size will be added
20+
has mbufferParam => sub { [qw(-q -s 256k -W 600 -m)] }; #don't remove the -m as the buffer size will be added
2121
has scrubInProgress => sub { qr/scrub in progress/ };
2222

2323
has zLog => sub { Mojo::Exception->throw('zLog must be specified at creation time!') };

0 commit comments

Comments
 (0)