diff --git a/_posts/2024-11-27-join_algorithms.md b/_posts/2024-11-27-join_algorithms.md index 317daa9..486f492 100644 --- a/_posts/2024-11-27-join_algorithms.md +++ b/_posts/2024-11-27-join_algorithms.md @@ -88,7 +88,7 @@ end ## Parallel Sort-Merge Join 1. range partitioning - sort - S, R을 조인 키의 범위로 파티셔닝한다. 동일한 키를 가진 레코드는 한 노드로 모인다. - - data skew가 발생할 수 있다. 이는 샘플링을 통해 해결할 수 있다. + - data skew가 발생할 수 있다. 이는 샘플링을 통해 해결할 수 있다. - shuffle 발생 2. merge - 로컬에서 수행된다. - 병렬처리 가능.