mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-07 05:28:34 +00:00
Some yaml tests still used the 'gtelte' feature in their skip section. Since all language clients support this, the feature skip can be removed.
86 lines
1.5 KiB
YAML
86 lines
1.5 KiB
YAML
---
|
|
"TTL":
|
|
|
|
- do:
|
|
indices.create:
|
|
index: test_1
|
|
body:
|
|
mappings:
|
|
test:
|
|
_ttl:
|
|
enabled: 1
|
|
default: 10s
|
|
- do:
|
|
cluster.health:
|
|
wait_for_status: yellow
|
|
|
|
# blank ttl
|
|
- do:
|
|
index:
|
|
index: test_1
|
|
type: test
|
|
id: 1
|
|
body: { foo: bar }
|
|
|
|
- do:
|
|
get:
|
|
index: test_1
|
|
type: test
|
|
id: 1
|
|
fields: _ttl
|
|
|
|
- lte: { fields._ttl: 10000}
|
|
- gt: { fields._ttl: 0}
|
|
|
|
# milliseconds
|
|
|
|
- do:
|
|
index:
|
|
index: test_1
|
|
type: test
|
|
id: 1
|
|
body: { foo: bar }
|
|
ttl: 100000
|
|
- do:
|
|
get:
|
|
index: test_1
|
|
type: test
|
|
id: 1
|
|
fields: _ttl
|
|
|
|
- lte: { fields._ttl: 100000}
|
|
- gt: { fields._ttl: 10000}
|
|
|
|
# duration
|
|
|
|
- do:
|
|
index:
|
|
index: test_1
|
|
type: test
|
|
id: 1
|
|
body: { foo: bar }
|
|
ttl: 20s
|
|
|
|
- do:
|
|
get:
|
|
index: test_1
|
|
type: test
|
|
id: 1
|
|
fields: _ttl
|
|
|
|
- lte: { fields._ttl: 20000}
|
|
- gt: { fields._ttl: 10000}
|
|
|
|
# with timestamp
|
|
|
|
- do:
|
|
catch: /AlreadyExpiredException/
|
|
index:
|
|
index: test_1
|
|
type: test
|
|
id: 1
|
|
body: { foo: bar }
|
|
ttl: 20s
|
|
timestamp: 2013-06-23T18:14:40
|
|
|