38/60 Days System Design Questions

작성자

카테고리:

← 피드로
DEV Community · Joud Awad · 2026-06-14 개발(SW)
Cover image for 38/60 Days System Design Questions

Joud Awad

Your LLM has 128K tokens.

Your document has 150K words.

Something has to give. What do you do?

A) Chunk the document into fixed-size pieces and embed each one — retrieve the top-k at query time.
B) Use a sliding window — process the document in overlapping chunks, stitch the outputs together.
C) Summarize each section progressively — feed the running summary forward as context.
D) Truncate to the most recent tokens and hope the answer is near the end.

Three of these are real strategies teams ship to production. One of them will silently give you wrong answers on a predictable class of questions.

Pick one — and tell me which you’d actually use on a 200-page legal contract where the answer can be anywhere.

I’ll drop the full breakdown in the comments — including the failure mode most engineers don’t see until they’re in production.

Drop your answer 👇

30DaysOfSystemDesign #SystemDesign #AI #LLM

원문에서 계속 ↗

코멘트

답글 남기기

이메일 주소는 공개되지 않습니다. 필수 필드는 *로 표시됩니다