From 5cf017198c693d06d90cb3463f0eafa07e79384d Mon Sep 17 00:00:00 2001 From: getChan <9511chn@gmail.com> Date: Sat, 30 Nov 2024 22:04:30 +0900 Subject: [PATCH] pj --- _posts/2024-11-27-join_algorithms.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 - 로컬에서 수행된다. - 병렬처리 가능.