2
votes
1answer
78 views

Elastica filter not working

I am testing out Elastica and Elastic Search. I am trying to add a filter to my query that only returns results by city location. It is returning empty. I've tried filter by username, and so on and it ...
0
votes
1answer
18 views

How to config Single node for Single Cluster (Standalone Cluster) ElasticSearch

I have my local machine. I want to config elastic search for only single cluster for single node. (Standalone Server)Means whatever I will created new index, it will available for only to me. Its not ...
0
votes
0answers
45 views

exclude fields in _source mapping with foqelasticabundle

I have attachment plugin for Elasticsearch to index all my file stored in Document. I would like to excludes the file content from being stored in the _source. My config file look likes: ...
0
votes
0answers
92 views

Elastica Search how to retrieve plain text results from indexed pdf/attachments

How do I get plain text search results from indexed pdf file contents with FOS Elastica Bundle? I'm using ElasticSearch with Attachment-Mapper Plugin Elastica FOS Elastica Bundle, with Doctrine on ...
0
votes
1answer
108 views

ElasticSearch/Elastica: searching for exact term that includes “and” or other stopwords

I'm trying to get ES QueryString to match a search term that includes "and" within it, but everything I've tried so far (trying different analyzers, tokenziers, filters) has not worked. In MySQL ...
0
votes
0answers
79 views

Searching only specific fields with elasticsearch

How can I tell Elasticsearch to exclude a field when searching by a term? I have an index of users (names, email, certifications, experience, office...), but only certain people can search for users ...
0
votes
1answer
78 views

Search by term giving empty result using elastica

Using Elastica - Elasticsearch PHP Client. There are so many fields but I want to search in "Screen_name" field. What I have to do for it. I used term but without success. Result is empty array Here ...
0
votes
0answers
53 views

Elastica multi_field setup

I'm trying to use multi_field syntax of elasticsearch in combination with Elastica. I create an index and an mapping which looks like this: $mapping->setProperties(array( 'id' => ...
1
vote
2answers
84 views

Class not found even though it is located where I am looking for it

I am trying to load a class in order for a PHP script that I wrote, with help of the classes' documentation, to work. Since my server is running PHP 5.3, the documentation recommended loading the ...
1
vote
0answers
54 views

elastica with terms and facets

I am faily new to elasticsearch and try to get along with elastica. I try to find out what Items are often togehter in a set of items when one of them is 2 and/or 7. So the index contains a lot of ...
1
vote
0answers
77 views

Elastica seach add a second filter

I'm starting using Elastica with my Symfony app but I'm stuck to add a filter. The following code works well, it search by name, slug, agglomeration and then add a geoloc filter. I want to add a ...
0
votes
1answer
100 views

Any method for Elasticsearch query popularity?

I am new to Elasticsearch and making search suggestion to search for videos and right now using following query (I am using Elastica Library so its just a printed array) [query] => Array ( ...
0
votes
0answers
109 views

Elastica Query with Elastica_Query_CustomFiltersScore combination

I have a problem with the order of documents in my boosted query. I have documents with many fields and boost some of the fields on query-side with a value of 2. I try to use a custom filter score ...
0
votes
1answer
89 views

Sorting the results from a Filtered Query

Due to a large amount of filter terms (permissions system in the 1000s) I have to use Elastic_Query_Filtered which is fine and I can even set limits for pagination using ...
1
vote
0answers
256 views

How to connect MongoDB with Elastic Search using the ES plugin MongoDB river via Elastica

i'm new to programming, so i apologize, if my question is very simple. First of all, I have installed and configured MongoDB and ES with MongoDB river, but i can't find how to do it via Elastica. My ...
1
vote
1answer
242 views

Startswith query filter for elasticsearch using elastica

I have an elasticsearch search implementation working for a webapp but I am stuck on the last detail. I want to be able to filter certain fields alphabetically. So if I query 'd' it should bring back ...
0
votes
1answer
178 views

symfony2.1 FOQElasticaBundle class load

I setup FOQElasticaBundle following this https://github.com/Exercise/FOQElasticaBundle#readme both Elastica and FOQElasticaBundle installed using git submodule. and when I try app/console, it gives ...
0
votes
1answer
137 views

Elasticsearch Get Parent Fields

in my index i have two types Ads ans Product, Product : _index: fadel _type: product _id: 103|2 _version: 1 _score: 1 _source: { code: 35569058 manufacturer: Packard Bell tax_class_id: [ ] ...
0
votes
1answer
195 views

ElasticSearch not returning any results for common query strings (works with less common strings)

I am doing some testing with ElasticSearch, and I am finding that it does not return results for extremely common terms. I assume this may be because it's timing out, running out of memory, or ...
0
votes
0answers
123 views

Elastic Search highlighting not respecting fragment_size when query term is in quotes

I have a PHP client (using Elastica) interfacing with Elastic Search. I turn on highlighting for a particular field and have the snippets limited to 200 characters (fragment_size : 200). However when ...
0
votes
2answers
118 views

Elastica search results not getting processed

I am using elastica to search in elasticsearch index on windows azure linux virtual machine. I created the index using JAVA API of elastic search:- IndexResponse response = client.prepareIndex("nod", ...
0
votes
0answers
156 views

Geographic search using Elasticsearch & Elastica

After hours of reading the API documentation, unit tests and trial and error I am thorwing this one to the community for help. I am using Elasticsearch to match recordsets containing similar, though ...
0
votes
1answer
482 views

How to query using Elastica

This is my first time using Elastica and querying data from the ElasticSearch For me, as starter I have a question on how to query the code below using Elastica?: curl ...
0
votes
1answer
269 views

Sorting results based on location using elastica

I am trying to learn ElasticSearch using elastica to connect in and finding information hard to get in order to understand how to query it. So basically what I am trying to do is, I have inserted ...