Replies: 1 comment 7 replies
-
This is all up to PostgreSQL as osm2pgsql's only direct usage of disk space is the flat nodes file. When importing data twice on the second import it will delete rows then insert new rows with identical contents. This consumes disk space. You should run a vacuum. You probably don't have enough room for a vacuum full or cluster. |
Beta Was this translation helpful? Give feedback.
7 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I run out of disk this morning:
This is expected since I am, well, running out of space :)
In that graph, we can see the correlation with some of the logs up there.
So, I free some space, and I try again. What surprises me is what happens then:
Yes I run out of space again.
So my question is: how does the update process works? In particular, I would expect a second pass not to use more space until it hits the place where it left before. This clearly is wrong, so I don't understand how the update process. Moreover, this is not the first (and not the last, until I buy a new SSD) that I run out of space, so I wonder if there is some cleanup that can be done before retrying and update.
Beta Was this translation helpful? Give feedback.
All reactions