Files
nexus/wiki/concepts/EFS-Infrequent-Access.md
2026-04-20 00:02:56 +08:00

43 lines
1.2 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
---
title: "EFS Infrequent Access"
type: concept
tags: [AWS, EFS, Storage, Cost-Optimization]
sources: []
last_updated: 2026-04-19
---
## Definition
EFS Infrequent AccessEFS 不频繁访问层)是 AWS EFS 的一种存储层,适合很少访问的文件,通过生命周期策略自动将冷文件移动到低成本的存储层。
## Key Features
- **成本节省**:比标准层低约 85%
- **自动分层**:通过生命周期策略自动转移
- **即时访问**:访问不频繁访问层数据时自动移回标准层
- **最小计费对象**128KB 以下文件不计费
## Pricing
| 存储类型 | 价格(每 GB/月) |
|---------|----------------|
| 标准层 | $0.30 |
| 不频繁访问层 | $0.045 |
## Lifecycle Policy
```json
{
"LifecyclePolicies": [
{
"TransitionToIA": "After 30 days of last access"
}
]
}
```
## Considerations
- **最小计费对象大小**128KB 以下文件计费为 128KB
- **访问成本**:检索数据时有额外的访问费用
- **适合场景**:日志文件、备份文件、归档数据
## Connections
- [[EFS-Standard]] ← extends ← [[EFS]]
- [[Lifecycle-Policy]] → implements → [[EFS-Infrequent-Access]]
- [[AWS]] ← provides ← [[EFS-Infrequent-Access]]