elasticsearch-grails-plugin icon indicating copy to clipboard operation
elasticsearch-grails-plugin copied to clipboard

ElasticSearch grails plugin

Results 30 elasticsearch-grails-plugin issues
Sort by recently updated
recently updated
newest added

In my sample grails application (@ https://github.com/berinle/grails-search-app), if I deploy to a stand alone tomcat server and try to update the war (by copying a newly generated war file of...

Hi, I'm following the example from http://smaldini.github.com/elasticsearch-grails-plugin/docs/guide/8.%20Example.html. Bootstrap data: ``` def u = new User(firstname:'Jeff',lastname:'Winkler', password:'foo').save() def tgroovy = new Tag(name:'Groovy').save() def tgrails = new Tag(name:'Grails').save() new Tweet ( user:u,...

Our domain model has simple inheritance with class B inheriting from concrete base class A. We would like all instances of plain A's and B's to show up in the...

Elastic Search supports 'index_name' property of a core type field, which allows to alias the field in the index. The plugin does not seem to support this feature. The reason...

My Grails project is trying to migrate from Searchable plugin to Elastic Search plugin. One of the features available in Searchable Plugin is to specify "index" and "store" attributes for...

As the [Searchable documentation](http://grails.org/Searchable+Plugin+-+Mapping+-+Not+All+Properties) highlights, you can specify a map as the value for the `searchable` property. Would be good if the Elastic Search plugin also supported this.

At the moment, you have no control over the indexing of domain classes provided by plugins. It would be good to allow configuration options along the lines of: ``` elasticSearch...

I am not sure exactly what the problem is here, but on a vanilla project, once ES plugin is added, my tests seem to hang when I run test-app command....

Is there any way to set up elastic search with an "elasticsearch.yml" file in a grails app running the plugin with: elasticSearch.client.mode = 'local' ? It would be cool if...