All Questions
64 questions
0
votes
1
answer
61
views
Aggregation sorting based on either of 1 key in open search
Consider below is the 2 documents got after aggregation , now i need to sort on the documents.
Document 1:
{
'startDate' :'2023-02-01',
'endDate' : '2022-02-01'
}
Documet 2 :
{
'endDate' : '2024-02-...
0
votes
1
answer
212
views
Elasticsearch "ignore_above" issues
Index Mapping(In Kibana)
GET /new_index/_mapping
I already reset the "ignore_above" to the larger size, but it seems not working for my index when I query for searching.
I heard from other ...
0
votes
1
answer
40
views
Is that a way to use elastic search replace the specific field data to null when retriving search result?
I need to use elastic search in nestjs to query to retrieve some result from index.
Requirements: I need all results including access_level: "Restricted" and access_level: "...
0
votes
1
answer
203
views
Elastic dump from 8.9 to 2.3 throwing errors
When I ran the below command
C:\Users\ASDF>elasticdump --input=http://username:pwd@domainname/indexnameone/ --output=http://username:pwd@domainnameone/indexnametwo --type=data
The error is
...
1
vote
1
answer
50
views
How to fetch documents with must match clause in elastic search 8.9 v
{
"size": 0,
"query": {
"bool": {
"must": [
{
"match": {
"cid"...
0
votes
1
answer
133
views
ElasticSearch is not returning the document in correct order
For the below query, I am searching the text "christ". the result is not showing the correct order. I have a record for "Christine" but it is not showing as a first document. Can ...
1
vote
1
answer
1k
views
How to make Elasticsearch case-insensitive without changing the existing documents?
I am a beginner in Elasticsearch and I am working on a project where the requirement is to look for field values that ought to start with the pattern that has been provided.
I'm using a wildcard for ...
0
votes
1
answer
313
views
Elasticsearch completion suggester across multiple indices with different fields
I have 2 huge indices in the Elastic-search ,I am implementing search auto completion using completion suggester,I need to have suggeters from 2 different indices with different fields but it is not ...
0
votes
1
answer
55
views
searching for space separated words in Elasticsearch
my data is,
POST index_name/_doc/1
{
"created_date" : "2023-02-09T13:21:41.632492",
"created_by" : "hats",
"data" : [
...
0
votes
0
answers
49
views
maximum concurrent count record in elasticsearch?
how to find the maximum concurrent connected client count on the basis of networkId filed in 1 hour in elasticsearch?
I have tried this 1 query
GET /sample_index/_search {"size":0,"...
0
votes
1
answer
77
views
Elastic Search - Nested aggregation
I would like to form a nested aggregation type query in elastic search. Basically , the nested aggregation is at four levels.
groupId.keyword
---direction
--billingCallType
--durationCallAnswered
...
0
votes
1
answer
107
views
Distinct records with geo_distance sort on aggregation ES
I'm working on nearby API using elasticsearch.
I'm trying to run 4 actions in ES query
match condition (here running a script to get records within radius)
get distinct records based on company's Key ...
1
vote
1
answer
1k
views
why did the elasticsearch MSI installer disappear?
Why did the elasticsearch MSI installer disappear?
They only offer the zip file now.
Is there any reason why they remove it?
0
votes
2
answers
48
views
I want sum_char2cust and sum_cust2char only for top 20 document of user
GET chatsession/_search
{
"query": {
"bool": {
"filter": [
{
"range": {
"char2cust": {
"...
0
votes
2
answers
1k
views
How to filter each index in a query with two indexes in Elastic?
I'm trying to make a query to fetch information on two different indexes in Elastic:
GET _search
{
"query": {
"bool": {
"must" : [{
"bool" : ...