-
Notifications
You must be signed in to change notification settings - Fork 320
Open
Labels
Description
tablet server uses this flag enable_distsql
to enable cluster optimization
OpenMLDB/src/tablet/tablet_impl.cc
Lines 210 to 214 in b685e64
if (IsClusterMode()) { | |
options.SetClusterOptimized(FLAGS_enable_distsql); | |
} else { | |
options.SetClusterOptimized(false); | |
} |
release/conf/tablet.flags.template
, but no in src/flags.cc
. Which as a results, won't enabled in mini_cluster tests, e.g sql_sdk_test
.
There is a PR previously #3295, but turns out breaks existing tests. It means there exists cases that is OK with request mode, but not request(cluster) mode.
#3531 is a example, deployment tests not fail for those tests, simply because enable_distsql
not turned on.