johnjcasey commented on code in PR #23234: URL: https://github.com/apache/beam/pull/23234#discussion_r983830302
########## sdks/java/extensions/google-cloud-platform-core/src/main/java/org/apache/beam/sdk/extensions/gcp/options/GcsOptions.java: ########## @@ -68,6 +70,24 @@ public interface GcsOptions extends ApplicationNameOptions, GcpOptions, Pipeline void setExecutorService(ExecutorService value); + /** + * The ScheduledExecutorService instance to use to create threads, can be overridden to specify a + * ScheduledExecutorService that is compatible with the user's environment. If unset, the default + * is to create an ScheduledExecutorService with a core number of threads equal to Math.max(4, + * Runtime.getRuntime().availableProcessors()) + */ + @JsonIgnore + @Description( + "The ScheduledExecutorService instance to use to create threads, can be overridden to specify " Review Comment: makes sense, I'll refactor this -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
