Interface ImportFeatureValuesResponseOrBuilder

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      long getImportedEntityCount()
      Number of entities that have been imported by the operation.
      long getImportedFeatureValueCount()
      Number of Feature values that have been imported by the operation.
      long getInvalidRowCount()
      The number of rows in input source that weren't imported due to either * Not having any featureValues.
      long getTimestampOutsideRetentionRowsCount()
      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 Detail

      • 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.