[MDEV-32671] no limits apply to events (as in CREATE EVENT) Created: 2023-11-03 Updated: 2023-11-03 |
|
| Status: | Open |
| Project: | MariaDB Server |
| Component/s: | Events |
| Affects Version/s: | 10.4, 10.5, 10.6, 10.10, 10.11, 11.0, 11.1, 11.2 |
| Fix Version/s: | None |
| Type: | Bug | Priority: | Major |
| Reporter: | Sergei Golubchik | Assignee: | Unassigned |
| Resolution: | Unresolved | Votes: | 0 |
| Labels: | None | ||
| Description |
|
Events aren't subject to max_connections, max_connections_per_hour, etc. They should be, otherwise a user can use events to bypass configured limits. In other words, every executed even should count as a connection and every query within the event should count as a query executed by that user (towards max_queries_per_hour and max_updates_per_hour. this will also protect against too many connections executing at the same time and overloading the server. |