Skip to content
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

Continuous disk IO of "s6-supervise ddclient" process #89

Closed
1 task done
phatpaul opened this issue Oct 31, 2024 · 4 comments
Closed
1 task done

Continuous disk IO of "s6-supervise ddclient" process #89

phatpaul opened this issue Oct 31, 2024 · 4 comments

Comments

@phatpaul
Copy link

Is there an existing issue for this?

  • I have searched the existing issues

Current Behavior

This is the same issue as #57 but that was auto closed and locked. The problem still persists, so why close the issue just because nobody bothered to fix it?

Constant disk write activity for no good reason. I suspect this is what trashed my eMMC flash chip on my SBC. I finally noticed it after migrating to a new SBC that has a disk activity light.

Expected Behavior

This docker could be implemented in a way that doesn't do unecessary writes to storage every second.

There was a similar issue reported on another project. Maybe there's a quick fix that's applicable for this one.
Please see NginxProxyManager/nginx-proxy-manager#2741
https://github.com/NginxProxyManager/nginx-proxy-manager/pull/3044/files

Steps To Reproduce

Just the normal use case.

Environment

- OS: Ubuntu 20.04
- How docker service was installed: apt install

CPU architecture

arm64

Docker creation

services:
  ddclient:
    image: linuxserver/ddclient
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=America/New_York
    volumes:
      - ./config/:/config


### Container logs

```bash
Total DISK READ:         0.00 B/s | Total DISK WRITE:         4.87 K/s
Current DISK READ:       0.00 B/s | Current DISK WRITE:       7.31 K/s
    TID  PRIO  USER     DISK READ DISK WRITE>    COMMAND
3250337 be/4 root        0.00 B/s    4.87 K/s s6-supervise svc-ddclient
Copy link

Thanks for opening your first issue here! Be sure to follow the relevant issue templates, or risk having this issue marked as invalid.

@phatpaul
Copy link
Author

phatpaul commented Oct 31, 2024

I noticed the new read-only feature and tried it. That seems to work around the issue.
My new docker-compose.yml

services:
  ddclient:
    image: linuxserver/ddclient
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=America/New_York
    volumes:
      - ./config/:/config
    tmpfs:
      - /run:exec
      - /tmp
    read_only: true

@LinuxServer-CI
Copy link
Contributor

This issue has been automatically marked as stale because it has not had recent activity. This might be due to missing feedback from OP. It will be closed if no further activity occurs. Thank you for your contributions.

@LinuxServer-CI LinuxServer-CI closed this as not planned Won't fix, can't repro, duplicate, stale Jan 30, 2025
@LinuxServer-CI LinuxServer-CI moved this from Issues to Done in Issue & PR Tracker Jan 30, 2025
@LinuxServer-CI
Copy link
Contributor

This issue is locked due to inactivity

@linuxserver linuxserver locked as resolved and limited conversation to collaborators Mar 1, 2025
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
Development

No branches or pull requests

2 participants