Skip to content

Instantly share code, notes, and snippets.

@KKcorps
Created September 18, 2019 14:45
Show Gist options
  • Save KKcorps/6b83fc3ce5267db6916362d8e2d8d35c to your computer and use it in GitHub Desktop.
Save KKcorps/6b83fc3ce5267db6916362d8e2d8d35c to your computer and use it in GitHub Desktop.
BootstrapTransformation<TestConfig> getConfigTransformation(ExecutionEnvironment executionEnvironment) {
TestConfig testConfig = new TestConfig();
testConfig.setKey("global");
testConfig.setThresholdValue(10);
DataSet<TestConfig> configDataSet = executionEnvironment.fromElements(testConfig);
return OperatorTransformation
.bootstrapWith(configDataSet)
.keyBy(TestConfig::getKey)
.transform(new ConfigBootstrapper());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment