added the compression option to the main settings file
This commit is contained in:
parent
40024b4d3c
commit
9f3fe29c27
|
@ -197,6 +197,18 @@ INSTALLED_APPS = (
|
||||||
'django_db_logger',
|
'django_db_logger',
|
||||||
)
|
)
|
||||||
|
|
||||||
|
# ==============================================
|
||||||
|
# DATABASE CONFIGURATION
|
||||||
|
# ==============================================
|
||||||
|
|
||||||
|
# Enables compression on MySQL >= 5.6 on tables:
|
||||||
|
# - website_backupdata
|
||||||
|
# - website_knobdata
|
||||||
|
# - website_metricdata
|
||||||
|
# - website_pipelinedata
|
||||||
|
MYSQL_COMPRESSION = False
|
||||||
|
|
||||||
|
|
||||||
# ==============================================
|
# ==============================================
|
||||||
# RABBITMQ/CELERY CONFIGURATION
|
# RABBITMQ/CELERY CONFIGURATION
|
||||||
# ==============================================
|
# ==============================================
|
||||||
|
|
|
@ -34,13 +34,6 @@ DATABASES = {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
# Enables compression on MySQL >= 5.6 on tables:
|
|
||||||
# - website_backupdata
|
|
||||||
# - website_knobdata
|
|
||||||
# - website_metricdata
|
|
||||||
# - website_pipelinedata
|
|
||||||
MYSQL_COMPRESSION = False
|
|
||||||
|
|
||||||
# ==============================================
|
# ==============================================
|
||||||
# DEBUG CONFIGURATION
|
# DEBUG CONFIGURATION
|
||||||
# ==============================================
|
# ==============================================
|
||||||
|
|
Loading…
Reference in New Issue