loopback-connector-elastic-search icon indicating copy to clipboard operation
loopback-connector-elastic-search copied to clipboard

Strongloop Loopback connector for Elasticsearch

Results 46 loopback-connector-elastic-search issues
Sort by recently updated
recently updated
newest added

> Steven @onstrike07 Aug 14 17:34 > I have a question about the index setting in datasource.json for this connector. Is it possible to make the index name to be...

If removing an index also effectively removes any mappings and data then there shouldn't be any need for an explicit method such as `ESConnector.prototype.removeMappings` ... we need to confirm this...

We must make sure that the following optimization is possible for **most** if not _all_ versions of ES. ``` /* * 1. create a data structure from `self.settings.mappings` * that...

1. LoopBack uses https://github.com/othiym23/node-continuation-local-storage for implicit context propagation across the async invocation paths. 2. It has been speculated that ... some of the drivers (especially the ones with connection pooling)...

I've temporarily commented out the part of the test which fails. The original test case was available at: https://github.com/strongloop/loopback-datasource-juggler/blob/master/test/basic-querying.test.js I simply copied and repurposed it here: https://github.com/strongloop-community/loopback-connector-elastic-search/blob/master/test/02.basic-querying.test.js In order to...

By documentation (https://docs.strongloop.com/display/public/LB/Where+filter), loopback doesn't have 'nor' operator. I think, the 'nor' operator should be changed on 'neq'. It will more conform to loopback api

Currently, destroyAll issues a deleteByQuery operation with a query. Using a query causes ES to generate scores as part of the process and as a result has additional overhead. >...

enhancement
technical debt

Any pointers to code would be appreciated. I thought I had already accomplished the right flow via these lines of code: ``` dataSource.connector.connect(callback); ... ESConnector.prototype.connect = function (callback) { ......

We can define relationships in Loopback, but ElasticSearch has no knowledge of them. If data was indexed in ES with relationship information it would allow for better use of ElasticSearch's...

``` boot:create-model-instances (41) created +2ms TeamModel { ownerId: '[email protected]', memberId: NaN, id: 1 } ``` As the log statement shows, currently life goes on (`memberId: NaN`) and errors that crop-up...