From 59ab83c4038970c2a642f401df397da1b7c61f96 Mon Sep 17 00:00:00 2001 From: heibaiying <31504331+heibaiying@users.noreply.github.com> Date: Sat, 27 Apr 2019 10:32:25 +0800 Subject: [PATCH] =?UTF-8?q?Update=20Hive=E5=88=86=E5=8C=BA=E8=A1=A8?= =?UTF-8?q?=E5=92=8C=E5=88=86=E6=A1=B6=E8=A1=A8.md?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- notes/Hive分区表和分桶表.md | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/notes/Hive分区表和分桶表.md b/notes/Hive分区表和分桶表.md index e9f898b..8c18b23 100644 --- a/notes/Hive分区表和分桶表.md +++ b/notes/Hive分区表和分桶表.md @@ -79,7 +79,7 @@ LOAD DATA LOCAL INPATH "/usr/file/emp30.txt" OVERWRITE INTO TABLE emp_partition 在HashMap中,当我们给put()方法传递键和值时,我们先对键调用hashCode()方法,返回的hashCode用于找到bucket(桶)位置,最后将键值对存储在对应桶的链表结构中,链表达到一定阈值后会转换为红黑树(JDK1.8+)。下图为HashMap的数据结构图: -