-
Notifications
You must be signed in to change notification settings - Fork 734
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
update self-hosted-with-docker docs #4518
Conversation
dcd92b1
to
f806e49
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
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 <[email protected]>
f806e49
to
2cfc002
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Fix scheduler arguments to prevent "no space left on device" error
Description
Adding the--etcd-data-dir=/var/lock/dapr/scheduler
argument for the scheduler service in thedocker-compose
example.Edit 20250211: Increase the
tmpfs
size from 10000 bytes to64m
. Ealier change setting--etcd-data-dir
was only a workaround.Very simple change to resolve dapr/dapr#8207
Issue reference
dapr/dapr#8207