software.amazon.jdbc.plugin.efm.MonitorServiceImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aws-advanced-jdbc-wrapper Show documentation
Show all versions of aws-advanced-jdbc-wrapper Show documentation
Amazon Web Services (AWS) Advanced JDBC Wrapper
The newest version!
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed 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 software.amazon.jdbc.plugin.efm;
import java.lang.ref.WeakReference;
import java.sql.Connection;
import java.util.Collections;
import java.util.Properties;
import java.util.Set;
import java.util.concurrent.Executors;
import java.util.logging.Logger;
import org.checkerframework.checker.nullness.qual.NonNull;
import software.amazon.jdbc.AwsWrapperProperty;
import software.amazon.jdbc.HostSpec;
import software.amazon.jdbc.PluginService;
import software.amazon.jdbc.util.Messages;
import software.amazon.jdbc.util.telemetry.TelemetryCounter;
import software.amazon.jdbc.util.telemetry.TelemetryFactory;
/**
* This class handles the creation and clean up of monitoring threads to servers with one or more
* active connections.
*/
public class MonitorServiceImpl implements MonitorService {
private static final Logger LOGGER = Logger.getLogger(MonitorServiceImpl.class.getName());
public static final AwsWrapperProperty MONITOR_DISPOSAL_TIME_MS =
new AwsWrapperProperty(
"monitorDisposalTime",
"600000", // 10min
"Interval in milliseconds for a monitor to be considered inactive and to be disposed.");
private final PluginService pluginService;
private MonitorThreadContainer threadContainer;
final MonitorInitializer monitorInitializer;
private Set cachedMonitorNodeKeys = null;
private WeakReference cachedMonitor = null;
final TelemetryFactory telemetryFactory;
final TelemetryCounter abortedConnectionsCounter;
public MonitorServiceImpl(final @NonNull PluginService pluginService) {
this(
pluginService,
(hostSpec, properties, monitorService) ->
new MonitorImpl(
pluginService,
hostSpec,
properties,
MONITOR_DISPOSAL_TIME_MS.getLong(properties),
monitorService),
() ->
Executors.newCachedThreadPool(
r -> {
final Thread monitoringThread = new Thread(r);
monitoringThread.setDaemon(true);
return monitoringThread;
}));
}
MonitorServiceImpl(
final PluginService pluginService,
final MonitorInitializer monitorInitializer,
final ExecutorServiceInitializer executorServiceInitializer) {
this.pluginService = pluginService;
this.telemetryFactory = pluginService.getTelemetryFactory();
this.abortedConnectionsCounter = telemetryFactory.createCounter("efm.connections.aborted");
this.monitorInitializer = monitorInitializer;
this.threadContainer = MonitorThreadContainer.getInstance(executorServiceInitializer);
}
@Override
public MonitorConnectionContext startMonitoring(
final Connection connectionToAbort,
final Set nodeKeys,
final HostSpec hostSpec,
final Properties properties,
final int failureDetectionTimeMillis,
final int failureDetectionIntervalMillis,
final int failureDetectionCount) {
if (nodeKeys.isEmpty()) {
throw new IllegalArgumentException(Messages.get(
"MonitorServiceImpl.emptyAliasSet",
new Object[] {hostSpec}));
}
Monitor monitor = this.cachedMonitor == null ? null : this.cachedMonitor.get();
if (monitor == null
|| monitor.isStopped()
|| this.cachedMonitorNodeKeys == null
|| !this.cachedMonitorNodeKeys.equals(nodeKeys)) {
monitor = getMonitor(nodeKeys, hostSpec, properties);
this.cachedMonitor = new WeakReference<>(monitor);
this.cachedMonitorNodeKeys = Collections.unmodifiableSet(nodeKeys);
}
final MonitorConnectionContext context =
new MonitorConnectionContext(
monitor,
connectionToAbort,
failureDetectionTimeMillis,
failureDetectionIntervalMillis,
failureDetectionCount,
abortedConnectionsCounter);
monitor.startMonitoring(context);
return context;
}
@Override
public void stopMonitoring(@NonNull final MonitorConnectionContext context) {
final Monitor monitor = context.getMonitor();
monitor.stopMonitoring(context);
}
@Override
public void stopMonitoringForAllConnections(@NonNull final Set nodeKeys) {
Monitor monitor;
for (final String nodeKey : nodeKeys) {
monitor = this.threadContainer.getMonitor(nodeKey);
if (monitor != null) {
monitor.clearContexts();
return;
}
}
}
@Override
public void releaseResources() {
this.threadContainer = null;
}
/**
* Get or create a {@link MonitorImpl} for a server.
*
* @param nodeKeys All references to the server requiring monitoring.
* @param hostSpec Information such as hostname of the server.
* @param properties The user configuration for the current connection.
* @return A {@link MonitorImpl} object associated with a specific server.
*/
protected Monitor getMonitor(final Set nodeKeys, final HostSpec hostSpec, final Properties properties) {
return this.threadContainer.getOrCreateMonitor(
nodeKeys, () -> monitorInitializer.createMonitor(hostSpec, properties, this.threadContainer));
}
MonitorThreadContainer getThreadContainer() {
return this.threadContainer;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy