Skip to main content
Released on October 16, 2025, Fusion 5.9.15 is a maintenance release that includes scalability enhancements to LWAI stages, accuracy improvements in the Consumption Dashboard entitlement reporting, expanded monitoring metrics for asynchronous query stages, security fixes, and updated UI behavior. Upgrading to the latest version of Fusion 5.9 offers several key benefits:
  • Access to latest features: Stay current with the latest features and functionality to ensure compatibility and optimal performance.
  • Simplified process: Fusion 5.9.5 and later use an in-place upgrade strategy, making upgrades easier than ever.
  • Extended support: Upgrading keeps you up-to-date with the latest supported Kubernetes versions, as outlined in the Lucidworks Fusion Product Lifecycle policy.
Looking to upgrade?See Fusion 5 Upgrades for detailed instructions.
Fusion 5.9.15 upgrades the Stage SDK to v2.0.0. Any custom plugins compiled with SDK v1.0.0, such as query-sample-plugin-stage-0.0.1.zip and index-sample-plugin-stage-0.0.1.zip, will not load after the upgrade. Pipelines that reference those stages will be hidden until you install SDK v2.0.0 replacements.Take these steps before you begin the upgrade process.
  1. Rebuild your plugins against Stage SDK v2.0.0.
    • Example outputs:
      • 2-0-0-query-sample-plugin-stage-0.0.2.zip
      • 2-0-0-index-sample-plugin-stage-0.0.2.zip
    Do not remove v1.0.0 plugins before installing their 2.0.0 replacements because pipelines still reference the old classes stored in ZooKeeper.
  2. Audit your pipelines and remove or replace any stages that no longer exist or are changed in the new plugins. If a pipeline still references a removed stage, it will continue to fail deserialization after upgrade.
Pipelines using custom stages will be hidden between the moment you upgrade and the moment you install the new plugins.
For supported Kubernetes versions and key component versions, see Platform support and component versions.

Key highlights

Consumption Dashboard update

The Consumption Dashboard uses graphs to visually track request and document usage against the allotted consumption for a Fusion license. The hover interaction for requests per pipeline graphs now displays a sortable list of pipelines to make it easier to analyze pipeline-level consumption. Pipelines in a requests per pipeline graph can be sorted in the following ways:
  • Value descending: sort pipelines according to number of requests from most to least.
  • Value ascending: sort pipelines according to number of requests from least to most.
  • Alphabetically ascending: sort by pipeline name from A to Z.
  • Alphabetically descending: sort by pipeline name from Z to A.
Requests per pipeline sortable

Sortable requests per pipeline graph

Gain deeper insight into asynchronous query performance

Monitoring for asynchronous query stages is expanded to provide performance insights for async workloads, allowing for better optimization and more efficient troubleshooting. Structured logs and Grafana dashboards for each async stage let you view metrics, including the following:
  • Execution time and trends for how long a job or request takes from start to finish.
  • Success rates for percentage of requests and jobs that complete without error.
  • Number of retries for how many retry attempts were made after initial failures.
  • Queue wait times for the time a job or request spends waiting to be processed.
  • Resource usage for consumption of compute/storage/network by workload or tenant.
Monitoring dashboard

The monitoring dashboard now includes additional metrics

Prometheus metrics are used across async stages for additional visibility into query behavior, such as query performance comparisons across different filters and per-node monitoring to identify which Fusion node handled a specific query. Logs can be filtered by:
  • Application
  • Pipeline
  • Profile
  • Stage
  • Execution status
  • Custom time ranges
This visibility makes it easier to detect performance bottlenecks, identify root causes of failures, and tune pipeline behavior across applications and query profiles.

New Retrieval-Augmented Generation (RAG) query stage

Lucidworks continues expanding RAG capabilities that improve the quality and accuracy of LLM-powered retrieval workflows. Documents that require chunking tend to be large and cover multiple topics. Queries return an answer that links to the document, but the answer does not show exactly where to find that information in the document. A Chunking RAG Bridge Query Stage is introduced to evolve RAG from document-level retrieval to chunk-level precision. With this new stage, each cited source that accompanies a RAG answer also provides a link to the relevant document along with a snippet containing information about where to find the content in the document.

