Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

GoogleCloudAiplatformV1ImportFeatureValuesRequest

import type { GoogleCloudAiplatformV1ImportFeatureValuesRequest } from "https://googleapis.deno.dev/v1/aiplatform:v1.ts";

Request message for FeaturestoreService.ImportFeatureValues.

interface GoogleCloudAiplatformV1ImportFeatureValuesRequest {
disableIngestionAnalysis?: boolean;
disableOnlineServing?: boolean;
entityIdField?: string;
featureTime?: Date;
featureTimeField?: string;
workerCount?: number;
}

§Properties

§
disableIngestionAnalysis?: boolean
[src]

If true, API doesn't start ingestion analysis pipeline.

§
disableOnlineServing?: boolean
[src]

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.

§
entityIdField?: string
[src]

Source column that holds entity IDs. If not provided, entity IDs are extracted from the column named entity_id.

§

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.

§
featureTime?: Date
[src]

Single Feature timestamp for all entities being imported. The timestamp must not have higher than millisecond precision.

§
featureTimeField?: string
[src]

Source column that holds the Feature timestamp for all Feature values in each entity.

§
workerCount?: number
[src]

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.