-
Notifications
You must be signed in to change notification settings - Fork 780
update self-hosted-with-docker docs #4518
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
Conversation
dcd92b1 to
f806e49
Compare
msfussell
left a comment
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
cicoyle
left a comment
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 <5238563+fvanzee@users.noreply.github.com>
f806e49 to
2cfc002
Compare
cicoyle
left a comment
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.
msfussell
left a comment
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
|
@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