issue_comments
9 rows where issue = 382497709 and user = 1197350 sorted by updated_at descending
This data as json, CSV (advanced)
Suggested facets: reactions, created_at (date), updated_at (date)
issue 1
- Zarr consolidated · 9 ✖
id | html_url | issue_url | node_id | user | created_at | updated_at ▲ | author_association | body | reactions | performed_via_github_app | issue |
---|---|---|---|---|---|---|---|---|---|---|---|
444333050 | https://github.com/pydata/xarray/pull/2559#issuecomment-444333050 | https://api.github.com/repos/pydata/xarray/issues/2559 | MDEyOklzc3VlQ29tbWVudDQ0NDMzMzA1MA== | rabernat 1197350 | 2018-12-05T02:15:48Z | 2018-12-05T02:15:48Z | MEMBER | If anyone wants to see how awesome consolidated metadata is, you can try it in this binder: https://github.com/rabernat/pangeo_ecco_examples/ I did a bit of lazy profiling here: https://gist.github.com/rabernat/ce1fb414cf53541afe2245363b06c49d Things that used to take ~40s now take ~1s. Especially since loading the data is one of the first steps in any pangeo notebook, this is a huge improvement in usability. Thanks to everyone who helped make it happen! |
{ "total_count": 2, "+1": 1, "-1": 0, "laugh": 0, "hooray": 1, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Zarr consolidated 382497709 | |
444303363 | https://github.com/pydata/xarray/pull/2559#issuecomment-444303363 | https://api.github.com/repos/pydata/xarray/issues/2559 | MDEyOklzc3VlQ29tbWVudDQ0NDMwMzM2Mw== | rabernat 1197350 | 2018-12-04T23:47:06Z | 2018-12-04T23:47:06Z | MEMBER | 👍 Sent from my iPhone
|
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Zarr consolidated 382497709 | |
444219121 | https://github.com/pydata/xarray/pull/2559#issuecomment-444219121 | https://api.github.com/repos/pydata/xarray/issues/2559 | MDEyOklzc3VlQ29tbWVudDQ0NDIxOTEyMQ== | rabernat 1197350 | 2018-12-04T19:06:16Z | 2018-12-04T19:06:16Z | MEMBER |
Since xarray cannot append or modify in-place existing zarr stores, this seems outside the scope of xarray for now. But maybe it is worth mentioning in the docs. |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Zarr consolidated 382497709 | |
443304443 | https://github.com/pydata/xarray/pull/2559#issuecomment-443304443 | https://api.github.com/repos/pydata/xarray/issues/2559 | MDEyOklzc3VlQ29tbWVudDQ0MzMwNDQ0Mw== | rabernat 1197350 | 2018-11-30T18:59:06Z | 2018-11-30T18:59:06Z | MEMBER | Keywords are now all Ready to merge? |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Zarr consolidated 382497709 | |
442580875 | https://github.com/pydata/xarray/pull/2559#issuecomment-442580875 | https://api.github.com/repos/pydata/xarray/issues/2559 | MDEyOklzc3VlQ29tbWVudDQ0MjU4MDg3NQ== | rabernat 1197350 | 2018-11-28T19:49:02Z | 2018-11-28T19:49:02Z | MEMBER |
Yes |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Zarr consolidated 382497709 | |
442575389 | https://github.com/pydata/xarray/pull/2559#issuecomment-442575389 | https://api.github.com/repos/pydata/xarray/issues/2559 | MDEyOklzc3VlQ29tbWVudDQ0MjU3NTM4OQ== | rabernat 1197350 | 2018-11-28T19:33:01Z | 2018-11-28T19:33:01Z | MEMBER | So if the test issues can be considered resolved, the only decision we need to make is about the API. Do we prefer (the current way):
or @shoyer's suggestion
|
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Zarr consolidated 382497709 | |
442557300 | https://github.com/pydata/xarray/pull/2559#issuecomment-442557300 | https://api.github.com/repos/pydata/xarray/issues/2559 | MDEyOklzc3VlQ29tbWVudDQ0MjU1NzMwMA== | rabernat 1197350 | 2018-11-28T18:38:23Z | 2018-11-28T18:38:23Z | MEMBER | Not sure I understand why there are tests failing now. The failing function is https://travis-ci.org/pydata/xarray/jobs/460873430#L7489 At first glance, this does not appear to have anything to do with my PR. The relevant error is: ``` ____ test_basic_compute ______________________________ def test_basic_compute(): ds = Dataset({'foo': ('x', range(5)), 'bar': ('x', range(5))}).chunk({'x': 2}) for get in [dask.threaded.get, dask.multiprocessing.get, dask.local.get_sync, None]: with (dask.config.set(scheduler=get) if LooseVersion(dask.__version) >= LooseVersion('0.19.4') else dask.config.set(scheduler=get) if LooseVersion(dask.version) >= LooseVersion('0.18.0') else dask.set_options(get=get)):
xarray/core/dataset.py:597: in compute return new.load(kwargs) xarray/core/dataset.py:494: in load evaluated_data = da.compute(*lazy_data.values(), kwargs) ../../../miniconda/envs/test_env/lib/python3.6/site-packages/dask/base.py:390: in compute collections=collections) ../../../miniconda/envs/test_env/lib/python3.6/site-packages/dask/base.py:865: in get_scheduler return get_scheduler(scheduler=config.get('scheduler', None)) get = None, scheduler = <function get at 0x7fc31d9ae048>, collections = None cls = None def get_scheduler(get=None, scheduler=None, collections=None, cls=None): """ Get scheduler function
|
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Zarr consolidated 382497709 | |
440285690 | https://github.com/pydata/xarray/pull/2559#issuecomment-440285690 | https://api.github.com/repos/pydata/xarray/issues/2559 | MDEyOklzc3VlQ29tbWVudDQ0MDI4NTY5MA== | rabernat 1197350 | 2018-11-20T14:09:16Z | 2018-11-20T14:09:16Z | MEMBER | Also need to add some version checks...this will only work with zarr > 2.2. |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Zarr consolidated 382497709 | |
440136005 | https://github.com/pydata/xarray/pull/2559#issuecomment-440136005 | https://api.github.com/repos/pydata/xarray/issues/2559 | MDEyOklzc3VlQ29tbWVudDQ0MDEzNjAwNQ== | rabernat 1197350 | 2018-11-20T04:42:33Z | 2018-11-20T04:42:33Z | MEMBER | Ping @lilyminium for a review. |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Zarr consolidated 382497709 |
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