Skip to content

LargeNotebooksSupport

mrogalski edited this page Aug 21, 2018 · 2 revisions

By default gist-services support forking of notebooks of total size (notebook cells and assets) up to 10MB. To increase the notebook size limit the configuration of both rcloud-gist-service and rcloud-gistproxy-service needs to be updated.

Example (200MB limit)

Add the following section to /opt/rcloud-gistproxy-service/application.yml:

spring:
  http:
    multipart:
      maxRequestSize: 200MB

Add the following section to /opt/rcloud-gist-service/application.yml:

spring:
  http:
    multipart:
      maxRequestSize: 200MB

After applying the changes both services need to be restarted.

Clone this wiki locally