Skip to content

Commit d73f0a0

Browse files
committed
graph: Reduce default fdw_fetch_size to 1000
10,000 seems too big and actually slows things down
1 parent f3cbad2 commit d73f0a0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

graph/src/env/store.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@ pub struct InnerStore {
280280
last_rollup_from_poi: bool,
281281
#[envconfig(from = "GRAPH_STORE_INSERT_EXTRA_COLS", default = "0")]
282282
insert_extra_cols: usize,
283-
#[envconfig(from = "GRAPH_STORE_FDW_FETCH_SIZE", default = "10000")]
283+
#[envconfig(from = "GRAPH_STORE_FDW_FETCH_SIZE", default = "1000")]
284284
fdw_fetch_size: usize,
285285
}
286286

0 commit comments

Comments
 (0)