A Faster Collectstatic
Project description
Collectfasta
A faster collectstatic command. This is a fork of the archived collectfast by @antonagestam and a drop-in replacement - you must not have both installed at the same time.
Features
- Efficiently decide what files to upload using cached checksums
- Two-pass uploads for Manifest storage which can be slow using a single pass - files are hashed/post-processed in Memory/Local filesystem and then the result is copied.
- Parallel file uploads
Supported Storage Backends
storages.backends.s3boto3.S3Boto3Storagestorages.backends.s3boto3.S3StaticStoragestorages.backends.s3boto3.S3ManifestStaticStoragestorages.backends.gcloud.GoogleCloudStoragestorages.backends.azure_storage.AzureStoragedjango.core.files.storage.FileSystemStorage
Running Django's collectstatic command can become painfully slow as more and
more files are added to a project, especially when heavy libraries such as
jQuery UI are included in source code. Collectfasta customizes the builtin
collectstatic command, adding different optimizations to make uploading large
amounts of files much faster.
Installation
Install the app using pip:
$ python3 -m pip install Collectfasta
Make sure you have this in your settings file and add 'collectfasta' to your
INSTALLED_APPS, before 'django.contrib.staticfiles':
STORAGES = (
{
"staticfiles": {
"BACKEND": "storages.backends.s3.S3Storage",
},
},
)
COLLECTFASTA_STRATEGY = "collectfasta.strategies.boto3.Boto3Strategy"
INSTALLED_APPS = (
# ...
"collectfasta",
)
Note: 'collectfasta' must come before 'django.contrib.staticfiles' in
INSTALLED_APPS.
Upload Strategies
| Collectfasta Strategy | Storage Backend |
|---|---|
| collectfasta.strategies.boto3.Boto3Strategy | storages.backends.s3.S3Storage |
| collectfasta.strategies.boto3.Boto3Strategy | storages.backends.s3.S3StaticStorage |
| collectfasta.strategies.boto3.Boto3ManifestMemoryStrategy (recommended) | storages.backends.s3.S3ManifestStaticStorage |
| collectfasta.strategies.boto3.Boto3ManifestFileSystemStrategy | storages.backends.s3.S3ManifestStaticStorage |
| collectfasta.strategies.gcloud.GoogleCloudStrategy | storages.backends.gcloud.GoogleCloudStorage |
| collectfasta.strategies.azure.AzureBlobStrategy | storages.backends.azure_storage.AzureStorage |
| collectfasta.strategies.filesystem.FileSystemStrategy | django.core.files.storage.FileSystemStorage |
Custom strategies can also be made for backends not listed above by
implementing the collectfasta.strategies.Strategy ABC.
Usage
Collectfasta overrides Django's builtin collectstatic command so just run
python manage.py collectstatic as normal.
You can disable Collectfasta by using the --disable-collectfasta option or by
setting COLLECTFASTA_ENABLED = False in your settings file.
Setting Up a Dedicated Cache Backend
It's recommended to setup a dedicated cache backend for Collectfasta. Every time
Collectfasta does not find a lookup for a file in the cache it will trigger a
lookup to the storage backend, so it's recommended to have a fairly high
TIMEOUT setting.
Configure your dedicated cache with the COLLECTFASTA_CACHE setting:
CACHES = {
"default": {
# Your default cache
},
"collectfasta": {
# Your dedicated Collectfasta cache
},
}
COLLECTFASTA_CACHE = "collectfasta"
If COLLECTFASTA_CACHE isn't set, the default cache will be used.
Note: Collectfasta will never clean the cache of obsolete files. To clean
out the entire cache, use cache.clear(). See docs for Django's cache
framework.
Note: We recommend you to set the MAX_ENTRIES setting if you have more
than 300 static files, see #47.
Enable Parallel Uploads
The parallelization feature enables parallel file uploads using Python's
concurrent.futures module. Enable it by setting the COLLECTFASTA_THREADS
setting.
To enable parallel uploads, a dedicated cache backend must be setup and it must use a backend that is thread-safe, i.e. something other than Django's default LocMemCache.
COLLECTFASTA_THREADS = 20
Debugging
By default, Collectfasta will suppress any exceptions that happens when copying
and let Django's collectstatic handle it. To debug those suppressed errors
you can set COLLECTFASTA_DEBUG = True in your Django settings file.
Contribution
Please feel free to contribute by using issues and pull requests. Discussion is open and welcome.
Versioning policy
We follow semantic versioning with the following support policy: unsupported Django and Python versions are dropped after their EOL date. When dropping support for an unsupported Django or Python version, Collectfasta only bumps a patch version.
Testing
The test suite is built to run against localstack / fake-gcs-server OR live S3 and GCloud buckets. To run live tests locally you need to provide API credentials to test against as environment variables.
export AWS_ACCESS_KEY_ID='...'
export AWS_SECRET_ACCESS_KEY='...'
export GCLOUD_API_CREDENTIALS_BASE64='{...}' # Google Cloud credentials as Base64'd json
Install test dependencies and target Django version:
python3 -m pip install -r test-requirements.txt
python3 -m pip install django==5.2.3
Run test suite:
make test
Run test against localstack/fake-gcs-server:
make test-docker
Code quality tools are broken out from test requirements because some of them only install on Python >= 3.7.
python3 -m pip install -r lint-requirements.txt
Run linters and static type check:
make checks
License
Collectfasta is licensed under the MIT License, see LICENSE file for more information.
Project details
Release history Release notifications | RSS feed
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file collectfasta-3.3.3.tar.gz.
File metadata
- Download URL: collectfasta-3.3.3.tar.gz
- Upload date:
- Size: 22.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0ba1ab40b72751d8b74f36cf3f20202788522c03d9cdb208574d5422221f0bb4
|
|
| MD5 |
479a6f24d7e3f6fec67204e9fc4af858
|
|
| BLAKE2b-256 |
006b0a60d21e16357a9f3204f892cc17eaccc736d0213ff73db78ea4c03f8e34
|
Provenance
The following attestation bundles were made for collectfasta-3.3.3.tar.gz:
Publisher:
release.yaml on jasongi/collectfasta
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
collectfasta-3.3.3.tar.gz -
Subject digest:
0ba1ab40b72751d8b74f36cf3f20202788522c03d9cdb208574d5422221f0bb4 - Sigstore transparency entry: 779584362
- Sigstore integration time:
-
Permalink:
jasongi/collectfasta@87ea80de6352f9bc7d05bd46f6ab980a3479605e -
Branch / Tag:
refs/tags/3.3.3 - Owner: https://github.com/jasongi
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yaml@87ea80de6352f9bc7d05bd46f6ab980a3479605e -
Trigger Event:
release
-
Statement type:
File details
Details for the file collectfasta-3.3.3-py2.py3-none-any.whl.
File metadata
- Download URL: collectfasta-3.3.3-py2.py3-none-any.whl
- Upload date:
- Size: 29.4 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cfd968c9227115df8f33ce48ad19edc89b418f0172910f353b371cc8c93d33fb
|
|
| MD5 |
df602aa10be91b3b87413d4c356a442a
|
|
| BLAKE2b-256 |
c587ac848f30eeb532bd0ca13af246e0168a289bf88b56c3dee0f39c4cbd315d
|
Provenance
The following attestation bundles were made for collectfasta-3.3.3-py2.py3-none-any.whl:
Publisher:
release.yaml on jasongi/collectfasta
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
collectfasta-3.3.3-py2.py3-none-any.whl -
Subject digest:
cfd968c9227115df8f33ce48ad19edc89b418f0172910f353b371cc8c93d33fb - Sigstore transparency entry: 779584363
- Sigstore integration time:
-
Permalink:
jasongi/collectfasta@87ea80de6352f9bc7d05bd46f6ab980a3479605e -
Branch / Tag:
refs/tags/3.3.3 - Owner: https://github.com/jasongi
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yaml@87ea80de6352f9bc7d05bd46f6ab980a3479605e -
Trigger Event:
release
-
Statement type: