Syncplicity Support

Search our knowledgebase to get the help you need, today

Follow

Large item policy

Summary

Large item policy determines DataHub behavior when encountering items which are too large to be uploaded to given platform. (i.e. files over 15Gb to Office365). 

Recommended if you have content that may violate a given platform's file size policy

Related:

Job JSON Example

Large Item Policy options include:

  • fail (default) - failed item will be reported as error in the transfer audit log
  • skip - file will be skipped/ignored and an informational activity logged. In the database, this will be in the transfer items table with a status item value of 5. In the UI Log Report, the message will state “The item was too large to transfer into the destination storage platform: /….

Example

{
    "name":"Simple Transfer Job with Large Item Policy",
    "kind": "transfer",
    "transfer": {
        "large_item": "skip",
        "transfer_type": "copy",
        "source": {
            "connection": { "id": "{{nfs_connection}}" },
            "target": {
                "path": "/SourcePath"
            }
        },
        "destination": {
            "connection": { "id": "{{cloud_connection}}" },
            "target": {
                "path": "/DestinationPath"
            }
        }
    },
    "schedule": {
        "mode": "manual"
    }
}

Powered by Zendesk