We have an Elastic Search engine that has been provisioned through App Search, and has a very large schema (large amount of fields). A lot of these fields are not necessary to the scope of our search requests and are returned in the _ignored section of the response object. Not only do we not use the _ignored data, but they are significantly bloating our response object from Elastic which is not ideal. Is there a way to prevent the _ignored section form being returned as a part of the result from a search request?
How to prevent ignored fields from being returned from Elastic Search
529 Views Asked by Luke 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 NEST
- How to avoid to extend the mapping on commiting an object
- Filter the aggregated results in sub aggregation using NEST
- ElasticSearch Nest Query with Dynamic Match
- How to append two SearchDescriptors in NEST
- ElasticSearch Nest AutoComplete based on words split by whitespace
- Re-index object with new fields
- MultiMatch query with Nest and Field Suffix
- Operator '??' cannot be applied to operands of type IQueryContainer and lambda expression
- Elasticsearch NEST facet is tokenizing field even if attribute of NotAnalyzed is defined in the mapping
- Elasticsearch and C# - query to find exact matches over strings
- ElasticSearch (Nest) Terms sub aggregation of Terms - Not working as intended
- Query returns both documents instead of just one
- ElasticSearch - how to get the auto generated id from an insert query
- Elasticsearch - How to get the sum of fields with terms?
- Nest update index settings
Related Questions in ELASTIC-APPSEARCH
- Unable to start Elasticsearch Enterprise/App Search
- Elastic Search UI - bad practise to expose Elastic App Search publicly?
- Get detailed breakdown of memory consumption for Elastic Search
- Can Kibana be synced to Elastic App Search?
- Implement search based on tags with elastic app-search
- Elastic Enterprise/App search installation problem on ubuntu
- App Search - How to add "multi field", a field with array of values (like color)
- Elasticsearch not accepting size
- How to prevent ignored fields from being returned from Elastic Search
- Query Elastic App Search with flutter using public api key
- Store only in Elastic AppSearch / Enterprise Search
- Gatsby with Elastic Search UI, <SearchProvider> breaks SSR
- How to index data from Firebase Firestore to Elastic App Search using Cloud Function?
- How to create an Elastic App Search Engine using an existing index (data from GraphDB Elastic Search Connector)
- Is it possible to use Elastic Enterprise Search through NEST client in C#
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?

_ignoredis metadata field of elasticsearch hence it can not be filter using source filter option.You need to use Response Filtering using
filter_pathparameter in request.Below is example where it will return only took, _id, _score, _source in search response.