MaxFetchedDataBytesPerQuery returns the maximum number of bytes for all data allowed per query when fetching from ingesters and blocks storage.
(userID string)
| 795 | // MaxFetchedDataBytesPerQuery returns the maximum number of bytes for all data allowed per query when fetching |
| 796 | // from ingesters and blocks storage. |
| 797 | func (o *Overrides) MaxFetchedDataBytesPerQuery(userID string) int { |
| 798 | return o.GetOverridesForUser(userID).MaxFetchedDataBytesPerQuery |
| 799 | } |
| 800 | |
| 801 | // MaxDownloadedBytesPerRequest returns the maximum number of bytes to download for each gRPC request in Store Gateway, |
| 802 | // including any data fetched from cache or object storage. |
no test coverage detected