Filecatalyst Workload: Automation [verified]
Configure hotfolder.properties to watch a directory. Any file dropped is automatically transferred.
Getting started doesn't require a complete infrastructure overhaul. Here are the three most common entry points: filecatalyst workload automation
But as your operation scales, complexity explodes. That single transfer becomes a chain of dependencies: Configure hotfolder
# Retry up to 3 times RETRIES=3 for i in $(seq 1 $RETRIES); do fta-cli --put critical_file.dat --target /incoming/ && break || sleep 10 done filecatalyst workload automation
hotfolder.watch.dir=/opt/fc/watch hotfolder.target.server=192.168.1.100 hotfolder.target.port=11001 hotfolder.target.user=hotfold_user hotfolder.target.password=encrypted_pass hotfolder.target.directory=/uploads hotfolder.post.delete=true # Delete local after success hotfolder.compress=true # On-the-fly compression
You must be logged in to post a comment.