Skip to content

Commit b96db5a

Browse files
Google APIscopybara-github
authored andcommitted
fix!: BREAKING_CHANGE: remove display_name from FeatureStore
feat: add invalid_row_count to ImportFeatureValuesResponse and ImportFeatureValuesOperationMetadata PiperOrigin-RevId: 372952726
1 parent 6fa858c commit b96db5a

5 files changed

Lines changed: 21 additions & 11 deletions

File tree

google/cloud/aiplatform/v1beta1/accelerator_type.proto

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,7 @@ enum AcceleratorType {
4242

4343
// Nvidia Tesla T4 GPU.
4444
NVIDIA_TESLA_T4 = 5;
45+
46+
// Nvidia Tesla A100 GPU.
47+
NVIDIA_TESLA_A100 = 8;
4548
}

google/cloud/aiplatform/v1beta1/featurestore.proto

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -67,13 +67,6 @@ message Featurestore {
6767
// `projects/{project}/locations/{location}/featurestores/{featurestore}`
6868
string name = 1 [(google.api.field_behavior) = OUTPUT_ONLY];
6969

70-
// Required. The user-defined name of the Featurestore.
71-
// The name can be up to 128 characters long and can consist of any UTF-8
72-
// characters.
73-
// Display name of a Featurestore must be unique within a single Project and
74-
// Location Pair.
75-
string display_name = 2 [(google.api.field_behavior) = REQUIRED];
76-
7770
// Output only. Timestamp when this Featurestore was created.
7871
google.protobuf.Timestamp create_time = 3 [(google.api.field_behavior) = OUTPUT_ONLY];
7972

google/cloud/aiplatform/v1beta1/featurestore_service.proto

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -413,7 +413,7 @@ message UpdateFeaturestoreRequest {
413413
// * `display_name`
414414
// * `labels`
415415
// * `online_serving_config.fixed_node_count`
416-
// * `online_serving_config.max_online_serving_size`
416+
// * `retention_policy.online_storage_ttl_days`
417417
google.protobuf.FieldMask update_mask = 2;
418418
}
419419

@@ -510,6 +510,13 @@ message ImportFeatureValuesResponse {
510510

511511
// Number of Feature values that have been imported by the operation.
512512
int64 imported_feature_value_count = 2;
513+
514+
// The number of rows in input source that weren't imported due to either
515+
// * Not having any featureValues.
516+
// * Having a null entityId.
517+
// * Having a null timestamp.
518+
// * Not being parsable (applicable for CSV sources).
519+
int64 invalid_row_count = 6;
513520
}
514521

515522
// Request message for [FeaturestoreService.BatchReadFeatureValues][google.cloud.aiplatform.v1beta1.FeaturestoreService.BatchReadFeatureValues].
@@ -1124,6 +1131,13 @@ message ImportFeatureValuesOperationMetadata {
11241131

11251132
// Number of feature values that have been imported by the operation.
11261133
int64 imported_feature_value_count = 3;
1134+
1135+
// The number of rows in input source that weren't imported due to either
1136+
// * Not having any featureValues.
1137+
// * Having a null entityId.
1138+
// * Having a null timestamp.
1139+
// * Not being parsable (applicable for CSV sources).
1140+
int64 invalid_row_count = 6;
11271141
}
11281142

11291143
// Details of operations that exports Features values.

google/cloud/aiplatform/v1beta1/index_service.proto

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ message NearestNeighborSearchOperationMetadata {
237237
// should check against error_type as the source of truth.
238238
string error_message = 2;
239239

240-
// GCS uri pointing to the original file in user's bucket.
240+
// Cloud Storage URI pointing to the original file in user's bucket.
241241
string source_gcs_uri = 3;
242242

243243
// Empty if the embedding id is failed to parse.
@@ -248,7 +248,7 @@ message NearestNeighborSearchOperationMetadata {
248248
}
249249

250250
message ContentValidationStats {
251-
// GCS uri pointing to the original file in user's bucket.
251+
// Cloud Storage URI pointing to the original file in user's bucket.
252252
string source_gcs_uri = 1;
253253

254254
// Number of records in this file that were successfully processed.

google/cloud/aiplatform/v1beta1/tensorboard.proto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ option java_multiple_files = true;
2727
option java_outer_classname = "TensorboardProto";
2828
option java_package = "com.google.cloud.aiplatform.v1beta1";
2929

30-
// Tensorboard is a physical database that stores users training metrics.
30+
// Tensorboard is a physical database that stores users' training metrics.
3131
// A default Tensorboard is provided in each region of a GCP project.
3232
// If needed users can also create extra Tensorboards in their projects.
3333
message Tensorboard {

0 commit comments

Comments
 (0)