-
Notifications
You must be signed in to change notification settings - Fork 11
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
Squashed pipeline generator #29
base: develop
Are you sure you want to change the base?
Conversation
@@ -41,7 +44,7 @@ def __init__(self, config: PluginConfig, project_name, context): | |||
) | |||
self.run_config = config.run_config | |||
self.run_name = self._generate_run_name(config) | |||
self.generator = PipelineGenerator( | |||
self.generator = globals()[self.run_config.generator_class]( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please don't do that...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
:smutnazaba:
] = "{{$.inputs.parameters['mlflow_tracking_token']}}" | ||
command.append( | ||
_decorate_command( | ||
f"kedro vertexai -e {self.context.env} mlflow-start --output /tmp/mlflow.run.id {self.run_name} &&", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we still need this if we're running in a single node?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Description
Provides alternative pipeline generation, suitable to run SparkML pipelines with lazy evaluation of steps and
MemoryDataSet
artifacts.PR Checklist