File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -14,7 +14,17 @@ import (
1414)
1515
1616var defaultDynamicConfigValues = map [string ]any {
17+ // Make search attributes immediately visible on creation, so users don't
18+ // have to wait for eventual consistency to happen when testing against the
19+ // dev-server. Since it's a very rare thing to create search attributes,
20+ // we're comfortable that this is very unlikely to mask bugs in user code.
1721 "system.forceSearchAttributesCacheRefreshOnRead" : true ,
22+
23+ // Since we disable the SA cache, we need to bump max QPS accordingly.
24+ // These numbers were chosen to maintain the ratio between the two that's
25+ // established in the defaults.
26+ "frontend.persistenceMaxQPS" : 10000 ,
27+ "history.persistenceMaxQPS" : 45000 ,
1828}
1929
2030func (t * TemporalServerStartDevCommand ) run (cctx * CommandContext , args []string ) error {
You can’t perform that action at this time.
0 commit comments