Why dashboard show me 0B used when I have TB used?

Hello,

looking dashboard it seems that I have 0B used but my disk have TB utilized:

Why ?

what I can do to fix this issue ?

Check whether the database has been malformed, you can check your logs on the word ‘database’. If so, look into the FAQ for database malformed.

Otherwise… just wait, the used space filewalker had to kick in to solve this issue.

2 Likes

for the used space filewalker, check logs for the word “used”.

if your node has been up for a looong time (days/weeks) then restart it so it restarts the used space filewalker.

Please check the databases:

Then search for errors related to the databases and/or filewalkers in your logs, search for error and database, error and filewalker. If you have these errors, you need to fix them first.

PowerShell:

sls "error" "$env:ProgramFiles\Storj\Storage Node\storagenode.log" | sls "database|filewalker" | select -last 10

bash docker

docker logs storagenode 2>&1 | grep error | grep -E "database|filewalker" | tail

If you do not have errors, then you can enable a scan on startup if you disabled it (it’s enabled by default), save the config and restart the node. The used-space-filewalker should finish the scan for each trusted satellite and update the databases. It could take days or even weeks to complete (depends on how slow your disk subsystem).