Evitar que o Gunicorn seja carregado lentamente após um período inativo?

4

Meu projeto Django está rodando em gunicorn . Às vezes, o carregamento de uma página (e as chamadas de procedimentos oracle relacionadas) leva muito tempo. Isso ocorre 90/100 quando o servidor permanece inativo por alguns minutos .

Como posso abordar este problema?

wsgi.py

import os
import site
import sys

from whitenoise.django import DjangoWhiteNoise

# Add the site-packages of the chosen virtualenv to work with
site.addsitedir('/new_esmart/esmart_env/lib/python2.7/site-packages')

# Add the app's directory to the PYTHONPATH
sys.path.append('/new_esmart/esmart2')
sys.path.append('/new_esmart/esmart2/esmart2')
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "esmart2.settings")

# Activate your virtual env
activate_env = os.path.expanduser("/new_esmart/esmart_env/bin/activate_this.py")
execfile(activate_env, dict(__file__=activate_env))

from django.core.wsgi import get_wsgi_application
application = get_wsgi_application()
application = DjangoWhiteNoise(application)

stats

             total       used       free     shared    buffers     cached
Mem:          3962       3727        234          0        394       2268
-/+ buffers/cache:       1064       2897
Swap:         4095          0       4095

máquina

Architecture:          x86_64
CPU op-mode(s):        32-bit, 64-bit
Byte Order:            Little Endian
CPU(s):                2
On-line CPU(s) list:   0,1
Thread(s) per core:    1
Core(s) per socket:    2
Socket(s):             1
NUMA node(s):          1
Vendor ID:             GenuineIntel
CPU family:            6
Model:                 45
Stepping:              7
CPU MHz:               1995.000
BogoMIPS:              3990.00
Hypervisor vendor:     VMware
Virtualization type:   full
L1d cache:             32K
L1i cache:             32K
L2 cache:              256K
L3 cache:              15360K
NUMA node0 CPU(s):     0,1
    
por Sam 07.10.2016 / 16:51

0 respostas