Skip to content

direct: auto-generate RemapState copiers from resource types - #6777

Draft
denik wants to merge 8 commits into
mainfrom
denik/remapstate-identity-comment
Draft

denik wants to merge 8 commits into
mainfrom
denik/remapstate-identity-comment

Conversation

@denik

@denik denik commented Sep 21, 2026 •

Copy link
Copy Markdown
Contributor

Many resources' RemapState is a mechanical copy: it moves same-named fields from the remote type into the state type and filters ForceSendFields. This replaces those with a copier compiled once from the (remote, state) type pair at package init and wired into the adapter when a resource has no custom RemapState.

buildCopiers is driven off SupportedResources, so every auto-copied resource is validated at load — anything the copier can't copy losslessly (kind-changing conversions, mismatched struct shapes) fails there, not as silent drift at deploy time. Deletes 12 redundant RemapState methods; resources with genuine remap logic keep theirs.

Behavior is unchanged: a test fully populates each remote and asserts the copier reproduces the old hand-written output before deletion.

This pull request and its description were written by Isaac.

@eng-dev-ecosystem-bot

eng-dev-ecosystem-bot commented Sep 21, 2026 •

Copy link
Copy Markdown
Collaborator

Integration test report

Commit: c941009

Run: 35848362946

Env ✅​pass 🙈​skip Time
✅​ aws linux 276 15 6:40
✅​ aws windows 278 13 5:41
✅​ azure linux 275 15 5:24
✅​ azure windows 277 13 4:34
✅​ gcp linux 276 15 5:15
✅​ gcp windows 278 13 3:58
Top 3 slowest tests (at least 2 minutes):
duration env testname
5:39 aws windows TestAccept
4:32 azure windows TestAccept
3:55 gcp windows TestAccept

@denik denik closed this Sep 22, 2026
@denik denik changed the title dresources: document why RemapState is skipped when types match direct: auto-generate RemapState copiers from resource types Sep 22, 2026
@denik denik reopened this Sep 22, 2026
denik and others added 7 commits September 23, 2026 11:57
Resources whose state type is a plain subset of the remote type had a
hand-written RemapState that mechanically copied same-named fields and
filtered ForceSendFields. Replace those with a copier compiled once from
the (remote, state) type pair at package init and wired into the adapter
when a resource has no custom RemapState.

buildCopiers is driven off SupportedResources, so every auto-copied
resource is validated at load: anything the copier cannot copy losslessly
(kind-changing conversions, mismatched struct shapes) fails there rather
than as silent drift at deploy time. Deletes 12 redundant RemapState
methods; resources with genuine logic keep theirs.

Co-authored-by: Isaac <[email protected]>
Drop the duplicate reflection filler in favor of the existing fillNonZero,
populating ForceSendFields with a small dedicated helper. Field-per-line
table in TestSafeConvert; shorten the README section.

Co-authored-by: Isaac <[email protected]>
Move the reflection copier (compile-time type check, field/JSON-name copy,
ForceSendFields filtering, lossless conversions) out of dresources into a
reusable package beside structwalk/structdiff/structaccess. The direct engine
wiring (buildCopiers, driven off SupportedResources) stays in dresources and
now calls structcopy.Compile.

Co-authored-by: Isaac <[email protected]>
…er handles them)

After the prep PRs made these dumb, the auto-generated copier reproduces them
exactly (TestNoRedundantRemapState), so remove the methods.

Co-authored-by: Isaac <[email protected]>
@denik
denik force-pushed the denik/remapstate-identity-comment branch from 9ed6196 to ded8289 Compare September 23, 2026 10:03
@github-actions github-actions Bot added the DABs DABs related issues label Sep 23, 2026
Removes RemapState for apps, jobs, job_runs, pipelines, the postgres_* resources
and quality_monitors - all plain subset copies the auto-generated copier
reproduces. Only model_serving_endpoints, vector_search_indexes and secrets keep
a RemapState for now; they need their own prep before the copier can take them,
after which this PR (rebased) will delete them and remove the RemapState hook.

Co-authored-by: Isaac <[email protected]>

This branch has not been deployed

No deployments
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

DABs DABs related issues

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants