# Cannot display string in a visualization table of more than 256 letters

**URL:** https://discuss.elastic.co/t/cannot-display-string-in-a-visualization-table-of-more-than-256-letters/218890
**Category:** Kibana
**Created:** [February 12, 2020, 4:12am UTC](https://discuss.elastic.co/t/cannot-display-string-in-a-visualization-table-of-more-than-256-letters/218890 "2020-02-12T04:12:30Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![reyhanadp](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/reyhanadp/32/60990_2.png) [@reyhanadp](https://discuss.elastic.co/u/reyhanadp)
#### Post date: [February 12, 2020, 4:12am UTC](https://discuss.elastic.co/t/cannot-display-string-in-a-visualization-table-of-more-than-256-letters/218890/1 "2020-02-12T04:12:31Z")

</div>

hi everyone.

I have an example string that has a length of 256 as follows:

> Could not start executor. A required privilege is not held by the client. (Exception from HRESULT: 0x80070522) RemoteException wrapping System.Exception: Could not start executor. A required privilege is not held by the client. (Exception from HRESULT: 0x

if the string length is less than equal to 256 then it can be displayed in the Kibana visualization table.

 ![image](https://us1.discourse-cdn.com/elastic/original/3X/5/3/5337e77c7eaa60490f696128a292be4562081dd3.png)

but if I convert the data into a string whose length is above 256 then the data cannot be displayed in the Kibana visualization table.

> Could not start executor. A required privilege is not held by the client. (Exception from HRESULT: 0x80070522) RemoteException wrapping System.Exception: Could not start executor. A required privilege is not held by the client. (Exception from HRESULT: 0x80070522)

![image](https://us1.discourse-cdn.com/elastic/original/3X/d/9/d956385fb6ff09f99dc68f2a8564270758c150d5.png)

but the data can be displayed on Kibana discover

 ![image](https://us1.discourse-cdn.com/elastic/original/3X/3/f/3f68703604a9105cd42cbcabaab9b1b232d068da.png)

why did it happen like that?  
does the visualization table have a string limit?  
help please. thanks.

---

<div class="post-metadata">

### Author: ![flash1293](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/flash1293/32/41227_2.png) [@flash1293](https://discuss.elastic.co/u/flash1293)
#### Post date: [February 12, 2020, 11:45am UTC](https://discuss.elastic.co/t/cannot-display-string-in-a-visualization-table-of-more-than-256-letters/218890/2 "2020-02-12T11:45:16Z")

</div>

Hi @reyhanadp,

Discover shows the `source` of a document - this is the JSON as it looked like when the document got ingested in Elasticsearch.

Visualizations (as the table visualization) however work differently - they are using aggregations to fetch data which relies on the indexed values of the fields, not the raw contents during ingestion. In your case `Message` is probably a keyword field with a length of 256. You can confirm this by looking up your mapping:

```auto
GET /kibana_sample_data_logs/_mapping/field/extension.keyword

{
  "kibana_sample_data_logs" : {
    "mappings" : {
      "extension.keyword" : {
        "full_name" : "extension.keyword",
        "mapping" : {
          "keyword" : {
            "type" : "keyword",
            "ignore_above" : 256
          }
        }
      }
    }
  }
}

```

In this example the `extension.keyword` field has an `ignore_above` property of 256 which means everything after the 256th character won't be indexed and thus is not known to the table visualization.

You could try to increase that limit and re-index your data, but your case looks like you want to show individual documents in a table format on a dashboard. The "table" visualization is not the right tool for this, you can configure the columns you want to see in Discover and save it as a "Saved search". Then you can add this saved search to the dashboard and it won't have the character limit issue as it will use the `source` object just like Discover. [https://www.elastic.co/guide/en/kibana/current/save-open-search.html](https://www.elastic.co/guide/en/kibana/current/save-open-search.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: [March 11, 2020, 11:45am UTC](https://discuss.elastic.co/t/cannot-display-string-in-a-visualization-table-of-more-than-256-letters/218890/3 "2020-03-11T11:45:17Z")

</div>

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