All Projects → bdo-cash → reflow

bdo-cash / reflow

Licence: Apache-2.0 License
A light-weight lock-free series/parallel combined scheduling framework for tasks. The goal is to maximize parallelism in order to minimize the execution time overall.

Programming Languages

scala
5932 projects
java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to reflow

Cron Manager
A PHP cron task manager for MVC-type applications
Stars: ✭ 396 (+1621.74%)
Mutual labels:  task-runner, task-manager, task-scheduler
Celery
Distributed Task Queue (development branch)
Stars: ✭ 18,378 (+79804.35%)
Mutual labels:  task-runner, task-manager, task-scheduler
Dramatiq dashboard
A dashboard for dramatiq, specific to its Redis broker.
Stars: ✭ 82 (+256.52%)
Mutual labels:  task-runner, task-manager, task-scheduler
Dramatiq
A fast and reliable background task processing library for Python 3.
Stars: ✭ 2,844 (+12265.22%)
Mutual labels:  task-runner, task-manager, task-scheduler
bikeshed
Lock free hierarchical work scheduler
Stars: ✭ 78 (+239.13%)
Mutual labels:  task-runner, task-manager, task-scheduler
Rqueue
Rqueue aka Redis Queue [Task Queue, Message Broker] for Spring framework
Stars: ✭ 76 (+230.43%)
Mutual labels:  task-manager, task-scheduler
celery.node
Celery task queue client/worker for nodejs
Stars: ✭ 164 (+613.04%)
Mutual labels:  task-runner, task-manager
Phulp
The task manager for php
Stars: ✭ 294 (+1178.26%)
Mutual labels:  task-runner, task-manager
Marl
A hybrid thread / fiber task scheduler written in C++ 11
Stars: ✭ 1,078 (+4586.96%)
Mutual labels:  task-runner, task-scheduler
routinger
Routinger is a task scheduler app that is made to make you a better person at no extra cost. The code is open-source. Dart language and Flutter framework are used extensively.
Stars: ✭ 14 (-39.13%)
Mutual labels:  task-manager, task-scheduler
Pypyr
pypyr task-runner cli & api for automation pipelines. Automate anything by combining commands, different scripts in different languages & applications into one pipeline process.
Stars: ✭ 173 (+652.17%)
Mutual labels:  task-runner, task-manager
scheduler
Task Scheduler for Laravel applications. UI from scratch
Stars: ✭ 18 (-21.74%)
Mutual labels:  task-manager, task-scheduler
Openmangosteen
Devops定时调用http接口,定时执行SSH命令的WEB定时任务工具。
Stars: ✭ 41 (+78.26%)
Mutual labels:  task-manager, task-scheduler
TaskManager
A C++14 Task Manager / Scheduler
Stars: ✭ 81 (+252.17%)
Mutual labels:  task-manager, task-scheduler
Mmake
Mmake is a small program which wraps make to provide additional functionality, such as user-friendly help output, remote includes, and eventually more. It otherwise acts as a pass-through to standard make.
Stars: ✭ 1,593 (+6826.09%)
Mutual labels:  task-runner, task-manager
Ten Hands
⚡ Simplest way to organize and run command-line tasks
Stars: ✭ 228 (+891.3%)
Mutual labels:  task-runner, task-manager
gronx
Lightweight, fast and dependency-free Cron expression parser (due checker), task scheduler and/or daemon for Golang (tested on v1.13 and above) and standalone usage
Stars: ✭ 206 (+795.65%)
Mutual labels:  task-manager, task-scheduler
cefal
(Concepts-enabled) Functional Abstraction Layer for C++
Stars: ✭ 52 (+126.09%)
Mutual labels:  monad
harmony
C++ Monadologie
Stars: ✭ 26 (+13.04%)
Mutual labels:  monad
electrocute
See all electron-based applicatios that you have running
Stars: ✭ 13 (-43.48%)
Mutual labels:  task-manager

Reflow

