pydata / xarray

N-D labeled arrays and datasets in Python
https://xarray.dev
Apache License 2.0
3.57k stars 1.07k forks source link

Track merging datatree into xarray #8572

Open TomNicholas opened 9 months ago

TomNicholas commented 9 months ago

What is your issue?

Master issue to track progress of merging xarray-datatree into xarray main. Would close https://github.com/pydata/xarray/issues/4118 (and many similar issues), as well as one of the goals of our development roadmap.

Also see the project board for DataTree integration.


On calls in the last few dev meetings, we decided to forget about a temporary cross-repo from xarray import datatree (so this issue supercedes #7418), and just begin merging datatree into xarray main directly.

Weekly meeting

See https://github.com/pydata/xarray/issues/8747

Task list:

To happen in order:

Can happen basically at any time or maybe in parallel with other efforts:


Anyone is welcome to help with any of this, including but not limited to @owenlittlejohns , @eni-awowale, @flamingbear (@etienneschalk maybe?).

cc also @shoyer @keewis for any thoughts as to the process.

jhamman commented 9 months ago

Copy xarray-contrib/datatree issues over to xarray's main repository. I think this is quite important and worth doing as a record of why decisions were made. (@jhamman and @TomNicholas)

I think this will require temporarily moving the datatree repository to the pydata org then transferring issues one at a time to the xarray repo. I can help with the repo move when the time comes.

Look into merging commit history of xarray-contrib/datatree. I think this would be cool but is less important than keeping the issues. (@jhamman suggested we could do this using some git wizardry that I hadn't heard of before)

There are various ways to do this and I think it would be worth attempting. It would help preserve some of the iteration that datatree went through and make sure the attribution is carried through. This blog post explains one way to do this: https://gfscott.com/blog/merge-git-repos-and-keep-commit-history/

TomNicholas commented 9 months ago

It would help preserve some of the iteration that datatree went through and make sure the attribution is carried through.

That would be nice! But at least this method merges the entire history in one go it seems. What would our process of feedback be in that case? I'm worried about just merging the whole thing in and everyone just being like "yeah looks good 👍" without anyone else actually understanding how the code works...

keewis commented 9 months ago

you could create a new feature branch on the xarray repo (just to be safe) and put the datatree code in a "staging" area. Then copying over the modules one by one might work? Not sure if that breaks git blame, though.

Edit: the merge of that feature branch into main should not be a squash-merge though

lsterzinger commented 9 months ago

Thanks for putting this together @TomNicholas

Happy to help out with this however I can. Like I mentioned in the meeting last week, I'm not super familiar with the xarray backend but definitely willing to learn.

owenlittlejohns commented 9 months ago

open_datatree in xarray. This doesn't need to be performant initially, and it would initially return a datatree.DataTree object. So we can start by just copying the basic version in datatree/io.py right now which just calls open_dataset many times.

I was taking a quick look at this. Are you essentially saying we just need to copy the contents of datatree/io.py into xarray/backends/api.py (plus necessary tests to equivalent places)? Or do some of the things in io.py need to be migrated somewhere lower level than api.py?

TomNicholas commented 9 months ago

Are you essentially saying we just need to copy the contents of datatree/io.py into xarray/backends/api.py (plus necessary tests to equivalent places)? Or do some of the things in io.py need to be migrated somewhere lower level than api.py?

There are 3 levels of integration at which we could do this:

  1. Add a standalone open_datatree function to xarray/backends/api.py that directly copies code from datatree/io.py.
  2. Add an open_datatree method to xarray/backends/common.py::BackendEntrypoint and implement it for Zarr and netCDF backends using the same approach as in datatree/io.py (i.e. calling open_dataset once for each group).
  3. Same as (2) but refactor the method to only open the file once.

I think you should try (2), falling back to (1) if that's too tricky, but deliberately leave (3) for a later PR.

eschalkargans commented 9 months ago

Hello,

If it can help, I found myself in a situation, quite similar however slightly different, where I had to merge two repos A and B into one (keeping A and archiving B), moving contents of A and B into new subfolders of the A repo, eg A/a, A/b. This differs in that we don't want to put the xarray code into a new xarray subdirectory. But maybe the procedure would be hopefully similar.

Here is a gist summarizing my procedure to do so: https://gist.github.com/eschalkargans/318d83e58d63d83454d1f8a497786a8d

keewis commented 8 months ago

I tried my hand at doing the merge, here's the result: datatree on keewis/xarray. This required two extra commits: one for moving the whole repository to a subdirectory (xarray/datatree_, note the underscore to mark it as temporary), and one merge commit.

If anyone wants to try, after adding xarray-contrib/datatree as a remote named datatree and switching to a feature branch I called:

git merge datatree/prepare-for-migration --no-commit --allow-unrelated-histories

where datatree/prepare-for-migration contains the commit moving the repository to the subdirectory.

flamingbear commented 8 months ago

So I wasn't able to come up with anything more clever1 than what is above. If bringing the history over in one go to a temporary location is fine, I presume renaming the files into locations as we migrate will preserve the history as we move forward. I guess the next question is whether to feature branch after the import and merge to main or to try to do the migration steps into main proper? Pros and cons to both, but would lean towards directly into main. Thoughts/feelings?

  1. I wanted to bring in the history with each PR to main, but after actually thinking about how that would work, it doesn't.
TomNicholas commented 8 months ago

Thanks all three of you for trying this!

I tried my hand at doing the merge, here's the result: datatree on keewis/xarray. This required two extra commits: one for moving the whole repository to a subdirectory (xarray/datatree_, note the underscore to mark it as temporary), and one merge commit.

preserve the history

Is it just me or has this approach not actually preserved the history at all? All the datatree code seems to be squashed into one massive commit: https://github.com/keewis/xarray/commit/4227b38bdf387864a1397fb3f7325d5b8dc02b64

I guess the next question is whether to feature branch after the import and merge to main or to try to do the migration steps into main proper?

I think we don't really need a feature branch as there are no backwards compatibility issues? (@shoyer unless you have a preference?) Also the datatree code can be merged into main without actually exposing DataTree as public API until we're ready.


@eschalkargans we appreciate your interest in this! FYI the rest of us on this thread met yesterday in xarray's bi-weekly community dev call, which you would be more than welcome to join for. 😄 Regardless we will try to write out any decisions we make in that meeting also on github for reference.

keewis commented 8 months ago

Is it just me or has this approach not actually preserved the history at all?

no, that's just the commit for importing the datatree repository. Try looking here: https://github.com/keewis/xarray/blame/datatree/xarray/datatree_/datatree/formatting.py

Edit: I don't have any preferences about feature branch vs. merging directly into main. However, the downside of the separate feature branch is that we need to make sure we do a normal merge instead of a squash merge, plus we'd need a lot of merge commits to keep up with main.

kmuehlbauer commented 8 months ago

Is it just me or has this approach not actually preserved the history at all?

no, that's just the commit for importing the datatree repository. Try looking here: https://github.com/keewis/xarray/blame/datatree/xarray/datatree_/datatree/formatting.py

That might be just minor, but the PR links are pointing now to the xarray repo unrelated PR's. Not sure we can do anything about. Could these links (eg. #50) be stripped or relocated to datatree repo during the process to avoid any issues?

slevang commented 8 months ago

That might be just minor, but the PR links are pointing now to the xarray repo unrelated PR's. Not sure we can do anything about. Could these links (eg. #50) be stripped or relocated to datatree repo during the process to avoid any issues?

We could rewrite the commit message history, using a tool like git-filter-repo, to explicitly repoint e.g. #300 to https://github.com/xarray-contrib/datatree/pull/300. These look exactly the same in Github due to the automatic markdown parsing. I tried a simple #==>https://github.com/xarray-contrib/datatree/pull/ replacement pattern which seems to work but could do something smarter with regex to make sure we don't mess with isolated uses of # in commit messages.

kmuehlbauer commented 8 months ago

@slevang Great this works. Could we also change comments in code (where maybe issues) are linked the same way?

slevang commented 8 months ago

Yep, there is a --replace-text option which handles file contents in addition to --replace-message.

https://htmlpreview.github.io/?https://github.com/newren/git-filter-repo/blob/docs/html/git-filter-repo.html

flamingbear commented 8 months ago

steps to prepare datatree for xarray import

  1. clone datatree repository locally.

  2. use git-filter-repo to change tag names to `legacy-datatree-` (suggestions if not this name?) e.g. v0.0.13 => legacy-datatree-v0.0.13

    git filter-repo --tag-rename '':'legacy-datatree-'
  3. use git-filter-repo to rewrite PR titles that use github automatic markdown to full paths in datatree.

    The pull request changes are replaced with this --replace-message file:

    # standard github style pull request
    regex:\(#(\d+)\)==>https://github.com/xarray-contrib/datatree/pull/\1
    
    # I found a few like "Merge pull request #11 from TomNicholas/single_datanode_class"
    regex:pull request #(\d+)==>https://github.com/xarray-contrib/datatree/pull/\1

    Comments in code should point to issues --replace-text file:

    # standard comment change "  # see issue #38"
    regex:(\s*?#.*[ ])#(\d+)==>\1https://github.com/xarray-contrib/datatree/issues/\2
    
    # some like "    @pytest.mark.xfail(reason="Indexing needs to return whole tree (GH #77)")"
    regex:(\(GH #(\d+)\))==>(GH https://github.com/xarray-contrib/datatree/issues/\2)
  4. Run the git-filter-repo command (--dry-run is be added to examine the changes that are made) To do the rewriting I did it from my cloned repo directly.

    git-filter-repo --replace-text ../replace-text-issue --replace-message ../replace-message-pr
  5. You can see the results here https://github.com/flamingbear/rewritten-datatree commits on main all have links to xarray-contrib/datatree#PR now

I think if you take these steps before running the @keewis import steps, you might be ready to go.

flamingbear commented 8 months ago

Also, I added steps 6. and 7. to make sure they worked as I expected

  1. push rewritten-datatree code down into temp directory. As an alternate to a new commit, you can use git-filter-repo. From the rewritten-datatree directory run.

      git-filter-repo --to-subdirectory xarray/datatree_
  2. Merge the prepared datatree into xarray.

So my fork is (close to) what I would expect xarray to look like after we merge the repositories. And I can start work on the first code task open_datatree (that I will copy over when we do this for real)

A set of questions: How long will datatree be alive during this process?
How do we keep these repositories in sync?
Can we pause development on datatree? How do we move the github history over? Or do we just move open issues and PRs?

slevang commented 8 months ago

I can't think of a sensible way to keep these in sync. Archiving datatree as soon as the merge happens would force future development into xarray. The datatree repo would remain readable for referencing old issues.

Looks like we could move open issues, of which there are currently 57, with something like this.

Moving PRs seems much harder because every PR would have to be rebased onto the xarray repo somehow. There are 21 open PRs, and only 7 opened in the last 6 months. Maybe this is better handled manually by individual contributors?

TomNicholas commented 8 months ago

@flamingbear @slevang this is excellent!

A set of questions:

  • How long will datatree be alive during this process?

To download? The whole time, so that people can use it. Under active development? I don't think it really needs to be.

  • How do we keep these repositories in sync?

I'm not sure it's hugely important to. The rate of development on datatree has slowed to a crawl (which is why I think it's mature enough to start moving it - people seem pretty happy to use it as is).

  • Can we pause development on datatree?

I would be happy to put some kind of disclaimer on the datatree readme saying that whilst we accept new PRs the repo will be deprecated and any PRs since [date we begin merging into xarray] might be later copied across to xarray without full git attribution.

  • How do we move the github history over? Or do we just move open issues and PRs?

Maybe [open PRs are] better handled manually by individual contributors?

Open issues are important to retain ideally, as are closed issues (they document the design process, and I tried hard to write that down in public). Open PRs I'm not so bothered about. Once you rule out the open PRs that are either (a) me, (b) stale, (c) trivial, there are only like 2 or 3 left, which can be handled manually.

Other opinions welcome, but I would suggest that we just release a new version of datatree (as it's overdue), and once we've done that we can put a disclaimer on the repo?

TomNicholas commented 8 months ago

we just release a new version of datatree (as it's overdue), and once we've done that we can put a disclaimer on the repo?

I've merged a couple of things, released v0.0.14, and added a migration notice to datatree's readme.

flamingbear commented 8 months ago

I've merged a couple of things, released v0.0.14, and added a migration notice to datatree's readme.

Excellent. I will start steps 1-7 again with the latest xarray and datatree.

flamingbear commented 8 months ago

There's the PR for the import https://github.com/pydata/xarray/pull/8656 [edit: looks like I will need to give it some attention for CI]

flamingbear commented 8 months ago

Is there a tool you all use to test CI locally? I force pushed myself into a hole and would like to avoid that moving forward.

TomNicholas commented 8 months ago

Is there a tool you all use to test CI locally?

I just run pytest locally, then push to a PR and hope for the best 😅 If anyone has a nifty tool it would be @max-sixty or @keewis though

flamingbear commented 8 months ago

I'm specifically thinking of the "build xarray from source" to make sure I haven't introduced circular dependencies xarray -> datatree -> xarray in the open_datatree step I'm working on.

keewis commented 8 months ago

I don't, I usually just follow the setup instructions from the document you posted: create conda env, activate it, install xarray in editable mode, run pytest. And really, this is what CI is doing, as well, just with a matrix of OSs / python versions.

TomNicholas commented 7 months ago

We're going to have a weekly meeting about this integration - see https://github.com/pydata/xarray/issues/8747

TomNicholas commented 2 months ago

So in order to make a first "beta" release of datatree functionality in xarray main, we need to:

There's a long tail of work after this but IMO this is what's required for the MVP.

cc @shoyer @flamingbear @owenlittlejohns @eni-awowale @keewis

eni-awowale commented 2 months ago

@TomNicholas One more thing to add to our MVP list is to migrate all of the issues in DataTree over to xarray.