Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Activation\deactivation

Unstable connection connection

A new connection must be established and the download process of partition file must be continued from the last successfully send part.

Crash recovery

Phase-2

The SSL must be disabled to take an advantage of Java NIO zero-copy file transmission using FileChannel#transferTo method. If we need to use SSL the file must be splitted on chunks the same way to send them over the socket channel with ByteBuffer. As the SSL engine generally needs a direct ByteBuffer to do encryption we can't avoid copying buffer payload from the kernel level to the application level

...