0x01: services #
Subdomain: 0x0101: storage #
id / code | class / status | message | description |
---|---|---|---|
services.storage.unknown_index0x01010001 | PreconditionError (412) | The index "%s" does not exist. | The provided data index does not exist |
services.storage.unknown_collection0x01010002 | PreconditionError (412) | The collection "%s":"%s" does not exist. | The provided data collection does not exist |
services.storage.get_limit_exceeded0x01010003 | SizeLimitError (413) | The number of documents returned by this request exceeds the configured server limit. | The number of documents returned by this request exceeds the configured server limit |
services.storage.write_limit_exceeded0x01010004 | SizeLimitError (413) | The number of documents edited by this request exceeds the configured server limit. | The number of documents edited by this request exceeds the configured server limit |
services.storage.import_failed0x01010005 | PartialError (206) | Failed to import some or all documents. | Failed to import some or all documents |
services.storage.no_multi_indexes0x01010006 | BadRequestError (400) | Cannot be run on multiple indexes. | Cannot be run on multiple indexes |
services.storage.no_multi_collections0x01010007 | BadRequestError (400) | Cannot be run on multiple collections. | Cannot be run on multiple collections |
services.storage.incomplete_delete0x01010009 | PartialError (206) | Couldn't delete all the requested documents: %s | Couldn't delete all the requested documents |
services.storage.not_found0x0101000b | NotFoundError (404) | Document "%s" not found in "%s":"%s". | Document not found |
services.storage.bootstrap_timeout0x0101000c | InternalError (500) | %s: bootstrap failed - lock wait timeout exceeded. | Bootstrap of a storage instance failed because it has been locked for too much time |
services.storage.version_mismatch0x0101000d | InternalError (500) | Your elasticsearch version is %s; Only elasticsearch version 5 is currently supported. | The version of the target Elasticsearch is not compatible with this version of Kuzzle |
services.storage.unknown_scroll_id0x0101000e | NotFoundError (404) | Non-existing or expired scroll identifier. | The scroll identifier does not exist or has expired |
services.storage.search_as_an_id0x0101000f | BadRequestError (400) | _search is not a valid document identifier | Used "_search" as a document identifier, which conflicts with the _search HTTP route |
services.storage.unknown_index_collection0x01010010 | PreconditionError (412) | The provided index and/or collection doesn't exist. | The provided index and/or collection doesn't exist |
services.storage.document_already_exists0x01010011 | BadRequestError (400) | Document already exists. | A document with the same identifier already exists |
services.storage.missing_argument0x01010012 | BadRequestError (400) | Required argument "%s" is missing or is empty | A required argument is missing or is empty |
services.storage.invalid_argument0x01010013 | BadRequestError (400) | Argument "%s" is invalid (expected: %s) | Invalid argument provided |
services.storage.index_protected0x01010014 Deprecated since 2.5.0 | BadRequestError (400) | Index '%s' is protected, use the appropriated routes instead. | The content of a protected index cannot be modified with generic API routes |
services.storage.invalid_mapping0x01010015 | BadRequestError (400) | Invalid mapping property "mappings.%s".%s | The provided mapping is invalid |
services.storage.collection_reserved0x01010016 | BadRequestError (400) | Invalid collection name. "%s" is reserved for internal usage. | Collections cannot be named "_kuzzle_keep" because it is reserved for internal use. |
services.storage.no_routing0x01010017 | BadRequestError (400) | The "_routing" keyword is forbidden. | The "_routing" keyword is forbidden |
services.storage.not_connected0x01010018 | ExternalServiceError (500) | Elasticsearch service is not connected. | Unable to connect to the storage instance |
services.storage.too_many_operations0x01010019 | ExternalServiceError (500) | "%s" threads buffer exceeded. Too many operations received at once. | Too many operations received |
services.storage.cannot_change_mapping0x0101001a | BadRequestError (400) | Field "%s" already has a mapping, and it cannot be changed | Cannot change the mapping of a field (once set, a field mapping cannot be changed) |
services.storage.duplicate_field_mapping0x0101001b | BadRequestError (400) | Cannot set mapping for field "%s" on collection "%s" because this field name is already used in another collection, with a different type. | A same field cannot have different mappings within the same index (fields are shared to all of an index collections) |
services.storage.unexpected_properties0x0101001c | BadRequestError (400) | Property "%s" is not supported for field "%s". | Unexpected properties found |
services.storage.invalid_mapping_type0x0101001d | BadRequestError (400) | Field "%s": the data type "%s" doesn't exist | Unrecognized mapping data type |
services.storage.wrong_mapping_property0x0101001e | BadRequestError (400) | Cannot parse mapping property "%s" | A mapping property cannot be parsed |
services.storage.invalid_mapping_argument0x0101001f | BadRequestError (400) | Field "%s": invalid mapping property "%s". | Invalid mapping property |
services.storage.too_many_changes0x01010020 | ExternalServiceError (500) | Unable to modify document "%s": cluster sync failed (too many simultaneous changes applied) | Too many changes occured on the same resource in a small amount of time. Try with the "retryOnConflict" option |
services.storage.unexpected_bad_request0x01010021 | BadRequestError (400) | %s | Embeds an unexpected bad request error from Elasticsearch |
services.storage.unexpected_not_found0x01010022 | NotFoundError (404) | %s | Embeds an unexpected notfound error from Elasticsearch |
services.storage.unexpected_error0x01010023 | ExternalServiceError (500) | %s | Embeds an unexpected error from Elasticsearch |
services.storage.no_mapping_found0x01010025 | NotFoundError (404) | No mapping found for index "%s". | Attempted to read a non-existent mapping |
services.storage.index_already_exists0x01010026 | PreconditionError (412) | A %s index named "%s" already exists | Attempted to create an already existing index |
services.storage.forbidden_character0x01010027 Deprecated since 2.0.1 | BadRequestError (400) | An index or a collection name cannot contain the character "%s" | An index or a collection name contains a forbidden character |
services.storage.invalid_search_query0x01010028 | BadRequestError (400) | The argument "%s" is not allowed at this level of a search query. | A forbidden argument has been provided in the search query |
services.storage.invalid_index_name0x01010029 | BadRequestError (400) | The index name "%s" is invalid | A provided index name is invalid |
services.storage.invalid_collection_name0x0101002a | BadRequestError (400) | The collection name "%s" is invalid | A provided collection name is invalid |
services.storage.strict_mapping_rejection0x0101002b | BadRequestError (400) | Cannot create document. Field "%s" is not present in collection "%s:%s" strict mapping | Document rejected because it contains a field that is not declared in the strict mapping. |
services.storage.scroll_duration_too_great0x0101002c | BadRequestError (400) | Scroll duration "%s" is too great. | The scroll duration exceed the configured maxium value. (See config.services.storageEngine.maxScrollDuration) |
Subdomain: 0x0103: cache #
id / code | class / status | message | description |
---|---|---|---|
services.cache.database_not_found0x01030001 | NotFoundError (404) | Cache database "%s" not found. | Unknown cache database name |
services.cache.read_failed0x01030002 | InternalError (500) | Cache read fail: %s | An attempt to read from the cache failed |
services.cache.not_connected0x01030003 | ServiceUnavailableError (503) | Unable to connect to the cache server. | Unable to connect to the cache server |
services.cache.write_failed0x01030004 | InternalError (500) | Cache write fail: %s | An attempt to write to the cache failed |