apache drill 提供的physical-operators 以及说明
当前支持物理操作
- 分布式操作
主要是通过网络的,包含以下操作
- join 操作
- 聚合操作
- 排序以及分页
- 投影操作
- 过滤以及相关操作
- 集合操作
- 扫描操作
- 接受操作
- 发送操作
- 文件写操作
说明
drill 的一些官方文档对于学习dremio 还是很有用的,了解以上的一些物理操作器,可以更好的学习dremio,如果阅读源码的话会发现实际上一些操作器官方文档没写
参考资料
https://drill.apache.org/docs/physical-operators/
https://drill.apache.org/docs/how-to-partition-data/
https://drill.apache.org/docs/query-profile-column-descriptions/
https://drill.apache.org/docs/join-planning-guidelines/
sabot/kernel/src/main/java/com/dremio/exec/physical
https://drill.apache.org/docs/guidelines-for-optimizing-aggregation/
https://github.com/apache/drill/tree/master/exec/java-exec/src/main/java/org/apache/drill/exec/physical/config
https://drill.apache.org/docs/sort-based-and-hash-based-memory-constrained-operators/