준호씨의 블로그

Zeppelin 오류 해결하기 - Output is truncated to 102400 bytes. Learn more about ZEPPELIN_INTERPRETER_OUTPUT_LIMIT 본문

개발이야기

Zeppelin 오류 해결하기 - Output is truncated to 102400 bytes. Learn more about ZEPPELIN_INTERPRETER_OUTPUT_LIMIT

준호씨 2023. 6. 8. 21:58
반응형

Zeppelin에서 결과내역이 많은 경우 다음과 메시지를 보게 됩니다.

Output is truncated to 102400 bytes. Learn more about ZEPPELIN_INTERPRETER_OUTPUT_LIMIT

 

https://zeppelin.apache.org/docs/0.10.1/setup/operation/configuration.html

 

Apache Zeppelin 0.10.1 Documentation: Apache Zeppelin Configuration

<!-- Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or ag

zeppelin.apache.org

conf/zeppelin-site.xml 설정에서 "zeppelin.interpreter.output.limit"을 수정해 주면 됩니다.

기본값은 102400 bytes로 100KB라고 보면 됩니다. 상황에 맞춰 적절하게 높여주면 되겠습니다. 저는 그냥 10배 올리기 위해 0 하나 더 붙여 주었습니다. 1024000이니 1000KB로 1MB가 조금 안 되는 정도입니다.

 

그리고 zeppelin을 재시작해주면 설정이 적용됩니다.

$ bin/zeppelin-daemon.sh restart
Zeppelin stop                                              [  OK  ]
Zeppelin start                                             [  OK  ]

 

conf/zeppelin-env.sh 파일에서  ZEPPELIN_INTERPRETER_OUTPUT_LIMIT 환경변수 설정을 추가해 줘도 될 거 같습니다.

 

반응형
Comments