search_api_elasticsearch
search_api_elasticsearch copied to clipboard
Clone of project at drupal.org/project/search_api_elasticsearch for better CI options than what D.O offers
Original issue: https://www.drupal.org/node/2574075 Hi, how is the Drupal 8 version looking like? The Search API looks good at this point, Drupal core too.
I have a large index of items, and would like to add an access control mechanism for items on properties of individual users. Until now I had this implemented as...
Hi, was getting this error when trying to indexing content: `Elastica\Exception\ResponseException: Validation Failed: 1: type is missing; in Elastica\Transport\Http->exec() (line 172 of drupal/sites/all/vendor/ruflin/elastica/lib/Elastica/Transport/Http.php).` The following change fixed it for me:...
Related drupal.org issue: https://www.drupal.org/node/2804437 My Drupal 7 use case (and what problem does this fix): I have a content-type (e.g. Organisation) with a location Field (e.g.field_organisation_location - location_cck). I want...
Is there a way to use this module with AWS-hosted Elasticsearch using an auth key? It doesn't look like it from the interface, but I just wanted to confirm that...
Original issue: https://www.drupal.org/node/2646088 After running a composer update, the Elastica library upgrades to version 3.0 where some search_api_elasticsearch_elastica dependencies have been removed, such as Elastica\Facet\Terms. The module needs a more...
Original issue: https://www.drupal.org/node/2656356 Currently when using the OR operator, with a facet selected, the facet count for other options is 0. Elasticsearch can supposedly handle multi-select faceting similar to Apache...
Original issue: https://www.drupal.org/node/2648008 Why there are Drush, phpmd, etc and other dev module in this module's composer.json? Due to this, Composer Manager includes those tools too in global composer.json which...
Original issue: https://www.drupal.org/node/2643822 Hey there, I noticed there was another issue opened some 7 months ago regarding the support of aggregations in this issue there is a comment saying that...
Original issue: https://www.drupal.org/node/2646006 Problem/Motivation When sending an empty array to Elasticsearch it becomes very unhappy. Try: curl -XPUT 'http://localhost:9200/some_existing_index/_settings' you will get a 400 error. Proposed resolution Don't send a...