Struct google_api_proto::google::cloud::aiplatform::v1beta1::ImportFeatureValuesRequest
source · pub struct ImportFeatureValuesRequest {
pub entity_type: String,
pub entity_id_field: String,
pub feature_specs: Vec<FeatureSpec>,
pub disable_online_serving: bool,
pub worker_count: i32,
pub disable_ingestion_analysis: bool,
pub source: Option<Source>,
pub feature_time_source: Option<FeatureTimeSource>,
}
Expand description
Request message for [FeaturestoreService.ImportFeatureValues][google.cloud.aiplatform.v1beta1.FeaturestoreService.ImportFeatureValues].
Fields§
§entity_type: String
Required. The resource name of the EntityType grouping the Features for
which values are being imported. Format:
projects/{project}/locations/{location}/featurestores/{featurestore}/entityTypes/{entityType}
entity_id_field: String
Source column that holds entity IDs. If not provided, entity IDs are extracted from the column named entity_id.
feature_specs: Vec<FeatureSpec>
Required. Specifications defining which Feature values to import from the entity. The request fails if no feature_specs are provided, and having multiple feature_specs for one Feature is not allowed.
disable_online_serving: bool
If set, data will not be imported for online serving. This is typically used for backfilling, where Feature generation timestamps are not in the timestamp range needed for online serving.
worker_count: i32
Specifies the number of workers that are used to write data to the Featurestore. Consider the online serving capacity that you require to achieve the desired import throughput without interfering with online serving. The value must be positive, and less than or equal to 100. If not set, defaults to using 1 worker. The low count ensures minimal impact on online serving performance.
disable_ingestion_analysis: bool
If true, API doesn’t start ingestion analysis pipeline.
source: Option<Source>
Details about the source data, including the location of the storage and the format.
feature_time_source: Option<FeatureTimeSource>
Source of Feature timestamp for all Feature values of each entity. Timestamps must be millisecond-aligned.
Trait Implementations§
source§impl Clone for ImportFeatureValuesRequest
impl Clone for ImportFeatureValuesRequest
source§fn clone(&self) -> ImportFeatureValuesRequest
fn clone(&self) -> ImportFeatureValuesRequest
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ImportFeatureValuesRequest
impl Debug for ImportFeatureValuesRequest
source§impl Default for ImportFeatureValuesRequest
impl Default for ImportFeatureValuesRequest
source§impl Message for ImportFeatureValuesRequest
impl Message for ImportFeatureValuesRequest
source§fn encoded_len(&self) -> usize
fn encoded_len(&self) -> usize
source§fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
source§fn encode_to_vec(&self) -> Vec<u8>where
Self: Sized,
fn encode_to_vec(&self) -> Vec<u8>where
Self: Sized,
source§fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
source§fn encode_length_delimited_to_vec(&self) -> Vec<u8>where
Self: Sized,
fn encode_length_delimited_to_vec(&self) -> Vec<u8>where
Self: Sized,
source§fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
source§fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
source§fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
self
. Read moresource§fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
self
.source§impl PartialEq for ImportFeatureValuesRequest
impl PartialEq for ImportFeatureValuesRequest
source§fn eq(&self, other: &ImportFeatureValuesRequest) -> bool
fn eq(&self, other: &ImportFeatureValuesRequest) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ImportFeatureValuesRequest
Auto Trait Implementations§
impl Freeze for ImportFeatureValuesRequest
impl RefUnwindSafe for ImportFeatureValuesRequest
impl Send for ImportFeatureValuesRequest
impl Sync for ImportFeatureValuesRequest
impl Unpin for ImportFeatureValuesRequest
impl UnwindSafe for ImportFeatureValuesRequest
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
T
in a tonic::Request