New Batch Vectorize index stage

Fusion 5.9.15 introduces an LWAI Batch Vectorize Index Stage for AI pipelines. This works the same as the LWAI Vectorize Field stage but delivers faster indexing throughput because it processes your documents in batches before sending those documents to the next stage in your index pipeline. The LWAI Batch Vectorize stage can improve document indexing performance up to ten times the rate of the LWAI Vectorize Field stage. The LWAI Vectorize stage processes documents one at a time.
Flowchart for single document processing

Flowchart for single document processing

With the LWAI Batch Vectorization Index stage, Fusion can send multiple documents per API call, reducing API overhead and improving scalability.
Flowchart for batch document processing

Flowchart for batch document processing

This stage includes new properties. A batch is forwarded to the API as soon as it is full or when the wait time elapses, whichever comes first.

Configurable properties added:

Maximum Batch Size
Maximum number of documents per batch (up to 32).
Maximum Batch Delay
Maximum time to wait in milliseconds since the first document is buffered before proceeding.

Restrictive mode for query pipelines

Fusion 5.9.15 introduces restrictive mode, a new way to safeguard query pipelines against unauthorized or risky changes. When you enable restrictive mode, Fusion enforces stricter query parameter validation and sanitization, blocking unsafe inputs and limiting potentially expensive operations. This feature helps you improve security and prevent costly mistakes. See Restrictive Mode for complete details about how restrictive mode works and how to enable it.

Fusion stage SDKs updated to support JDK 11

The Index Stage and Query Stage SDKs in self-hosted Fusion now support JDK 11.
These updates apply only to self-hosted Fusion and are not supported in Managed Fusion.
Adding support for JDK 11 does the following:
  • Increases runtime success.
  • Improves dependency management to build plugins against stable versions.
  • Ensures long-term compatibility of critical operational pipelines for plugin developers.
  • Enables support for existing search functionality when planning upgrades.

Fusion Admin UI updates

Several updates to the Fusion Admin UI improve safety and usability:
  • A description is added to the JSON Facets stage, clarifying its purpose.
  • UI labels are added for Ray model deployment jobs, grouping them under “Model Deployment Jobs” for clarity and discoverability.
  • The Asynchronous Execution Config checkbox for the AI pipeline stages is now properly aligned with its label for better visual consistency and user experience.
  • An optional red banner can be added across the bottom of all production environments as a visual reminder that you are in a production environment. The banner is static and non-dismissible, reducing the risk of accidental misconfiguration. Production banner To enable the banner, add the following to your custom values YAML files.
    admin-ui:
      banner:
        enabled: true
    
    If you would like to customize the text that shows in the UI, you can add parameters to your custom values YAML file.
    admin-ui:
      banner:
        enabled: true
        text: "CUSTOM_BANNER_MESSAGE"
        backgroundColor: "#ff4444"
        textColor: "#ffffff"
        fontSize: "14px"
        fontWeight: "bold"
        position: "bottom"
    
    Configuration parameters:
    • text (required): the message displayed in the banner
    • backgroundColor: background color; default is red #ff4444
    • textColor: text color; default is white #ffffff
    • fontSize: font size; default is 14px
    • fontWeight: font weight; default is bold
    • position: banner position - bottom or top; default is bottom

Naming conventions for AI-generated fields

Fields generated by Lucidworks AI now include a prefix of lwai_ when indexed to Solr, making it easier to identify those fields when excluding them or using them for other tasks, such as rules, queries, or reports. Any field names previously generated are still supported and no changes are needed to continue using them.

Ability added for Prediction API

The Prediction API now supports image metadata enrichment. This API use case generates keywords and categories for images. This information can then be used as metadata for SEO, image-based product discovery, and more.

