You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
When i start reverse geocoding, BACKGROUND_PROCESSING_CONCURRENCY tasks will be active with geocoding in sidekiq.
But in the Nominatim user policy it is only allowed to use the api once per second (Ref: https://operations.osmfoundation.org/policies/nominatim/)
This is resulting in a tempban and a lot of failed jobs as well as too much workload.
The only efficient way to get geocoding completed is to limit the BACKGROUND_PROCESSING_CONCURRENCY to 1 and after the bulk geocoding of an import is successfully reverse geocoded increase the number again.
Version
0.15.8
To Reproduce
Steps to reproduce the behavior:
Start reverse Geocoding
Goto sidekiq
See a lot of ECONNREFUSED
Expected behavior
Perform only one request per second to Nominatim, when using the official server.
Screenshots
The text was updated successfully, but these errors were encountered:
vwvierhundertzwoelf
changed the title
Change Geocoding concurrency to comply with Nominatim terms of usw
Change reverse Geocoding concurrency to comply with Nominatim terms of usw
Oct 24, 2024
vwvierhundertzwoelf
changed the title
Change reverse Geocoding concurrency to comply with Nominatim terms of usw
Change reverse Geocoding concurrency to comply with Nominatim terms of use
Oct 25, 2024
Describe the bug
When i start reverse geocoding, BACKGROUND_PROCESSING_CONCURRENCY tasks will be active with geocoding in sidekiq.
But in the Nominatim user policy it is only allowed to use the api once per second (Ref: https://operations.osmfoundation.org/policies/nominatim/)
This is resulting in a tempban and a lot of failed jobs as well as too much workload.
The only efficient way to get geocoding completed is to limit the BACKGROUND_PROCESSING_CONCURRENCY to 1 and after the bulk geocoding of an import is successfully reverse geocoded increase the number again.
Version
0.15.8
To Reproduce
Steps to reproduce the behavior:
Expected behavior
Perform only one request per second to Nominatim, when using the official server.
Screenshots
![image](https://private-user-images.githubusercontent.com/22892303/379605346-0fd03ac5-e594-4250-83d1-f0fd89ea69b3.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3Mzk3NDY3ODksIm5iZiI6MTczOTc0NjQ4OSwicGF0aCI6Ii8yMjg5MjMwMy8zNzk2MDUzNDYtMGZkMDNhYzUtZTU5NC00MjUwLTgzZDEtZjBmZDg5ZWE2OWIzLnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNTAyMTYlMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjUwMjE2VDIyNTQ0OVomWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPWJkZTk3NjIwODc0YjdmZTNlMzFhNzQ4YmU2ZDFmMDFiMTJlY2Y3ZTBiNmZlMTMwYjUyYzE2ODRhZTYwZDRlNGImWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0In0.vIX3kuVgEMjsbLP-ojOcCmtwqVzv-wOOrUZe2SwmgJQ)
The text was updated successfully, but these errors were encountered: