core
Leaky Bucket Rate Limiter Implementation
AsyncLeakyBucket
Asynchronous Leaky Bucket Rate Limiter
Parameters:
Name | Type | Description | Default |
---|---|---|---|
leaky_bucket_config
|
LeakyBucketConfig | None
|
Configuration for the leaky bucket with the max capacity and time period in seconds |
None
|
max_concurrent
|
int | None
|
Maximum number of concurrent requests allowed to acquire capacity |
None
|
Note
This implementation is synchronous and supports bursts up to the capacity within the specified time period
Source code in limitor/leaky_bucket/core.py
125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 |
|
__aenter__()
async
Enter the context manager, acquiring resources if necessary
Source code in limitor/leaky_bucket/core.py
230 231 232 233 |
|
__aexit__(exc_type, exc_val, exc_tb)
async
Exit the context manager, releasing any resources if necessary
Source code in limitor/leaky_bucket/core.py
235 236 237 |
|
acquire(amount=1, timeout=None)
async
Acquire capacity from the leaky bucket, waiting asynchronously until allowed.
Supports timeout and cancellation.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
amount
|
float
|
The amount of capacity to acquire, defaults to 1 |
1
|
timeout
|
float | None
|
Optional timeout in seconds for the acquire operation |
None
|
Raises:
Type | Description |
---|---|
ValueError
|
If the requested amount exceeds the bucket's capacity |
TimeoutError
|
If the acquire operation times out after the specified timeout period |
Source code in limitor/leaky_bucket/core.py
206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 |
|
capacity_info(amount=1)
Get the current capacity information of the leaky bucket
Parameters:
Name | Type | Description | Default |
---|---|---|---|
amount
|
float
|
The amount of capacity to check for, defaults to 1 |
1
|
Returns:
Type | Description |
---|---|
Capacity
|
A named tuple indicating if the bucket has enough capacity and how much more is needed |
Source code in limitor/leaky_bucket/core.py
155 156 157 158 159 160 161 162 163 164 165 166 |
|
Capacity
Bases: NamedTuple
Information about the current capacity of the leaky bucket
Source code in limitor/leaky_bucket/core.py
33 34 35 36 37 38 39 40 |
|
has_capacity
instance-attribute
Indicates if the bucket has enough capacity to accommodate the requested amount
needed_capacity
instance-attribute
Amount of capacity needed to accommodate the request, if any
LeakyBucketConfig
dataclass
Configuration for the Leaky Bucket Rate Limiter
Source code in limitor/leaky_bucket/core.py
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
|
capacity = 10
class-attribute
instance-attribute
Maximum number of items the bucket can hold i.e. number of requests that can be processed at once
seconds = 1
class-attribute
instance-attribute
Up to capacity
acquisitions are allowed within this time period in a burst
__post_init__()
Validate the configuration parameters
Source code in limitor/leaky_bucket/core.py
23 24 25 26 27 28 29 30 |
|
SyncLeakyBucket
Leaky Bucket Rate Limiter
Parameters:
Name | Type | Description | Default |
---|---|---|---|
leaky_bucket_config
|
LeakyBucketConfig | None
|
Configuration for the leaky bucket with the max capacity and time period in seconds |
required |
Note
This implementation is synchronous and supports bursts up to the capacity within the specified time period
Source code in limitor/leaky_bucket/core.py
43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 |
|
__enter__()
Enter the context manager, acquiring resources if necessary
Source code in limitor/leaky_bucket/core.py
115 116 117 118 |
|
__exit__(exc_type, exc_val, exc_tb)
Exit the context manager, releasing any resources if necessary
Source code in limitor/leaky_bucket/core.py
120 121 122 |
|
acquire(amount=1)
Acquire capacity from the leaky bucket, blocking until enough capacity is available.
This method will block and sleep until the requested amount can be acquired without exceeding the bucket's capacity, simulating rate limiting.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
amount
|
float
|
The amount of capacity to acquire, defaults to 1 |
1
|
Raises:
Type | Description |
---|---|
ValueError
|
If the requested amount exceeds the bucket's capacity |
Notes
The while loop is just to make sure nothing funny happens while waiting
Source code in limitor/leaky_bucket/core.py
84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 |
|
capacity_info(amount=1)
Get the current capacity information of the leaky bucket
Parameters:
Name | Type | Description | Default |
---|---|---|---|
amount
|
float
|
The amount of capacity to check for, defaults to 1 |
1
|
Returns:
Type | Description |
---|---|
Capacity
|
A named tuple indicating if the bucket has enough capacity and how much more is needed |
Source code in limitor/leaky_bucket/core.py
71 72 73 74 75 76 77 78 79 80 81 82 |
|