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

Example canonicalization for ConfigWorkflow #90

Merged
merged 2 commits into from
Jan 17, 2025

Conversation

DropD
Copy link
Collaborator

@DropD DropD commented Jan 16, 2025

This represents the result of steps 4) - 8) in #88 for ConfigWorkflow.

Note how it isolates the tests from syntactic changes in the YAML format, so that only changes in semantics require adapting tests (as I believe they should).

Changes:

  • isolate ConfigWorkflow from the need for unit testing by canonicalizing it into CanonicalWorkflow, which can be tested in isolation from the actual YAML format.
  • move the dictionary building from a validator in ConfigWorkflow to the canonicalization function
  • adapt unit tests

Copy link
Collaborator

@agoscinski agoscinski left a comment

Choose a reason for hiding this comment

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

In my mind the core.Workflow was the canonicalized version of the workflow and ConfigWorkflow is the python representation of the yaml config with only minimal postprocessing to avoid invalid inputs. I think with time the Config* classes became more distant to the yaml config file. But instead of introducing another level of workflow, I would put the logic that is in the canonicalize_workflow function in the the processing from ConfigWorkflow to core.Workflow. What do you think?

Comment on lines 382 to 384
def get_plugin_from_named_base_model(data: dict) -> str:
if isinstance(data, (ConfigRootTask, ConfigShellTask, ConfigIconTask)):
return data.plugin
Copy link
Collaborator

Choose a reason for hiding this comment

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

This is for the idempotence right? Maybe we then also change the input type data to

Suggested change
def get_plugin_from_named_base_model(data: dict) -> str:
if isinstance(data, (ConfigRootTask, ConfigShellTask, ConfigIconTask)):
return data.plugin
def get_plugin_from_named_base_model(data: dict | type[ConfigRootTask | ConfigShellTask | ConfigIconTask]) -> str:
if isinstance(data, (ConfigRootTask, ConfigShellTask, ConfigIconTask)):
return data.plugin

Copy link
Collaborator Author

Choose a reason for hiding this comment

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

I will do that, or a version of it that clears when run through mypy.

@leclairm
Copy link
Contributor

In my mind the core.Workflow was the canonicalized version of the workflow and ConfigWorkflow is the python representation of the yaml config with only minimal postprocessing to avoid invalid inputs. I think with time the Config* classes became more distant to the yaml config file. But instead of introducing another level of workflow, I would put the logic that is in the canonicalize_workflow function in the the processing from ConfigWorkflow to core.Workflow. What do you think?

I think there's room for a canonical workflow config in between because core.Workflow already creates the graph with core objects and dependency resolving. What we need are classes between yaml parsing and core objects that remove all ambiguities.

@DropD
Copy link
Collaborator Author

DropD commented Jan 17, 2025

In my mind the core.Workflow was the canonicalized version of the workflow and ConfigWorkflow is the python representation of the yaml config with only minimal postprocessing to avoid invalid inputs. I think with time the Config* classes became more distant to the yaml config file. But instead of introducing another level of workflow, I would put the logic that is in the canonicalize_workflow function in the the processing from ConfigWorkflow to core.Workflow. What do you think?

Remember: my end goal is to separate data cleaning from graph unrolling. It seems you are proposing to tie them together even more.

@DropD DropD merged commit bec3583 into test-config-workflow Jan 17, 2025
3 checks passed
@DropD DropD deleted the improve-config-workflow branch January 17, 2025 15:09
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants