Versionen im Vergleich

Schlüssel

  • Diese Zeile wurde hinzugefügt.
  • Diese Zeile wurde entfernt.
  • Formatierung wurde geändert.

...

Class/Methoddefault valueminimum valuehints
ServerConfiguration.setTileRendererPoolCoreSizeRuntime.getRuntime().availableProcessors() or minimum 20
ServerConfiguration.setTileRendererPoolMaxSizeRuntime.getRuntime().availableProcessors() or minimum 21 & greater than tileRendererPoolCoreSize

Limitations

With JWT-3487 there was a logic introduced, that ensures that a single client can't utilize all tile-rendering threads. This makes sure that a very complex document won't block the work of all other users.

Class/Methoddefault valueminimum valuehints
ServerConfiguration.setTileRendererMaxParallelRenderingPerClient
  • if tileRendererPoolMaxSize is bigger than 8
    • tileRendererPoolMaxSize - 2
  • if tileRendererPoolMaxSize is smaller or equal to 8
    • tileRendererPoolMaxSize - 1
  • if tileRendererPoolMaxSize is smaller or equal to 2
    • 0
0The value 0 means that the behavior is turned off (so a single client can utilize all threads)

HTTP Request Processing Threads (App-server specific)

...