博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
hash 分区的用途是什么?
阅读量:4968 次
发布时间:2019-06-12

本文共 754 字,大约阅读时间需要 2 分钟。

Hash partitioning enables easy partitioning of data that does not lend itself to range

or list partitioning. It does this with a simple syntax and is easy to implement. It is a
better choice than range partitioning when:
You do not know beforehand how much data maps into a given range
The sizes of range partitions would differ quite substantially or would be
difficult to balance manually
Range partitioning would cause the data to be undesirably clustered
Performance features such as parallel DML, partition pruning, and
partition-wise joins are important
The concepts of splitting, dropping or merging partitions do not apply to hash
partitions. Instead, hash partitions can be added and coalesced.

转载于:https://www.cnblogs.com/felixzh/p/5922741.html

你可能感兴趣的文章
C++ vector 容器浅析
查看>>
django 模板关闭自动转义
查看>>
Python函数递归之汉诺塔
查看>>
数学之树
查看>>
ios::sync_with_stdio(false);
查看>>
组合模式 - Composite
查看>>
VUE 意淫笔记
查看>>
关于vue-clidown到本地后,拷贝文件库到另外一台电脑上npm run dev编译报错的处理...
查看>>
关于css解决俩边等高的问题(等高布局)
查看>>
查看了解报文?
查看>>
Python函数变量和返回值
查看>>
android studio使用CMake和NDK,实现应用自身被卸载时打开某一网址
查看>>
mysql 分组取最新的一条记录(整条记录)
查看>>
别名alias unalias
查看>>
Codeforces Round #204 (Div. 2)->A. Jeff and Digits
查看>>
tensorflow1.12 queue 笔记
查看>>
好程序员大数据教程分享之Hadoop优缺点
查看>>
将字符存入文本文件
查看>>
Python基本数据统计(四)---- 其他问题
查看>>
判断js中的类型
查看>>