# Xet Integration Configuration # Data Transfer Operations Framework # Xet Repository Configuration repositories: artifacts: url: "https://xet.example.com/adaptai/artifacts" description: "Primary artifact storage for models, checkpoints, and experiments" mount_path: "/mnt/xet/artifacts" datasets: url: "https://xet.example.com/adaptai/datasets" description: "Dataset storage for training and evaluation data" mount_path: "/mnt/xet/datasets" models: url: "https://xet.example.com/adaptai/models" description: "Model storage for trained models and checkpoints" mount_path: "/mnt/xet/models" # Artifact Management Policies artifacts: # Retention policies retention_days: 90 auto_cleanup: true # Compression settings compression_level: 6 auto_compress: true # Integrity verification checksum_verification: true checksum_algorithm: "blake3" # Synchronization Settings sync: # Automatic sync intervals (in seconds) interval: 3600 # 1 hour # Conflict resolution conflict_policy: "timestamp" # newest wins # Bandwidth throttling max_bandwidth_mbps: 1000 # Retry settings max_retries: 3 retry_delay: 30 # Security Configuration security: # Authentication auth_method: "token" token_env_var: "XET_AUTH_TOKEN" # Encryption encryption_enabled: true encryption_method: "aes-256-gcm" # Access control read_only: false # Monitoring and Metrics monitoring: # Prometheus metrics enable_metrics: true metrics_port: 9091 # Health checks health_check_interval: 300 # Logging log_level: "INFO" log_file: "/var/log/dto-xet.log" # Integration Hooks hooks: # Pre-upload hooks pre_upload: "/opt/dto/hooks/pre-xet-upload.sh" # Post-upload hooks post_upload: "/opt/dto/hooks/post-xet-upload.sh" # Pre-download hooks pre_download: "/opt/dto/hooks/pre-xet-download.sh" # Post-download hooks post_download: "/opt/dto/hooks/post-xet-download.sh" # Performance Optimization performance: # Parallel transfers max_parallel_transfers: 8 # Chunk size for large files chunk_size_mb: 64 # Cache settings cache_enabled: true cache_size_gb: 50 # Connection pooling max_connections: 12 connection_timeout: 30