Details
Description
We meet this problem with the studio. The root cause is in the part of studio-integration plugin.
WebSocketClient sends a request about job\node migration. It makes encodes values of the configuration with base64 and wraps them into ByteBuffer.
WebClient-payload-creation
WebSocketServer receives it but it has limitations. 8196 bytes. The communication isn't partial.
And when our payload is bigger, for example, 10646, it can't be processed and an exception is thrown.
As a user of Studio, I just see that Studio freezes for a couple of minutes and then I can't open the job.
The buffer can be increased with option:
org.apache.tomcat.websocket.DEFAULT_BUFFER_SIZE=12265
But maybe, websocket can support partial payload (looks like it can, because I found in the decompiled code that it checks on the partialness of a payload).
We met that problem with workday job migration: https://talend.slack.com/archives/GNLEZ369L/p1657045586838019
UPD
The idea of this ticket is to implement (enable if it's just a configuration) partial payload
Attachments
Issue Links
- links to