-
Couldn't load subscription status.
- Fork 0
Clone kafka 18894 #27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
563f347
08dff59
9e221e3
1dd8f41
204c8a9
96fd5a6
6ef4001
44ecfdb
e26a06f
27d9a55
b92a2bb
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -20,6 +20,7 @@ | |||||||||||||||||||||||||||||||||||||||||||
| import org.apache.kafka.common.KafkaException; | ||||||||||||||||||||||||||||||||||||||||||||
| import org.apache.kafka.common.config.provider.ConfigProvider; | ||||||||||||||||||||||||||||||||||||||||||||
| import org.apache.kafka.common.config.types.Password; | ||||||||||||||||||||||||||||||||||||||||||||
| import org.apache.kafka.common.internals.Plugin; | ||||||||||||||||||||||||||||||||||||||||||||
| import org.apache.kafka.common.utils.Utils; | ||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||
| import org.slf4j.Logger; | ||||||||||||||||||||||||||||||||||||||||||||
|
|
@@ -546,16 +547,16 @@ private Map<String, String> extractPotentialVariables(Map<?, ?> configMap) { | |||||||||||||||||||||||||||||||||||||||||||
| configProperties = configProviderProps; | ||||||||||||||||||||||||||||||||||||||||||||
| classNameFilter = ignored -> true; | ||||||||||||||||||||||||||||||||||||||||||||
| } | ||||||||||||||||||||||||||||||||||||||||||||
| Map<String, ConfigProvider> providers = instantiateConfigProviders(providerConfigString, configProperties, classNameFilter); | ||||||||||||||||||||||||||||||||||||||||||||
| Map<String, Plugin<ConfigProvider>> providerPlugins = instantiateConfigProviders(providerConfigString, configProperties, classNameFilter); | ||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||
| if (!providers.isEmpty()) { | ||||||||||||||||||||||||||||||||||||||||||||
| ConfigTransformer configTransformer = new ConfigTransformer(providers); | ||||||||||||||||||||||||||||||||||||||||||||
| if (!providerPlugins.isEmpty()) { | ||||||||||||||||||||||||||||||||||||||||||||
| ConfigTransformer configTransformer = new ConfigTransformer(providerPlugins); | ||||||||||||||||||||||||||||||||||||||||||||
| ConfigTransformerResult result = configTransformer.transform(indirectVariables); | ||||||||||||||||||||||||||||||||||||||||||||
| if (!result.data().isEmpty()) { | ||||||||||||||||||||||||||||||||||||||||||||
| resolvedOriginals.putAll(result.data()); | ||||||||||||||||||||||||||||||||||||||||||||
| } | ||||||||||||||||||||||||||||||||||||||||||||
| } | ||||||||||||||||||||||||||||||||||||||||||||
| providers.values().forEach(x -> Utils.closeQuietly(x, "config provider")); | ||||||||||||||||||||||||||||||||||||||||||||
| providerPlugins.values().forEach(x -> Utils.closeQuietly(x, "config provider plugin")); | ||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||
| return new ResolvingMap<>(resolvedOriginals, originals); | ||||||||||||||||||||||||||||||||||||||||||||
| } | ||||||||||||||||||||||||||||||||||||||||||||
|
|
@@ -594,7 +595,7 @@ private Map<String, Object> configProviderProperties(String configProviderPrefix | |||||||||||||||||||||||||||||||||||||||||||
| * @param classNameFilter Filter for config provider class names | ||||||||||||||||||||||||||||||||||||||||||||
| * @return map of config provider name and its instance. | ||||||||||||||||||||||||||||||||||||||||||||
| */ | ||||||||||||||||||||||||||||||||||||||||||||
| private Map<String, ConfigProvider> instantiateConfigProviders( | ||||||||||||||||||||||||||||||||||||||||||||
| private Map<String, Plugin<ConfigProvider>> instantiateConfigProviders( | ||||||||||||||||||||||||||||||||||||||||||||
| Map<String, String> indirectConfigs, | ||||||||||||||||||||||||||||||||||||||||||||
| Map<String, ?> providerConfigProperties, | ||||||||||||||||||||||||||||||||||||||||||||
| Predicate<String> classNameFilter | ||||||||||||||||||||||||||||||||||||||||||||
|
|
@@ -620,21 +621,22 @@ private Map<String, ConfigProvider> instantiateConfigProviders( | |||||||||||||||||||||||||||||||||||||||||||
| } | ||||||||||||||||||||||||||||||||||||||||||||
| } | ||||||||||||||||||||||||||||||||||||||||||||
| // Instantiate Config Providers | ||||||||||||||||||||||||||||||||||||||||||||
| Map<String, ConfigProvider> configProviderInstances = new HashMap<>(); | ||||||||||||||||||||||||||||||||||||||||||||
| Map<String, Plugin<ConfigProvider>> configProviderPluginInstances = new HashMap<>(); | ||||||||||||||||||||||||||||||||||||||||||||
| for (Map.Entry<String, String> entry : providerMap.entrySet()) { | ||||||||||||||||||||||||||||||||||||||||||||
| try { | ||||||||||||||||||||||||||||||||||||||||||||
| String prefix = CONFIG_PROVIDERS_CONFIG + "." + entry.getKey() + CONFIG_PROVIDERS_PARAM; | ||||||||||||||||||||||||||||||||||||||||||||
| Map<String, ?> configProperties = configProviderProperties(prefix, providerConfigProperties); | ||||||||||||||||||||||||||||||||||||||||||||
| ConfigProvider provider = Utils.newInstance(entry.getValue(), ConfigProvider.class); | ||||||||||||||||||||||||||||||||||||||||||||
| provider.configure(configProperties); | ||||||||||||||||||||||||||||||||||||||||||||
| configProviderInstances.put(entry.getKey(), provider); | ||||||||||||||||||||||||||||||||||||||||||||
| Plugin<ConfigProvider> providerPlugin = Plugin.wrapInstance(provider, null, CONFIG_PROVIDERS_CONFIG); | ||||||||||||||||||||||||||||||||||||||||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The To ensure metrics are uniquely identifiable per provider instance, the provider name should be added as a tag. This is consistent with the implementation in
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||||
| configProviderPluginInstances.put(entry.getKey(), providerPlugin); | ||||||||||||||||||||||||||||||||||||||||||||
| } catch (ClassNotFoundException e) { | ||||||||||||||||||||||||||||||||||||||||||||
|
Comment on lines
+624
to
633
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Close provider instance if configure() throws to prevent resource leaks If - ConfigProvider provider = Utils.newInstance(entry.getValue(), ConfigProvider.class);
- provider.configure(configProperties);
- Plugin<ConfigProvider> providerPlugin = Plugin.wrapInstance(provider, null, CONFIG_PROVIDERS_CONFIG);
+ ConfigProvider provider = Utils.newInstance(entry.getValue(), ConfigProvider.class);
+ try {
+ provider.configure(configProperties);
+ } catch (RuntimeException e) {
+ Utils.closeQuietly(provider, "config provider");
+ throw e;
+ }
+ Plugin<ConfigProvider> providerPlugin =
+ Plugin.wrapInstance(provider, null, CONFIG_PROVIDERS_CONFIG);
configProviderPluginInstances.put(entry.getKey(), providerPlugin);📝 Committable suggestion
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||||
| log.error("Could not load config provider class {}", entry.getValue(), e); | ||||||||||||||||||||||||||||||||||||||||||||
| throw new ConfigException(providerClassProperty(entry.getKey()), entry.getValue(), "Could not load config provider class or one of its dependencies"); | ||||||||||||||||||||||||||||||||||||||||||||
| } | ||||||||||||||||||||||||||||||||||||||||||||
| } | ||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||
| return configProviderInstances; | ||||||||||||||||||||||||||||||||||||||||||||
| return configProviderPluginInstances; | ||||||||||||||||||||||||||||||||||||||||||||
| } | ||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||
| private static String providerClassProperty(String providerName) { | ||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,58 @@ | ||
| /* | ||
| * Licensed to the Apache Software Foundation (ASF) under one or more | ||
| * contributor license agreements. See the NOTICE file distributed with | ||
| * this work for additional information regarding copyright ownership. | ||
| * The ASF licenses this file to You under the Apache License, Version 2.0 | ||
| * (the "License"); you may not use this file except in compliance with | ||
| * the License. You may obtain a copy of the License at | ||
| * | ||
| * http://www.apache.org/licenses/LICENSE-2.0 | ||
| * | ||
| * Unless required by applicable law or agreed to in writing, software | ||
| * distributed under the License is distributed on an "AS IS" BASIS, | ||
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| * See the License for the specific language governing permissions and | ||
| * limitations under the License. | ||
| */ | ||
| package org.apache.kafka.common.config.provider; | ||
|
|
||
| import org.apache.kafka.common.MetricName; | ||
| import org.apache.kafka.common.config.ConfigData; | ||
| import org.apache.kafka.common.metrics.Measurable; | ||
| import org.apache.kafka.common.metrics.Monitorable; | ||
| import org.apache.kafka.common.metrics.PluginMetrics; | ||
|
|
||
| import java.io.IOException; | ||
| import java.util.Map; | ||
| import java.util.Set; | ||
|
|
||
| public class MonitorableConfigProvider implements ConfigProvider, Monitorable { | ||
| public static final String NAME = "name"; | ||
| public static final String DESCRIPTION = "description"; | ||
| protected boolean configured = false; | ||
|
|
||
| @Override | ||
| public void withPluginMetrics(PluginMetrics metrics) { | ||
| MetricName metricName = metrics.metricName(NAME, DESCRIPTION, Map.of()); | ||
| metrics.addMetric(metricName, (Measurable) (config, now) -> 123); | ||
| } | ||
|
|
||
| @Override | ||
| public ConfigData get(String path) { | ||
| return null; | ||
| } | ||
|
|
||
| @Override | ||
| public ConfigData get(String path, Set<String> keys) { | ||
| return null; | ||
| } | ||
|
|
||
| @Override | ||
| public void close() throws IOException { | ||
| } | ||
|
|
||
| @Override | ||
| public void configure(Map<String, ?> configs) { | ||
| configured = true; | ||
| } | ||
| } |
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -23,6 +23,7 @@ | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| import org.apache.kafka.common.config.ConfigDef.Type; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| import org.apache.kafka.common.config.ConfigTransformer; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| import org.apache.kafka.common.config.provider.ConfigProvider; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| import org.apache.kafka.common.internals.Plugin; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| import org.apache.kafka.common.security.auth.SecurityProtocol; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| import org.apache.kafka.common.utils.Utils; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| import org.apache.kafka.connect.runtime.WorkerConfig; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
@@ -269,18 +270,19 @@ List<String> configProviders() { | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Map<String, String> transform(Map<String, String> props) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| // transform worker config according to config.providers | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| List<String> providerNames = configProviders(); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Map<String, ConfigProvider> providers = new HashMap<>(); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Map<String, Plugin<ConfigProvider>> providerPlugins = new HashMap<>(); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| for (String name : providerNames) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| ConfigProvider configProvider = plugins.newConfigProvider( | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Plugin<ConfigProvider> configProviderPlugin = plugins.newConfigProvider( | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| this, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| CONFIG_PROVIDERS_CONFIG + "." + name, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Plugins.ClassLoaderUsage.PLUGINS | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| name, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Plugins.ClassLoaderUsage.PLUGINS, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| null | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| ); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| providers.put(name, configProvider); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| providerPlugins.put(name, configProviderPlugin); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| } | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| ConfigTransformer transformer = new ConfigTransformer(providers); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| ConfigTransformer transformer = new ConfigTransformer(providerPlugins); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Map<String, String> transformed = transformer.transform(props).data(); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| providers.values().forEach(x -> Utils.closeQuietly(x, "config provider")); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| providerPlugins.values().forEach(x -> Utils.closeQuietly(x, "config provider plugin")); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| return transformed; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| } | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
Comment on lines
270
to
287
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Fix NPE risk and ensure plugins are always closed
Apply: - Map<String, Plugin<ConfigProvider>> providerPlugins = new HashMap<>();
+ Map<String, Plugin<ConfigProvider>> providerPlugins = new HashMap<>();
for (String name : providerNames) {
Plugin<ConfigProvider> configProviderPlugin = plugins.newConfigProvider(
this,
name,
Plugins.ClassLoaderUsage.PLUGINS,
null
);
- providerPlugins.put(name, configProviderPlugin);
+ if (configProviderPlugin != null) {
+ providerPlugins.put(name, configProviderPlugin);
+ }
}
- ConfigTransformer transformer = new ConfigTransformer(providerPlugins);
- Map<String, String> transformed = transformer.transform(props).data();
- providerPlugins.values().forEach(x -> Utils.closeQuietly(x, "config provider plugin"));
- return transformed;
+ ConfigTransformer transformer = new ConfigTransformer(providerPlugins);
+ Map<String, String> transformed;
+ try {
+ transformed = transformer.transform(props).data();
+ } finally {
+ for (Plugin<ConfigProvider> p : providerPlugins.values()) {
+ Utils.closeQuietly(p, "config provider plugin");
+ }
+ }
+ return transformed;📝 Committable suggestion
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Close provider plugins in a finally block to avoid leaks on transform failure
If
ConfigTransformer.transform(...)throws,providerPlugins.values().forEach(closeQuietly)is skipped, leaking provider resources. Wrap the transform block intry/finally.📝 Committable suggestion
🤖 Prompt for AI Agents