Enum PushJobCheckpoints

  • All Implemented Interfaces:
    VeniceEnumValue, java.io.Serializable, java.lang.Comparable<PushJobCheckpoints>

    public enum PushJobCheckpoints
    extends java.lang.Enum<PushJobCheckpoints>
    implements VeniceEnumValue
    Different successful checkpoints and known error scenarios of the VPJ flow. 1. The enums are not sequential 2. Non-negative enums are successful checkpoints 3. Negative enums are error scenarios (Can be user or system errors)
    • Enum Constant Detail

      • DATA_WRITER_JOB_COMPLETED

        public static final PushJobCheckpoints DATA_WRITER_JOB_COMPLETED
      • START_JOB_STATUS_POLLING

        public static final PushJobCheckpoints START_JOB_STATUS_POLLING
      • JOB_STATUS_POLLING_COMPLETED

        public static final PushJobCheckpoints JOB_STATUS_POLLING_COMPLETED
      • START_VALIDATE_SCHEMA_AND_BUILD_DICT_MAP_JOB

        public static final PushJobCheckpoints START_VALIDATE_SCHEMA_AND_BUILD_DICT_MAP_JOB
      • VALIDATE_SCHEMA_AND_BUILD_DICT_MAP_JOB_COMPLETED

        public static final PushJobCheckpoints VALIDATE_SCHEMA_AND_BUILD_DICT_MAP_JOB_COMPLETED
      • INPUT_DATA_SCHEMA_VALIDATION_FAILED

        public static final PushJobCheckpoints INPUT_DATA_SCHEMA_VALIDATION_FAILED
      • EXTENDED_INPUT_DATA_SCHEMA_VALIDATION_FAILED

        public static final PushJobCheckpoints EXTENDED_INPUT_DATA_SCHEMA_VALIDATION_FAILED
      • ZSTD_DICTIONARY_CREATION_FAILED

        public static final PushJobCheckpoints ZSTD_DICTIONARY_CREATION_FAILED
      • DVC_INGESTION_ERROR_DISK_FULL

        public static final PushJobCheckpoints DVC_INGESTION_ERROR_DISK_FULL
      • DVC_INGESTION_ERROR_MEMORY_LIMIT_REACHED

        public static final PushJobCheckpoints DVC_INGESTION_ERROR_MEMORY_LIMIT_REACHED
      • DVC_INGESTION_ERROR_TOO_MANY_DEAD_INSTANCES

        public static final PushJobCheckpoints DVC_INGESTION_ERROR_TOO_MANY_DEAD_INSTANCES
      • DVC_INGESTION_ERROR_OTHER

        public static final PushJobCheckpoints DVC_INGESTION_ERROR_OTHER
    • Method Detail

      • values

        public static PushJobCheckpoints[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (PushJobCheckpoints c : PushJobCheckpoints.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static PushJobCheckpoints valueOf​(java.lang.String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null
      • valueOf

        public static PushJobCheckpoints valueOf​(int value)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        value - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null