Issues specific to Dev mode and Prod mode configuration.
Error:
FileNotFoundError: .dev/table.jsonl not found
Solution:
- Check table was created in previous stage
- Verify table path is correct
- Check
.dev/directory exists - Review previous stage logs
Error:
RuntimeError: Map operation failed
Solution:
- Check mapper script syntax
- Verify input table exists
- Review
.dev/directory for logs - Check mapper script has
if __name__ == "__main__": main()block
Error:
PermissionError: Cannot create sandbox directory
Solution:
- Check file permissions on pipeline directory
- Verify disk space available
- Check
.dev/directory permissions
Error:
Error: DuckDB query failed
Solution:
- Check YQL to SQL conversion
- Verify table schemas
- Review query syntax
- Check DuckDB version compatibility
Error:
ValueError: secrets are required for prod mode
Solution:
- Create
configs/secrets.envfile - Add
YT_PROXYandYT_TOKEN - Verify credentials are correct
- Check file permissions
Error:
ValueError: build_folder not found in [pipeline] config section.
Solution:
- Add
build_folderto pipeline config - Verify YT path is correct
- Check YT permissions for build folder
- Ensure build folder path exists or can be created
Error:
Error: Failed to upload code to YT
Solution:
- Check YT credentials and permissions
- Verify build folder path is correct
- Check network connectivity
- Review upload logs
Error:
RuntimeError: Operation failed on YT cluster
Solution:
- Check YT web UI for operation details
- Review operation logs in YT
- Verify resource limits are sufficient
- Check operation configuration
Error:
ConnectionError: Cannot connect to YT cluster
Solution:
- Verify
YT_PROXYURL is correct - Check network connectivity
- Review firewall settings
- Test YT connection manually
Common Issues:
- Table paths may need adjustment
- Resource limits may need tuning
- Checkpoint paths may differ
- Environment variables may be required
Solution:
- Test thoroughly in dev mode first
- Gradually migrate stages
- Review Dev vs Prod guide
- Check configuration differences
- Configuration Guide - Complete configuration reference
- Dev vs Prod - Understanding execution modes
- Secrets Management - Managing credentials