Interface ImportFeatureValuesResponseOrBuilder

All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
All Known Implementing Classes:
ImportFeatureValuesResponse, ImportFeatureValuesResponse.Builder

@Generated public interface ImportFeatureValuesResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
  • Method Summary

    Modifier and Type
    Method
    Description
    long
    Number of entities that have been imported by the operation.
    long
    Number of Feature values that have been imported by the operation.
    long
    The number of rows in input source that weren't imported due to either * Not having any featureValues
    long
    The number rows that weren't ingested due to having feature timestamps outside the retention boundary.

    Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

    isInitialized

    Methods inherited from interface com.google.protobuf.MessageOrBuilder

    findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
  • Method Details

    • getImportedEntityCount

      long getImportedEntityCount()
       Number of entities that have been imported by the operation.
       
      int64 imported_entity_count = 1;
      Returns:
      The importedEntityCount.
    • getImportedFeatureValueCount

      long getImportedFeatureValueCount()
       Number of Feature values that have been imported by the operation.
       
      int64 imported_feature_value_count = 2;
      Returns:
      The importedFeatureValueCount.
    • getInvalidRowCount

      long getInvalidRowCount()
       The number of rows in input source that weren't imported due to either
       * Not having any featureValues.
       * Having a null entityId.
       * Having a null timestamp.
       * Not being parsable (applicable for CSV sources).
       
      int64 invalid_row_count = 6;
      Returns:
      The invalidRowCount.
    • getTimestampOutsideRetentionRowsCount

      long getTimestampOutsideRetentionRowsCount()
       The number rows that weren't ingested due to having feature timestamps
       outside the retention boundary.
       
      int64 timestamp_outside_retention_rows_count = 4;
      Returns:
      The timestampOutsideRetentionRowsCount.