Skip to content

Commit

Permalink
Create es_v8_index_template.json
Browse files Browse the repository at this point in the history
  • Loading branch information
rodrigozhou committed Aug 12, 2022
1 parent 938f32e commit 792702f
Showing 1 changed file with 82 additions and 0 deletions.
82 changes: 82 additions & 0 deletions host/testdata/es_v8_index_template.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
{
"order": 0,
"index_patterns": [
"test-visibility*"
],
"settings": {
"index": {
"number_of_shards": "5",
"number_of_replicas": "0"
}
},
"mappings": {
"dynamic": "false",
"properties": {
"NamespaceId": {
"type": "keyword"
},
"WorkflowId": {
"type": "keyword"
},
"RunId": {
"type": "keyword"
},
"WorkflowType": {
"type": "keyword"
},
"StartTime": {
"type": "date_nanos"
},
"ExecutionTime": {
"type": "date_nanos"
},
"CloseTime": {
"type": "date_nanos"
},
"ExecutionDuration": {
"type": "long"
},
"ExecutionStatus": {
"type": "keyword"
},
"HistoryLength": {
"type": "long"
},
"TemporalChangeVersion": {
"type": "keyword"
},
"CustomTextField": {
"type": "text"
},
"CustomKeywordField": {
"type": "keyword"
},
"CustomIntField": {
"type": "long"
},
"CustomDoubleField": {
"type": "scaled_float",
"scaling_factor": 10000
},
"CustomBoolField": {
"type": "boolean"
},
"CustomDatetimeField": {
"type": "date_nanos"
},
"BatcherNamespace": {
"type": "keyword"
},
"BatcherUser": {
"type": "keyword"
},
"BinaryChecksums": {
"type": "keyword"
},
"StateTransitionCount": {
"type": "long"
}
}
},
"aliases": {}
}

0 comments on commit 792702f

Please sign in to comment.