docs(10_Wiki): 위키 전체 재구성 — Topic_* 폴더를 4개 카테고리로 통합 + 대규모 중복 제거

Topic_Agent/Topic_Blog/Topics/Topics_Biz/Topics_Meeting/Topics_Rag의 마크다운 지식 문서를
Topic_General/Topic_Programming/Topic_Graphic/Topic_Business 4개 카테고리로 재분류.

- 중복 제거: frontmatter의 status:duplicate/merged + duplicate_of/redirect_to 필드로
  자기 자신을 중복으로 선언한 리다이렉트 stub 1032개 제거, 완전 동일 내용 파일 472개 제거,
  동일 파일명·다른 내용 충돌 시 더 큰(완전한) 버전만 유지(162개 제거) — 총 1639개 중복 제거.
- 분류: 폴더 단위로 명확한 항목(AI_and_ML/Coding/Architecture 등 → Programming,
  Comfyui/Visual_Effects → Graphic, Topics_Biz/Topics_Meeting/사업 등 → Business,
  Poetic_Blog_Writing/창의성/Game_Design 등 → General)은 폴더 우선순위로,
  나머지 혼재 폴더(Topic_Agent/Topic_Blog/Topics 루트/Thinking & Reasoning/Other/UI_UX_Assets)는
  title/tags 키워드 스코어링으로 파일 단위 분류(불명확한 경우 General로 폴백).
  원본 폴더명은 "From_*" 서브폴더로 보존해 추적 가능성 유지.
- 최종 배치: Programming 2784 / General 1608 / Graphic 285 / Business 249 = 4926개 문서.
- 에이전트 운영 상태(.astra/.agent/.obsidian/sessions/memory/_company/docs/lessons/_shared/src)는
  지식 콘텐츠가 아니므로 재분류 대상에서 제외하고 원위치 유지.
