# No Compatible Fields: The news\* index pattern does not contain any of the following field types: geo\_point

**URL:** https://discuss.elastic.co/t/no-compatible-fields-the-news-index-pattern-does-not-contain-any-of-the-following-field-types-geo-point/188811
**Category:** Kibana
**Created:** [July 3, 2019, 9:07pm UTC](https://discuss.elastic.co/t/no-compatible-fields-the-news-index-pattern-does-not-contain-any-of-the-following-field-types-geo-point/188811 "2019-07-03T21:07:04Z")
**Posts on this page:** 9
**Page:** 1

<div class="post-metadata">

### Author: ![jaylucasm](https://avatars.discourse-cdn.com/v4/letter/j/ecd19e/32.png) [@jaylucasm](https://discuss.elastic.co/u/jaylucasm)
#### Post date: [July 3, 2019, 9:07pm UTC](https://discuss.elastic.co/t/no-compatible-fields-the-news-index-pattern-does-not-contain-any-of-the-following-field-types-geo-point/188811/1 "2019-07-03T21:07:04Z")

</div>

I am having issues getting geo\_points to show up in kibana ☹

Following this guide: [https://www.elastic.co/guide/en/elasticsearch/reference/6.7/search-aggregations-bucket-geohashgrid-aggregation.html](https://www.elastic.co/guide/en/elasticsearch/reference/6.7/search-aggregations-bucket-geohashgrid-aggregation.html)

1. I created an index with a mapping PUT request:

 ![36%20PM](https://us1.discourse-cdn.com/elastic/original/3X/a/1/a1c9645e2f0019e86c1073d161b1e9b8ed2f63a4.png)

1. Bulk added the fields and verified there existence in kibana

 ![12%20PM](https://us1.discourse-cdn.com/elastic/original/3X/b/3/b3ecc3f67ed80638f4230bbec89696d9a1bc5900.png)

 ![45%20PM](https://us1.discourse-cdn.com/elastic/original/3X/a/2/a215202ab672380d601647ac3ccc0cfffae49d6b.png)

1. Not look at the "Visualization" tab and still see this error message:

 ![33%20PM](https://us1.discourse-cdn.com/elastic/original/3X/0/6/0665144dd708e8338106479e5f133fe670159a97.png)

Related topic but didn't help me: [Index pattern does not contain any of the following field types: geo\_point](https://discuss.elastic.co/t/index-pattern-does-not-contain-any-of-the-following-field-types-geo-point/85001)

Any help would be great!

---

<div class="post-metadata">

### Author: ![warkolm](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/warkolm/32/39224_2.png) [@warkolm](https://discuss.elastic.co/u/warkolm)
#### Post date: [July 5, 2019, 8:03am UTC](https://discuss.elastic.co/t/no-compatible-fields-the-news-index-pattern-does-not-contain-any-of-the-following-field-types-geo-point/188811/2 "2019-07-05T08:03:08Z")

</div>

That first image doesn't appear to have anything to do with mapping, it's just creating some documents?

---

<div class="post-metadata">

### Author: ![jaylucasm](https://avatars.discourse-cdn.com/v4/letter/j/ecd19e/32.png) [@jaylucasm](https://discuss.elastic.co/u/jaylucasm)
#### Post date: [July 5, 2019, 6:18pm UTC](https://discuss.elastic.co/t/no-compatible-fields-the-news-index-pattern-does-not-contain-any-of-the-following-field-types-geo-point/188811/3 "2019-07-05T18:18:38Z")

</div>

Oh weird, it double the second image. It should be correct now.

---

<div class="post-metadata">

### Author: ![warkolm](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/warkolm/32/39224_2.png) [@warkolm](https://discuss.elastic.co/u/warkolm)
#### Post date: [July 5, 2019, 10:14pm UTC](https://discuss.elastic.co/t/no-compatible-fields-the-news-index-pattern-does-not-contain-any-of-the-following-field-types-geo-point/188811/4 "2019-07-05T22:14:33Z")

</div>

What does a `GET news/_mapping` show?

---

<div class="post-metadata">

### Author: ![jaylucasm](https://avatars.discourse-cdn.com/v4/letter/j/ecd19e/32.png) [@jaylucasm](https://discuss.elastic.co/u/jaylucasm)
#### Post date: [July 8, 2019, 4:28pm UTC](https://discuss.elastic.co/t/no-compatible-fields-the-news-index-pattern-does-not-contain-any-of-the-following-field-types-geo-point/188811/5 "2019-07-08T16:28:27Z")

</div>

```auto
{
  "news" : {
    "mappings" : {
      "_doc" : {
        "properties" : {
          "location" : {
            "type" : "geo_point"
          }
        }
      }
    }
  }
}

```

---

<div class="post-metadata">

### Author: ![warkolm](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/warkolm/32/39224_2.png) [@warkolm](https://discuss.elastic.co/u/warkolm)
#### Post date: [July 8, 2019, 9:58pm UTC](https://discuss.elastic.co/t/no-compatible-fields-the-news-index-pattern-does-not-contain-any-of-the-following-field-types-geo-point/188811/6 "2019-07-08T21:58:26Z")

</div>

That appears to be missing the `name` field, are you sure that is the same index you are looking at in Kibana?

---

<div class="post-metadata">

### Author: ![jaylucasm](https://avatars.discourse-cdn.com/v4/letter/j/ecd19e/32.png) [@jaylucasm](https://discuss.elastic.co/u/jaylucasm)
#### Post date: [July 9, 2019, 7:41pm UTC](https://discuss.elastic.co/t/no-compatible-fields-the-news-index-pattern-does-not-contain-any-of-the-following-field-types-geo-point/188811/7 "2019-07-09T19:41:43Z")

</div>

My apologies, I deleted the elements and recreated here is the mapping:

```auto
{
  "news" : {
    "mappings" : {
      "_doc" : {
        "properties" : {
          "location" : {
            "type" : "geo_point"
          },
          "name" : {
            "type" : "text",
            "fields" : {
              "keyword" : {
                "type" : "keyword",
                "ignore_above" : 256
              }
            }
          }
        }
      }
    }
  }
}

```

---

<div class="post-metadata">

### Author: ![warkolm](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/warkolm/32/39224_2.png) [@warkolm](https://discuss.elastic.co/u/warkolm)
#### Post date: [July 10, 2019, 1:29am UTC](https://discuss.elastic.co/t/no-compatible-fields-the-news-index-pattern-does-not-contain-any-of-the-following-field-types-geo-point/188811/8 "2019-07-10T01:29:11Z")

</div>

That looks fine.  
Hav you tried resetting the index mappings in Kibana?

---

<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 7, 2019, 1:29am UTC](https://discuss.elastic.co/t/no-compatible-fields-the-news-index-pattern-does-not-contain-any-of-the-following-field-types-geo-point/188811/9 "2019-08-07T01:29:13Z")

</div>

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