Replies: 1 comment
-
You could do a : # enter the container
docker exec -it <nominatim_container_name> bash
# then access to psql
psql
# connect the db:
\c nominatim
# change the display mode
\x
# show stuck queries:
SELECT pid, now() - pg_stat_activity.query_start AS duration, query, state
FROM pg_stat_activity
and show here the queries that are pending You can also ps aux and show here the running tasks in the container |
Beta Was this translation helpful? Give feedback.
0 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.
Uh oh!
There was an error while loading. Please reload this page.
-
After two retries, the process consistently gets stuck at the line
Post-process tables
. I left it running for several hours, but it made no progress. I would greatly appreciate any suggestions for tuning the setup.Beta Was this translation helpful? Give feedback.
All reactions