데이터중심어플리케이션설계 [Designing data-intensive applications] Chapter 3. Storage and Retrieval 몇가지 다른 방법으로 같은 data를 찾으려고 하는 경우, data의 다른 부분에 대해 여러 개의 다른 index가 필요할 수 있다. 오래된 segment를 merge하면 시간이 지나면서 data file이 조각화되는 문제를 피할 수 있다. SST (Sorted String Table) : segment file의 key-value 쌍을 key를 기준으로 정렬 (각 key는 merge 된 s... 데이터중심어플리케이션설계BookClub정리BookClub
[Designing data-intensive applications] Chapter 3. Storage and Retrieval 몇가지 다른 방법으로 같은 data를 찾으려고 하는 경우, data의 다른 부분에 대해 여러 개의 다른 index가 필요할 수 있다. 오래된 segment를 merge하면 시간이 지나면서 data file이 조각화되는 문제를 피할 수 있다. SST (Sorted String Table) : segment file의 key-value 쌍을 key를 기준으로 정렬 (각 key는 merge 된 s... 데이터중심어플리케이션설계BookClub정리BookClub