All Projects → antonagestam → Collectfast

antonagestam / Collectfast

Licence: mit
A faster collectstatic command.

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Collectfast

Django Cachalot
No effort, no worry, maximum performance.
Stars: ✭ 790 (+124.43%)
Mutual labels:  django, performance
Pyinstrument
🚴 Call stack profiler for Python. Shows you why your code is slow!
Stars: ✭ 3,870 (+999.43%)
Mutual labels:  django, performance
Ralph
Ralph is the CMDB / Asset Management system for data center and back office hardware.
Stars: ✭ 1,701 (+383.24%)
Mutual labels:  assets-management, django
Django Dynamic Fixture
A complete library to create dynamic model instances for testing purposes.
Stars: ✭ 341 (-3.12%)
Mutual labels:  django
Js Worker Search
JavaScript client-side search API with web-worker support
Stars: ✭ 345 (-1.99%)
Mutual labels:  performance
Drf Flex Fields
Dynamically set fields and expand nested resources in Django REST Framework serializers.
Stars: ✭ 350 (-0.57%)
Mutual labels:  django
App perf
Open source application performance monitoring tool with emphasis on ease of setup and use. Providing similar functionality like NewRelic/AppNeta/Skylight etc.
Stars: ✭ 353 (+0.28%)
Mutual labels:  performance
Autoops
linux资产管理,cmdb,django, webssh,运维管理平台,数据库操作平台 本项目已停止开发!因长时间未对代码进行维护,可能会造成项目在不同环境上无法部署、运行BUG等问题,请知晓!项目仅供参考!
Stars: ✭ 340 (-3.41%)
Mutual labels:  django
Typeidea
Django企业开发实战对应项目代码
Stars: ✭ 351 (-0.28%)
Mutual labels:  django
Rails performance
Monitor performance of you Rails applications
Stars: ✭ 345 (-1.99%)
Mutual labels:  performance
Django Smuggler
Django Smuggler is a pluggable application for Django Web Framework that helps you to import/export fixtures via the automatically-generated administration interface.
Stars: ✭ 350 (-0.57%)
Mutual labels:  django
Tifig
A fast HEIF image converter aimed at thumbnailing
Stars: ✭ 345 (-1.99%)
Mutual labels:  performance
Capsule
The Capsule Hash Trie Collections Library
Stars: ✭ 350 (-0.57%)
Mutual labels:  performance
Sparklens
Qubole Sparklens tool for performance tuning Apache Spark
Stars: ✭ 345 (-1.99%)
Mutual labels:  performance
Channels Api
RESTful Websocket APIs with Django Rest Framework and Channels
Stars: ✭ 353 (+0.28%)
Mutual labels:  django
Graphene Django
Integrate GraphQL into your Django project.
Stars: ✭ 3,738 (+961.93%)
Mutual labels:  django
Django Celery Email
A Django email backend that uses a celery task for sending the email.
Stars: ✭ 351 (-0.28%)
Mutual labels:  django
Velocypack
A fast and compact format for serialization and storage
Stars: ✭ 347 (-1.42%)
Mutual labels:  performance
Django Heroku
Minimal configuration to host a Django project at Heroku
Stars: ✭ 344 (-2.27%)
Mutual labels:  django
Django Pg Zero Downtime Migrations
Django postgresql backend that apply migrations with respect to database locks
Stars: ✭ 351 (-0.28%)
Mutual labels:  django

Collectfast

A faster collectstatic command.

Test Suite Static analysis Test Coverage Maintainability

Features

  • Efficiently decide what files to upload using cached checksums
  • Parallel file uploads

Supported Storage Backends

  • storages.backends.s3boto3.S3Boto3Storage
  • storages.backends.gcloud.GoogleCloudStorage
  • django.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. Collectfast 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 Collectfast

Make sure you have this in your settings file and add 'collectfast' to your INSTALLED_APPS, before 'django.contrib.staticfiles':

STATICFILES_STORAGE = "storages.backends.s3boto3.S3Boto3Storage"
COLLECTFAST_STRATEGY = "collectfast.strategies.boto3.Boto3Strategy"
INSTALLED_APPS = (
    # ...
    'collectfast',
)

Note: 'collectfast' must come before 'django.contrib.staticfiles' in INSTALLED_APPS.

Note: The boto strategy will set preload_metadata on the remote storage to True, see #30.

Upload Strategies
Collectfast Strategy Storage Backend
collectfast.strategies.boto3.Boto3Strategy storages.backends.s3boto3.S3Boto3Storage
collectfast.strategies.gcloud.GoogleCloudStrategy storages.backends.gcloud.GoogleCloudStorage
collectfast.strategies.filesystem.FileSystemStrategy django.core.files.storage.FileSystemStorage

Custom strategies can also be made for backends not listed above by implementing the collectfast.strategies.Strategy ABC.

Usage

Collectfast overrides Django's builtin collectstatic command so just run python manage.py collectstatic as normal.

You can disable Collectfast by using the --disable-collectfast option or by setting COLLECTFAST_ENABLED = False in your settings file.

Setting Up a Dedicated Cache Backend

It's recommended to setup a dedicated cache backend for Collectfast. Every time Collectfast 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 COLLECTFAST_CACHE setting:

CACHES = {
    'default': {
        # Your default cache
    },
    'collectfast': {
        # Your dedicated Collectfast cache
    },
}

COLLECTFAST_CACHE = 'collectfast'

If COLLECTFAST_CACHE isn't set, the default cache will be used.

Note: Collectfast 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 COLLECTFAST_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.

COLLECTFAST_THREADS = 20

Debugging

By default, Collectfast will suppress any exceptions that happens when copying and let Django's collectstatic handle it. To debug those suppressed errors you can set COLLECTFAST_DEBUG = True in your Django settings file.

Contribution

Please feel free to contribute by using issues and pull requests. Discussion is open and welcome.

Testing

The test suite is built to run against live S3 and GCloud buckets. You can disable live tests by setting SKIP_LIVE_TESTS=true or running make test-skip-live. To run live tests locally you need to provide API credentials to test against. Add the credentials to a file named storage-credentials in the root of the project directory:

export AWS_ACCESS_KEY_ID='...'
export AWS_SECRET_ACCESS_KEY='...'
export GCLOUD_CREDENTIALS='{...}'  # Google Cloud credentials as JSON

Install test dependencies and target Django version:

python3 -m pip install -r test-requirements.txt
python3 -m pip install django==2.2

Run test suite:

make test

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 lint

License

Collectfast is licensed under the MIT License, see LICENSE file for more information.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].