Ingester service S3 storage. #3250
-
Hi folks, Recently I noticed that the ingester pods began crashing with the following error: Since I am using a GCS bucket in my "blocks_storage" clause, shouldn't the time series also be stored in the GCS bucket? I would appreciate any help on this matter! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Ingesters use the local disk for the Write Ahead Log (WAL) and most recent few hours of samples before uploading. They also keep 24h of blocks on the local disk (by default) as a performance optimization. If the default PVC size (50G I think) isn't big enough, you'll have to grow it. More information about the ingesters in the docs. |
Beta Was this translation helpful? Give feedback.
Ingesters use the local disk for the Write Ahead Log (WAL) and most recent few hours of samples before uploading. They also keep 24h of blocks on the local disk (by default) as a performance optimization. If the default PVC size (50G I think) isn't big enough, you'll have to grow it.
More information about the ingesters in the docs.