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
📔 Assuming a context where Loki is deployed using Docker containers in Kubernetes, due to the mention of emptyDir.
Changing the absolute path to a relative path would cause data to be written into the overlay filesystem of the container, which should never be done.
The documentation should explain that any data directories referenced in the config should always be mounted persistent volumes. emptyDir may be suitable for certain cases, but should be used with caution, because it's ephemeral storage and may be limited in size (especially when backed by memory).
Working variant:
Without 'var' we need to mount emptyDir.
The text was updated successfully, but these errors were encountered: