All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.microsoft.azure.kusto.ingest.result.IngestionErrorCode Maven / Gradle / Ivy

There is a newer version: 5.2.0
Show newest version
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.

package com.microsoft.azure.kusto.ingest.result;

public enum IngestionErrorCode {
    /// 
    /// Unknown error occurred
    /// 
    Unknown,

    /// 
    /// Low memory condition.
    /// 
    Stream_LowMemoryCondition,

    /// 
    /// Wrong number of fields.
    /// 
    Stream_WrongNumberOfFields,

    /// 
    /// Input stream/record/field too large.
    /// 
    Stream_InputStreamTooLarge,

    /// 
    /// No data streams to ingest
    /// 
    Stream_NoDataToIngest,

    /// 
    /// Invalid csv format - closing quote missing.
    /// 
    Stream_ClosingQuoteMissing,

    /// 
    /// Failed to download source from Azure storage - source not found
    /// 
    Download_SourceNotFound,

    /// 
    /// Failed to download source from Azure storage - access condition not satisfied
    /// 
    Download_AccessConditionNotSatisfied,

    /// 
    /// Failed to download source from Azure storage - access forbidden
    /// 
    Download_Forbidden,

    /// 
    /// Failed to download source from Azure storage - account not found
    /// 
    Download_AccountNotFound,

    /// 
    /// Failed to download source from Azure storage - bad request
    /// 
    Download_BadRequest,

    /// 
    /// Failed to download source from Azure storage - not transient error
    /// 
    Download_NotTransient,

    /// 
    /// Failed to download source from Azure storage - Unknown error
    /// 
    Download_UnknownError,

    /// 
    /// Access to database is denied.
    /// 
    BadRequest_DatabaseAccessDenied,

    /// 
    /// Authentication to data isn't valid.
    /// 
    BadRequest_InvalidAuthentication,

    /// 
    /// Failed to invoke update policy. Query schema does not match table schema
    /// 
    UpdatePolicy_QuerySchemaDoesNotMatchTableSchema,

    /// 
    /// Failed to invoke update policy. Failed descendant transactional update policy
    /// 
    UpdatePolicy_FailedDescendantTransaction,

    /// 
    /// Failed to invoke update policy. Ingestion Error occurred
    /// 
    UpdatePolicy_IngestionError,

    /// 
    /// Failed to invoke update policy. Unknown error occurred
    /// 
    UpdatePolicy_UnknownError,

    /// 
    /// Json pattern was not ingested with jsonMapping parameter
    /// 
    BadRequest_MissingJsonMappingtFailure,

    /// 
    /// Blob is invalid or empty zip archive
    /// 
    BadRequest_InvalidOrEmptyBlob,

    /// 
    /// Database does not exist
    /// 
    BadRequest_DatabaseNotExist,

    /// 
    /// Table does not exist
    /// 
    BadRequest_TableNotExist,

    /// 
    /// Invalid kusto identity token
    /// 
    BadRequest_InvalidKustoIdentityToken,

    /// 
    /// Insufficient security permissions to execute request.
    /// 
    Forbidden,

    /// 
    /// Blob path without SAS from Unknown blob storage
    /// 
    BadRequest_UriMissingSas,

    /// 
    /// File too large
    /// 
    BadRequest_FileTooLarge,

    /// 
    /// No valid reply from ingest command
    /// 
    BadRequest_NoValidResponseFromEngine,

    /// 
    /// Access to table is denied
    /// 
    BadRequest_TableAccessDenied,

    /// 
    /// Message is exhausted
    /// 
    BadRequest_MessageExhausted,

    /// 
    /// Bad request
    /// 
    General_BadRequest,

    /// 
    /// Internal server error occurred
    /// 
    General_InternalServerError,

    /// 
    /// Failed to invoke update policy. Cyclic update is not allowed
    /// 
    UpdatePolicy_Cyclic_Update_Not_Allowed,

    /// 
    /// Failed to invoke update policy. Transactional update policy is not allowed in streaming ingestion
    /// 
    UpdatePolicy_Transactional_Not_Allowed_In_Streaming_Ingestion,

    /// 
    /// Blob is empty.
    /// 
    BadRequest_EmptyBlob,

