Merged
Conversation
✅ Deploy Preview for nextflow-docs-staging canceled.
|
- Upgrade sched-client from 0.41.0-SNAPSHOT to 0.47.0 - Add qr/v2 prediction model to supported values description - Remove client-side prediction model validation (moved to backend) - Fix getResourceRequirement() -> getResourceAllocation() API change Signed-off-by: Paolo Di Tommaso <paolo.ditommaso@gmail.com>
39d03f2 to
25a8fa5
Compare
Signed-off-by: Paolo Di Tommaso <paolo.ditommaso@gmail.com>
pditommaso
added a commit
that referenced
this pull request
Apr 7, 2026
* Bump sched-client to 0.47.0 and update prediction model support - Upgrade sched-client from 0.41.0-SNAPSHOT to 0.47.0 - Add qr/v2 prediction model to supported values description - Remove client-side prediction model validation (moved to backend) - Fix getResourceRequirement() -> getResourceAllocation() API change Signed-off-by: Paolo Di Tommaso <paolo.ditommaso@gmail.com> * Fix test to use renamed resourceAllocation API Signed-off-by: Paolo Di Tommaso <paolo.ditommaso@gmail.com> --------- Signed-off-by: Paolo Di Tommaso <paolo.ditommaso@gmail.com>
pditommaso
added a commit
that referenced
this pull request
Apr 7, 2026
* Add resourceAllocation field to trace record Expose scheduler-allocated resources (cpuShares, memoryMiB, accelerators, time) in the trace record. The value is taken from the last TaskAttempt's resources, falling back to the TaskState's resourceAllocation if no attempts exist. Also bump sched-client to 0.46.0-SNAPSHOT which renames TaskState.resourceRequirement to resourceAllocation. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> Signed-off-by: Paolo Di Tommaso <paolo.ditommaso@gmail.com> * Revert "Add accelerator request to trace record (#6703)" This reverts commit 00f35b3. The accelerator and accelerator_type fields in the trace record are superseded by the resourceAllocation field which carries the actual scheduler-allocated resources including accelerator info. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> Signed-off-by: Paolo Di Tommaso <paolo.ditommaso@gmail.com> * Bump sched-client to 0.47.0 (#6987) [ci fast] * Bump sched-client to 0.47.0 and update prediction model support - Upgrade sched-client from 0.41.0-SNAPSHOT to 0.47.0 - Add qr/v2 prediction model to supported values description - Remove client-side prediction model validation (moved to backend) - Fix getResourceRequirement() -> getResourceAllocation() API change Signed-off-by: Paolo Di Tommaso <paolo.ditommaso@gmail.com> * Fix test to use renamed resourceAllocation API Signed-off-by: Paolo Di Tommaso <paolo.ditommaso@gmail.com> --------- Signed-off-by: Paolo Di Tommaso <paolo.ditommaso@gmail.com> * Bump org.apache.groovy from 4.0.30 to 4.0.31 (#6985) [ci fast] Signed-off-by: Paolo Di Tommaso <paolo.ditommaso@gmail.com> Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * Docs: document Wave support for module resources directory (#6984) [ci skip] * Docs: document Wave support for module resources directory Update Wave and module docs to explain that the module `resources/` directory is automatically included in Wave-provisioned containers, removing the need for ADD/COPY Dockerfile commands. Signed-off-by: Paolo Di Tommaso <paolo.ditommaso@gmail.com> Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> Signed-off-by: Paolo Di Tommaso <paolo.ditommaso@gmail.com> * Update docs/module.md [ci skip] Co-authored-by: Chris Hakkaart <chris.hakkaart@seqera.io> Signed-off-by: Paolo Di Tommaso <paolo.ditommaso@gmail.com> * Update docs/wave.md [ci skip] Co-authored-by: Chris Hakkaart <chris.hakkaart@seqera.io> Signed-off-by: Paolo Di Tommaso <paolo.ditommaso@gmail.com> --------- Signed-off-by: Paolo Di Tommaso <paolo.ditommaso@gmail.com> Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com> Co-authored-by: Chris Hakkaart <chris.hakkaart@seqera.io> * Remove stale reference to soon-to-be EOL'd AWS Linux 2 (#6970) [ci skip] * Use inline metadata from trace create response (#6976) --------- Signed-off-by: Paolo Di Tommaso <paolo.ditommaso@gmail.com> Signed-off-by: jorgee <jorge.ejarque@seqera.io> * Replace Auth0 with Platform OIDC PKCE for auth login (#6953) * Document workflow output lineage types (#6972) Co-authored-by: Ben Sherman <bentshermann@gmail.com> * docs: Add output labels use cases and details (#6986) Co-authored-by: Ben Sherman <bentshermann@gmail.com> * docs: Improve process directive docs (#6990) Co-authored-by: Ben Sherman <bentshermann@gmail.com> * Typed workflows (#6881) * Add `module create` subcommand (#6992) Co-authored-by: Ben Sherman <bentshermann@gmail.com> * Add `module validate` subcommand (#6993) Co-authored-by: Ben Sherman <bentshermann@gmail.com> * Add `module spec` command (#6859) Co-authored-by: Ben Sherman <bentshermann@gmail.com> * docs: Add migration guide reference to legacy operators page (#7010) * Use npr-client API instead of custom ModuleRegistryClient (#7012) [ci fast] * Use npr-client API instead of custom ModuleRegistryClient Replace the custom ModuleRegistryClient with the npr-client library, delegating HTTP registry interactions to the shared client. This removes ~500 lines of duplicated HTTP/retry/auth logic. - Delete ModuleRegistryClient.groovy - Update call sites to use new npr-client method names (getModule, getModuleRelease, searchModules, downloadModuleRelease, publishModuleRelease) - Update all tests to match new API Signed-off-by: Paolo Di Tommaso <paolo.ditommaso@gmail.com> Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> Signed-off-by: Paolo Di Tommaso <paolo.ditommaso@gmail.com> * Bump npr-api and npr-client to 0.22.0 [ci fast] Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> Signed-off-by: Paolo Di Tommaso <paolo.ditommaso@gmail.com> --------- Signed-off-by: Paolo Di Tommaso <paolo.ditommaso@gmail.com> Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * Restore accelerator and accelerator_type fields in TraceRecord Keep the existing trace fields for requested accelerators alongside the new resourceAllocation field for allocated resources. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> Signed-off-by: Paolo Di Tommaso <paolo.ditommaso@gmail.com> * Populate accelerator trace fields from task config and update tests Set accelerator request count and type in the trace record from the process accelerator directive. Add corresponding test coverage. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> Signed-off-by: Paolo Di Tommaso <paolo.ditommaso@gmail.com> --------- Signed-off-by: Paolo Di Tommaso <paolo.ditommaso@gmail.com> Signed-off-by: jorgee <jorge.ejarque@seqera.io> Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com> Co-authored-by: Chris Hakkaart <chris.hakkaart@seqera.io> Co-authored-by: Clint Valentine <valentine.clint@gmail.com> Co-authored-by: Jorge Ejarque <jorgee@users.noreply.github.com> Co-authored-by: Ben Sherman <bentshermann@gmail.com> Co-authored-by: Adam Talbot <12817534+adamrtalbot@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
sched-clientfrom0.41.0-SNAPSHOTto0.47.0qr/v2prediction model to supported values in descriptiongetResourceRequirement()→getResourceAllocation()API renameTest plan
nf-seqeraplugin compiles against new sched-clientExecutorOptsTestto confirm prediction model config still worksSeqeraTaskHandlergranted time logic works withgetResourceAllocation()