S02039
错误代码
S02039
报错信息
The number of partitions […] relevant to the query is too large. Please add more specific filtering conditions on partition columns in WHERE clause, or consider changing the value of the configuration parameter maxPartitionNumPerQuery. RefId:S02039
错误原因
一次 select 查询涉及的最大分区数受 maxPartitionNumPerQuery 配置项限制。如果 where 条件筛选后涉及的分区数超过此限制,将会导致该报错。
解决办法
-
增加 maxPartitionNumPerQuery 配置值。
-
增加与分区列相关的 where 条件,进一步减少查询涉及的分区数量。