I get json to insert into ElasticSearch, I also have the dataType: data mapping configured for certain indices. The problem is that the types of some fields are changing occasionally and I do not have control over that changes. That breaks data insertion to ELK. I wonder if there is a way to specify list of allowed data types for a certain field? Or maybe there is a better solution to my problem?
ELK data insertion fails due to type mapping failure because the actual data type changes
162 Views Asked by Edik Mkoyan At
1
There are 1 best solutions below
Related Questions in ELASTICSEARCH
- Elasticsearch schema for multiple versions of the same text
- Elasticsearch nested filter query
- Elasticsearch data model
- search with filter by token count
- Usage of - operator in elasticsearch
- Running multiprocessing on two different functions in Python 2.7
- How to get an Elasticsearch aggregation with multiple fields
- How to implement custom sort in elasticsearch?
- Custom Analyzer not working Elasticsearch
- How to implement full text search using Elasticsearch in Rails?
- UnresolvedAddressException in Logstash+elasticsearch
- Elasticsearch Fiddler No DNS
- Monolithic ETL to distributed/scalable solution and OLAP cube to Elasticsearch/Solr
- how to disable page query in Spring-data-elasticsearch
- Create Custom Analyzer after index has been created
Related Questions in LOGSTASH
- UnresolvedAddressException in Logstash+elasticsearch
- Grok parse error when using custom pattern definitions
- Delete logs after consumption: logstash
- Delete records of a certain type from logstash/elasticsearch
- Unable to push data from file to elastic search
- logstash dns filter miss
- Logstash parse error CISCOTIMESTAMP Debugger checks OK
- Performing searches on JSON data in Elasticsearch
- Logstash not writing to Elasticsearch with Shield
- logstash parsing timestamp halfday am/pm
- Parsing multiline log file in Logstash
- how to start logstash-forwarder as a service in Windows?
- How to parse a xml-file with logstash filters
- Cannot select a pattern as defaultIndex on Kibana
- What is better: logStash agents on the appserver or the remote kibana server?
Related Questions in ELASTIC-STACK
- Percent Metric in Kibana 4?
- logstash dns filter miss
- How to parse a xml-file with logstash filters
- What is better: logStash agents on the appserver or the remote kibana server?
- OS X: logstash works for a while and then stops with "Logstash shutdown completed" msg((
- Logstash not_analyzed
- Displaying n-greatest in Kibana
- Scale y-Axis in kibana 4.1.0
- Elasticsearch index mapper
- No ‘Access-Control-Allow-Origin- http plugin logstash
- Logs are not showing anymore ELK Stack
- How can I change fields type on elasticsearch without stop my services?
- Unable to form Elasticsearch (5.1.1) cluster on AWS EC2 instances
- Post data to logstash using http input
- Kibana IIS Reverse proxy issue
Related Questions in ELK
- Need instruction : To Install ELK stack in On-Prem setup with persistant Volumes using Helm charts
- Connect MySQL through JDBC in filebeats in Elastic Cloud
- Docker Volume - Unhandled exception: Access is denied. (Exception from HRESULT: 0x80070005 (E_ACCESSDENIED))
- Looking for a way to add more information to Gatling transactions in the simulation.log file
- Python logging framework
- What do the Icons in Kibana fields mean?
- Logstash : Error: Could not find or load main class Stack when trying to run logstash.bat
- ELK data insertion fails due to type mapping failure because the actual data type changes
- Kibana unable to search message field
- Grok parse failure - while filtering error logs
- Reformate sources from elastic search
- Logstash stopped processing because of an error: (SystemExit) exit
- Mapping ElasticSearch apache module field
- Querying Nested Array in Elasticsearch
- How to configure Winlogbeat to connect to AWS elastisearch
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
The fields in elasticsearch can only be mapped to one data type each, if for example you have a field mapped as numeric, you can't store a text value in this fields, it will give you a mapping exception.
If you have a field that can change between your documents, you should map this field in a way that it will work for every case, for example, if the value of the field can be an integer, a string or a date, you should map this field as
keywordortext, but you won't be able to perform numeric or date operations on this field like sums or date range queries.You can also set the option
ignore_malformedtotruein your index, this way if you have a field with a different data type than the one in your mapping, only this field will be ignored, the other fields in your document will be indexed. Without this option the whole document would be ignored and not indexed.