A light-weight lock-free series/parallel combined scheduling framework for tasks. The goal is to maximize parallelism in order to minimize the execution time overall.


  • From imperative to Monad: lite.Task —— Simplified and Type-safe Task Assembly Toolset

    • Simplify the mixed assembly of 'series/parallel' tasks, and each task definition and assembly tool are marked with I/O type, using the compiler check, match errors at a glance. Examples see here.
  • From single execution to streaming: Pulse —— Step Streaming Data Processor

    • Data flows through a set of large-scale integration tasks, can always be entered in the order in which it was entered, can be 'queued' (FIFO, using a ingenious scheduling strategy that doesn't actually have queue) into each tasks, and each task can also retain the mark specially left by the previous data during processing, so as to be used for the next data processing. It doesn't matter in any subtask of any depth, and it doesn't matter if the previous data stays in a subtask much longer than the latter. Examples see here.
    • Backpressure. There are two parameters to resolve the problem: Pulse.inputCapacity/execCapacity. Note the return value (true/false) of Pulse.input().

Overview

"The maximum improvement in system performance is determined by the parts that cannot be parallelized." —— Amdahl's law

In a large system, there is often a lot of business logic and control logic, which is the embodiment of hundreds of "jobs". The logic is intertwined and, taken as a whole, often intricate. On the other hand, if this large amount of "jobs" is not organized reasonably and effectively, the execution time overall and performance are also worrying. So how do we abstract and simplify such a complex problem?

Programs = Algorithms + Data Structures
Algorithm = Logic + Control

Inspired by this idea, we can separate the business logic from the control logic, abstract the control logic as a framework, and construct the business logic as a Task. The relationship between tasks can also be further classified into two types: dependent and non-dependent, that is, serial and parallel (dependent tasks must be executed sequentially, and non-dependent tasks can be executed in parallel). The user programmer only needs to focus on writing task one by one and leave the rest to the framework. Reflow is designed around the control logic that handles these tasks.

Reflow was developed to simplify the coding complexity of data-flow and event-processing between multiple tasks in complex business logic. Through the design of I / O that requires explicit definition of tasks, intelligent dependency management based on keyword and value-type analysis, unified operation scheduling, event feedback and error handling interface, the set goal is realized: task series / parallel combined scheduling. Data is electricity, task is component. In addition to simplifying the coding complexity, the established framework can standardize the original chaotic and intricate writing method, and coding errors can be easily detected, which will greatly enhance the readability, robustness and scalability of the program.

In Reflow basic logic, a complex business should first be broken down into a series of single-function, no-blocking, single-threaded task sets and packaged in Trait that explicitly define the attributes of the task. Dependencies are then built and committed using Dependency, and a working reflow object is finally obtained, which is started and the task flow can be executed.

Features

  • The intelligent dependency analysis algorithm based on keyword and value-type can analyze errors in task assembly stage, ensuring that there will not be keyword missing or value-type mismatch errors during task execution;
  • On-demand task loading mechanism based on priority and estimated duration. On-demand means that the task is put into the priority-bucket to wait for to be executed when it is its turn to execute. Why wait? Because the current tasks to be executed in different task-flows will be put into the same priority-bucket, the existing tasks in the bucket will be sorted according to their priorities;
  • A task-flow can be requested to browse mode first and then reinforce mode. Browse mode allows data to be loaded quickly;
  • Tasks can be nested and assembled indefinitely;
  • The execution of each task is atomic, single-threaded, and you don't have to worry about thread synchronization problem of input and output, whether the task is in serial or parallel, and whether it is in Pulse or not;
  • Event feedback can be specified to the thread. For example: UI thread;
  • If subsequent tasks do not depend on the output of a task, the output is discarded, allowing memory to be used efficiently;
  • Convenient synchronous/asynchronous mode switching:
      // Asynchronous by default
      reflow.start(input, feedback)
      // To change to sync, simply add 'sync()' to the end.
      reflow.start(input, feedback).sync()
  • Task execution progress can be strategically feed back (from which we consider the execution progress is important):
      // `Progress.Strategy.Xxx` e.g.
      implicit lazy val strategy: Strategy = Strategy.Depth(3) -> Strategy.Fluent -> Strategy.Interval(600)
  • Deterministic classification of exceptions:
      // Feedback.scala
      def onFailed(trat: Trait, e: Exception): Unit = {
      e match {
        // There are two categories:
        // 1. `RuntimeException` caused by customer code quality issues such as `NullPointerException` are wrapped in `CodeException`,
        // The specific exception object can be retrieved through the `CodeException#getCause()` method.
        case c: CodeException => c.getCause
        // 2. Custom `Exception`, which is explicitly passed to the 'Task#failed(Exception)' method parameter, possible be
        // `null` (although Scala considers `null` to be low level).
        case e: Exception => e.printStackTrace()
      }
    }
  • Clever interrupt strategy;
  • Global precise tasks monitoring and management:
      Reflow.GlobalTrack.registerObserver(new GlobalTrackObserver {
          override def onUpdate(current: GlobalTrack, items: All): Unit = {
            if (!current.isSubReflow && current.scheduler.getState == State.EXECUTING) {
              println(s"++++++++++[[[current.state:${current.scheduler.getState}")
              items().foreach(println)
              println("----------]]]")
            }
          }
        })(Strategy.Interval(600), null)
  • Optimized configurable thread pool: If tasks continues scheduling to the thread pool, increase the size of threads to the configured maximum, then enqueue, idle release threads until core size;
  • Thread implementation without blocking (lock-free) efficient utilization:

    There is no code for future.get() mechanism;
    This requires no blocking in the user-defined tasks (if there is a block, you can split the task into multiple dependent but non-blocking tasks, except for network requests).

These features greatly meet the practical requirements of various projects.

1.1 Related

The main features of this framework are similar to Facebook Bolts and RxJava, can be seen as fine-grained extensions of their task-combination capabilities, but it's more intuitive to use, more rigorous, high-spec, and closely aligned with actual project needs.

This framework is implemented based on the thread-pool (java.util.concurrent.ThreadPoolExecutor) instead of the Fork-Join framework (java.util.concurrent.ForkJoinPool), and improved the former (see Worker) to conform to the basic logic of increase the size of threads to maximum first, or else enqueue, release thread when idle. The latter is suitable for computationally intensive tasks, but is not suitable for the design objectives of this framework, and is not suitable for resource-constrained devices (e.g. mobile phones, etc).

1.2 Instruction

This framework is completely written in Scala language, and all parameters support shorthand, will be automatically escaped as needed (implicit), can be used on any platform that adopts jvm-like (e.g. Android Runtime).

This framework is based on a special anti-blocking thread synchronization tool Snatcher, see the code documentation for details.

  • Note: This framework does not use java.util.concurrent.Future<V> tools to handle parallel tasks, since it is implemented based on the thread blocking model, it does not meet the design goals of this framework: lock-free.

How Reflow works

Reflow operation principle diagram

Start using Reflow

3.1 Dependencies

Please click Jitpack

3.2 Example

See below or LiteSpec, and ReflowSpec.

  • If using on Android platform, please make the following settings first.
class App extends AbsApp {
  override def onCreate(): Unit = {
    App.reflow.init()
    super.onCreate()
  }
}

object App {
  object implicits {
    // Feedback strategy for task-flow execution progress
    implicit lazy val strategy: Strategy = Strategy.Depth(3) -> Strategy.Fluent -> Strategy.Interval(600)
    implicit lazy val poster: Poster = new Poster {
      // Post feedback to the UI thread
      override def post(runner: Runnable): Unit = getApp.mainHandler.post(runner)
    }
  }

  object reflow {
    private[App] def init(): Unit = {
      Reflow.setThreadResetor(new ThreadResetor {
        override def reset(thread: Thread, runOnCurrentThread: Boolean): Unit = {
          if (runOnCurrentThread) Process.setThreadPriority(Process.THREAD_PRIORITY_BACKGROUND)
        }
      })
    }
  }
}
  • Below is part of LiteSpec, which is very concise and recommended:
// ...
Scenario("`Serial/Parallel` Tasks mixed assembly") {
  val pars =
    (
      c2d
      +>>
      c2abc.inPar("name#c2abc", "`Serial` mix in `Parallel`")
      +>>
      (c2b >>> b2c >>> c2a >>> a2b) //.inPar("xxx") is optional.
      +>>
      c2a
    ) **> { (d, c, b, a, ctx) =>
      info(a.toString)
      info(b.toString)
      info(c.toString)
      info(d.toString)
      d
    }
  Input[Aaa] >>> a2b >>> b2c >>> pars run(new Aaa) sync()

  assert(true)
}

// `Pulse`, more complex:
Scenario("Multi-level nested assembly test of `Pulse`") {
  val pars = {
    def p = (c2d +>> c2b) **> { (d, _, ctx) => ctx.progress(1, 2); d } +|- { (_, d) => d }
    @tailrec
    def loop(s: () => Serial[Ccc, Ddd], times: Int = 0, limit: Int = 10): Serial[Ccc, Ddd] =
      if (times >= limit) s()
      else {
        def p =
          (
            s() +|- { (_, d) => d }
            +>>
            s()
            +>>
            s()
          ) **> { (d, _, _, ctx) => ctx.progress(1, 2); d }
        loop(() => p, times + 1, limit)
      }
    loop(() => p, limit = 3)
  }

  @volatile var callableOut: Int = 0
  val future                     = new FutureTask[Int](() => callableOut)

  val repeatCount = 1000 // Int.MaxValue

  val pulse = (Input[Aaa] >>> a2b >>> b2c >>> pars) pulse (new reflow.Pulse.Feedback.Lite[Ddd] {
    override def onStart(serialNum: Long): Unit = {}
    // ...
  }
  // ...
  • Additional, refer to ReflowSpec, which is verbose and no longer recommended.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].