Make PUT and DELETE consistent for _mapping, _alias and _warmer
See issue #4071
PUT options for _mapping:
Single type can now be added with
`[PUT|POST] {index|_all|*|regex|blank}/[_mapping|_mappings]/type`
and
`[PUT|POST] {index|_all|*|regex|blank}/type/[_mapping|_mappings]`
PUT options for _warmer:
PUT with a single warmer can now be done with
`[PUT|POST] {index|_all|*|prefix*|blank}/{type|_all|*|prefix*|blank}/[_warmer|_warmers]/warmer_name`
PUT options for _alias:
Single alias can now be PUT with
`[PUT|POST] {index|_all|*|prefix*|blank}/[_alias|_aliases]/alias`
DELETE options _mapping:
Several mappings can be deleted at once by defining several indices and types with
`[DELETE] /{index}/{type}`
`[DELETE] /{index}/{type}/_mapping`
`[DELETE] /{index}/_mapping/{type}`
where
`index= * | _all | glob pattern | name1, name2, …`
`type= * | _all | glob pattern | name1, name2, …`
Alternatively, the keyword `_mapings` can be used.
DELETE options for _warmer:
Several warmers can be deleted at once by defining several indices and names with
`[DELETE] /{index}/_warmer/{type}`
where
`index= * | _all | glob pattern | name1, name2, …`
`type= * | _all | glob pattern | name1, name2, …`
Alternatively, the keyword `_warmers` can be used.
DELETE options for _alias:
Several aliases can be deleted at once by defining several indices and names with
`[DELETE] /{index}/_alias/{type}`
where
`index= * | _all | glob pattern | name1, name2, …`
`type= * | _all | glob pattern | name1, name2, …`
Alternatively, the keyword `_aliases` can be used.
2014-01-08 04:34:48 -05:00
|
|
|
setup:
|
|
|
|
|
|
|
|
- do:
|
|
|
|
indices.create:
|
|
|
|
index: test_index1
|
|
|
|
body:
|
|
|
|
mappings: { test_type1: { }}
|
|
|
|
|
|
|
|
- do:
|
|
|
|
indices.create:
|
|
|
|
index: test_index2
|
|
|
|
body:
|
|
|
|
mappings: { test_type2: { }}
|
|
|
|
- do:
|
|
|
|
indices.create:
|
|
|
|
index: foo
|
|
|
|
body:
|
|
|
|
mappings: { test_type2: { }}
|
|
|
|
|
2014-05-09 06:04:25 -04:00
|
|
|
- do:
|
|
|
|
cluster.health:
|
2014-07-07 16:17:07 -04:00
|
|
|
wait_for_status: yellow
|
Make PUT and DELETE consistent for _mapping, _alias and _warmer
See issue #4071
PUT options for _mapping:
Single type can now be added with
`[PUT|POST] {index|_all|*|regex|blank}/[_mapping|_mappings]/type`
and
`[PUT|POST] {index|_all|*|regex|blank}/type/[_mapping|_mappings]`
PUT options for _warmer:
PUT with a single warmer can now be done with
`[PUT|POST] {index|_all|*|prefix*|blank}/{type|_all|*|prefix*|blank}/[_warmer|_warmers]/warmer_name`
PUT options for _alias:
Single alias can now be PUT with
`[PUT|POST] {index|_all|*|prefix*|blank}/[_alias|_aliases]/alias`
DELETE options _mapping:
Several mappings can be deleted at once by defining several indices and types with
`[DELETE] /{index}/{type}`
`[DELETE] /{index}/{type}/_mapping`
`[DELETE] /{index}/_mapping/{type}`
where
`index= * | _all | glob pattern | name1, name2, …`
`type= * | _all | glob pattern | name1, name2, …`
Alternatively, the keyword `_mapings` can be used.
DELETE options for _warmer:
Several warmers can be deleted at once by defining several indices and names with
`[DELETE] /{index}/_warmer/{type}`
where
`index= * | _all | glob pattern | name1, name2, …`
`type= * | _all | glob pattern | name1, name2, …`
Alternatively, the keyword `_warmers` can be used.
DELETE options for _alias:
Several aliases can be deleted at once by defining several indices and names with
`[DELETE] /{index}/_alias/{type}`
where
`index= * | _all | glob pattern | name1, name2, …`
`type= * | _all | glob pattern | name1, name2, …`
Alternatively, the keyword `_aliases` can be used.
2014-01-08 04:34:48 -05:00
|
|
|
---
|
|
|
|
"delete with _all index":
|
|
|
|
- do:
|
|
|
|
indices.delete_mapping:
|
|
|
|
index: _all
|
|
|
|
type: test_type2
|
|
|
|
|
|
|
|
- do:
|
|
|
|
indices.exists_type:
|
|
|
|
index: test_index1
|
|
|
|
type: test_type1
|
|
|
|
|
|
|
|
- is_true: ''
|
|
|
|
|
|
|
|
- do:
|
|
|
|
indices.exists_type:
|
|
|
|
index: test_index2
|
|
|
|
type: test_type2
|
|
|
|
|
|
|
|
- is_false: ''
|
|
|
|
|
|
|
|
- do:
|
|
|
|
indices.exists_type:
|
|
|
|
index: foo
|
|
|
|
type: test_type2
|
|
|
|
|
|
|
|
- is_false: ''
|
|
|
|
|
|
|
|
---
|
|
|
|
"delete with * index":
|
|
|
|
- do:
|
|
|
|
indices.delete_mapping:
|
|
|
|
index: '*'
|
|
|
|
type: test_type2
|
|
|
|
|
|
|
|
- do:
|
|
|
|
indices.exists_type:
|
|
|
|
index: test_index1
|
|
|
|
type: test_type1
|
|
|
|
|
|
|
|
- is_true: ''
|
|
|
|
|
|
|
|
- do:
|
|
|
|
indices.exists_type:
|
|
|
|
index: test_index2
|
|
|
|
type: test_type2
|
|
|
|
|
|
|
|
- is_false: ''
|
|
|
|
|
|
|
|
- do:
|
|
|
|
indices.exists_type:
|
|
|
|
index: foo
|
|
|
|
type: test_type2
|
|
|
|
|
|
|
|
- is_false: ''
|
|
|
|
|
|
|
|
---
|
|
|
|
"delete with prefix* index":
|
|
|
|
- do:
|
|
|
|
indices.delete_mapping:
|
|
|
|
index: test*
|
|
|
|
type: test_type2
|
|
|
|
|
|
|
|
- do:
|
|
|
|
indices.exists_type:
|
|
|
|
index: test_index1
|
|
|
|
type: test_type1
|
|
|
|
|
|
|
|
- is_true: ''
|
|
|
|
|
|
|
|
- do:
|
|
|
|
indices.exists_type:
|
|
|
|
index: test_index2
|
|
|
|
type: test_type2
|
|
|
|
|
|
|
|
- is_false: ''
|
|
|
|
|
|
|
|
- do:
|
|
|
|
indices.exists_type:
|
|
|
|
index: foo
|
|
|
|
type: test_type2
|
|
|
|
|
|
|
|
- is_true: ''
|
|
|
|
|
|
|
|
---
|
|
|
|
"delete with list of indices":
|
|
|
|
|
|
|
|
- do:
|
|
|
|
indices.delete_mapping:
|
|
|
|
index: test_index1,test_index2
|
|
|
|
type: test_type2
|
|
|
|
|
|
|
|
- do:
|
|
|
|
indices.exists_type:
|
|
|
|
index: test_index1
|
|
|
|
type: test_type1
|
|
|
|
|
|
|
|
- is_true: ''
|
|
|
|
|
|
|
|
- do:
|
|
|
|
indices.exists_type:
|
|
|
|
index: test_index2
|
|
|
|
type: test_type2
|
|
|
|
|
|
|
|
- is_false: ''
|
|
|
|
|
|
|
|
- do:
|
|
|
|
indices.exists_type:
|
|
|
|
index: foo
|
|
|
|
type: test_type2
|
|
|
|
|
|
|
|
- is_true: ''
|
|
|
|
|
|
|
|
---
|
|
|
|
"delete with index list and _all type":
|
|
|
|
- do:
|
|
|
|
indices.delete_mapping:
|
|
|
|
index: test_index1,test_index2
|
|
|
|
type: _all
|
|
|
|
|
|
|
|
- do:
|
|
|
|
indices.exists_type:
|
|
|
|
index: test_index1
|
|
|
|
type: test_type1
|
|
|
|
|
|
|
|
- is_false: ''
|
|
|
|
|
|
|
|
- do:
|
|
|
|
indices.exists_type:
|
|
|
|
index: test_index2
|
|
|
|
type: test_type2
|
|
|
|
|
|
|
|
- is_false: ''
|
|
|
|
|
|
|
|
- do:
|
|
|
|
indices.exists_type:
|
|
|
|
index: foo
|
|
|
|
type: test_type2
|
|
|
|
|
|
|
|
- is_true: ''
|
|
|
|
|
|
|
|
|
|
|
|
---
|
|
|
|
"delete with index list and * type":
|
|
|
|
- do:
|
|
|
|
indices.delete_mapping:
|
|
|
|
index: test_index1,test_index2
|
|
|
|
type: '*'
|
|
|
|
|
|
|
|
- do:
|
|
|
|
indices.exists_type:
|
|
|
|
index: test_index1
|
|
|
|
type: test_type1
|
|
|
|
|
|
|
|
- is_false: ''
|
|
|
|
|
|
|
|
- do:
|
|
|
|
indices.exists_type:
|
|
|
|
index: test_index2
|
|
|
|
type: test_type2
|
|
|
|
|
|
|
|
- is_false: ''
|
|
|
|
|
|
|
|
- do:
|
|
|
|
indices.exists_type:
|
|
|
|
index: foo
|
|
|
|
type: test_type2
|
|
|
|
|
|
|
|
- is_true: ''
|
|
|
|
|
|
|
|
|
|
|
|
---
|
|
|
|
"delete with index list and prefix* type":
|
|
|
|
- do:
|
|
|
|
indices.delete_mapping:
|
|
|
|
index: test_index1,test_index2
|
|
|
|
type: '*2'
|
|
|
|
|
|
|
|
- do:
|
|
|
|
indices.exists_type:
|
|
|
|
index: test_index1
|
|
|
|
type: test_type1
|
|
|
|
|
|
|
|
- is_true: ''
|
|
|
|
|
|
|
|
- do:
|
|
|
|
indices.exists_type:
|
|
|
|
index: test_index2
|
|
|
|
type: test_type2
|
|
|
|
|
|
|
|
- is_false: ''
|
|
|
|
|
|
|
|
- do:
|
|
|
|
indices.exists_type:
|
|
|
|
index: foo
|
|
|
|
type: test_type2
|
|
|
|
|
|
|
|
- is_true: ''
|
|
|
|
|
|
|
|
---
|
|
|
|
"delete with index list and list of types":
|
|
|
|
- do:
|
|
|
|
indices.delete_mapping:
|
|
|
|
index: test_index1,test_index2
|
|
|
|
type: test_type1,test_type2
|
|
|
|
|
|
|
|
- do:
|
|
|
|
indices.exists_type:
|
|
|
|
index: test_index1
|
|
|
|
type: test_type1
|
|
|
|
|
|
|
|
- is_false: ''
|
|
|
|
|
|
|
|
- do:
|
|
|
|
indices.exists_type:
|
|
|
|
index: test_index2
|
|
|
|
type: test_type2
|
|
|
|
|
|
|
|
- is_false: ''
|
|
|
|
|
|
|
|
- do:
|
|
|
|
indices.exists_type:
|
|
|
|
index: foo
|
|
|
|
type: test_type2
|
|
|
|
|
|
|
|
- is_true: ''
|
|
|
|
|
|
|
|
---
|
|
|
|
"check 404 on no matching type":
|
|
|
|
- do:
|
|
|
|
catch: missing
|
|
|
|
indices.delete_mapping:
|
|
|
|
index: "*"
|
|
|
|
type: "non_existent"
|
|
|
|
|
|
|
|
- do:
|
|
|
|
catch: missing
|
|
|
|
indices.delete_mapping:
|
|
|
|
index: "non_existent"
|
|
|
|
type: "test_type1"
|
|
|
|
|
|
|
|
---
|
|
|
|
"check delete with blank index and blank type":
|
|
|
|
- do:
|
|
|
|
catch: param
|
|
|
|
indices.delete_mapping:
|
|
|
|
name: "test_type1"
|
|
|
|
|
|
|
|
- do:
|
|
|
|
catch: param
|
|
|
|
indices.delete_mapping:
|
|
|
|
index: "test_index1"
|
|
|
|
|