We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Yes. I would be willing to contribute this feature with guidance from the oracle-ads team.
Maybe you want to add filter job/job runs by name too, i.e.:
def list_runs_with_state(self, lifecycle_state: str) -> list[DataScienceJobRun]: runs = self._oci_instance.run_list(lifecycle_state=lifecycle_state) user_job_runs = list(filter(lambda j: j.name.startswith(self._config.user_prefix), runs)) return user_job_runs
(preferable regexp)
We filter our jobs/jobruns by name to separate the runs
Why is it currently difficult to achieve this use case?
It is not, difficult but not fully follows the SOLID principals
No response
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Willingness to contribute
Yes. I would be willing to contribute this feature with guidance from the oracle-ads team.
Proposal Summary
Maybe you want to add filter job/job runs by name too, i.e.:
def list_runs_with_state(self, lifecycle_state: str) -> list[DataScienceJobRun]:
runs = self._oci_instance.run_list(lifecycle_state=lifecycle_state)
user_job_runs = list(filter(lambda j: j.name.startswith(self._config.user_prefix), runs))
return user_job_runs
(preferable regexp)
Motivation
We filter our jobs/jobruns by name to separate the runs
It is not, difficult but not fully follows the SOLID principals
Details
No response
The text was updated successfully, but these errors were encountered: