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

Compare with Current View Page History

« Previous Version 28 Next »

Server to Server (S2S) is unique key feature of JADE. It provides possiblity to setup number of transfers with installing clients/agents on each source/tearget server, from Single Sever.

JADE Implementation Architecture

JADE Implementation Architecture Details

JADE have following main components

  1. CLI (Command Line Interface) Executed on Shell level
  2. User Application (API)
  3. JITL Scheduling component of JADE
  4. JADE Engine
  5. Options Engine
  6. JADE Engine Interface
  7. VFS (Virtual File System) Interface (Data Provider)
    • FTP
    • SFTP
    • FTPS
    • WebDAV
    • CIFS
    • Local (native copy)

JADE Server-to-Server File Transfer

Warning: : syntax error in line 1 near '>'

JADE can transfer files using intermediate server from Source Server to Target Server (S2S) without touch down on intermediate server. S2S implementation details.

  1. JADE uses "Streams" (or common terminology pipe) to transfer file from Source to Target.
  2. JADE opens an input stream from source server and
  3. output stream with target server.
  4. JADE can use different Data provider as Source and Target for S2S operation.
  5. By default JADE transfer 32Kb chunks from input to output stream. One can increase the buffer size by setting buffer_size parameter, but bigger buffer size may not result in higher transfer speed.
  6. JADE can process the content of the buffer between source and target transfer. By doing in memory operations, even for multistage processing,JADE dramatically improves the transfer speed.
    1. Calculate Hashes
    2. Reserved for further development
      1. Filtering
      2. Encoding/Decoding
      3. Encryption/Decryption
  7. JADE transfers files from source server to target server without "Touchdown" means, during transfer file is never written to the intermediate server (where JADE is running). JADE's key unique feature is "in memory" transfer. During transfer JADE do not copy entire file in the memory, but only chunks, size defined as with parameter buffer_size.

For more information about JADE Server to server transfer configuration see link JADE server to server transfer
JADE has a generic implementation for Virtual file System or Data Provider, which make it easy to implement new Protocols.

  • No labels