This repository has been archived by the owner on Apr 26, 2024. It is now read-only.
Unable to disable Rate Limiting #14780
Labels
A-Invite
Inviting users to rooms and accepting invites
Description
Hello !
For administration automation purpose (Adding a lot of people in a room or multiple rooms, changing permissions for everyone, ..), I need to send a lot of requests to Synapse in a short amount of time
Bue when I try, I have this error :
In synapse Logs :
2023-01-04 18:50:13,228 - synapse.http.server - 89 - INFO - POST-192 - <XForwardedForRequest at 0x7fd10e251828 method='POST' uri='/_matrix/client/r0/rooms/%OBFUSCATED%3AOBFUSCATED.com/invite?access_token=<redacted>' clientproto='HTTP/1.0' site='8008'> SynapseError: 429 - Too Many Requests
This is a severe issue for us as it completly breaks the synchronisation and so, the integrity of our application.
I tried in my dev server to disable all rate limiting configurations like this :
And I can't find any option to disable completly the rate limiting.
Thanks in advance !
Steps to reproduce
Homeserver
Local homeserver
Synapse Version
{"server_version":"1.47.0","python_version":"3.6.8"}
Installation Method
pip (from PyPI)
Database
fresh single postgres install
Workers
Single process
Platform
CentOS 7, nginx
Configuration
rc_message:
per_second: 0
burst_count: 0
rc_registration:
per_second: 0
burst_count: 0
rc_login:
address:
per_second: 0
burst_count: 0
account:
per_second: 0
burst_count: 0
failed_attempts:
per_second: 0
burst_count: 0
rc_admin_redaction:
per_second: 0
burst_count: 0
Relevant log output
Anything else that would be useful to know?
I also tried #6286
But it does nothing (even after a server restart)
The text was updated successfully, but these errors were encountered: