Known Issues

S3 Sandbox type

  • Uploads to S3 Type sandboxes do not support checkpoints. Interrupted or suspended transfers will restart from beginning.
  • Uploads to S3 Type sandboxes do not support preserving modification time, or writing only newer files.

Long filenames and paths in Windows

Long paths and filenames (paths over 260 characters) on Windows are only supported when using Sandboxing, and the sandbox path is specified as a UNC path. For example, to sandbox to D:\data when using long paths or filenames, create the following sandbox:

>>> api.server.setSandboxMapping('', {
    "data":  r'\\?\d:\data'
})

Similarly, when using the --sandbox-dir option, the same sandbox can be specified as follows:

C:\> jetstream server --sandbox-dir "\\?\d:\data"