Frontpage

Rate limiting

A strategy to prevent malicious actors from purposefully filling up the database.

Implemented at server level.

Will conflict with database anonymizatoin, as we need to have logs to trace who the bad actor is.

Strategies:

  • Rate Limiting: Limiting the number of requests per user/IP in a given timeframe.
  • Throttling and Timeout Mechanisms: Implementing delays or requiring wait times for users who submit multiple entries in rapid succession discourages spammy behavior.
  • Data Limit Policies: Setting limits on the number or size of entries a single user can submit can prevent excessive data accumulation.
  • Logging and Monitoring: Keeping an eye on unusual activity and being able to react quickly is key. Many systems trigger alerts when certain thresholds are met, allowing admins to take action.