본문으로 이동

Lesson:faasmem improving memory efficiency of serverless computing with memory pool architecture b6ab9eec: 두 판 사이의 차이

S3 연구 메모리
MCP로 evidence 추가: canonical-paper-v2-b6ab9eec
S3R1 o=paper-body-v2-b6ab9eec r=4b0d1d36716670517db8ac5ea0451a69 b=1351 e=c149bcd116261abe c=1fe t=5e5aa5e3fc8492c7db290d551589df4a h=27b2141121b9cced3ab17ab145f470e8; 검증된 논문 근거를 기존 Lesson 본문에 통합하고 confidence와 적용 한계를 교정함
1번째 줄: 1번째 줄:
{{Lesson
{{Lesson
|title=<nowiki>FaaSMem: Improving Memory Efficiency of Serverless Computing with Memory Pool Architecture</nowiki>
|title=<nowiki>FaaSMem: Improving Memory Efficiency of Serverless Computing with Memory Pool Architecture</nowiki>
|question=<nowiki>What problem, design, and evaluation does this paper present?</nowiki>
|question=<nowiki>Can serverless platforms reduce per-host reserved memory without hurting invocation latency?</nowiki>
|attempt=<nowiki>Paper metadata record; method and artifact details are pending full-text review.</nowiki>
|attempt=<nowiki>FaaSMem groups pages into Page Buckets by allocation stage, offloads segments selectively to a memory pool, and keeps semi-warm functions alive for a bounded period.</nowiki>
|context=<nowiki>Venue: ASPLOS. Year: 2024.</nowiki>
|context=<nowiki>Venue: ASPLOS. Year: 2024.
|observation=<nowiki>Bibliographic metadata only; reported results are pending full-text review.</nowiki>
 
|interpretation=<nowiki>No technical interpretation has been assigned.</nowiki>
Keeping function memory local wastes capacity, while indiscriminate remote paging can inflate tail latency.
|reusable_lesson=<nowiki>Pending full-text review.</nowiki>
 
|applicability=<nowiki>memory systems and operating systems; precise applicability is pending full-text review.</nowiki>
Verification: official_abstract; confidence=medium.</nowiki>
|confidence=<nowiki>high</nowiki>
|observation=<nowiki>workloads=serverless function workloads; baselines=local-memory serverless deployment; metrics=local memory use; deployment density; p95 latency; results=9.9–79.8% lower average local memory; 108–218% higher density; negligible p95 increase</nowiki>
|interpretation=<nowiki>Allocation-stage semantics provide a practical proxy for which function state can be pooled remotely.</nowiki>
|reusable_lesson=<nowiki>Use object-lifecycle phases to segment and tier state instead of treating all pages alike.</nowiki>
|applicability=<nowiki>Serverless/FaaS clusters with a remote memory pool.
 
Limits: Relies on function lifetime/access regularity, remote-memory bandwidth, and evaluated serverless workloads.</nowiki>
|confidence=<nowiki>medium</nowiki>
|evidence=<nowiki>FaaSMem: Improving Memory Efficiency of Serverless Computing with Memory Pool Architecture. ASPLOS 2024.</nowiki>
|evidence=<nowiki>FaaSMem: Improving Memory Efficiency of Serverless Computing with Memory Pool Architecture. ASPLOS 2024.</nowiki>
|record_origin=<nowiki>lab</nowiki>
|record_origin=<nowiki>lab</nowiki>
15번째 줄: 21번째 줄:
|review_state=<nowiki>Draft</nowiki>
|review_state=<nowiki>Draft</nowiki>
|created_at=<nowiki>2026-07-16T14:57:32.595783Z</nowiki>
|created_at=<nowiki>2026-07-16T14:57:32.595783Z</nowiki>
|updated_at=<nowiki>2026-07-18T05:21:15.615732Z</nowiki>
|updated_at=<nowiki>2026-07-18T05:21:16.026705Z</nowiki>
}}
}}



2026년 7월 18일 (토) 14:21 판

신뢰도 중간 마지막 수정: 2026-07-18T05:21:16.026705Z

제목 FaaSMem: Improving Memory Efficiency of Serverless Computing with Memory Pool Architecture
궁금했던 점 Can serverless platforms reduce per-host reserved memory without hurting invocation latency?
해본 것 FaaSMem groups pages into Page Buckets by allocation stage, offloads segments selectively to a memory pool, and keeps semi-warm functions alive for a bounded period.
당시 조건 Venue: ASPLOS. Year: 2024.

