Quit Datasette if it has not received traffic for a specified time period
Project description
datasette-scale-to-zero
Quit Datasette if it has not received traffic for a specified time period
Some hosting providers such as Fly offer a scale to zero mechanism, where servers can shut down and will be automatically started when new traffic arrives.
This plugin can be used to configure Datasette to quit X minutes (or seconds, or hours) after the last request it received. It can also cause the Datasette server to exit after a configured maximum time whether or not it is receiving traffic.
Installation
Install this plugin in the same environment as Datasette.
datasette install datasette-scale-to-zero
Configuration
This plugin will only take effect if it has been configured.
Add the following to your metadata.json
or metadata.yml
configuration file:
{
"plugins": {
"datasette-scale-to-zero": {
"duration": "10m"
}
}
}
This will cause Datasette to quit if it has not received any HTTP traffic for 10 minutes.
You can set this value using a suffix of m
for minutes, h
for hours or s
for seconds.
To cause Datasette to exit if the server has been running for longer than a specific time, use "max_age"
:
{
"plugins": {
"datasette-scale-to-zero": {
"max_age": "10h"
}
}
}
This example will exit the Datasette server if it has been running for more than ten hours.
You can use "duration"
and "max_age"
together in the same configuration file:
{
"plugins": {
"datasette-scale-to-zero": {
"max_age": "10h",
"duration": "5m"
}
}
}
This example will quit if no traffic has been received in five minutes, or if the server has been running for ten hours.
Configuring a shutdown HTTP message
You can also configure the plugin to send an HTTP request somewhere right before it quits, using the "shutdown_url"
option:
{
"plugins": {
"datasette-scale-to-zero": {
"duration": "10m",
"shutdown_url": "https://example.com/shutdown"
}
}
}
You can add additional headers to the GET request - for example to send Authorization headers - using "shutdown_headers"
:
{
"plugins": {
"datasette-scale-to-zero": {
"duration": "10m",
"shutdown_url": "https://example.com/shutdown",
"shutdown_headers": {
"Authorization": "Bearer secret"
}
}
}
}
Use "shutdown_method"
to set a different HTTP method, e.g. for POST
. You can also set shutdown_body
to specify the body that should be sent with the request:
{
"plugins": {
"datasette-scale-to-zero": {
"duration": "10m",
"shutdown_url": "https://example.com/shutdown",
"shutdown_method": "POST",
"shutdown_headers": {
"Authorization": "Bearer secret",
"Content-Type": "application/json"
},
"shutdown_body": "{\"message\": \"shutting down\"}"
}
}
}
Development
To set up this plugin locally, first checkout the code. Then create a new virtual environment:
cd datasette-scale-to-zero
python3 -m venv venv
source venv/bin/activate
Now install the dependencies and test dependencies:
pip install -e '.[test]'
To run the tests:
pytest
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file datasette-scale-to-zero-0.3.1.tar.gz
.
File metadata
- Download URL: datasette-scale-to-zero-0.3.1.tar.gz
- Upload date:
- Size: 9.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 00142ee91b1c44a1cb905e9fecfd9fc4b29a4fe5bc20a946f291140d4d513563 |
|
MD5 | b35ad3cfb99b5c1f7154af54100ee5e7 |
|
BLAKE2b-256 | e0c4ab251b2fb273855c485ac845d413054b8bf6ca9a69fc29a10b4a71c4c7af |
File details
Details for the file datasette_scale_to_zero-0.3.1-py3-none-any.whl
.
File metadata
- Download URL: datasette_scale_to_zero-0.3.1-py3-none-any.whl
- Upload date:
- Size: 9.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6e8039639c79259695ce669599ad78a478217ee580f132ae110d1ff414774e7a |
|
MD5 | b1080d701a1c302fd79c3f37a96f3ce0 |
|
BLAKE2b-256 | 30beed2f7be90b9105b6c42830bbabddd6eae769f1018223b35fc30f2b131cd6 |