고객사 설명:
"They don't have tiering right now, they just have one cluster."
현재 구성:
고객사 계획:
"going forward, they will try to use whatever they have in the
back... like [SATA] SSDs or whatever, to have a warm tier...
sometime in this year, like, probably... second half."
타임라인:
고객사 질문:
"they will have this one massive NVMe cluster[s], hot tier...
then, like, what are the things that they need to consider for
warm tier? Like, how should they be connected? And what are the
[lifecycle] management?"
핵심 질문:
1. Warm Tier 구성: 어떤 하드웨어?
2. 연결 방법: Hot ↔ Warm 통합?
3. Lifecycle Management: 자동 이동?
4. 데이터 선택: 무엇을 Warm으로?
Hot Tier:
Warm Tier:
Cold Tier:
현재 (Hot Only):
All Data (3 PB)
↓
NVMe Pool 0 (54 nodes)
↓
고비용, 고성능
목표 (Hot + Warm):
Recent Data (500 GB)
↓
Hot: NVMe Pool 0 (54 nodes)
Older Data (2.5 PB)
↓
Warm: SATA SSD Pool (Legacy hardware)
비용 절감 + 성능 유지
벤더 질문:
"Is it data that you still be running through analytics, or is
it just going to be... less frequently accessed?"
분류 기준:
Hot (자주 액세스):
Warm (가끔 액세스):
예시:
-- Hot: 최근 1개월 매출 데이터
SELECT * FROM sales
WHERE date >= '2026-01-01';
-- Warm: 작년 매출 (월별 리포트)
SELECT SUM(amount)
FROM sales
WHERE YEAR(date) = 2025
GROUP BY MONTH(date);
벤더 경고:
"these are enterprise SSDs... you [will] notice the difference
in access speed between [NVMe] and SSD. So... the data as you
let it go to warm, should be data that you don't want to run
analytics on top of anymore"
NVMe vs SATA SSD:
| 항목 | NVMe | SATA SSD |
|---|---|---|
| Latency | 10-20 μs | 50-100 μs |
| IOPS | 500K+ | 100K |
| Throughput | 3-7 GB/s | 500 MB/s |
| Use Case | Real-time | Batch |
주의:
예시 정책:
정책 1: 30일 기준
Day 0-30: Hot (NVMe)
Day 31+: Warm (SATA SSD)
정책 2: 90일 기준
Day 0-90: Hot (NVMe)
Day 91-365: Warm (SATA SSD)
Day 366+: Cold (Delete or Archive)
정책 3: 액세스 기반
Last Access < 7 days: Hot
Last Access 7-90 days: Warm
Last Access > 90 days: Cold
"going forward, they will try to use whatever they have in the
back... like [SATA] SSDs or whatever, to have a warm tier...
sometime in this year, like, probably... second half."
"they will have this one massive NVMe cluster[s], hot tier...
then, like, what are the things that they need to consider for
warm tier? Like, how should they be connected? And what are the
[lifecycle] management?"
"these are enterprise SSDs... you [will] notice the difference
in access speed between [NVMe] and SSD. So... the data as you
let it go to warm, should be data that you don't want to run
analytics on top of anymore"
"ILM and replication is not being used as of now... but they
have... [a] goal of... activating [it]."