request entity too large

    [InfluxDB] 마주했던 몇가지 오류

    python에서 influxdb 라이브러리를 사용하였고 마주쳤던 두가지 오류의 해결방안에 대해 기록.. 413: {"error":"Request Entity Too Large"} 400: {"error":"partial write: max-values-per-tag limit exceeded (110000/100000): ... } 두가지 모두 influxdb.conf 파일을 수정하여 해결할 수 있다. /etc/influxdb/influxdb.conf linux에서 influxdb 기본 config 파일 경로는 위와 같다.(아마..) 1. Request Entity Too Large 이건 influxdb.conf 파일의 max-body-size를 0으로 수정하면 된다 $ vi /etc/influxdb/i..