Disk Cache Quickstart Guide
디스크 캐시 빠른 시작 가이드
Disk caching feature here refers to the use of caching disks to store content closer to the tenants.
여기서 디스크 캐싱 기능은 캐싱 디스크를 사용하여 콘텐츠를 테넌트에 더 가깝게 저장하는 것을 의미합니다.
For instance, if you access an object from a lets say gateway azure setup and download the object that gets cached, each subsequent request on the object gets served directly from the cache drives until it expires.
예를 들어, 게이트웨이 azure 설정에서 객체에 액세스하고 캐시된 객체를 다운로드하면 객체에 대한 각 후속 요청은 만료될 때까지 캐시 드라이브에서 직접 제공됩니다.
This feature allows MinIO users to have
이 기능을 사용하면 MinIO 사용자는
Object to be delivered with the best possible performance.
가능한 최고의 성능으로 전달되는 객체입니다.
Dramatic improvements for time to first byte for any object.
모든 객체의 첫 바이트까지의 시간이 크게 향상되었습니다.
Get started
시작
1. Prerequisites
1. 전제조건
Install MinIO - MinIO Quickstart Guide.
MinIO 설치 - MinIO 빠른 시작 가이드.
2. Run MinIO gateway with cache
2. 캐시를 사용하여 MinIO 게이트웨이 실행
Disk caching can be enabled by setting the cache environment variables for MinIO gateway . cache environment variables takes the mounted drive(s) or directory paths, cache expiry duration (in days) and any wildcard patterns to exclude from being cached.
MinIO 게이트웨이에 대한 캐시 환경 변수를 설정하여 디스크 캐싱을 활성화할 수 있습니다. 캐시 환경 변수는 마운트된 드라이브 또는 디렉터리 경로, 캐시 만료 기간 (일) 및 캐시에서 제외할 와일드카드 패턴을 사용합니다.
Following example uses /mnt/drive1, /mnt/drive2, /mnt/cache1... /mnt/cache3 for caching, with expiry up to 90 days while excluding all objects under bucket mybucket and all objects with '.pdf' as extension while starting a s3 gateway setup. Cache max usage is restricted to 80% of disk capacity in this example.
다음 예에서는 캐싱에 /mnt/drive1, /mnt/drive2, /mnt/cache1... /mnt/cache3을 사용하고 최대 90일 동안 만료되며 mybucket 버킷 아래의 모든 객체와 확장명이 '.pdf'인 모든 객체를 제외합니다. s3 게이트웨이 설정을 시작하는 동안. 이 예에서는 캐시 최대 사용량이 디스크 용량의 80%로 제한됩니다.
export MINIO_CACHE_DRIVES="/mnt/drive1;/mnt/drive2;/mnt/cache{1...3}"
export MINIO_CACHE_EXPIRY=90
export MINIO_CACHE_EXCLUDE="*.pdf;mybucket/*"
export MINIO_CACHE_MAXUSE=80
minio gateway s3
3. Test your setup
3. 설정 테스트
To test this setup, access the MinIO gateway via browser or mc. You’ll see the uploaded files are accessible from all the MinIO endpoints.
이 설정을 테스트하려면 브라우저 또는 mc를 통해 MinIO 게이트웨이에 액세스하십시오. 모든 MinIO 엔드포인트에서 업로드된 파일에 액세스할 수 있습니다.
Explore Further
더 자세히 살펴보세요
Disk cache design
디스크 캐시 설계
Use mc with MinIO Server
MinIO 서버와 함께 mc 사용
Use aws-cli with MinIO Server
MinIO 서버와 함께 aws-cli 사용
Use s3cmd with MinIO Server
MinIO 서버와 함께 s3cmd 사용
Use minio-go SDK with MinIO Server
MinIO 서버와 함께 minio-go SDK 사용
The MinIO documentation website
MinIO 문서 웹사이트