[
https://issues.apache.org/jira/browse/FLINK-8645?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16371441#comment-16371441
]
ASF GitHub Bot commented on FLINK-8645:
---------------------------------------
GitHub user zentol opened a pull request:
https://github.com/apache/flink/pull/5544
[FLINK-8645][configuration] Split classloader.parent-first-patterns into
"base" and "append
## What is the purpose of the change
This PR splits the `classloader.parent-first-patterns` option into a
`base` and `append` to allow users to specify additional patterns without
having to include the default as well.
## Brief change log
* change key of `ALWAYS_PARENT_FIRST_LOADER` option by appending `.base`
* add deprecated key `classloader.parent-first-patterns` to not break
existing configs
* add `ALWAYS_PARENT_FIRST_LOADER_APPEND` option
* add utility method `getParentFirstLoaderPatterns` to `CoreOptions` for
parsing both the base and append at once from a given configuration
* migrate all production accesses of `ALWAYS_PARENT_FIRST_LOADER` to the
utility method
* add a test for `getParentFirstLoaderPatterns`
* update documentation
* update default pattern
* explicitly recommend the append option for extending the pattern list
## Verifying this change
This change added tests and can be verified as follows:
* run `CoreOptionsTest`
## Does this pull request potentially affect one of the following parts:
- Dependencies (does it add or upgrade a dependency): (no)
- The public API, i.e., is any changed class annotated with
`@Public(Evolving)`: (yes)
- The serializers: (ni)
- The runtime per-record code paths (performance sensitive): (ni)
- Anything that affects deployment or recovery: JobManager (and its
components), Checkpointing, Yarn/Mesos, ZooKeeper: (no)
- The S3 file system connector: (no)
## Documentation
- Does this pull request introduce a new feature? (yes)
- If yes, how is the feature documented? (docs)
You can merge this pull request into a Git repository by running:
$ git pull https://github.com/zentol/flink 8645
Alternatively you can review and apply these changes as the patch at:
https://github.com/apache/flink/pull/5544.patch
To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:
This closes #5544
----
commit 6bf6c6478f7cfbf392eb2cc965651936af2fc606
Author: zentol <chesnay@...>
Date: 2018-02-21T13:55:22Z
[FLINK-8645][configuration] Split classloader.parent-first-patterns into
"base" and "append
----
> Support convenient extension of parent-first ClassLoader patterns
> -----------------------------------------------------------------
>
> Key: FLINK-8645
> URL: https://issues.apache.org/jira/browse/FLINK-8645
> Project: Flink
> Issue Type: Improvement
> Components: Configuration
> Affects Versions: 1.5.0
> Reporter: Chesnay Schepler
> Assignee: Chesnay Schepler
> Priority: Major
>
> The option {{classloader.parent-first-patterns}} defines a list of class
> pattern that should always be loaded through the parent class-loader. The
> default value contains all classes that are effectively required to be loaded
> that way for Flink to function.
> This list cannot be extended in a convenient way, as one would have to
> manually copy the existing default and append new entries. This makes the
> configuration brittle in light of version upgrades where we may extend the
> default, and also obfuscates the configuration a bit.
> I propose to separate this option into
> {{classloader.parent-first-patterns.base}}, which subsumes the existing
> option, and {{classloader.parent-first-patterns.append}} which is
> automatically appended to the base.
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)