Versions Compared

Key

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


Easy Heading Free
navigationTitleOn this Page
navigationExpandOptionexpand-all-by-default

NoSQL DB provider supported by the Aspire 5.0.4 release:

  • New Elasticsearch/Kibana versions supported (7.17.6).
  • OpenSearch v. 1.1.

Java version supported

  • OpenJDK 11.

New Features

  • Framework
    • NoSQL Provider:

    ...

        • Index rollover management.
    • Workflow
      • Summarizers
        • Job Summarize Executor.
        • Saga Summarizer.
      • Tesseract OCR

      ...

          • Tesseract Language parameter on the DXF configuration.

      Known Issues

      • Aspire Framework
        • Throttling is considering control items during the crawl.
      • Aspire UI
        • Edit page for Seeds loading empty rare times.
        • Seeds field should be required for any type of Schedule.
        • UI actions are limited for users with both Admin and Operator roles.
        • Filtering by name does not support the underscore character. Workaround: use the dash character as a separator; do not use space and underscore.  
      • Connectors
        • ServiceNow

      ...

          • 'Can Read' permissions not considered for Knowledge Articles

      ...

          • .

      External Technical Limitations

      • Connectors
        • ServiceNow
          • Security changes are not picked up by an incremental crawl.

      Migrating from 5.0.2 to 5.0.4

      Update the aspire-mappings index to refresh mappings:

      Code Block
      titleaspire-mappings
      PUT aspire-audit/_mapping
      {
        "properties": {
          "audit.timestamp": {
            "type": "date"
          },
          "audit.seedId": {
            "type": "keyword"
          },
          "audit.crawlId": {
            "type": "keyword"
          },
          "audit.type": {
            "type": "keyword"
          },
          "audit.worker": {
            "type": "keyword"
          },
          "audit.statistics.seedId": {
            "type": "keyword"
          },
          "audit.statistics.connectionId": {
            "type": "keyword"
          },
          "audit.statistics.connectorId": {
            "type": "keyword"
          },
          "audit.statistics.id": {
            "type": "keyword"
          }
        }
      }