blob: 8ab3333b20923018612823ef4940c35e487e38ec [file] [log] [blame]
/*
* 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.servicecomb.governance.handler;
import java.time.Duration;
import org.apache.commons.lang3.StringUtils;
import org.apache.servicecomb.governance.marker.GovernanceRequest;
import org.apache.servicecomb.governance.policy.CircuitBreakerPolicy;
import org.apache.servicecomb.governance.properties.InstanceIsolationProperties;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.ObjectProvider;
import io.github.resilience4j.circuitbreaker.CircuitBreaker;
import io.github.resilience4j.circuitbreaker.CircuitBreakerConfig;
import io.github.resilience4j.circuitbreaker.CircuitBreakerRegistry;
import io.github.resilience4j.micrometer.tagged.TaggedCircuitBreakerMetrics;
import io.micrometer.core.instrument.MeterRegistry;
public class InstanceIsolationHandler extends AbstractGovernanceHandler<CircuitBreaker, CircuitBreakerPolicy> {
private static final Logger LOGGER = LoggerFactory.getLogger(InstanceIsolationHandler.class);
private static final String DEFAULT_SERVICE_NAME = "default";
private final InstanceIsolationProperties instanceIsolationProperties;
private final MeterRegistry meterRegistry;
public InstanceIsolationHandler(InstanceIsolationProperties instanceIsolationProperties,
ObjectProvider<MeterRegistry> meterRegistry) {
this.instanceIsolationProperties = instanceIsolationProperties;
this.meterRegistry = meterRegistry.getIfAvailable();
}
@Override
protected String createKey(GovernanceRequest governanceRequest, CircuitBreakerPolicy policy) {
return InstanceIsolationProperties.MATCH_INSTANCE_ISOLATION_KEY
+ "." + governanceRequest.getServiceName()
+ "." + governanceRequest.getInstanceId();
}
@Override
protected void onConfigurationChanged(String key) {
if (key.startsWith(InstanceIsolationProperties.MATCH_INSTANCE_ISOLATION_KEY)) {
for (String processorKey : processors.keySet()) {
if (processorKey.startsWith(key)) {
processors.remove(processorKey);
}
}
}
}
@Override
public CircuitBreakerPolicy matchPolicy(GovernanceRequest governanceRequest) {
if (StringUtils.isEmpty(governanceRequest.getServiceName()) || StringUtils.isEmpty(
governanceRequest.getInstanceId())) {
LOGGER.info("Isolation is not properly configured, service id or instance id is empty.");
return null;
}
CircuitBreakerPolicy circuitBreakerPolicy =
instanceIsolationProperties.getParsedEntity().get(governanceRequest.getServiceName());
if (circuitBreakerPolicy == null) {
return instanceIsolationProperties.getParsedEntity().get(DEFAULT_SERVICE_NAME);
}
return circuitBreakerPolicy;
}
@Override
protected CircuitBreaker createProcessor(GovernanceRequest governanceRequest, CircuitBreakerPolicy policy) {
return getCircuitBreaker(governanceRequest, policy);
}
private CircuitBreaker getCircuitBreaker(GovernanceRequest governanceRequest, CircuitBreakerPolicy policy) {
LOGGER.info("applying new policy: {}", policy.toString());
CircuitBreakerConfig circuitBreakerConfig = CircuitBreakerConfig.custom()
.failureRateThreshold(policy.getFailureRateThreshold())
.slowCallRateThreshold(policy.getSlowCallRateThreshold())
.waitDurationInOpenState(Duration.parse(policy.getWaitDurationInOpenState()))
.slowCallDurationThreshold(Duration.parse(policy.getSlowCallDurationThreshold()))
.permittedNumberOfCallsInHalfOpenState(policy.getPermittedNumberOfCallsInHalfOpenState())
.minimumNumberOfCalls(policy.getMinimumNumberOfCalls())
.slidingWindowType(policy.getSlidingWindowTypeEnum())
.slidingWindowSize(Integer.parseInt(policy.getSlidingWindowSize()))
.build();
CircuitBreakerRegistry circuitBreakerRegistry = CircuitBreakerRegistry.of(circuitBreakerConfig);
if (meterRegistry != null) {
TaggedCircuitBreakerMetrics
.ofCircuitBreakerRegistry(circuitBreakerRegistry)
.bindTo(meterRegistry);
}
return circuitBreakerRegistry.circuitBreaker(governanceRequest.getInstanceId(), circuitBreakerConfig);
}
}