# Kibana didn't show visualization

**URL:** https://discuss.elastic.co/t/kibana-didnt-show-visualization/93843
**Category:** Kibana
**Created:** [July 19, 2017, 9:52pm UTC](https://discuss.elastic.co/t/kibana-didnt-show-visualization/93843 "2017-07-19T21:52:33Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![moabbas](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/moabbas/32/19231_2.png) [@moabbas](https://discuss.elastic.co/u/moabbas)
#### Post date: [July 19, 2017, 9:52pm UTC](https://discuss.elastic.co/t/kibana-didnt-show-visualization/93843/1 "2017-07-19T21:52:33Z")

</div>

This error i can't solve while using kibana

Visualize: rejected execution of org.elasticsearch.transport.TransportService$7@4a40b87 on EsThreadPoolExecutor[search, queue capacity = 1000, org.elasticsearch.common.util.concurrent.EsThreadPoolExecutor@d30a796[Running, pool size = 49, active threads = 49, queued tasks = 998, completed tasks = 202672]] rejected execution of org.elasticsearch.transport.TransportService$7@7878caaa on EsThreadPoolExecutor[search, queue capacity = 1000, org.elasticsearch.common.util.concurrent.EsThreadPoolExecutor@d30a796[Running, pool size = 49, active threads = 49, queued tasks = 999, completed tasks = 202807]] rejected execution of org.elasticsearch.transport.TransportService$7@5d8b23a8 on EsThreadPoolExecutor[search, queue capacity = 1000, org.elasticsearch.common.util.concurrent.EsThreadPoolExecutor@d30a796[Running, pool size = 49, active threads = 49, queued tasks = 999, completed tasks = 202937]]

---

<div class="post-metadata">

### Author: ![tsullivan](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/tsullivan/32/31077_2.png) [@tsullivan](https://discuss.elastic.co/u/tsullivan)
#### Post date: [July 19, 2017, 11:14pm UTC](https://discuss.elastic.co/t/kibana-didnt-show-visualization/93843/2 "2017-07-19T23:14:06Z")

</div>

It gets a little more readable when we break it up:

```auto
Visualize:
rejected execution of org.elasticsearch.transport.TransportService$7@4a40b87 on EsThreadPoolExecutor
[
  search, queue capacity = 1000, org.elasticsearch.common.util.concurrent.EsThreadPoolExecutor@d30a796
  [
    Running, pool size = 49, active threads = 49, queued tasks = 998, completed tasks = 202672
  ]
]
rejected execution of org.elasticsearch.transport.TransportService$7@7878caaa on EsThreadPoolExecutor
[
  search, queue capacity = 1000, org.elasticsearch.common.util.concurrent.EsThreadPoolExecutor@d30a796
  [
    Running, pool size = 49, active threads = 49, queued tasks = 999, completed tasks = 202807
  ]
]
rejected execution of org.elasticsearch.transport.TransportService$7@5d8b23a8 on EsThreadPoolExecutor
[
  search, queue capacity = 1000, org.elasticsearch.common.util.concurrent.EsThreadPoolExecutor@d30a796
  [
    Running, pool size = 49, active threads = 49, queued tasks = 999, completed tasks = 202937
  ]
]

```

The error is coming from Elasticsearch and saying that searches are getting rejected because the thread pool has run out of capacity. There are either too many searches going on, or the searches are touching too many shards. There is a good explanation of the situation in this discussion topic, with some suggestions on how to resolve it: [Elasticsearch sizing and queue capacity](https://discuss.elastic.co/t/elasticsearch-sizing-and-queue-capacity/42341/5?u=tsullivan)

---

<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 16, 2017, 11:14pm UTC](https://discuss.elastic.co/t/kibana-didnt-show-visualization/93843/3 "2017-08-16T23:14:19Z")

</div>

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