Skip to content

More subs and less filters / sub #146

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
4 changes: 2 additions & 2 deletions src/apps/relay/golpe.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ config:
noReload: true
- name: relay__maxReqFilterSize
desc: "Maximum number of filters allowed in a REQ"
default: 200
default: 20
- name: relay__autoPingSeconds
desc: "Websocket-level PING message frequency (should be less than any reverse proxy idle timeouts)"
default: 55
Expand All @@ -56,7 +56,7 @@ config:
default: 500
- name: relay__maxSubsPerConnection
desc: "Maximum number of subscriptions (concurrent REQs) a connection can have open at any time"
default: 20
default: 200

- name: relay__writePolicy__plugin
desc: "If non-empty, path to an executable script that implements the writePolicy plugin logic"
Expand Down
4 changes: 2 additions & 2 deletions strfry.conf
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ relay {
maxWebsocketPayloadSize = 131072

# Maximum number of filters allowed in a REQ
maxReqFilterSize = 200
maxReqFilterSize = 20

# Websocket-level PING message frequency (should be less than any reverse proxy idle timeouts) (restart required)
autoPingSeconds = 55
Expand All @@ -91,7 +91,7 @@ relay {
maxFilterLimit = 500

# Maximum number of subscriptions (concurrent REQs) a connection can have open at any time
maxSubsPerConnection = 20
maxSubsPerConnection = 200

writePolicy {
# If non-empty, path to an executable script that implements the writePolicy plugin logic
Expand Down