issue_comments
5 rows where author_association = "MEMBER" and issue = 614144170 sorted by updated_at descending
This data as json, CSV (advanced)
Suggested facets: reactions, created_at (date), updated_at (date)
issue 1
- Opendap access failure error · 5 ✖
id | html_url | issue_url | node_id | user | created_at | updated_at ▲ | author_association | body | reactions | performed_via_github_app | issue |
---|---|---|---|---|---|---|---|---|---|---|---|
628016841 | https://github.com/pydata/xarray/issues/4043#issuecomment-628016841 | https://api.github.com/repos/pydata/xarray/issues/4043 | MDEyOklzc3VlQ29tbWVudDYyODAxNjg0MQ== | rabernat 1197350 | 2020-05-13T14:13:06Z | 2020-05-13T14:13:06Z | MEMBER |
You might want to experiment with smaller chunks. In general, opendap will always introduce overhead compared to direct file access. |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Opendap access failure error 614144170 | |
627387025 | https://github.com/pydata/xarray/issues/4043#issuecomment-627387025 | https://api.github.com/repos/pydata/xarray/issues/4043 | MDEyOklzc3VlQ29tbWVudDYyNzM4NzAyNQ== | rabernat 1197350 | 2020-05-12T14:38:37Z | 2020-05-12T14:38:37Z | MEMBER |
This depends entirely on the TDS server configuration. See comment in https://github.com/Unidata/netcdf-c/issues/1667#issuecomment-597372065. The default limit appears to be 500 MB. It's important to note that none of this has to do with xarray. Xarray is simply the top layer of a very deep software stack. If the TDS server could deliver larger data requests, and the netCDF4-python library could accept them, xarray would have no problem. |
{ "total_count": 1, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 1, "rocket": 0, "eyes": 0 } |
Opendap access failure error 614144170 | |
627368616 | https://github.com/pydata/xarray/issues/4043#issuecomment-627368616 | https://api.github.com/repos/pydata/xarray/issues/4043 | MDEyOklzc3VlQ29tbWVudDYyNzM2ODYxNg== | rabernat 1197350 | 2020-05-12T14:07:39Z | 2020-05-12T14:07:39Z | MEMBER | I have spent plenty of time debugging these sorts of issues. It really helps to take xarray out of the equation. Try making your request with just the netCDF--that's all that xarray uses under the hood. Overall your example is very complicated, which makes it hard to find the core issue. You generally want to try something like this
A few additional comments about your code: ```python Select spatial subset [lon,lat]ds = ds.where((ds.lon >= Lon[0] - dl) & (ds.lon <= Lon[1] + dl) & (ds.lat >= Lat[0] - dl) & (ds.lat <= Lat[1] + dl), drop=True) ``` This is NOT how you do subsetting with xarray. Where is meant for masking. I recommend reviewing the xarray docs on indexing and selecting. Your call should be something like
What's the difference?
Can you do this sorting after loading the data. It's an expensive operation and might not interact well with the opendap server. |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Opendap access failure error 614144170 | |
627357616 | https://github.com/pydata/xarray/issues/4043#issuecomment-627357616 | https://api.github.com/repos/pydata/xarray/issues/4043 | MDEyOklzc3VlQ29tbWVudDYyNzM1NzYxNg== | dcherian 2448579 | 2020-05-12T13:48:49Z | 2020-05-12T13:48:49Z | MEMBER | I would check your server logs if you can. Or avoid xarray and try with lower level pydap / netCDF4. This may be useful: https://github.com/pangeo-data/pangeo/issues/767. Maybe you're requesting too much data? |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Opendap access failure error 614144170 | |
625325400 | https://github.com/pydata/xarray/issues/4043#issuecomment-625325400 | https://api.github.com/repos/pydata/xarray/issues/4043 | MDEyOklzc3VlQ29tbWVudDYyNTMyNTQwMA== | dcherian 2448579 | 2020-05-07T15:28:21Z | 2020-05-07T15:28:21Z | MEMBER | It's unfortunate that we don't print filenames when access fails. Are you sure all the urls you construct are actually valid? |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Opendap access failure error 614144170 |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE [issue_comments] ( [html_url] TEXT, [issue_url] TEXT, [id] INTEGER PRIMARY KEY, [node_id] TEXT, [user] INTEGER REFERENCES [users]([id]), [created_at] TEXT, [updated_at] TEXT, [author_association] TEXT, [body] TEXT, [reactions] TEXT, [performed_via_github_app] TEXT, [issue] INTEGER REFERENCES [issues]([id]) ); CREATE INDEX [idx_issue_comments_issue] ON [issue_comments] ([issue]); CREATE INDEX [idx_issue_comments_user] ON [issue_comments] ([user]);
user 2