Tagged Questions
0
votes
1answer
21 views
ElasticSearch: Secondary indecies on field values using Java-API
I'm considering to use ElasticSearch as a search engine for large objects. There are about 500 millions objects on a single machine. For far is Elasticsearch a good solution for executing advanced ...
-1
votes
2answers
29 views
ElasticSearch Query
I need to make a query in elasticsearch, such that, in the following text:
"I want to go on holiday to New York with my family" find: "New York" in the field of a nested.
I in my data I have a field ...
0
votes
0answers
31 views
Not Query in ElasticSearch
My query is this
{
"sort":[{ "creation_time":{ "order":"desc" } } ],"fields":["id", "link_extracted"],"from":0,"size":50,
"query":{
"filtered":{
...
1
vote
1answer
28 views
Searching by filed containing a comma in Elasticsearch
We have users in our system and their nicknames can contain commas which is the special character that Elasticsearch uses for separate values. I have the following users stored:
{
"nickname" : ...
0
votes
1answer
46 views
It's possible to translate SQL to ElasticSearch?
I need some help. I've few MySQL queries and I need to "translate" it into ElasticSearch syntax.
There are different kind of querys, easy "selects", and others with Join's that I think it's not ...
0
votes
1answer
56 views
ElasticSearch Head: query
I would like to run an ElasticSearch query via the HEAD to extract all brands currently mentioned in the "brand" field of the index?
How can I do this (not using curl, just via the HEAD)?
1
vote
1answer
13 views
elasticsearch search for elements with specified ID example
I want to find certain elements in my elastic search that have a given ID and I can't figure an easy way to do this.
I see http://www.elasticsearch.org/guide/reference/query-dsl/ids-query/ but can't ...
0
votes
1answer
62 views
ElasticSearch count returned result
I want to count number of document returned as a result of a query with size limit. For example, I run following query:
curl -XGET http://localhost:9200/logs_-*/a_logs/_search?pretty=true -d '
{
...
0
votes
0answers
33 views
How to match person names with “'s” trailing in ElasticSearch?
I want to query the documents mentioning some persons' name, and I used matchPhraseQuery currently.
It works very well when the person name could be matched exactly. However, when there exist english ...
0
votes
1answer
66 views
elasticsearch query dates by range
My elastic search has data, particularly something like this for dates:
"startTime" : {"type" : "string", "format" : "yyyy/MM/dd", "index" : "analyzed", "analyzer" : "keyword"},
I am adding a date ...
1
vote
2answers
140 views
ElasticSearch - Using FilterBuilders
I am new to ElasticSearch and Couchbase. I am building a sample Java application to learn more about ElasticSearch and Couchbase.
Reading the ElasticSearch Java API, Filters are better used in cases ...
0
votes
1answer
157 views
Find all Filtered by Nested in elasticsearch
I want to make a query, looking all equal to "something" but other than that I can filter by fields: "idcategoria", "idinstitucion" and "idtipooa".
fos_elastica:
clients:
default: { host: ...
0
votes
1answer
37 views
ElasticSearch Query search message and restrict to node id
I have the following mapping in ElasticSearch:
{
"xenforo" : {
"post" : {
"_source" : {
"enabled" : false
},
"properties" : {
"date" : {
"type" : ...
0
votes
1answer
44 views
How to get a detailed results output from ElasticSearch
When I do a query like this:
curl 'http://localhost:9200/xenforo/_search?q=message:test'
I get the following result:
{
"took": 3,
"timed_out": false,
"_shards": {
"total": 5,
...
0
votes
1answer
35 views
Elasticsearch faceting query
I was wondering if I can write a faceting query for something like this
My document structure
UserID, AnswerID[] (int array)
1 , [9,10,11,56,78,99]
2 , [10,11,56,78,99]
3 , [8,10,12,56, 79,99]
4 , ...
1
vote
1answer
117 views
Elasticsearch: Faceted query with terms returning unexpected result
I am trying to run a faceted query on some logs that I have stored in ES. The logs look something like
{"severity": "informational","message_hash_value": "00016B15", "user-agent": "Mozilla/5.0 (X11; ...
0
votes
1answer
47 views
NEST API, custom_filters_score how to use it in the query?
I need to boost the score of a match based on a field that is not searched on. ElasticSearch lets you do it using "custom_filters_score". I am using NEST API and I am not sure if this is supported or ...
0
votes
1answer
183 views
What is the reasoning behind the ranking of this ElasticSearch query?
I have two documents:
{
id: 7,
title: 'Wet',
description: 'asdfasdfasdf'
}
{
id: 6
title: 'Wet wet',
description: 'asdfasdfasdf'
}
They are almost identical except for the ...
0
votes
1answer
88 views
How do I apply 2 filters to my ElasticSearch query object?
I want to query my index, but apply 2 filters.
First, the price and second the location.
var qobject = {
query:{
custom_score:{
query:{
...
0
votes
1answer
442 views
Elasticsearch “More Like This” API vs. more_like_this query
Elasticsearch has two similar features to get "similar" documents:
There is the "More Like This API". It gives me documents similar to a given one. I can't use it in more complex expressions though.
...
1
vote
3answers
137 views
How do I construct this elasticsearch query object?
My documents are indexed like this:
{
title: "stuff here",
description: "stuff here",
keywords: "stuff here",
score1: "number here",
score2: "number here"
}
I want to perform a ...
0
votes
1answer
206 views
Boost for a Bool query on Elasticsearch having little effect
What is currently confusing me is that in the query I add a boost to category_id of 10 which is much higher than the other boosts. An item from another category,"Tai Chi", somehow arrives at the top ...
1
vote
1answer
105 views
elastic search multiple types search
I dont know if elastic search have poor documentation or i am just searching in the wrong places. The thing i am trying to do is that i want to search a specific index but different type with ...
0
votes
1answer
44 views
elasticsearch query with field username:a stopped working
I have a CouchDB document with field username. The query below works for all values except for "a". This strange because it used to work. I deleted my index and tried again but makes no difference. I ...
1
vote
0answers
51 views
Solr query or design
Want to execute queries like :
category in location1 , location2
category 1 and category 2 in location1 ,loc2 and loc3
in our search .
Our challenges :
picking right keywords(category and ...
0
votes
1answer
749 views
Elastic Search - complex query with array types and nested object properties
Given the following mapping I need to get results that match the following criteria
Exact match on first name, last name, date_of_birth and Active = true OR
Exact match on first name, last name, ...
2
votes
1answer
69 views
Elasticsearch get a selection of predefined types as result in one query
I've got an ElasticSearch index with a large set of product properties. They are all looking like that:
{'_id':1,'type':'manufacturer','name':'Toyota'},
{'_id':2,'type':'color','name':'Green'},
...
0
votes
1answer
541 views
Query all unique values of a field with Elasticsearch
How do I search for all unique values of a given field with Elasticsearch?
I have such a kind of query like select full_name from authors, so I can display the list to the users on a form.
0
votes
1answer
50 views
Query boost depending on actual field value
Hi StackOverflowcrowd,
iam currently working on elasticsearch for my website. My question is:
Is it possible to boost an query depending on the value of a field.
Example:
I have a field called ...
3
votes
1answer
144 views
Performance of elastic queries
This query takes 200+ ms every time it is executed:
{
"filter": {
"term": {
"id": "123456",
"_cache": true
}
}
}
but this one only takes 2-3 ms every time it is executed ...
1
vote
1answer
365 views
elasticsearch set sort order using querystring
I have the following simple elastisearch query:
http://localhost:9200/apn/presupuesto/_search?q=subcuenta:penal&sort=anio
And it works fine
Now I'm trying to order by anio desc. I tried with ...
0
votes
1answer
180 views
Elasticsearch URI based query with AND operator
How do I specify AND operation in URI based query? I'm looking for something like:
http://localhost:9200/_search?q="profiletype:student AND username:s*"
0
votes
1answer
509 views
ElasticSearch: how to mix terms query with wildcard
Say, I have the following query: 'document spreadsheet app*'. I want to construct the query dictionary which is equivalent to this type of query '_search?q=_all:document+spreadsheet+app*'. Say, ...
1
vote
1answer
66 views
Elasticsearch query against multiple types
I have two types stored in ES:
Photos (fields: photo-id, description, createDateAsLong)
VisitHistory (username, photo-id - with 30days TTL)
Is it possible to query ES for records of type Photos ...
0
votes
1answer
126 views
Elasticsearch Use Search Query for Deleting the results
Below is a boolean search query. I want to delete all the results matched by this query. How to do that?.
I tried CURL -XDELETE /index/doc/_query/routing=abc interface response contains ...
0
votes
0answers
176 views
elasticsearch Query - Wildcard or Stemming within a Span (i.e. Proximity Query)
I would like to construct an elasticsearch query (or filter) that detects whether two words with wildcards are within a certain distance of each other. Is this possible with elasticsearch?
For ...
0
votes
1answer
81 views
Query with multiple field values specified
I'm trying to perform an elasticsearch query with multiple fields specified. Here is some pseudo code which hopefully illustrates my intention:
"query" : {
"query_string" : { "query" : "william" }
...
0
votes
1answer
412 views
elasticsearch - How to reference multi-field when building query
I am unable to access multi fields using the navigation notation
My mapping:
{
"mappings":{
"document":{
"properties":{
"tags":{
"type":"object",
...
0
votes
1answer
250 views
Elastic Search: Multiple queries and boosting
I want to make a search containing many searches with different boosts, and having the results returned by score. I tried making a search as follows, and I thought it worked very well, until I ...
1
vote
1answer
141 views
Register and call query in ElasticSearch
Is it possible to register query (like the percolate process) and call them by name to execute them.
I am building an application that will let the user save search query associated with a label. I ...
0
votes
1answer
333 views
How can I do a prefix search in ElasticSearch in addition to a generic query string?
I have a very basic index of "users" with a single type "user" that has several fields to it. I don't have anything defined on the index besides that.
What I need to do is provide autocomplete ...
1
vote
1answer
541 views
ElasticSearch Delete Query - Filter with term and range
I have the following query that I am trying to use to delete data from an ElasticSearch index.
{
"filter": {
"and": [
{
"range": {
"Time": ...
0
votes
1answer
198 views
GeoDistance filter ElasticSearch
I am using the Geo Distance Filter with ElasticSearch. The queries work fine, but I am wondering if it is possible to obtain the distance calculated for each document. For example, if I set a distance ...
1
vote
1answer
856 views
How can I query/filter an elasticsearch index by an array of values?
I have an elasticsearch index with numeric category ids like this:
{"id":"50958","name":"product name","description":"product ...
1
vote
1answer
256 views
Reverse query matching solr
I have a list of user queries to solr from a website (100's of thousands of them). My requirement is to return all the queries, in the given list, that are true for a document. I know I could index ...
0
votes
1answer
429 views
Tire + Elasticsearch: How to search ranges of values?
Love Tire and elasticsearch so far but can't figure out how to search values between ranges like:
age_from age_to
18 to 20
And return all Profile's where the age is between these 2 ranges?
I have ...
1
vote
1answer
515 views
Faceted search: ElasticSearch/Solr or a simple database query?
Forgive this super basic question, from a search newbie.
I want to implement a site that makes use of faceted search. For example, it's a site with a database of hotels, and I want to allow users to ...
0
votes
1answer
146 views
ElasticSearch search query delimiters
I have a simple record in the index
CharacterId=847
query CharacterId=8 returns the result (it looks like it searches for CharacterId and 8 separately
query CharacterId= returns the result
query ...
0
votes
2answers
375 views
ElasticSearch Query issue
I have this query with range, text and sort in it. When I use range with sort or text with sort it works but when I try to use all three together it throws an error:
"Parse failure: failed to parse ...
4
votes
1answer
2k views
Elastic Search date range query
I have an index in Elastic Search with the following mapping -
"DocumentID" : { "type" : "string" },
"ContentSource" : { "type" : "integer" },
"Title" : { "type" : ...



