acoustic-carpenter-78188
07/31/2023, 1:30 PMJAVA_TOOL_OPTIONS
of the java SdkRunnableTask
.
class MyCustomRunnableTask extends SdkRunnableTask<Input, Output> {
@Override
public String getName() {
return "my-test-task";
}
@Override
public Output run(Input input) {
// to implement
}
@Override
public List<String> getCustomJavaToolOptions() {
return List.of("-CustomJavaProperty");
}
};
Goal: What should the final outcome look like, ideally?
The users could configure the JAVA_TOOL_OPTIONS
of the SdkRunnableTasks
Describe alternatives you've considered
none
Propose: Link/Inline OR Additional context
No response
Are you sure this issue hasn't been raised already?
☑︎ Yes
Have you read the Code of Conduct?
☑︎ Yes
flyteorg/flyteacoustic-carpenter-78188
08/01/2023, 7:58 AM