App Suite Releases
  • 8.35
  • 7.10.6
Imprint
  • 8.35
  • 7.10.6
Imprint
  • Release 8.38
  • Release 8.37
  • Release 8.36
  • Release 8.35
  • Release 8.34
    • Noteworthy Changes
      • Important Changes
      • App Suite DocumentConverter
      • App Suite Middleware
    • Changelogs
      • App Suite UI
      • App Suite Middleware
      • Additional Components
        • AI Service
        • App Suite DocumentConverter
        • Switchboard
    • Helm Charts
      • App Suite Stack Chart
      • Cache Service
      • DocumentConverter
      • ImageConverter
      • App Suite Middleware Core
      • SpellCheck
      • Switchboard
  • Release 8.33
  • Release 8.32
  • Release 8.31
  • Release 8.30
  • Release 8.29
  • Release 8.28
  • Release 8.27
  • Release 8.26
  • Release 8.25
  • Release 8.24
  • Release 8.23
  • Release 8.22
  • Release 8.21
  • Release 8.20
  • Release 8.19
  • Release 8.18
  • Release 8.17
  • Release 8.16
  • Release 8.15
  • Release 8.14
  • Release 8.13
  • Release 8.12
  • Release 8.11
  • Release 8.10

App Suite DocumentConverter

Configuration

SCR-1492

Summary: New Helm chart property to specify DocumentConverter client CacheService URL

A new Helm chart property for core-mw allows to specify if CacheService should be used by DocumentConverter client (Default: false). If enabled, either the cluster internal CacheService URL is used or could be overwritten via optional value as well:

core-mw:
  ## -- Configuration for DocumentConverter client
  documentConverterClient:
    cache:
      remoteCache:
        enabled: false
        # url: https://optional-cacheservice-host:8001/cache

SCR-1494

Summary: Changing Helm stackchert default for core-cacheservice.enabled from false to true

Releases <= 8.33: Deployment and usage of CacheService may be disabled by default:

core-cacheservice:
 enabled: false

If enabled, the DocumentConverter has to be configured to use it. An optional external URL might be specified as well:

core-documentconverter:
  documentConverter:
    cache:
      remoteCache:
        enabled: false
        # url: https://optional-cache-host:8001/cache

Releases >= 8.34: CacheService and its usage by Middleware and DocumentConverter is enabled by default. It can be disabled with the known property:

core-cacheservice:
 enabled: true

Middleware and DocumentConverter will adapt their behaviour accordingly. If CacheService is enabled it will be used, if disabled not. If required, Middleware and DocumentConverter usage of CacheService can be overridden and enabled / disabled independently of the high level configuration of the CacheService deployment:

core-documentconverter:
  documentConverter:
    cache:
      remoteCache:
        enabled: true
        # url: https://optional-cache-host:8001/cache

core-mw:
  documentConverterClient:
    cache:
      remoteCache:
        enabled: true
        # url: https://optional-cache-host:8001/cache

The configuration of CacheService database and object storage to use is unchanged. The DocumentConverter cache constraints are taken from DocumentConverter server configuration.

Important Changes
App Suite Middleware