You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
clientHTTPMaxIdle=flag.Int("client_http_max_idle", 20, "Maximum number of idle HTTP connections for outgoing requests.")
98
99
clientHTTPMaxIdlePerHost=flag.Int("client_http_max_idle_per_host", 10, "Maximum number of idle HTTP connections per host for outgoing requests.")
99
100
garbageCollectionInterval=flag.Duration("garbage_collection_interval", 10*time.Second, "Interval between scans to remove obsolete partial tiles and entry bundles. Set to 0 to disable.")
101
+
antispamBatchSize=flag.Uint("antispam_batch_size", 20000, "Maximum number of antispam rows to insert per batch update.")
102
+
antispamBlockCacheSize=flag.String("antispam_block_cache_size", "2GB", "Amount of RAM to allocate for antispam block cache, set to zero to disable.")
103
+
antispamIndexCacheSize=flag.String("antispam_index_cache_size", "2GB", "Amount of RAM to allocate for antispam index cache, set to zero for unlimited.")
100
104
101
105
// Infrastructure setup flags
102
106
storageDir=flag.String("storage_dir", "", "Path to root of log storage.")
0 commit comments