Node ID: Node-CH-04
Worker: conv-worker-07
Last Check: 2025-02-20 14:32:18 UTC
Data Transformation Service
Service for automated data pipeline processing. Supports format conversion, image manipulation, and document generation with queue-based scheduling.
Supported Format Conversions
Document Processing
JSON → XML, PDF → DOCX, Markdown → HTML
Image Processing
PNG → JPEG, Resize, Crop, Watermarking
Task Queue
50 concurrent jobs | Priority-based scheduling
Job Submission Protocol
Submit transformation requests via multipart form. Progress tracking through webhook callbacks.
curl -X POST https://converter.ventocloud.online/v1/jobs -F "input=@source.json"
-F "format=xml"
-F "callback_url=https://webhook.site/a1b2c3d4"
-F "priority=high"
Queue Status
| Queue |
Pending |
Processing |
Completed |
| standard |
24 |
5 |
1,847 |
| high-priority |
8 |
3 |
5,291 |
| batch |
156 |
12 |
12,043 |
Webhook Format
Conversion completion triggers POST request with job status and output artifact URLs.
{
"job_id": "job_7f8a9b0c",
"status": "completed",
"output_url": "https://storage.ventocloud.online/output/job_7f8a9b0c.xml",
"timestamp": "2025-02-20T14:35:16Z"
}