Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The Aspire Elasticsearch Provider is the component that is responsible for talking to Elasticsearch on behalf of Aspire. All configuration for

the Elasticsearch Provider in Aspire is done in the settings.xml file.

...

Elasticsearch provider can be configured to use Basic authentication if required by the  Elasticsearch server administrator. Username and password must be provided. Password must be encrypted by standard Aspire encryption utilities.

Note
titleNote

The Elasticsearch authentication was tested using the File Based authentication provided in the free tier. None of the security features included in the subscription tiers were tested nor they are officially supported. The security features were made available for free since version 6.8.0 and 7.1.0. For more information, please visit Elastic's official notice.


Claim prefetch size

Code Block
languagexml
firstline78
linenumberstrue
<!-- noSql database provider for the 4.0 connector framework -->
<noSQLConnectionProvider>
    <implementation>com.accenture.aspire:aspire-elasticsearch-provider</implementation>
    <url>http://localhost:9200</url>
    <claimPrefetch>300</claimPrefetch>
    <claim>100</claim>
</noSQLConnectionProvider>

...