File tree Expand file tree Collapse file tree
hugegraph-store/hg-store-node/src/main/java/org/apache/hugegraph/store/node/grpc Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -109,6 +109,14 @@ public void init() {
109109 setPartitionCount (appConfig .getFakePdConfig ().getPartitionCount ());
110110 setShardCount (appConfig .getFakePdConfig ().getShardCount ());
111111 }});
112+ setQueryPushDownOption (new QueryPushDownOption (){{
113+ setThreadPoolSize (appConfig .getQueryPushDownConfig ().getThreadPoolSize ());
114+ setFetchBatchSize (appConfig .getQueryPushDownConfig ().getFetchBatchSize ());
115+ setFetchTimeout (appConfig .getQueryPushDownConfig ().getFetchTimeOut ());
116+ setMemoryLimitCount (appConfig .getQueryPushDownConfig ().getMemoryLimitCount ());
117+ setIndexSizeLimitCount (appConfig .getQueryPushDownConfig ().getIndexSizeLimitCount ());
118+ }});
119+ setJobConfig (appConfig .getJobOptions ());
112120 }};
113121
114122 RaftRocksdbOptions .initRocksdbGlobalConfig (options .getRocksdbConfig ());
You can’t perform that action at this time.
0 commit comments