nginx 로그 로 인해 IO 부하 가 비교적 높 습 니 다. 어떻게 처리 합 니까?
디스크 IO 작업 을 줄 이기 위해 메모리 파 티 션 처럼 로 그 를 씁 니 다.그러나 로 그 량 이 너무 많아 서 메모 리 를 가득 채 우기 쉽다.
Nginx 는 로그 압축 기능 을 지원 합 니 다. 구체 적 으로 다음 과 같 습 니 다.
access_log path format gzip[=level] [buffer=size] [flush=time];
If either the buffer or gzip (1.3.10, 1.2.7) parameter is used, writes to log will be buffered.
The buffer size must not exceed the size of an atomic write to a disk file. For FreeBSD this size is unlimited
When buffering is enabled, the data will be written to the file:
If the gzip parameter is used, then the buffered data will be compressed before writing to the file. The compression level can be set between 1 (fastest, less compression) and 9 (slowest, best compression). By default, the buffer size is equal to 64K bytes, and the compression level is set to 1. Since the data is compressed in atomic blocks, the log file can be decompressed or read by “zcat” at any time.
Example:
access_log /path/to/log.gz combined gzip flush=5m;
For gzip compression to work, nginx must be built with the zlib library.
nginx 는 압축 후 로 그 를 쓰 는 것 을 지원 합 니 다. 이 기능 을 사용 하면 로그 파일 을 메모리 파 티 션 에 두 고 디스크 IO 작업 을 줄 일 수 있 습 니 다.그리고 로그 폴 더 를 정기 적 으로 디스크 에 기록 하거나 로그 처리 클 러 스 터 로 전송 합 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
간단! Certbot을 사용하여 웹 사이트를 SSL(HTTPS)화하는 방법초보자가 인프라 주위를 정돈하는 것은 매우 어렵습니다. 이번은 사이트를 간단하게 SSL화(HTTP에서 HTTPS통신)로 변경하는 방법을 소개합니다! 이번에는 소프트웨어 시스템 Nginx CentOS7 의 환경에서 S...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.