# .keyword field not working & how can i split sentence?

**URL:** https://discuss.elastic.co/t/keyword-field-not-working-how-can-i-split-sentence/142136
**Category:** Kibana
**Created:** [July 30, 2018, 9:17am UTC](https://discuss.elastic.co/t/keyword-field-not-working-how-can-i-split-sentence/142136 "2018-07-30T09:17:43Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![da02d4d6e86247f19849](https://avatars.discourse-cdn.com/v4/letter/d/7ea924/32.png) [@da02d4d6e86247f19849](https://discuss.elastic.co/u/da02d4d6e86247f19849)
#### Post date: [July 30, 2018, 9:17am UTC](https://discuss.elastic.co/t/keyword-field-not-working-how-can-i-split-sentence/142136/1 "2018-07-30T09:17:43Z")

</div>

![123](https://us1.discourse-cdn.com/elastic/original/3X/a/2/a26b1d5628cf9d478bb8623ff4b273f73c8cb090.PNG)

i crawling news from [https://www.fastcompany.com](https://www.fastcompany.com), and i put it on kibana with JSON form

but .keyword field is missing... as you can see pic[2]

 ![1234](https://us1.discourse-cdn.com/elastic/original/3X/6/e/6ed98f54e861ee0793553f825ab3049f908d236c.png)

my json file is here.

> **[bitcoin hacking.txt](https://drive.google.com/file/d/1HCl1mbqTsmJI5lsafQE0lHbeNIg0ZBzX/view?usp=drive_open)**
>
> Google Drive file.

my question is..

Q1. what do i to normalization of the .keyword field ? is there any mistakes?

Q2. when i figure Q1, how can i split sentense from .keyword field?

i use elastic cloud.

---

<div class="post-metadata">

### Author: ![Brandon\_Kobel](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/brandon_kobel/32/14829_2.png) [@Brandon\_Kobel](https://discuss.elastic.co/u/Brandon_Kobel)
#### Post date: [July 30, 2018, 4:52pm UTC](https://discuss.elastic.co/t/keyword-field-not-working-how-can-i-split-sentence/142136/2 "2018-07-30T16:52:03Z")

</div>

Hey @da02d4d6e86247f19849, the `description.keyword` field is an unanalyzed string field of type [keyword](https://www.elastic.co/guide/en/elasticsearch/reference/master/keyword.html), if you're using the default dynamic mappings then it's configured to ignore text that is over 256 characters, which is why you aren't able to do a terms aggregation on it.

If you use `description` then it's going to be an analyzed [text](https://www.elastic.co/guide/en/elasticsearch/reference/master/text.html) field which is already "split" by words using the [standard analyzer](https://www.elastic.co/guide/en/elasticsearch/reference/master/analysis-standard-analyzer.html).

---

<div class="post-metadata">

### Author: ![Brandon\_Kobel](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/brandon_kobel/32/14829_2.png) [@Brandon\_Kobel](https://discuss.elastic.co/u/Brandon_Kobel)
#### Post date: [July 30, 2018, 5:10pm UTC](https://discuss.elastic.co/t/keyword-field-not-working-how-can-i-split-sentence/142136/3 "2018-07-30T17:10:40Z")

</div>

Also, if you wish to do terms aggregations on the analyzed field's terms, you'll want to enable [fielddata](https://www.elastic.co/guide/en/elasticsearch/reference/master/fielddata.html).

---

<div class="post-metadata">

### Author: ![system](https://us1.discourse-cdn.com/elastic/original/3X/1/a/1ac57faf039f6b580b3f104ef42a2a89e41014de.png) [@system](https://discuss.elastic.co/u/system)
#### Post date: [August 27, 2018, 5:10pm UTC](https://discuss.elastic.co/t/keyword-field-not-working-how-can-i-split-sentence/142136/4 "2018-08-27T17:10:40Z")

</div>

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.
