Troubleshoot Unsupported Product
Clients and Ingestion Tools
Historically, many popular clients and ingestion tools have worked with OpenSearch, such as OpenSearch Dashboards, OpenSearch SQL CLI, and OpenSearch JDBC. Lucenia aims to continue to support a broad set of clients and ingestion tools, but not all have been tested or have explicitly added Lucenia compatibility.
As an intermediate compatibility solution, Lucenia has a setting that instructs the cluster to return version 2.14.0
and distribution opensearch
rather than its actual version/distribution.
If you use clients that include a version check, such as versions of OpenSearch Dashboards and Fluent Bit, enable the setting:
PUT _cluster/settings
{
"persistent": {
"compatibility": {
"override_main_response": {
"version": "2.14.0",
"distribution": "opensearch"
}
}
}
}
Just like any other setting, the alternative is to add the following lines to lucenia.yml
on each node and then restart the node:
compatibility.override_main_response.version: "2.14.0"
compatibility.override_main_response.distribution: "opensearch"