Changes for page Killing the ELK Stack
Last modified by Normann P. Nielsen on 2025/12/12 15:11
From version 1.1
edited by Normann P. Nielsen
on 2025/12/12 15:11
on 2025/12/12 15:11
Change comment:
There is no comment for this version
To version 4.1
edited by Normann P. Nielsen
on 2025/12/12 15:11
on 2025/12/12 15:11
Change comment:
There is no comment for this version
Summary
-
Page properties (1 modified, 0 added, 0 removed)
-
Objects (0 modified, 1 added, 0 removed)
Details
- Page properties
-
- Tags
-
... ... @@ -1,0 +1,1 @@ 1 +kibana
- Blog.BlogPostClass[0]
-
- Is hidden
-
... ... @@ -1,0 +1,1 @@ 1 +No - Publish date
-
... ... @@ -1,0 +1,1 @@ 1 +2017-01-31 21:05:00.0 - Is published
-
... ... @@ -1,0 +1,1 @@ 1 +Yes - Category
-
... ... @@ -1,0 +1,1 @@ 1 +News - Title
-
... ... @@ -1,0 +1,1 @@ 1 +Killing the ELK Stack - Content
-
... ... @@ -1,0 +1,30 @@ 1 +Well, I tried to load a 4 GB json file from [[http://download.aws.dk/]] into ES as in: 2 + 3 + 4 +{{code}} 5 +root@elkserver1:~# curl -XPOST 'http://localhost:9200/adresses/address' -d @adresser.json 6 +Killed 7 +{{/code}} 8 + 9 +After the "killed", the ES stack went bad for some time - and finally came back into green state; - in that Time, Kibana just showed "RED" (sad) 10 + 11 +Well, then I tried to created an index pattern over "adresses", and the index-pattern became present in Kibana, but it did not work at all. 12 + 13 + 14 + 15 +Tried to delete the Index, but ES told me there was no index.. And I could not click on the index pattern in Kibana. 16 + 17 +Finally I got it deleted with: 18 + 19 + 20 +{{code}} 21 +root@elkserver1:~# curl -XDELETE "http://localhost:9200/.kibana/index-pattern/adresses" 22 +{"found":true,"_index":".kibana","_type":"index-pattern","_id":"adresses","_version":2,"result":"deleted","_shards":{"to... 23 + 24 +root@elkserver1:~# service kibana stop 25 +root@elkserver1:~# service kibana start 26 +{{/code}} 27 + 28 + 29 + 30 +And the mapping was gone....