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

Compare with Current View Page History

« Previous Version 6 Next »



NoSQL DB provider supported by he Aspire 5.2.2 release:

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

Java version supported

  • OpenJDK 17 

Improvements

Total number of improvemnets included:  1

  • Publishers
    • Kafka
      • ASPIRE-12694 Added support for SASL authentication method (Simple Authentication and Security Layer).

Bugs

Total number of bugs fixed:  11

  • Connectors
    • Azure Data Lake
      • ASPIRE-12720 ProcessCrawlRoot exception running a crawl.
  • Workflows
    • Tesseract OCR
      • ASPIRE-12719 Some NPE proccesing images. 

Known Issues

  • Aspire Framework
    • Extract Text - NoClassDefFoundError errors.
    • Aspire has an API limitation of 10000 seeds
  • Publishers
    • Azure Blob
      • ASPIRE-12733 NPE during crawls.


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