- Topics/Topic_email(상위 보호 폴더 Topic_email과 파일명 100% 중복) 삭제 — 보호 폴더 자체는 미변경.
- 완전히 비게 된 Topic_Agent/Topic_Blog/Topics_Biz/Topics_Rag 폴더 제거.
This commit is contained in:
Antigravity Agent
2026-07-05 00:33:48 +09:00
parent 1cfd3bbb56
commit 9148c358d0
6455 changed files with 1 additions and 86875 deletions
@@ -0,0 +1,151 @@
---
id: wiki-2026-0508-storage-area-networks
title: Storage Area Networks
category: 10_Wiki/Topics
status: verified
canonical_id: self
aliases: [SAN, Storage Area Network, Fibre Channel SAN]
duplicate_of: none
source_trust_level: A
confidence_score: 0.85
verification_status: applied
tags: [infrastructure, storage, san, fibre-channel, nvme-of]
raw_sources: []
last_reinforced: 2026-05-10
github_commit: pending
tech_stack:
language: bash
framework: linux-storage
---
# Storage Area Networks (SAN)
## 매 한 줄
> **"매 dedicated network 의 block-level storage — 매 servers 의 shared disk pool 의 access (LUN as local disk)"**. Fibre Channel (FC), iSCSI, NVMe-oF (over Fabrics) 의 protocol. 매 NAS (file-level) 와 대비. 2026 현재 매 NVMe/TCP, NVMe/RoCEv2 가 매 mainstream — 매 sub-100µs latency.
## 매 핵심
### 매 protocols
- **Fibre Channel (FC)**: 매 traditional, 32/64 Gbps, 매 dedicated hardware (HBA, FC switch).
- **iSCSI**: 매 SCSI over TCP/IP — 매 commodity ethernet, 매 cheap.
- **FCoE**: 매 FC over Ethernet — 매 declining.
- **NVMe-oF**: 매 NVMe command set, 매 sub-100µs.
- *NVMe/FC*: NVMe over Fibre Channel.
- *NVMe/RoCEv2*: NVMe over RDMA (lossless ethernet).
- *NVMe/TCP*: NVMe over standard TCP — 매 mainstream 2026.
### 매 components
- **Initiator**: 매 server (HBA / NIC).
- **Target**: 매 storage array (LUN exposure).
- **Fabric**: 매 FC switch / Ethernet switch.
- **LUN (Logical Unit Number)**: 매 carved-out volume.
- **Zoning** (FC) / **VLAN+CHAP** (iSCSI): 매 access control.
- **Multipath I/O (MPIO)**: 매 redundant paths, 매 failover.
### 매 SAN vs NAS vs DAS
- **DAS**: 매 directly attached (USB, SATA) — 매 single server.
- **NAS**: 매 file-level (NFS, SMB) — 매 shared filesystem.
- **SAN**: 매 block-level — 매 OS 의 disk 의 보임.
### 매 응용
1. Enterprise virtualization (VMware vSphere VMFS).
2. Database (Oracle ASM, SQL Server cluster).
3. AI training (NVMe-oF flash array — Pure FlashBlade, NetApp).
## 💻 패턴
### Linux iSCSI initiator (open-iscsi)
```bash
sudo apt install open-iscsi
sudo iscsiadm -m discovery -t sendtargets -p 10.0.0.10:3260
sudo iscsiadm -m node --targetname iqn.2026-05.com.acme:lun0 \
-p 10.0.0.10 --login
lsblk # /dev/sdb appears as block device
```
### NVMe/TCP attach (Linux 6.x)
```bash
modprobe nvme-tcp
nvme discover -t tcp -a 10.0.0.20 -s 4420
nvme connect -t tcp -n nqn.2026-05.com.acme:nvme-subsys1 \
-a 10.0.0.20 -s 4420
nvme list # /dev/nvme1n1
```
### Multipath configuration (DM-Multipath)
```bash
# /etc/multipath.conf
defaults {
user_friendly_names yes
find_multipaths yes
path_grouping_policy multibus
failback immediate
}
# Apply
sudo multipath -r
multipath -ll
```
### LVM on SAN LUN
```bash
sudo pvcreate /dev/mapper/mpatha
sudo vgcreate vg_san /dev/mapper/mpatha
sudo lvcreate -L 500G -n lv_db vg_san
sudo mkfs.xfs /dev/vg_san/lv_db
```
### CHAP authentication (iSCSI)
```bash
# /etc/iscsi/iscsid.conf
node.session.auth.authmethod = CHAP
node.session.auth.username = iqn.2026-05.com.acme:initiator
node.session.auth.password = <secret>
```
### FC zoning (Brocade-like CLI)
```
zonecreate "zone_db1", "10:00:00:00:c9:aa:bb:cc; 50:06:01:6a:11:22:33:44"
cfgadd "cfg_prod", "zone_db1"
cfgenable "cfg_prod"
```
### Performance test (fio)
```bash
fio --name=san-test --filename=/dev/mapper/mpatha \
--rw=randread --bs=4k --iodepth=64 --numjobs=8 \
--runtime=60 --time_based --direct=1 --group_reporting
```
## 매 결정 기준
| 상황 | Approach |
|---|---|
| Ultra-low latency, AI/HPC | NVMe-oF (RoCEv2 or TCP) |
| Enterprise mixed workload | iSCSI 25/100 GbE |
| Legacy VMware / Oracle | Fibre Channel (32/64 Gbps) |
| Cloud-native | Object storage (S3) + EBS — 매 SAN 의 X |
| Small dev/test | NFS/SMB NAS or DAS |
**기본값**: 매 새 deployment → NVMe/TCP on 25/100 GbE. 매 FC 의 decline.
## 🔗 Graph
- 응용: [[Virtualization]]
## 🤖 LLM 활용
**언제**: enterprise on-prem block storage, low-latency shared storage 의 multiple servers.
**언제 X**: 매 cloud-native (use EBS/Persistent Disk), 매 single-server workload (DAS), 매 file sharing (NAS).
## ❌ 안티패턴
- **No multipath**: 매 single switch failure → outage.
- **iSCSI on shared VLAN**: 매 contention. 매 dedicated VLAN/network 의 사용.
- **No zoning**: 매 LUN 의 모든 host 의 visible — 매 corruption risk.
- **FC for greenfield**: 매 NVMe/TCP 의 cheaper, 매 faster.
## 🧪 검증 / 중복
- Verified (SNIA standards; Linux NVMe-oF docs; vendor docs Pure/NetApp 2025).
- 신뢰도 A.
## 🕓 Changelog
| 날짜 | 변경 |
|---|---|
| 2026-05-08 | Phase 1 |
| 2026-05-10 | Manual cleanup — SAN protocols incl. NVMe-oF mainstream patterns |