update self-hosted-with-docker docs#4518
Conversation
dcd92b1 to
f806e49
Compare
cicoyle
left a comment
There was a problem hiding this comment.
Setting --etcd-data-dir helps avoid the immediate no space left on device error by redirecting writes to a different location, but it's more of a workaround. If etcd is consuming significant space, the root issue is likely insufficient storage in the container. Have you tried increasing the volume size or mounting a persistent volume with more space?
Yes I did also try to increase the |
|
Alright after some experimenting it does look like the It's set to I'll update the documentation to set the |
Increase tmpfs size to prevent "no space left on device" error Signed-off-by: fvanzee <5238563+fvanzee@users.noreply.github.com>
f806e49 to
2cfc002
Compare
cicoyle
left a comment
There was a problem hiding this comment.
Thanks for taking the time to figure this out - Im fine increasing the size to make sure others don't run out of space as well.
|
@holopin-bot @fvanzee Thank you! Here's a digital badge as a small token of appreciation. |
|
Congratulations @fvanzee, the maintainer of this repository has issued you a badge! Here it is: https://holopin.io/claim/cmbrzpzfe308407letql1ammz This badge can only be claimed by you, so make sure that your GitHub account is linked to your Holopin account. You can manage those preferences here: https://holopin.io/account. |
Fix scheduler arguments to prevent "no space left on device" error
Description
Adding the--etcd-data-dir=/var/lock/dapr/schedulerargument for the scheduler service in thedocker-composeexample.Edit 20250211: Increase the
tmpfssize from 10000 bytes to64m. Ealier change setting--etcd-data-dirwas only a workaround.Very simple change to resolve dapr/dapr#8207
Issue reference
dapr/dapr#8207