issue_comments
1 row where author_association = "NONE" and issue = 1592154849 sorted by updated_at descending
This data as json, CSV (advanced)
Suggested facets: created_at (date), updated_at (date)
issue 1
- `OSError: [Errno -70] NetCDF: DAP server error` when `parallel=True` on a cluster · 1 ✖
id | html_url | issue_url | node_id | user | created_at | updated_at ▲ | author_association | body | reactions | performed_via_github_app | issue |
---|---|---|---|---|---|---|---|---|---|---|---|
1439056693 | https://github.com/pydata/xarray/issues/7542#issuecomment-1439056693 | https://api.github.com/repos/pydata/xarray/issues/7542 | IC_kwDOAMm_X85VxkM1 | iuryt 5797727 | 2023-02-21T20:33:29Z | 2023-02-21T20:33:29Z | NONE | It might be related to the issue, but the code below is for a different GES DISC dataset from a different server ```python import xarray as xr import pandas as pd list daily timestamps from a starting date to an end datedts = pd.date_range(start = "2013-01-01", end = "2022-12-01", freq = "D") base url for the filesbase = "https://goldsmr5.gesdisc.eosdis.nasa.gov/opendap/MERRA2/M2I3NPASM.5.12.4/" prefix of the filesprefix = "MERRA2_400.inst3_3d_asm_Np" function to construct the url of the filesurl = lambda d: f"{base}{d.year}/{d.month:02d}/{prefix}.{d.year}{d.month:02d}{d.day:02d}.nc4" list of urls for the filesfnames = [url(dti) for dti in dts] lets try to load the first 5 filesds = xr.open_mfdataset(fnames[:5], parallel=True) ``` The error:
|
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
`OSError: [Errno -70] NetCDF: DAP server error` when `parallel=True` on a cluster 1592154849 |
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 1