Replies: 3 comments 21 replies
-
Is there a reason you need each lat/lon as a separate request? We do have an API for subsetting the data on a single time and a range of lat/lons. |
Beta Was this translation helpful? Give feedback.
-
Hi @kensinzl , yes I expect you are right that the issue is fixed by #1122 Thanks! |
Beta Was this translation helpful? Give feedback.
-
Thanks for the reply. Now I will do the following several things to have a try.
This is my current grid point URL, then it works I changed it with the North, West, East and South, but not work? any idea Thanks so much, hope you also have a great weekend. thanks this whole week help. |
Beta Was this translation helpful? Give feedback.
-
We are using the Thredds server 5.4 docker image(unidata/thredds-docker:5.4) and deploying it as a docker container.
Now I have faced one issue and makes me annoying how to fix
I have a Java App which is using multiple threads to fetch several NetCDF files from the above Thredds server to boostup the response time.
These requests are among a defined lat&lon range, which means each request with different lat&lon value but with the same time range.
Majority of response is normal, but some random NetCDF files' response would give me an extremely big value than expected.
But if I make a single HTTP request for the same params, the extremely big value will back to normal.
eg:
https://thredds/ncss/grid/NetCDF_1?var=Var_1&latitude=-37&longitude=174&time_start=2023-08-13T12%3A00%3A00Z&time_end=2023-08-19T12%3A00%3A00Z&timeStride=&vertCoord=&accept=csv
https://thredds/ncss/grid/NetCDF_1?var=Var_1&latitude=-36&longitude=176&time_start=2023-08-13T12%3A00%3A00Z&time_end=2023-08-19T12%3A00%3A00Z&timeStride=&vertCoord=&accept=csv
https://thredds/ncss/grid/NetCDF_2?var=Var_2&latitude=-37&longitude=174&time_start=2023-08-13T12%3A00%3A00Z&time_end=2023-08-19T12%3A00%3A00Z&timeStride=&vertCoord=&accept=csv
https://thredds/ncss/grid/NetCDF_2?var=Var_2&latitude=-36&longitude=176&time_start=2023-08-13T12%3A00%3A00Z&time_end=2023-08-19T12%3A00%3A00Z&timeStride=&vertCoord=&accept=csv
......
if I found the following request response at log showing an extremely big value among multiple threads, then I hit the exactly same HTTP request again by itself, and then the value will be back to normal.
https://thredds/ncss/grid/NetCDF_2?var=Var_2&latitude=-36&longitude=176&time_start=2023-08-13T12%3A00%3A00Z&time_end=2023-08-19T12%3A00%3A00Z&timeStride=&vertCoord=&accept=csv
Any idea, please
Beta Was this translation helpful? Give feedback.
All reactions