noleme-flow icon indicating copy to clipboard operation
noleme-flow copied to clipboard

A library enabling DAG structuring of data processing programs such as ETLs

Results 14 noleme-flow issues
Sort by recently updated
recently updated
newest added

Bumps [org.apache.maven.plugins:maven-source-plugin](https://github.com/apache/maven-source-plugin) from 3.3.0 to 3.3.1. Commits f80596e [maven-release-plugin] prepare release maven-source-plugin-3.3.1 7626998 Bump apache/maven-gh-actions-shared from 3 to 4 83c963c Bump org.apache.maven.plugins:maven-plugins from 39 to 41 (#18) 40ae495 Bump org.codehaus.plexus:plexus-archiver...

dependencies

Bumps [org.apache.maven.plugins:maven-gpg-plugin](https://github.com/apache/maven-gpg-plugin) from 3.2.3 to 3.2.4. Release notes Sourced from org.apache.maven.plugins:maven-gpg-plugin's releases. 3.2.4 Release Notes - Maven GPG Plugin - Version 3.2.4 [MGPG-125] - Fix "bestPractices" (#95) @​cstamas 📦 Dependency...

dependencies

Bumps `slf4j.version` from 1.7.36 to 2.0.13. Updates `org.slf4j:slf4j-api` from 1.7.36 to 2.0.13 Updates `org.slf4j:slf4j-simple` from 1.7.36 to 2.0.13 Dependabot will resolve any conflicts with this PR as long as you...

dependencies

Big evolution of both the graph model and the compiler/runtime implementations. * stream nodes should be able to cascade into other streams * as a result, node types involved with...

Consider moving away from the `runAsPipeline`, `runAsParallel` methods, and instead provide compiler helpers : So instead of: ```java var flow = /* Flow.from(x).pipe(etc)... */ Flow.runAsPipeline(flow); ``` Decompose it so that:...

Some work could be done in order to make Input handling more flexible. As it stands inputs can only be provided by way of initiating a flow: ```java var recipient...

Is there a plan to provide ui interface where users can design the DAG and edit the implementation code for each node?

As a generalization of https://github.com/noleme/noleme-flow/issues/16 , we should start considering actors as more generic functions with as few ties as possible to the `noleme-flow` library. These contracts should only provide...

enhancement

The `after` flow API came from an older API design and works poorly within the current flow API. It encourages blocking flow designs and puts unnecessary pressure on the runtime...

enhancement

_Migrated over from https://github.com/lumio-medical/lumio-flow/issues/6_ Add the ability to make nodes retry-able. Nodes should be made retry-able if certain conditions are met such as * a Predicate matching over the return...

enhancement