Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adapt scheduler to work with dynamic derivations #8829

Merged
merged 4 commits into from
Aug 25, 2023

Conversation

Ericson2314
Copy link
Member

@Ericson2314 Ericson2314 commented Aug 16, 2023

Motivation

To avoid dealing with an optional drvPath (because we might not know it yet) everywhere, make an CreateDerivationAndRealiseGoal. This goal just builds/substitutes the derivation file, and then kicks of a build for that obtained derivation; in other words it does the chaining of goals when the drv file is missing (as can already be the case) or computed (new case).

This also means the getDerivation state can be removed from DerivationGoal, which makes the BasicDerivation / in memory case and Derivation / drv file case closer together.

Context

The description is taken from the final commit. There are two preparatory ones before it.

Part of RFC 92: dynamic derivations.

Checklist for maintainers

Maintainers: tick if completed or explain if not relevant

  • agreed on idea
  • agreed on implementation strategy
  • tests, as appropriate
    • functional tests - tests/**.sh
    • unit tests - src/*/tests
    • integration tests - tests/nixos/*
  • documentation in the manual
  • documentation in the internal API docs
  • code and comments are self-explanatory
  • commit message explains why the change was made
  • new feature or incompatible change: updated release notes

Priorities

Add 👍 to pull requests you find important.

@Ericson2314 Ericson2314 added the RFC Related to an accepted RFC label Aug 16, 2023
@github-actions github-actions bot added with-tests Issues related to testing. PRs with tests have some priority store Issues and pull requests concerning the Nix store and removed RFC Related to an accepted RFC labels Aug 16, 2023
@Ericson2314 Ericson2314 added the RFC Related to an accepted RFC label Aug 16, 2023
@Ericson2314 Ericson2314 changed the title Adapt schedular to work with computed drvs Adapt schedular to work with dynamic derivations Aug 16, 2023
@Ericson2314 Ericson2314 changed the title Adapt schedular to work with dynamic derivations Adapt scheduler to work with dynamic derivations Aug 16, 2023
@Ericson2314 Ericson2314 force-pushed the build-dynamic-derivations branch 2 times, most recently from 4e3db84 to a95779d Compare August 16, 2023 04:09
@github-actions github-actions bot removed the store Issues and pull requests concerning the Nix store label Aug 16, 2023
Copy link
Member

@roberth roberth left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

A first look.

src/libstore/build/outer-derivation-goal.hh Outdated Show resolved Hide resolved
src/libstore/build/outer-derivation-goal.hh Outdated Show resolved Hide resolved
@@ -18,4 +18,6 @@ clearStore

drvDep=$(nix-instantiate ./text-hashed-output.nix -A producingDrv)

expectStderr 1 nix build "${drvDep}^out^out" --no-link | grepQuiet "Building dynamic derivations in one shot is not yet implemented"
out2=$(nix build "${drvDep}^out^out" --no-link)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

😍

@Ericson2314 Ericson2314 mentioned this pull request Aug 16, 2023
4 tasks
@Ericson2314 Ericson2314 force-pushed the build-dynamic-derivations branch 2 times, most recently from c355ead to 060e9c1 Compare August 16, 2023 15:51
@Ericson2314 Ericson2314 marked this pull request as draft August 16, 2023 19:08
Ericson2314 added a commit to obsidiansystems/nix that referenced this pull request Aug 16, 2023
See that issue for details on the general goal.

The `DerivationGoal::derivationType` field had a bogus initialization,
now caught, so I made it `std::optional`. I think NixOS#8829 can make it
non-optional again because it will ensure we always have the derivation
when we construct a `DerivationGoal`.
Ericson2314 added a commit to obsidiansystems/nix that referenced this pull request Aug 18, 2023
Types converted:

- `NixStringContextElem`
- `OutputsSpec`
- `ExtendedOutputsSpec`
- `DerivationOutput`
- `DerivationType`

The `DerivationGoal::derivationType` field had a bogus initialization,
now caught, so I made it `std::optional`. I think NixOS#8829 can make it
non-optional again because it will ensure we always have the derivation
when we construct a `DerivationGoal`.

See that issue (NixOS#7479) for details on the general goal.

`git grep 'Raw::Raw'` indicates the two types I didn't yet convert
`DerivedPath` and `BuiltPath` (and their `Single` variants) . This is
because @roberth and I (can't find issue right now...) plan on reworking
them somewhat, so I didn't want to churn them more just yet.
Ericson2314 added a commit to obsidiansystems/nix that referenced this pull request Aug 18, 2023
Types converted:

- `NixStringContextElem`
- `OutputsSpec`
- `ExtendedOutputsSpec`
- `DerivationOutput`
- `DerivationType`

The `DerivationGoal::derivationType` field had a bogus initialization,
now caught, so I made it `std::optional`. I think NixOS#8829 can make it
non-optional again because it will ensure we always have the derivation
when we construct a `DerivationGoal`.

See that issue (NixOS#7479) for details on the general goal.

`git grep 'Raw::Raw'` indicates the two types I didn't yet convert
`DerivedPath` and `BuiltPath` (and their `Single` variants) . This is
because @roberth and I (can't find issue right now...) plan on reworking
them somewhat, so I didn't want to churn them more just yet.

Co-authored-by: Eelco Dolstra <edolstra@gmail.com>
Ericson2314 added a commit to obsidiansystems/nix that referenced this pull request Aug 18, 2023
Types converted:

- `NixStringContextElem`
- `OutputsSpec`
- `ExtendedOutputsSpec`
- `DerivationOutput`
- `DerivationType`

Existing ones mostly conforming the pattern cleaned up:

- `ContentAddressMethod`
- `ContentAddressWithReferences`

The `DerivationGoal::derivationType` field had a bogus initialization,
now caught, so I made it `std::optional`. I think NixOS#8829 can make it
non-optional again because it will ensure we always have the derivation
when we construct a `DerivationGoal`.

See that issue (NixOS#7479) for details on the general goal.

`git grep 'Raw::Raw'` indicates the two types I didn't yet convert
`DerivedPath` and `BuiltPath` (and their `Single` variants) . This is
because @roberth and I (can't find issue right now...) plan on reworking
them somewhat, so I didn't want to churn them more just yet.

Co-authored-by: Eelco Dolstra <edolstra@gmail.com>
@Ericson2314 Ericson2314 force-pushed the build-dynamic-derivations branch 2 times, most recently from 7b7416c to d77a2c2 Compare August 18, 2023 18:03
Copy link
Member

@roberth roberth left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Superficial first second review

src/libstore/build/create-derivation-and-realise-goal.cc Outdated Show resolved Hide resolved
src/libstore/build/derivation-goal.cc Outdated Show resolved Hide resolved
src/libstore/build/worker.cc Outdated Show resolved Hide resolved
src/libstore/build/worker.hh Outdated Show resolved Hide resolved
@Ericson2314 Ericson2314 force-pushed the build-dynamic-derivations branch 3 times, most recently from ccdca62 to b174ef8 Compare August 21, 2023 14:16
@Ericson2314 Ericson2314 marked this pull request as ready for review August 21, 2023 14:38
@Ericson2314
Copy link
Member Author

OK, I think all review items are addressed!

Copy link
Member

@roberth roberth left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks alright - just minor clarifications.

src/libstore/derived-path-map.cc Outdated Show resolved Hide resolved
src/libstore/derived-path-map.hh Outdated Show resolved Hide resolved
src/libstore/derived-path-map.hh Show resolved Hide resolved
Hopefully they make the code easier to understand!
…ath`

Now we are consistent with the other `resolveDerivedPath`, and other
such functions.
We're about to split up `DerivationGoal` a bit. At that point
`makeDerivationGoal` will mean something more specific than it does
today. (Perhaps a future rename will make this clearer.)

On the other hand, the more public `Worker::makeGoal` function will
continue to work exactly as before. So by moving some call sites to use
that instead, we preemptively avoid issues in the next step.
To avoid dealing with an optional `drvPath` (because we might not know
it yet) everywhere, make an `CreateDerivationAndRealiseGoal`. This goal
just builds/substitutes the derivation file, and then kicks of a build
for that obtained derivation; in other words it does the chaining of
goals when the drv file is missing (as can already be the case) or
computed (new case).

This also means the `getDerivation` state can be removed from
`DerivationGoal`, which makes the `BasicDerivation` / in memory case and
`Derivation` / drv file file case closer together.

The map type is factored out for clarity, and because we will soon hvae
a second use for it (`Derivation` itself).

Co-authored-by: Robert Hensing <roberth@users.noreply.github.com>
@Ericson2314 Ericson2314 merged commit 50f40ac into NixOS:master Aug 25, 2023
8 checks passed
@Ericson2314 Ericson2314 deleted the build-dynamic-derivations branch September 25, 2023 14:57
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
RFC Related to an accepted RFC with-tests Issues related to testing. PRs with tests have some priority
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants