Skip to main content

feature_view_syncs

Creates, updates, deletes, gets or lists a feature_view_syncs resource.

Overview

Namefeature_view_syncs
TypeResource
Idgoogle.aiplatform.feature_view_syncs

Fields

NameDatatypeDescription
namestringIdentifier. Name of the FeatureViewSync. Format: projects/{project}/locations/{location}/featureOnlineStores/{feature_online_store}/featureViews/{feature_view}/featureViewSyncs/{feature_view_sync}
createTimestringOutput 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.
finalStatusobjectThe 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.
runTimeobjectRepresents 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.
satisfiesPzibooleanOutput only. Reserved for future use.
satisfiesPzsbooleanOutput only. Reserved for future use.
syncSummaryobjectSummary from the Sync job. For continuous syncs, the summary is updated periodically. For batch syncs, it gets updated on completion of the sync.

Methods

NameAccessible byRequired ParamsDescription
getSELECTfeatureOnlineStoresId, featureViewSyncsId, featureViewsId, locationsId, projectsIdGets details of a single FeatureViewSync.
listSELECTfeatureOnlineStoresId, featureViewsId, locationsId, projectsIdLists 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 }}';