Filecatalyst Workload Automation Jun 2026
def get_queue_depth(): resp = requests.get("http://fc-server:8080/api/transfers?status=PENDING") return len(resp.json())
def run_fta(local, remote, server, user, pw): cmd = ["fta-cli", "--server", server, "--username", user, "--password", pw, "--put", local, "--target", remote] result = subprocess.run(cmd, capture_output=True) return result.returncode == 0 filecatalyst workload automation
logging.basicConfig(level=logging.INFO)
FileCatalyst Workflow acts as a central hub that can trigger complex actions based on file arrival. def get_queue_depth(): resp = requests