9148c358d0
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 폴더 제거.
5.7 KiB
5.7 KiB
id, title, category, status, canonical_id, aliases, duplicate_of, source_trust_level, confidence_score, verification_status, tags, raw_sources, last_reinforced, github_commit, tech_stack
| id | title | category | status | canonical_id | aliases | duplicate_of | source_trust_level | confidence_score | verification_status | tags | raw_sources | last_reinforced | github_commit | tech_stack | ||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| wiki-2026-0508-v8-engine-heap-management | V8 Engine Heap Management | 10_Wiki/Topics | verified | self |
|
none | A | 0.9 | applied |
|
2026-05-10 | pending |
|
V8 Engine Heap Management
매 한 줄
"매 generational heap + sandbox + pointer compression". V8 매 Young/Old Gen 의 분리 + Orinoco GC + 매 4GB sandbox 의 OOB exploit 의 mitigate. 2026 매 V8 12.x — 매 Maglev tier + Sparkplug + sandbox-by-default + Node.js 22 LTS.
매 핵심
매 Heap 구조
- Young Generation — 매 short-lived: Nursery (To/From semi-space) + Intermediate.
- Old Generation — 매 long-lived: Old Pointer Space + Old Data Space.
- Large Object Space — 매 >256KB allocations.
- Code Space — 매 JIT-compiled machine code.
- Map Space — 매 hidden classes (V8 Maps).
- Read-Only Space — 매 immutable VM-level data.
매 GC 알고리즘
- Scavenger (Young): Cheney's copying — 매 minor GC, 매 ms 단위.
- Major GC (Old): Mark-Sweep-Compact + concurrent/parallel/incremental.
- Orinoco — main-thread pause 의 minimize.
매 V8 Sandbox (Memory Cage)
- 매 V8 heap 의 4GB virtual region 의 confine.
- 매 internal pointer 의 sandbox-relative 32-bit offset.
- 매 OOB write exploit 의 host process corrupt X.
- 매 V8 11.4+ default — 매
--sandboxflag.
매 Pointer Compression
- 매 64-bit isolate 의 32-bit offset 사용 (4GB heap).
- 매 메모리 의 ~40% 절감.
- Cage base register + offset = full pointer.
매 Hidden Classes (Maps)
- 매 object shape descriptor.
- 매 inline cache (IC) 의 fast property access.
- 매 shape transition 의 monomorphic 유지 의 핵심.
매 응용
- Node.js memory tuning —
--max-old-space-size. - Memory leak debugging — heap snapshot.
- JIT optimization — monomorphic code path.
- Embedded V8 — Deno, Cloudflare Workers, Electron.
💻 패턴
Heap size tuning
# 4GB old generation
node --max-old-space-size=4096 server.js
# 256MB young generation (semi-space)
node --max-semi-space-size=128 worker.js
Heap snapshot — memory leak detection
import { writeHeapSnapshot } from "node:v8";
setInterval(() => {
const path = writeHeapSnapshot(`./heap-${Date.now()}.heapsnapshot`);
console.log("Heap snapshot:", path);
}, 60_000);
process.memoryUsage
const m = process.memoryUsage();
console.log({
rss: (m.rss / 1024 / 1024).toFixed(1) + " MB",
heapUsed: (m.heapUsed / 1024 / 1024).toFixed(1) + " MB",
heapTotal: (m.heapTotal / 1024 / 1024).toFixed(1) + " MB",
external: (m.external / 1024 / 1024).toFixed(1) + " MB",
});
V8 stats — getHeapStatistics
import { getHeapStatistics, getHeapSpaceStatistics } from "node:v8";
console.log(getHeapStatistics());
// total_heap_size, used_heap_size, heap_size_limit, ...
for (const space of getHeapSpaceStatistics()) {
console.log(space.space_name, space.space_used_size);
}
Monomorphic vs polymorphic — IC friendly
// GOOD — same shape every call → monomorphic IC
function area({ w, h }) { return w * h; }
area({ w: 1, h: 2 });
area({ w: 3, h: 4 });
// BAD — varied shapes → megamorphic, IC miss
area({ w: 1, h: 2, label: "a" });
area({ w: 3, h: 4, color: "red" });
Hidden class stability
// BAD — late property addition forces shape transition
const u = {};
u.id = 1;
u.name = "x";
// GOOD — initialize all properties at construction
const u2 = { id: 1, name: "x" };
--prof + --prof-process
node --prof app.js
# Generates isolate-*.log
node --prof-process isolate-*.log > prof.txt
WeakRef — manual lifecycle
const cache = new Map();
function get(key) {
const ref = cache.get(key);
const val = ref?.deref();
if (val) return val;
const fresh = expensive(key);
cache.set(key, new WeakRef(fresh));
return fresh;
}
매 결정 기준
| 상황 | Approach |
|---|---|
| Default Node.js | 매 V8 default — 충분. |
| Memory-heavy worker | --max-old-space-size=8192. |
| Latency-sensitive | 매 short-lived alloc 의 Young Gen 유지 — small heap. |
| Memory leak suspect | writeHeapSnapshot + Chrome DevTools. |
| Hot loop | Monomorphic shape — 매 동일 hidden class. |
| Embedded V8 | Sandbox enable + isolate per tenant. |
기본값: 매 V8 default GC + sandbox enabled + monomorphic code + heap snapshot 의 production 의 leak 의 trigger 시.
🔗 Graph
- 변형: V8 가비지 컬렉션(Garbage Collection) · V8 메모리 케이지(V8 Memory Cage) · To Space와 From Space
- 응용: Node.js Performance · Cloudflare Workers
- Adjacent: Garbage Collection · Hidden Class
🤖 LLM 활용
언제: Node.js 의 production tuning, memory leak diagnosis, JIT optimization, V8 embedding. 언제 X: 매 SpiderMonkey/JavaScriptCore 의 generic 적용 X — 매 V8-specific.
❌ 안티패턴
- 매 late property addition: hidden class transition — IC miss.
- 매 too-small
--max-old-space-size: OOM crash. - 매 too-large heap: GC pause 의 증가.
- 매 closure 의 long-lived ref 유지: 매 leak.
- 매 megamorphic call site: deopt → slow path.
- 매 sandbox disable (
--no-sandbox): 매 production 의 X.
🧪 검증 / 중복
- Verified (V8 blog, "Trash Talk" 시리즈; Orinoco design doc; V8 Sandbox RFC).
- 신뢰도 A.
🕓 Changelog
| 날짜 | 변경 |
|---|---|
| 2026-05-08 | Phase 1 |
| 2026-05-10 | Manual cleanup — V8 heap 구조 + sandbox + GC + IC 패턴 정리 |