    /// 
    /// Blob Uri is empty..
    /// 
    BadRequest_EmptyBlobUri,

    /// 
    /// Ingestion properties include both ingestionMapping and ingestionMappingReference, which isn't valid.
    /// 
    BadRequest_DuplicateMapping,

    /// 
    /// Table name is empty or invalid.
    /// 
    BadRequest_InvalidOrEmptyTableName,

    /// 
    /// Database name is empty.
    /// 
    BadRequest_EmptyDatabaseName,

    /// 
    /// Some formats should get ingestion mapping to be ingested and the mapping reference is empty.
    /// 
    BadRequest_EmptyMappingReference,

    /// 
    /// Failed to parse csv mapping.
    /// 
    BadRequest_InvalidCsvMapping,

    /// 
    /// Invalid mapping.
    /// 
    BadRequest_InvalidMapping,

    /// 
    /// Invalid mapping reference.
    /// 
    BadRequest_InvalidMappingReference,

    /// 
    /// Mapping reference wasn't found.
    /// 
    BadRequest_MappingReferenceWasNotFound,

    /// 
    /// Azure Data Explorer entity (such as mapping, database, or table) wasn't found.
    /// 
    BadRequest_EntityNotFound,

    /// 
    /// Failed to parse Json mapping.
    /// 
    BadRequest_InvalidJsonMapping,

    /// 
    /// Blob is invalid.
    /// 
    BadRequest_InvalidBlob,

    /// 
    /// Format is not supported
    /// 
    BadRequest_FormatNotSupported,

    /// 
    /// Archive is empty.
    /// 
    BadRequest_EmptyArchive,

    /// 
    /// Archive is invalid.
    /// 
    BadRequest_InvalidArchive,

    /// 
    /// Message is corrupted
    /// 
    BadRequest_CorruptedMessage,

    /// 
    /// Inconsistent ingestion mapping
    /// 
    BadRequest_InconsistentMapping,

    /// 
    /// Syntax error
    /// 
    BadRequest_SyntaxError,

    /// 
    /// Unexpected character in the input stream.
    /// 
    BadRequest_UnexpectedCharacterInInputStream,

    /// 
    /// Table has zero retention policy and isn't the source table for any update policy.
    /// 
    BadRequest_ZeroRetentionPolicyWithNoUpdatePolicy,

    /// 
    /// Creation time that was specified for ingestion, isn't within the SoftDeletePeriod.
    /// 
    BadRequest_CreationTimeEarlierThanSoftDeletePeriod,

    /// 
    /// Request not supported.
    /// 
    BadRequest_NotSupported,

    /// 
    /// Entity name isn't valid.
    /// 
    BadRequest_EntityNameIsNotValid,

    /// 
    /// Ingestion property is malformed.
    /// 
    BadRequest_MalformedIngestionProperty,

    /// 
    /// Ingestion property isn't supported in this context.
    /// 
    BadRequest_IngestionPropertyNotSupportedInThisContext,

    /// 
    /// Blob URI is invalid.
    /// 
    BadRequest_InvalidBlobUri,

    /// 
    /// Abandoned ingestion.
    /// 
    General_AbandonedIngestion,

    /// 
    /// Throttled ingestion.
    /// 
    General_ThrottledIngestion,

    /// 
    /// Schema of target table at start time doesn't match the one at commit time.
    /// 
    General_TransientSchemaMismatch,

    /// 
    /// Avro and Json formats must be ingested with ingestionMapping or ingestionMappingReference parameter..
    /// 
    BadRequest_MissingMappingtFailure,

    /// 
    /// The data contains too large values in a dynamic column. HRESULT: 0x80DA000E.
    /// 
    Stream_DynamicPropertyBagTooLarge,

    /// 
    /// Operation has exceeded the retry attempts limit or timespan limit following a recurring transient error.
    /// 
    General_RetryAttemptsExceeded,

    /// 
    /// The operation has been aborted because of timeout.
    /// 
    Timeout,

    /// 
    /// Ingestion operation ran out of memory.
    /// 
    OutOfMemory,

    /// 
    /// Failed to update schema permanently.
    /// 
    Schema_PermanentUpdateFailure,

    /// 
    /// A new error code unknown to the client
    /// 
    Misc,
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy