Hi,
I'm trying to insert documents in ES 6.2. My concern is when I'm inserting data into ES by mapping one of index and mentioning
"index": false,
This is my mapping query:
' "state": {
"type": "text",
"index": false,
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 256
}
}
}
Data is not getting populating in ES 6.2. And same code is inserting data when I'm removing ** "index": false,** field from mapping .
Can you please quickly help me to find the issue. I've written the code in JAVA