awesome-repositories.com
Blog
awesome-repositories.com

Entdecke die besten Open-Source-Repositories mit KI-gestützter Suche.

EntdeckenKuratierte SuchenOpen-Source-AlternativenSelf-hosted SoftwareBlogSitemap
ProjektÜber unsRanking-MethodikPresseMCP-Server
RechtlichesDatenschutzAGB
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

30 Repos

Awesome GitHub RepositoriesDistributed Task Schedulers

Systems for orchestrating and distributing complex data processing workflows across computing clusters.

Distinguishing note: Focuses on data pipeline orchestration and DAG-based task scheduling rather than generic system-level job scheduling.

Explore 30 awesome GitHub repositories matching data & databases · Distributed Task Schedulers. Refine with filters or upvote what's useful.

Awesome Distributed Task Schedulers GitHub Repositories

Finde die besten Repos mit KI.Wir suchen mit KI nach den am besten passenden Repositories.
  • apache/airflowAvatar von apache

    apache/airflow

    45,902Auf GitHub ansehen↗

    Airflow is a platform for programmatically authoring, scheduling, and monitoring complex data pipelines. It functions as a workflow automation engine that manages the lifecycle of recurring business processes by executing code-defined task dependencies. By representing workflows as directed acyclic graphs, the system ensures that task execution order and data flow are explicitly defined and reliably maintained across distributed computing environments. The platform distinguishes itself through a highly modular, provider-based architecture that decouples core orchestration logic from external

    Distributing and managing the execution of batch processing jobs across large clusters to ensure reliable data transformation and efficient resource utilization.

    Pythonairflowapacheapache-airflow
    Auf GitHub ansehen↗45,902
  • xkcoding/spring-boot-demoAvatar von xkcoding

    xkcoding/spring-boot-demo

    34,101Auf GitHub ansehen↗

    This project is a comprehensive reference collection of practical implementation examples and patterns for building applications with Spring Boot. It serves as a Java web application template and a showcase for developing functional web services featuring REST endpoints, template engines, and global exception handling. The repository distinguishes itself by providing detailed demonstrations of enterprise-grade features, including distributed locking, task scheduling, and asynchronous message exchange using brokers like RabbitMQ. It also includes reference implementations for automated API doc

    Showcases enterprise-grade patterns including distributed locking and asynchronous RabbitMQ messaging.

    Javademoin-actionjava
    Auf GitHub ansehen↗34,101
  • osquery/osqueryAvatar von osquery

    osquery/osquery

    23,113Auf GitHub ansehen↗

    Osquery is a unified endpoint monitoring framework that exposes operating system internals as relational tables. By representing hardware, network, and process activity as structured data, it allows users to retrieve system state and configuration information using standard SQL syntax. The system distinguishes itself through a cross-platform abstraction layer that normalizes disparate operating system interfaces into a consistent schema across Windows, macOS, and Linux. It supports both interactive local analysis via a command-line shell and distributed fleet orchestration, where recurring qu

    Supports scheduling recurring SQL queries across a fleet of hosts to aggregate state changes and monitor infrastructure.

    C++hacktoberfestintrusion-detectionmonitoring
    Auf GitHub ansehen↗23,113
  • prefecthq/prefectAvatar von PrefectHQ

    PrefectHQ/prefect

    21,640Auf GitHub ansehen↗

    Prefect is a workflow orchestration platform designed to define, schedule, and monitor complex data pipelines as Python code. It functions as a container-native engine that wraps individual tasks in isolated environments, ensuring consistent dependencies and resource allocation across diverse infrastructure. By utilizing a state-machine-based orchestration model, the system tracks execution progress through discrete transitions and persistent event logs to maintain reliable and observable task processing. The platform distinguishes itself through a decoupled worker-API architecture, which sep

    Orchestrates and distributes complex data processing workflows across computing clusters for parallel execution.

    Pythonautomationdatadata-engineering
    Auf GitHub ansehen↗21,640
  • spotify/luigiAvatar von spotify

    spotify/luigi

    18,676Auf GitHub ansehen↗

    Luigi is a Python framework designed for building and managing complex batch data pipelines. It functions as a workflow orchestration engine that organizes tasks into directed acyclic graphs, ensuring that jobs execute in the correct logical order based on their dependencies. By utilizing a centralized scheduler, the system coordinates task execution across distributed environments, tracks global workflow state, and prevents redundant processing by verifying the existence of output targets before triggering any work. The project distinguishes itself through a robust state-tracking mechanism t

    Acts as a centralized service for tracking dependencies and scheduling distributed batch tasks.

    Pythonhadoopluigiorchestration-framework
    Auf GitHub ansehen↗18,676
  • zhisheng17/flink-learningAvatar von zhisheng17

    zhisheng17/flink-learning

    15,071Auf GitHub ansehen↗

    This project is a collection of educational resources and reference implementations for the Apache Flink stream processing framework. It provides a learning resource focused on mastering distributed stream processing through implementation guides, performance tuning tutorials, and practical examples. The repository features detailed walkthroughs for building real-time data pipelines using the DataStream and Table APIs. It includes specific integration examples for connecting Apache Flink with Kafka brokers and Elasticsearch indices, as well as reference implementations for real-time deduplica

    Orchestrates the allocation of parallel operator instances across a distributed cluster of job and task managers.

    Javaclickhouseelasticsearchflink
    Auf GitHub ansehen↗15,071
  • apache/dolphinschedulerAvatar von apache

    apache/dolphinscheduler

    14,329Auf GitHub ansehen↗

    DolphinScheduler is a distributed workflow orchestrator designed to manage and automate complex data processing pipelines. It functions as a data pipeline scheduler that coordinates multi-step tasks across distributed environments, ensuring reliable execution through defined dependencies and sequences. The platform utilizes a directed acyclic graph model to represent workflows, allowing users to define task relationships via a visual interface. It employs a master-worker architecture supported by a pluggable task plugin system, which enables the dynamic extension of task types without requiri

    Provides a platform for defining, scheduling, and monitoring complex data processing pipelines across distributed environments.

    Javaairflowazkabancloud-native
    Auf GitHub ansehen↗14,329
  • dask/daskAvatar von dask

    dask/dask

    13,746Auf GitHub ansehen↗

    Dask ist ein Framework für paralleles Rechnen und ein verteilter Task-Scheduler, der darauf ausgelegt ist, Python-Data-Science-Workflows von einzelnen Maschinen auf große Cluster zu skalieren. Es fungiert als Cluster-Ressourcenmanager, der die Berechnungslogik orchestriert, indem Aufgaben und deren Abhängigkeiten als gerichtete azyklische Graphen dargestellt werden. Diese Architektur ermöglicht es dem System, die Verteilung von Workloads auf verfügbare Hardware zu automatisieren und gleichzeitig komplexe Ausführungsanforderungen zu verwalten. Das Projekt zeichnet sich durch eine Lazy-Evaluation-Engine aus, die Datenoperationen verzögert, bis sie explizit angefordert werden, was eine globale Graphoptimierung und effiziente Ressourcenzuweisung ermöglicht. Es integriert speicherbewusstes Data-Spilling, um Systemabstürze bei der Verarbeitung von Datensätzen zu verhindern, die den verfügbaren Speicher überschreiten, und nutzt Task-Graph-Fusion, um Sequenzen von Operationen in einzelne Ausführungsschritte zu kombinieren, wodurch Scheduling-Overhead und Inter-Node-Kommunikation minimiert werden. Die Plattform bietet eine umfassende Oberfläche für die Datenanalyse im großen Maßstab, einschließlich Unterstützung für verteiltes maschinelles Lernen, Integration in das Hochleistungsrechnen und parallele Datenverarbeitung. Sie bietet umfangreiche Werkzeuge für das Cluster-Lebenszyklusmanagement, Performance-Profiling und die Echtzeitüberwachung der Aufgabenausführung. Benutzer können diese Umgebungen über verschiedene Infrastrukturen hinweg bereitstellen, einschließlich lokaler Hardware, Cloud-Anbietern, containerisierten Systemen und Hochleistungsrechner-Clustern.

    Orchestrates and distributes complex data processing workflows across computing clusters using DAG-based task scheduling.

    Pythondasknumpypandas
    Auf GitHub ansehen↗13,746
  • ydataai/ydata-profilingAvatar von ydataai

    ydataai/ydata-profiling

    13,388Auf GitHub ansehen↗

    Ydata-profiling is an automated exploratory data analysis framework designed to generate comprehensive statistical reports and visual summaries from dataframes. It functions as a diagnostic tool for assessing data quality, identifying missing values, duplicates, and outliers, while providing a scalable engine for profiling massive datasets across distributed enterprise environments. The project distinguishes itself through its ability to handle large-scale data through distributed task orchestration and lazy stream processing, which minimizes memory overhead during complex computations. It in

    Orchestrates heavy data profiling workloads across distributed computing clusters to handle massive datasets.

    Pythonbig-data-analyticsdata-analysisdata-exploration
    Auf GitHub ansehen↗13,388
  • aws/aws-cdkAvatar von aws

    aws/aws-cdk

    12,817Auf GitHub ansehen↗

    The AWS Cloud Development Kit is an infrastructure-as-code framework that enables developers to define and provision cloud resources using familiar programming languages. By utilizing construct-based synthesis, it translates high-level, object-oriented code into declarative templates, allowing for the automated management of complex cloud environments through a centralized, code-driven control plane. The framework distinguishes itself through its ability to model infrastructure as a dependency-aware resource graph, ensuring that components are provisioned and updated in the correct order. It

    Creates structured projects that define the instructions and data requirements for human workers to complete specific tasks.

    TypeScriptawscloud-infrastructurehacktoberfest
    Auf GitHub ansehen↗12,817
  • madd86/awesome-system-designAvatar von madd86

    madd86/awesome-system-design

    11,695Auf GitHub ansehen↗

    This project is a comprehensive learning resource and reference guide for software architecture and distributed systems design. It serves as a structured curriculum for engineers to study fundamental architectural patterns, scalability strategies, and distributed computing theory, specifically tailored to prepare for technical interviews and professional engineering roles. The repository distinguishes itself by providing a curated collection of industry-standard infrastructure tools and methodologies. It covers the selection and implementation of technologies for data storage, message brokeri

    Covers systems for orchestrating and distributing complex data processing workflows across computing clusters.

    distributed-systemshadoop-ecosysteminterview
    Auf GitHub ansehen↗11,695
  • boto/boto3Avatar von boto

    boto/boto3

    9,834Auf GitHub ansehen↗

    Boto3 is the AWS SDK for Python, providing a programmatic interface for managing and automating AWS cloud infrastructure and services. It serves as a cloud management API client and resource manager for provisioning, configuring, and scaling virtual servers, databases, and storage. The library enables the implementation of infrastructure-as-code through declarative templates and scripts, allowing for the deployment of identical resource stacks across multiple accounts and geographic regions. It also provides a framework for coordinating distributed workflows, serverless functions, and contain

    Distributes atomic microtasks to a global crowdsourced workforce for completion via browser.

    Pythonawsaws-sdkcloud
    Auf GitHub ansehen↗9,834
  • apache/shardingsphere-elasticjobAvatar von apache

    apache/shardingsphere-elasticjob

    8,203Auf GitHub ansehen↗

    ShardSphere-ElasticJob is a Java-based distributed scheduling framework designed to manage workloads across multiple nodes. It provides a system for splitting scheduled tasks into shards and distributing them across a cluster to achieve high-throughput execution. The framework includes a distributed task failover system that detects node failures and automatically reassigns missed job executions to healthy cluster instances. It also features a cluster resource manager to dynamically allocate execution resources based on system load and capacity. The system covers high-availability task execu

    Orchestrates and distributes complex scheduled tasks across computing clusters via sharding.

    Javacrondatabaseelasticjob
    Auf GitHub ansehen↗8,203
  • powerjob/powerjobAvatar von PowerJob

    PowerJob/PowerJob

    7,761Auf GitHub ansehen↗

    Enterprise job scheduling middleware with distributed computing ability.

    Orchestrates and executes scheduled tasks across a cluster of machines with fault tolerance and load balancing.

    Javacrondistributedjava
    Auf GitHub ansehen↗7,761
  • hazelcast/hazelcastAvatar von hazelcast

    hazelcast/hazelcast

    6,570Auf GitHub ansehen↗

    Hazelcast is a distributed data platform that combines an in-memory data grid with a stream processing engine to support real-time analytics and event-driven applications. It functions as a partitioned, distributed key-value store that replicates data across cluster nodes to provide low-latency access and high availability. The platform also serves as a distributed SQL query engine, allowing users to execute standard SQL statements against both in-memory datasets and external data sources. What distinguishes Hazelcast is its use of a distributed consensus subsystem to maintain strongly consis

    Executes distributed tasks across cluster partitions to process data where it physically resides.

    Javabig-datacachingdata-in-motion
    Auf GitHub ansehen↗6,570
  • jhuckaby/cronicleAvatar von jhuckaby

    jhuckaby/Cronicle

    5,745Auf GitHub ansehen↗

    Cronicle is a distributed job scheduler that replaces traditional cron with a browser-based management interface. It runs scheduled tasks across a cluster of servers with automatic failover, using a custom cron parser that intersects day-of-month and day-of-week constraints when both are specified. The system executes jobs through a plugin framework that runs command-line scripts in any language, communicating via JSON over standard input and output. The scheduler provides a web-based real-time dashboard for monitoring running jobs with live logs, resource usage charts, and progress updates.

    Runs scheduled tasks across a cluster of servers with automatic failover and load distribution.

    JavaScript
    Auf GitHub ansehen↗5,745
  • rmax/scrapy-redisAvatar von rmax

    rmax/scrapy-redis

    5,639Auf GitHub ansehen↗

    Scrapy-Redis is a library that transforms Scrapy into a distributed web crawling framework by replacing its in-memory scheduler with a Redis-backed component. This allows multiple Scrapy spider workers to coordinate through a shared request queue, enabling them to consume URLs concurrently while a Redis set tracks seen URLs across all workers to prevent duplicate crawls. The system persists crawl state—including pending requests and already-crawled URLs—in Redis, so a paused or crashed spider can resume from where it left off without losing progress. The library provides a Redis-based duplica

    Implements a distributed scheduler that coordinates crawl request distribution across multiple Scrapy spider workers via Redis.

    Pythoncrawlerdistributedredis
    Auf GitHub ansehen↗5,639
  • yujiosaka/headless-chrome-crawlerAvatar von yujiosaka

    yujiosaka/headless-chrome-crawler

    5,643Auf GitHub ansehen↗

    This project is a distributed headless Chrome web crawler and data extraction framework. It functions as a JavaScript rendering engine that uses a headless browser to process dynamic pages, extracting structured data from websites that require JavaScript execution. The system is designed for scalable data collection across multiple nodes, using distributed task synchronization and shared caches to prevent duplicate work. It distinguishes itself through the ability to emulate specific client environments by configuring user agents and viewport dimensions, while capturing visual evidence such a

    Scales data collection across multiple nodes using coordinated request queues for large-scale web crawling.

    JavaScript
    Auf GitHub ansehen↗5,643
  • rolando/scrapy-redisAvatar von rolando

    rolando/scrapy-redis

    5,639Auf GitHub ansehen↗

    This project is a distributed web crawling framework that enables the horizontal scaling of scraping tasks. It uses Redis as a centralized request queue manager and state store to coordinate crawl progress and request metadata across multiple server instances. The system distributes crawling workloads by sharing a single request queue and utilizes a distributed duplicate filter to prevent multiple workers from visiting the same page. It persists complex request state and metadata as JSON strings within the shared remote store. The framework also provides capabilities for distributed data pro

    Provides a framework for scaling Scrapy crawlers across multiple servers using Redis for coordination.

    Python
    Auf GitHub ansehen↗5,639
  • jerrylead/sparkinternalsAvatar von JerryLead

    JerryLead/SparkInternals

    5,363Auf GitHub ansehen↗

    SparkInternals ist ein technisches Referenz- und Architekturhandbuch, das das interne Design und die Implementierung der verteilten Computing-Engine Apache Spark detailliert beschreibt. Es dient als Analyse von Big-Data-Engines und konzentriert sich darauf, wie das System die Cluster-Ausführung sowie das Zusammenspiel zwischen Driver-Nodes, Executors und Workern verwaltet. Das Projekt bietet eine detaillierte Aufschlüsselung, wie logische Pläne in physische Ausführungsstufen konvertiert werden. Es analysiert spezifisch die Mechanik von Data-Shuffle-Operationen, Speicherverwaltung und die Koordination der verteilten Job-Planung. Die Dokumentation deckt ein breites Spektrum an verteilten Computing-Funktionen ab, einschließlich Query-Execution-Planung, Datenabhängigkeitsmanagement und In-Memory-Caching-Strategien. Zudem werden Aufgabenverteilung, parallele Ausführung sowie Prozesse zur Fehlerwiederherstellung und Datenpersistenz untersucht.

    Provides analysis of how complex computing chains are broken into stages and tasks for distributed execution.

    Auf GitHub ansehen↗5,363
Vorherige12Nächste
  1. Home
  2. Data & Databases
  3. Distributed Task Schedulers

Unter-Tags erkunden

  • Distributed Web CrawlingFrameworks and techniques for scaling web crawlers across multiple nodes via coordinated request queues. **Distinct from Web Crawl Schedulers:** Covers the overall distributed crawling architectural pattern, not just the scheduling logic.
  • Enterprise Coordination PatternsImplementation patterns for coordinating distributed tasks and resources in enterprise environments. **Distinct from Distributed Task Schedulers:** Focuses on a collection of distributed patterns like locking and messaging rather than just task scheduling
  • Human Intelligence Task DistributionSystems for distributing atomic microtasks to human workers for manual processing. **Distinct from Distributed Task Schedulers:** Distinct from Distributed Task Schedulers: focuses on human-in-the-loop task distribution rather than computational cluster scheduling.
  • Web Crawl Schedulers1 Sub-TagSchedulers that distribute web crawl requests across multiple workers using a shared queue. **Distinct from Distributed Task Schedulers:** Distinct from Distributed Task Schedulers: focuses on scheduling web crawl requests for spiders, not general data processing tasks.