#discord #rate-limiting #discord-api #twilight #sharding

twilight-gateway-queue

Discord Gateway connection queue implementation for the Twilight ecosystem

30 releases (15 breaking)

0.16.0-rc.1 Feb 21, 2024
0.15.4 Sep 10, 2023
0.15.2 Apr 27, 2023
0.15.1 Feb 26, 2023
0.2.1 Nov 10, 2020

#976 in Web programming

Download history 725/week @ 2023-12-20 538/week @ 2023-12-27 606/week @ 2024-01-03 542/week @ 2024-01-10 741/week @ 2024-01-17 512/week @ 2024-01-24 563/week @ 2024-01-31 601/week @ 2024-02-07 924/week @ 2024-02-14 779/week @ 2024-02-21 968/week @ 2024-02-28 941/week @ 2024-03-06 752/week @ 2024-03-13 770/week @ 2024-03-20 1083/week @ 2024-03-27 931/week @ 2024-04-03

3,824 downloads per month
Used in 10 crates (2 directly)

ISC license

15KB
196 lines

twilight-gateway-queue

codecov badge discord badge github badge license badge rust badge

Rate limiting functionality for gateway IDENTIFY commands.

Discord allows bot's shards to send a limited amount of IDENTIFY commands every 5 seconds, with a daily limit from 1000 to 2000 commands, and invalidates all shard sessions upon exceeding it. Each identify interval may be filled by shards' IDs modulo max_concurrency and such a set of shards is called a bucket. See Discord Docs/Sharding.

To coordinate this, a Queue should process each identify request and shards should wait for its signal to proceed before continuing and otherwise retry. The provided InMemoryQueue never fails or cancels requests and is therefore a good starting point for custom implementations. It can also be composed to support multiple processes; see gateway-queue-http and gateway-queue for a HTTP client and server implementation, respectively.

Dependencies

~2.6–4MB
~70K SLoC