diff --git a/readme.md b/readme.md index 1612ff5..8e1e5c8 100644 --- a/readme.md +++ b/readme.md @@ -80,6 +80,19 @@ https://github.com/protocolbuffers/protobuf/releases/download/v3.17.1/protobuf-a If you can run `./protobuf/build.sh` without errors, you have `go` and `protoc` installed correctly. +On Linux you probably need to instead the open file limits + +``` +ulimit -n 1000000 +sysctl -w fs.file-max=1000000 +``` + +and `/etc/security/limits.conf` or `/etc/sysctl.conf` change: + +``` +fs.file-max = 1000000 +``` + Finally, run the block processor as described under Usage. ### Running from Source