feature_view_syncs
Creates, updates, deletes, gets or lists a feature_view_syncs
resource.
Overview
Name | feature_view_syncs |
Type | Resource |
Id | google.aiplatform.feature_view_syncs |
Fields
Name | Datatype | Description |
---|---|---|
name | string | Identifier. Name of the FeatureViewSync. Format: projects/{project}/locations/{location}/featureOnlineStores/{feature_online_store}/featureViews/{feature_view}/featureViewSyncs/{feature_view_sync} |
createTime | string | Output only. Time when this FeatureViewSync is created. Creation of a FeatureViewSync means that the job is pending / waiting for sufficient resources but may not have started the actual data transfer yet. |
finalStatus | object | The Status type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by gRPC. Each Status message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the API Design Guide. |
runTime | object | Represents a time interval, encoded as a Timestamp start (inclusive) and a Timestamp end (exclusive). The start must be less than or equal to the end. When the start equals the end, the interval is empty (matches no time). When both start and end are unspecified, the interval matches any time. |
satisfiesPzi | boolean | Output only. Reserved for future use. |
satisfiesPzs | boolean | Output only. Reserved for future use. |
syncSummary | object | Summary from the Sync job. For continuous syncs, the summary is updated periodically. For batch syncs, it gets updated on completion of the sync. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | featureOnlineStoresId, featureViewSyncsId, featureViewsId, locationsId, projectsId | Gets details of a single FeatureViewSync. |
list | SELECT | featureOnlineStoresId, featureViewsId, locationsId, projectsId | Lists FeatureViewSyncs in a given FeatureView. |
SELECT
examples
Lists FeatureViewSyncs in a given FeatureView.
SELECT
name,
createTime,
finalStatus,
runTime,
satisfiesPzi,
satisfiesPzs,
syncSummary
FROM google.aiplatform.feature_view_syncs
WHERE featureOnlineStoresId = '{{ featureOnlineStoresId }}'
AND featureViewsId = '{{ featureViewsId }}'
AND locationsId = '{{ locationsId }}'
AND projectsId = '{{ projectsId }}';