f.Var(&l.MinShardingLookback,"frontend.min-sharding-lookback","Limit queries that can be sharded. Queries within the time range of now and now minus this sharding lookback are not sharded. The default value of 0s disables the lookback, causing sharding of all queries at all times.")
f.Var(&l.MaxQueryBytesRead,"frontend.max-query-bytes-read","Max number of bytes a query can fetch. Enforced in log and metric queries only when TSDB is used. The default value of 0 disables this limit.")
f.Var(&l.MaxQueryBytesRead,"frontend.max-query-bytes-read","Max number of bytes a query can fetch. Enforced in log and metric queries only when TSDB is used. This limit is not enforced on log queries without filters. The default value of 0 disables this limit.")
_=l.MaxQuerierBytesRead.Set("150GB")
f.Var(&l.MaxQuerierBytesRead,"frontend.max-querier-bytes-read","Max number of bytes a query can fetch after splitting and sharding. Enforced in log and metric queries only when TSDB is used. The default value of 0 disables this limit.")
f.Var(&l.MaxQuerierBytesRead,"frontend.max-querier-bytes-read","Max number of bytes a query can fetch after splitting and sharding. Enforced in log and metric queries only when TSDB is used. This limit is not enforced on log queries without filters. The default value of 0 disables this limit.")
_=l.MaxCacheFreshness.Set("10m")
f.Var(&l.MaxCacheFreshness,"frontend.max-cache-freshness","Most recent allowed cacheable result per-tenant, to prevent caching very recent results that might still be in flux.")