Top "Spring-data-elasticsearch" questions

Spring Data makes it easier to build Spring-powered applications that use new data access technologies such as non-relational databases, map-reduce frameworks, and cloud based data services as well as provide improved support for relational database technologies.

How to enable query logging in Spring-data-elasticsearch

I use spring-data-elasticsearch framework to get query result from elasticsearch server, the java code like this: SearchQuery searchQuery = new NativeSearchQueryBuilder() .…

java elasticsearch spring-data-elasticsearch
Aggregation Support for Spring Data Elastic Search

Elastic search has deprecated Facets and recommend to use Aggregations (http://www.elastic.co/guide/en/elasticsearch/reference/1.x/search-aggregations.…

spring-data-elasticsearch
spring data elasticsearch: settings and mapping config with annotations not working

I'm using embedded elasticsearch with spring boot and I was trying to use annotations for configuring settings and mappings. I …

elasticsearch spring-data-elasticsearch
Spring Data ElasticSearch TransportClient Java Config

Does anybody know what's Java Config equivalent of : <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.…

java spring elasticsearch spring-data-elasticsearch
Elasticsearch Aggregation by Day of Week and Hour of Day

I have documents of type: [{"msg":"hello", date: "some-date"},{"msg":"hi!", date: "some-date"}, ... I want to have the count of …

elasticsearch elasticsearch-plugin spring-data-elasticsearch pyelasticsearch nosql
Elasticsearch indexing not working and error message: node null not part of the cluster Cluster [elasticsearch], ignoring

I just downloaded the elastic search distribution and ran it. curl 'localhost:9200' { "status" : 200, "name" : "cbs", "cluster_name" : "elasticsearch", "version" : { "…

elasticsearch spring-data-elasticsearch
How to make elasticsearch embedded accessible via localhost:9200

I am playing with spring-boot-sample-data-elastcisearch project. I've changed the pom and added: SampleElasticsearchApplicationWebXml extends SpringBootServletInitializer to run with Tomcat embedded. …

elasticsearch spring-data-elasticsearch
Caused by: java.lang.ClassNotFoundException: org.elasticsearch.transport.Netty3Plugin

I'm using Spring Boot 2.0.3 Release and i have problem while instantiating org.elasticsearch.client.Client. My code: Client client = new …

java spring spring-boot elasticsearch spring-data-elasticsearch
Parent/Child relationships in spring-data-elastic-search

I'm using Spring-Data-Elastic-Search for searching/caching purposes. I need to execute a query which uses child(TermCache) and parent(ConceptCache) …

elasticsearch spring-data spring-data-elasticsearch
Spring Data Elasticsearch id vs. _id

I am using Spring Data Elasticsearch 2.0.1 with Elastic version 2.2.0. My DAO is similar to: import org.springframework.data.annotation.Id; …

java elasticsearch spring-data-elasticsearch