Parameter to change the period of mimir sending data to object storage #7501
-
The default period of mimir sending data to object storage is 2h, but when it comes to 2h, the data will not be immediately sent to object storage. The ingester log is below, from
It seems that period of every uploads is far more than 2 hours. The old version of mimir has the parameter I would like to change the sending data frequency in mimir latest version, what is the solution of that? Advice from anyone is appreciated. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
Moving to discussions, as there's currently no evidence of a bug. |
Beta Was this translation helpful? Give feedback.
-
Very first block for tenant is created 3h after tenant starts writing data to ingester. Subsequent block creations will happen on 2h boundaries (in UTC time it will be at 01:00, 03:00, 05:00, etc.). So if tenant starts writing data to ingester at 01:35 and keeps writing more data, first block is created at 04:35 (this block will contain data between 01:35 and 02:00), then next block is created at 05:00 (with data 02:00 -- 04:00), then at 07:00 (with data 04:00 -- 06:00), and so on. In upcoming not-yet-released Mimir version we are improving that so that in above situation very first block would be created at 03:00 already. (#7372) |
Beta Was this translation helpful? Give feedback.
Very first block for tenant is created 3h after tenant starts writing data to ingester. Subsequent block creations will happen on 2h boundaries (in UTC time it will be at 01:00, 03:00, 05:00, etc.).
So if tenant starts writing data to ingester at 01:35 and keeps writing more data, first block is created at 04:35 (this block will contain data between 01:35 and 02:00), then next block is created at 05:00 (with data 02:00 -- 04:00), then at 07:00 (with data 04:00 -- 06:00), and so on.
In upcoming not-yet-released Mimir version we are improving …