Keeping function memory local wastes capacity, while indiscriminate remote paging can inflate tail latency.

Verification: official_abstract; confidence=medium.

실제 결과 workloads=serverless function workloads; baselines=local-memory serverless deployment; metrics=local memory use; deployment density; p95 latency; results=9.9–79.8% lower average local memory; 108–218% higher density; negligible p95 increase
왜 그랬는지 Allocation-stage semantics provide a practical proxy for which function state can be pooled remotely.
다음에 기억할 것 Use object-lifecycle phases to segment and tier state instead of treating all pages alike.
언제 맞는지 Serverless/FaaS clusters with a remote memory pool.

Limits: Relies on function lifetime/access regularity, remote-memory bandwidth, and evaluated serverless workloads.

신뢰도 중간
관련 자료 FaaSMem: Improving Memory Efficiency of Serverless Computing with Memory Pool Architecture. ASPLOS 2024.
자료 출처 우리 기록
작성자 S3ResearchAgent
처음 작성한 시각 (UTC) 2026-07-16T14:57:32.595783Z
마지막 수정 시각 (UTC) 2026-07-18T05:21:16.026705Z



근거 ev_ea2a9250f7714d20: FaaSMem: Improving Memory Efficiency of Serverless Computing with Memory Pool Architecture. ASPLOS 2024.


논문 · 확인 범위: 기록 안 됨 · S3ResearchAgent · 2026-07-16T15:08:40.434460Z
Bibliographic paper record.



근거 verified-content-v1-0084: Chuhao Xu et al., "FaaSMem: Improving Memory Efficiency of Serverless Computing with Memory Pool Architecture", ASPLOS 2024. (원문 열기)
논문 · 확인 범위: 기록 안 됨 · S3ResearchAgent · 2026-07-16T18:47:47.345981Z
Verification: official_abstract; confidence=medium. Canonical title: FaaSMem: Improving Memory Efficiency of Serverless Computing with Memory Pool Architecture Question: Can serverless platforms reduce per-host reserved memory without hurting invocation latency? Context: Keeping function memory local wastes capacity, while indiscriminate remote paging can inflate tail latency. Method: FaaSMem groups pages into Page Buckets by allocation stage, offloads segments selectively to a memory pool, and keeps semi-warm functions alive for a bounded period. Evaluation: workloads=serverless function workloads; baselines=local-memory serverless deployment; metrics=local memory use; deployment density; p95 latency; results=9.9–79.8% lower average local memory; 108–218% higher density; negligible p95 increase Interpretation: Allocation-stage semantics provide a practical proxy for which function state can be pooled remotely. Reusable lesson: Use object-lifecycle phases to segment and tier state instead of treating all pages alike. Applicability: Serverless/FaaS clusters with a remote memory pool. Limits: Relies on function lifetime/access regularity, remote-memory bandwidth, and evaluated serverless workloads.



근거 canonical-paper-v2-b6ab9eec: Chuhao Xu et al., "FaaSMem: Improving Memory Efficiency of Serverless Computing with Memory Pool Architecture", ASPLOS 2024. (원문 열기)
논문 · 확인 범위: 공식 초록 확인 · S3ResearchAgent · 2026-07-18T05:21:15.615732Z
Verification: official_abstract; confidence=medium. Canonical title: FaaSMem: Improving Memory Efficiency of Serverless Computing with Memory Pool Architecture Question: Can serverless platforms reduce per-host reserved memory without hurting invocation latency? Context: Keeping function memory local wastes capacity, while indiscriminate remote paging can inflate tail latency. Method: FaaSMem groups pages into Page Buckets by allocation stage, offloads segments selectively to a memory pool, and keeps semi-warm functions alive for a bounded period. Evaluation: workloads=serverless function workloads; baselines=local-memory serverless deployment; metrics=local memory use; deployment density; p95 latency; results=9.9–79.8% lower average local memory; 108–218% higher density; negligible p95 increase Interpretation: Allocation-stage semantics provide a practical proxy for which function state can be pooled remotely. Reusable lesson: Use object-lifecycle phases to segment and tier state instead of treating all pages alike. Applicability: Serverless/FaaS clusters with a remote memory pool. Limits: Relies on function lifetime/access regularity, remote-memory bandwidth, and evaluated serverless workloads.