You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@zeppelin.apache.org by "leo wu (JIRA)" <ji...@apache.org> on 2016/03/14 21:01:33 UTC

[jira] [Created] (ZEPPELIN-748) Failed to upload a notebook >1 Mb to Zeppelin

leo wu created ZEPPELIN-748:
-------------------------------

             Summary: Failed to upload a notebook >1 Mb to Zeppelin
                 Key: ZEPPELIN-748
                 URL: https://issues.apache.org/jira/browse/ZEPPELIN-748
             Project: Zeppelin
          Issue Type: Bug
          Components: Core
    Affects Versions: 0.5.5
         Environment: Ubuntu 14.04 within Docker
            Reporter: leo wu


I am running a Zeppelin within a docker container behind a nginx server.  In fact, I have properly configure /etc/nginx/nginx.conf  like :

...
upstream websocket {
    server zeppelin:8080;
  }

....
server {
    listen 8082;

    client_max_body_size 1000M;
    location / {
      proxy_pass http://websocket;
      proxy_http_version 1.1;
      proxy_set_header Upgrade $http_upgrade;
      proxy_set_header Connection $connection_upgrade;
    }
  }

....

However, I keep getting error like below: 

WARN [2016-03-14 19:44:18,291] ({qtp110771485-39} WebSocketConnectionRFC6455.java[textMessageTooLarge]:931) - Text message too large > 1024000 chars for SCEP@7b5aff2a{l(/172.17.0.9:39820)<->r(/172.17.0.8:8080),s=1,open=true,ishut=false,oshut=false,rb=false,wb=false,w=true,i=1r}-{WebSocketServletConnectionRFC6455 p=WebSocketParserRFC6455@fb4812d state=DATA buffer= g=WebSocketGeneratorRFC6455@77f70402 closed=false buffer=-1}

Do you have anything  in Zeppelin that I can configure for it ? 




--
This message was sent by Atlassian JIRA
(v6.3.4#6332)