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.1 release:

  • New Elasticsearch/Kibana versions supported (7.17.9).
  • OpenSearch v. 1.3.7.

Java version supported

  • OpenJDK 17. 

New Features 

Improvements

  • Aspire Framework
    •  General
      • Crawl Progress Manager - Seed status not updated to completed - idle until the connections were released.
  •  Connectors
    •  ServiceNow
      • Clarification about the "Use Parallel Processing" and "Use Custom Metadata field list" options. 
      • "Can Contribute" ACL removed coming from the Knowledge Base.

Bugs

  • Aspire Framework
    • Resource Manager
      • Resources (drivers) loaded, not working for the RDB connections. Known issue on 5.1.
  • Connectors
    • Selenium:
      • Selenium driver sessions (Chrome) remaining open. Fixed for Windows environment.
    • ServiceNow
      • Include pattern option not getting items by using the Short Description pattern field. Known issue on 5.1.
      • ACLs not being inherited from Knowledge Base using User Criteria security.

Known Issues

  • Aspire Framework
    • Throttling is considering control items during the crawl.
  • Connectors
    • REST
      • Bearer authentication failing with unknown expiring time format.
  • UI
    • Edit page for Seeds loading empty rare times.
    • UI actions are limited for users with both Admin and Operator roles.

Migrating from 5.0.2 to 5.1.1

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"
    }
  }
}