{"id":26016606,"url":"https://github.com/netcracker/qubership-core-process-orchestrator","last_synced_at":"2026-04-11T23:48:58.413Z","repository":{"id":280770982,"uuid":"942010253","full_name":"Netcracker/qubership-core-process-orchestrator","owner":"Netcracker","description":"A Java-based process orchestration framework that provides task scheduling, execution management, and process flow control capabilities.","archived":false,"fork":false,"pushed_at":"2025-03-05T07:36:32.000Z","size":44,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":4,"default_branch":"main","last_synced_at":"2025-03-05T08:29:14.281Z","etag":null,"topics":["core","java","lib"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Netcracker.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE-OF-CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2025-03-03T12:30:25.000Z","updated_at":"2025-03-05T08:07:45.000Z","dependencies_parsed_at":"2025-03-05T08:30:45.880Z","dependency_job_id":"6a6e156c-4d54-4abd-bab2-74f9f8d7d198","html_url":"https://github.com/Netcracker/qubership-core-process-orchestrator","commit_stats":null,"previous_names":["netcracker/qubership-core-process-orchestrator"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Netcracker%2Fqubership-core-process-orchestrator","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Netcracker%2Fqubership-core-process-orchestrator/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Netcracker%2Fqubership-core-process-orchestrator/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Netcracker%2Fqubership-core-process-orchestrator/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Netcracker","download_url":"https://codeload.github.com/Netcracker/qubership-core-process-orchestrator/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":242145649,"owners_count":20079167,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["core","java","lib"],"created_at":"2025-03-06T04:22:15.006Z","updated_at":"2026-04-11T23:48:58.398Z","avatar_url":"https://github.com/Netcracker.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![Maven build](https://github.com/Netcracker/qubership-core-process-orchestrator/actions/workflows/maven-deploy.yml/badge.svg)](https://github.com/Netcracker/qubership-core-process-orchestrator/actions/workflows/maven-deploy.yml)\n[![Coverage](https://sonarcloud.io/api/project_badges/measure?metric=coverage\u0026project=Netcracker_qubership-core-process-orchestrator)](https://sonarcloud.io/summary/overall?id=Netcracker_qubership-core-process-orchestrator)\n[![duplicated_lines_density](https://sonarcloud.io/api/project_badges/measure?metric=duplicated_lines_density\u0026project=Netcracker_qubership-core-process-orchestrator)](https://sonarcloud.io/summary/overall?id=Netcracker_qubership-core-process-orchestrator)\n[![vulnerabilities](https://sonarcloud.io/api/project_badges/measure?metric=vulnerabilities\u0026project=Netcracker_qubership-core-process-orchestrator)](https://sonarcloud.io/summary/overall?id=Netcracker_qubership-core-process-orchestrator)\n[![bugs](https://sonarcloud.io/api/project_badges/measure?metric=bugs\u0026project=Netcracker_qubership-core-process-orchestrator)](https://sonarcloud.io/summary/overall?id=Netcracker_qubership-core-process-orchestrator)\n[![code_smells](https://sonarcloud.io/api/project_badges/measure?metric=code_smells\u0026project=Netcracker_qubership-core-process-orchestrator)](https://sonarcloud.io/summary/overall?id=Netcracker_qubership-core-process-orchestrator)\n\n# Process Orchestration Framework\n\nA Java-based process orchestration framework that provides task scheduling, execution management, and process flow control capabilities.\n\n## Overview\n\nThis framework allows you to define and execute complex process workflows with dependent tasks, timeouts, and state management. It uses a database backend for persistence and provides robust error handling and process control.\n\n## Key Components\n\n### Core Classes\n\n- `ProcessOrchestrator` - Main orchestration engine that manages process execution\n- `ProcessDefinition` - Defines process structure and task dependencies \n- `Process` - Handles the execution of process instances\n- `TaskExecutorService` - Custom executor service for task management with timeout capabilities\n\n### Data Models\n\n- `ProcessInstanceImpl` - Process instance implementation with state management\n- `TaskInstanceImpl` - Task instance implementation with execution state tracking\n- `DataContext` - Context storage for process and task data\n\n### Repositories\n\n- `ContextRepository` - Manages persistence of context data\n- `ProcessInstanceRepository` - Handles process instance persistence\n- `TaskInstanceRepository` - Manages task instance persistence\n\n### Execution Components\n\n- `TaskExecutionWrapper` - Wraps task execution with callback handling\n- `TerminateRunnable` - Handles graceful task termination\n\n## Features\n\n- Task dependency management\n- Process and task state persistence\n- Timeout handling for tasks\n- Asynchronous task execution\n- Process termination capabilities\n- Version control for data consistency\n- Context data management\n- Error handling and recovery\n\n## Database Schema\n\nThe framework uses the following tables:\n- `po_context` - Stores context data\n- `pe_process_instance` - Stores process instances\n- `pe_task_instance` - Stores task instances\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnetcracker%2Fqubership-core-process-orchestrator","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnetcracker%2Fqubership-core-process-orchestrator","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnetcracker%2Fqubership-core-process-orchestrator/lists"}