Bug fixes

  • Added a custom module that serializes Nashorn undefined values as JSON null, preventing serialization errors when such values appear in Java objects. When using the OpenJDK version of Nashorn, an exception was thrown when the context contained keys with undefined JavaScript values. This exception occurred because the class for the undefined values was not visible outside of the OpenJDK Nashorn package. A custom object mapper is added for the class so serialization issues are now resolved when handling undefined in JavaScript pipeline to run reliably under Java 17.
  • Time zone conversion issues are fixed in the Consumption Dashboard that caused counts to span extra days. The time selector was creating an overlap due to UTC conversion that included counts for both the selected day and the following day. As the API only accepts dates and not times, the time selector was removed to ensure accurate daily totals for entitlement reporting.
  • Addressed an issue where jobs are stuck in a running state during an upgrade. Allowing all crawl jobs to complete before performing Fusion upgrades is necessary to maintain data integrity and prevent invalid job states. Now requests to stop jobs during an upgrade process are enhanced to check for invalid states, attempt automatic fixes, and provide detailed status messages.
  • Adjusted license checks when apps-manager is unavailable for consistent and predictable license validation behavior. In previous releases, if apps-manager was unavailable or license capabilities could not be verified, the license check could not complete. The addition of broader exception catching when retrieving license capabilities and improved error logging for service unavailability ensures predictable capability behavior while connectivity is restored.
  • Fixed a permissions flow in the Fusion indexing path used by V2 connectors. REST calls made from index pipelines using V2 connectors were running without the required permissions. This returned insufficient permissions errors and skipped mapped fields. REST calls in index pipelines now execute as expected when using the required privileges.
  • Fixed an error where the Tika asynchronous parser in Fusion 5.9.12 did not index the body field for SharePoint connector documents, such as DOCS, PPTX, and XLSX files. Documents were split into multiple parts, so the body content only ended up in child documents, while the parent document lacked the body field. Now the first parsed part of the document is sent to Fusion using the parent document ID so the body field merges into the expected parent document. This restores expected content extraction and preserves child parts for images and other embeds.

Known issues

Upgrading to Fusion 5.9.15 moves stage SDKs from v1.0.0 to v2.0.0. When upgrading, plugins compiled with SDK v1.0.0 do not load. Pipelines referencing those stages remain hidden until you replace the plugins.
  • Before upgrading, rebuild any custom index or query plugins from SDK v1.0.0 using SDK v2.0.0. Also, verify pipelines do not reference stages removed or renamed in the new plugins.
  • After upgrading, upload the new plugin ZIP files to the blob store and wait for the installation to complete. At this point, the pipelines will reappear.
See Upgrade notes for Stage SDK plugins above for more details.

Security

Base images for Fusion are updated from Alpine 3.15.0 to 3.21.0, reducing the number of CVEs from 71 to 0.

Deprecations

For full details on deprecations, see Deprecations and Removals.

Deprecated jobs

The following jobs are deprecated in this release and will be removed in a future release: Lucidworks recommends migrating to Neural Hybrid Search, which achieves superior relevance compared to these legacy machine learning methods. Rules previously generated by these jobs and promoted to the _query_rewrite collection will remain until you delete them.

Platform support and component versions

Kubernetes platform support

Lucidworks has tested and validated support for the following Kubernetes platforms and versions:
  • Google Kubernetes Engine (GKE): 1.29, 1.30, 1.31, 1.32, 1.33
  • Microsoft Azure Kubernetes Service (AKS): 1.29, 1.30, 1.31, 1.32, 1.33
  • Amazon Elastic Kubernetes Service (EKS): 1.29, 1.30, 1.31, 1.32, 1.33
Support is also offered for Rancher Kubernetes Engine (RKE and RKE2) and OpenShift 4 versions that are based on Kubernetes 1.29, 1.30, 1.31, 1.32, 1.33; note that RKE2 may require some Helm chart modification. OpenStack and customized Kubernetes installations are not supported. For more information on Kubernetes version support, see the Kubernetes support policy.

Component versions

The following table details the versions of key components that may be critical to deployments and upgrades.
ComponentVersion
Solrfusion-solr 5.9.15 (based on Solr 9.6.1)
ZooKeeper3.9.1
Spark3.4.1
Ingress ControllersNginx, Ambassador (Envoy), GKE Ingress Controller
Rayray[serve] 2.46.0
More information about support dates can be found at Lucidworks Fusion Product Lifecycle.
I