Skip to content
Snippets Groups Projects
Commit 679b0779 authored by Jorrit Schaap's avatar Jorrit Schaap
Browse files

TMSS-1912: use fast usjon serializer for all json responses

parent 683ba703
No related branches found
No related tags found
1 merge request!905TMSS-1912
...@@ -27,7 +27,7 @@ RUN mkdir -p /opt/oracle && \ ...@@ -27,7 +27,7 @@ RUN mkdir -p /opt/oracle && \
unzip instantclient-basic-linux.x64-21.1.0.0.0.zip unzip instantclient-basic-linux.x64-21.1.0.0.0.zip
ENV LD_LIBRARY_PATH /opt/oracle/instantclient_21_1:$LD_LIBRARY_PATH ENV LD_LIBRARY_PATH /opt/oracle/instantclient_21_1:$LD_LIBRARY_PATH
RUN pip3 install cython kombu lxml requests pygcn xmljson mysql-connector-python python-dateutil Django==3.0.9 djangorestframework==3.11.1 djangorestframework-xml ldap==1.0.2 flask fabric coverage python-qpid-proton PyGreSQL numpy h5py psycopg2 testing.postgresql Flask-Testing scipy Markdown django-filter python-ldap python-ldap-test ldap3 django-jsonforms django-json-widget django-jsoneditor drf-yasg flex swagger-spec-validator django-auth-ldap mozilla-django-oidc jsonschema comet pyxb==1.2.5 graphviz isodate astropy packaging django-debug-toolbar pymysql astroplan SimpleWebSocketServer websocket_client drf-flex-fields django-property-filter cx_Oracle cachetools gunicorn gevent RUN pip3 install cython kombu lxml requests pygcn xmljson mysql-connector-python python-dateutil Django==3.0.9 djangorestframework==3.11.1 djangorestframework-xml ldap==1.0.2 flask fabric coverage python-qpid-proton PyGreSQL numpy h5py psycopg2 testing.postgresql Flask-Testing scipy Markdown django-filter python-ldap python-ldap-test ldap3 django-jsonforms django-json-widget django-jsoneditor drf-yasg flex swagger-spec-validator django-auth-ldap mozilla-django-oidc jsonschema comet pyxb==1.2.5 graphviz isodate astropy packaging django-debug-toolbar pymysql astroplan SimpleWebSocketServer websocket_client drf-flex-fields django-property-filter cx_Oracle cachetools gunicorn gevent ujson
#Viewflow package #Viewflow package
RUN pip3 install django-material django-viewflow RUN pip3 install django-material django-viewflow
......
...@@ -6,6 +6,7 @@ set(_py_files ...@@ -6,6 +6,7 @@ set(_py_files
settings.py settings.py
urls.py urls.py
wsgi.py wsgi.py
renderers.py
exceptions.py exceptions.py
authentication_backends.py authentication_backends.py
) )
......
from rest_framework.renderers import JSONRenderer, SHORT_SEPARATORS, LONG_SEPARATORS, JSONRenderer
import ujson
class UJSONRenderer(JSONRenderer):
"""
Faster version of plain drf JSONRenderer using ujson
"""
def render(self, data, accepted_media_type=None, renderer_context=None):
"""
Render `data` into JSON, returning a bytestring.
"""
if data is None:
return b''
renderer_context = renderer_context or {}
indent = self.get_indent(accepted_media_type, renderer_context)
ret = ujson.dumps(data,
indent=indent or 0,
ensure_ascii=self.ensure_ascii,
escape_forward_slashes=False)
# For speed reasons we do not replace \u2028 and \u2029,
# as we hardly encounter them and there is a severe speed penalty in replacing them.
# See remarks in super().render
return ret.encode()
...@@ -211,6 +211,11 @@ REST_FRAMEWORK = { ...@@ -211,6 +211,11 @@ REST_FRAMEWORK = {
'DEFAULT_PERMISSION_CLASSES': [], 'DEFAULT_PERMISSION_CLASSES': [],
'PAGE_SIZE': 50, 'PAGE_SIZE': 50,
'DEFAULT_PAGINATION_CLASS': 'rest_framework.pagination.LimitOffsetPagination', 'DEFAULT_PAGINATION_CLASS': 'rest_framework.pagination.LimitOffsetPagination',
'DEFAULT_RENDERER_CLASSES': (
# we use our own faster ujson serializer
'lofar.sas.tmss.tmss.renderers.UJSONRenderer',
'rest_framework.renderers.BrowsableAPIRenderer',
),
'DEFAULT_FILTER_BACKENDS': ( 'DEFAULT_FILTER_BACKENDS': (
# allows ?field=value filtering in URLs # allows ?field=value filtering in URLs
# (fields allowed for filtering must be annotated in viewsets using filter_fields = ('field', ...)) # (fields allowed for filtering must be annotated in viewsets using filter_fields = ('field', ...))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment