<#3910 [flytekit-java feature] Add custom JAVA_TOO...
# flyte-github
a
#3910 [flytekit-java feature] Add custom JAVA_TOOL_OPTIONS by SdkRunnableTask Issue created by andresgomezfrr Motivation: Why do you think this is important? This feature allows users to configure the
JAVA_TOOL_OPTIONS
of the java
SdkRunnableTask
.
Copy code
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/flyte