-
Notifications
You must be signed in to change notification settings - Fork 3.1k
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
feat(ingestion) Adding vertexAI ingestion source (v1 - model group and model) #12632
base: master
Are you sure you want to change the base?
Conversation
Codecov ReportAttention: Patch coverage is
... and 59 files with indirect coverage changes Continue to review full report in Codecov by Sentry.
|
a204827
to
98aa10a
Compare
8e36548
to
51a13d7
Compare
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.
Every entity needs container aspects
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.
improve docs
type: vertexai | ||
config: | ||
project_id: "acryl-poc" | ||
region: "us-west2" |
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.
where do the creds come from?
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 something similar to bq source - support either env var or creds
yield self._get_data_process_properties_workunit(job) | ||
yield from self._get_job_output_workunit(job) | ||
yield from self._get_job_input_workunit(job) |
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.
generate the full data process entity in one go
maybe add generate_training_job()
that calls each one individually
description=f"Dataset: {ds.display_name} for training job", | ||
customProperties={"displayName": ds.display_name, | ||
"resourceName": ds.resource_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.
datasets need more aspects than this
use the new sdk's Dataset type
return urn | ||
|
||
|
||
def _make_vertexai_name(self, |
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.
might be too generic
return urn | ||
|
||
|
||
def _make_vertexai_name(self, |
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.
_make_job_name
_make_dataset_name
...
Checklist