R-ArcGIS / arcgisutils

http://r.esri.com/arcgisutils/
Apache License 2.0
15 stars 2 forks source link

Add retry to arc_base_req() #43

Open JosiahParry opened 8 months ago

JosiahParry commented 8 months ago

It would be nice to add a retry to requests that are ran in parallel. Sometimes a feature service is overwhelmed and an error may be returned (500) but the request was fine.

The challenge though, is that the only way to find out is to parse the response which is an expensive operation and we want to do that once at most. How might that be designed?