
1. 排序性能优化设计评审 -
海量
a. 测试下SMP场景下改功能是否正常,如果不正常,建议SMP下先禁用memoize算子(柳长沣)
b. 资料补充说明该特性适用于、不适用于哪些场景,举例说明(赖盛好)
c. 补充测试memoize算子对范围查询时的支持情况(陈晓滨)
explain select * from t join u on t.j > u.j;
QUERY PLAN
------------------------------------------------------------------------------
Nested Loop (cost=0.30..41672361.50 rows=3333333333 width=16)
-> Seq Scan on t (cost=0.00..1443.00 rows=100000 width=8)
-> Memoize (cost=0.30..583.65 rows=33333 width=8)
Cache Key: t.j
Cache Mode: binary
-> Index Scan using uj on u (cost=0.29..583.64 rows=33333 width=8)
Index Cond: (j < t.j)
(7 rows)
2. 外部排序性能优化设计评审 -
海量
a. 提供一个端到端的SQL性能测试结果(柳长沣)
3. 支持bloom_index checkin评审 -
南大-侯超凡
a. 在线创建索引不支持,语法层需要直接报错(彭炯)
b. 极致RTO备机读场景需要补充结果测试(测试结果贴到PR中)(彭炯)
c. 验证下多个会话同时创建bloom索引,是否有问题(彭炯)
d. 增量代码覆盖率补充到PR中(彭炯)
e. 和btree、全表扫描的性能对比测试结果,补充到PR中(彭炯)
participants (1)
-
pengjiong