You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »



NoSQL DB provider supported by he Aspire 5.2 release:

  • New Elasticsearch/Kibana versions supported v. 8.12.0
  • OpenSearch/Dashboards v. 2.11.1

Java version supported

  • OpenJDK 17 

New Features 

  • Aspire Framework

Improvements

  • Aspire Framework
  • Connectors
     
  • Publishers

Bugs

Total number of bugs fixed:  108

  • Aspire Framework


  • Connectors


  • Publishers


  • UI
  • Workflows
  • DBServer

Known Issues

  • Aspire Framework
    • Extract Text - NoClassDefFoundError errors.
    • Aspire has an API limitation of 10000 seeds


Migrating from 5.x to 5.2.2

For the identity cache index, follow the steps detailed in the guide 5.2 - How to migrate Identity Cache

Update the aspire-mappings index to refresh mappings:

aspire-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"
    }
  }
}
  • No labels