databuilderframework icon indicating copy to clipboard operation
databuilderframework copied to clipboard

A data driven execution engine

Results 8 databuilderframework issues
Sort by recently updated
recently updated
newest added

Encountered a **ConcurrentModificationException** in a multi-threaded environment when attempting to get DataSet object by filtering the available data based on the accessibility criteria defined for a DataBuilder. The application uses...

- Remove commented out code - Uncomment debug log - Use Set backed by ConcurrentHashMap instead of Synchronized Set - Correct spelling mistakes - Add ThreadSafe annotation

Bumps [jackson-databind](https://github.com/FasterXML/jackson) from 2.10.3 to 2.12.7.1. Commits See full diff in compare view [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=com.fasterxml.jackson.core:jackson-databind&package-manager=maven&previous-version=2.10.3&new-version=2.12.7.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter...

dependencies

I am creating a `SimpleDataFlowExecutor` with a custom DataBuilderFactory. `DataFlowExecutor executor = new SimpleDataFlowExecutor(myDataBuilderFactory);` However, when I run a dataflow with this executor the factory set in the constructor of...

Bumps `jackson.version` from 2.10.3 to 2.12.1. Updates `jackson-databind` from 2.10.3 to 2.12.1 Commits See full diff in compare view Updates `jackson-datatype-guava` from 2.10.3 to 2.12.1 Commits 14cdc7c [maven-release-plugin] prepare release...

dependencies

As of now there are two methods by which we can get dataset from `DataBuilderContext` - `getDataSet()` (marked as `@Deprecated`) - `getDataSet(DataBuilder builder)` While implementing `DataBuilder#process(DataBuilderContext context)` we would need...

Lets assume in flow#1 builders produced data1, now in second execution same builder run and now it is returning null. But still we are able to access data1 which is...