blob: bdfe7d0b6c4b26510a957fcf4222c229df7f1fdf [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.BulkheadPolicy;
import org.apache.servicecomb.governance.properties.InstanceBulkheadProperties;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import io.github.resilience4j.bulkhead.Bulkhead;
import io.github.resilience4j.bulkhead.BulkheadConfig;
import io.github.resilience4j.bulkhead.BulkheadRegistry;
public class InstanceBulkheadHandler extends AbstractGovernanceHandler<Bulkhead, BulkheadPolicy> {
private static final Logger LOGGER = LoggerFactory.getLogger(InstanceBulkheadHandler.class);
private final InstanceBulkheadProperties bulkheadProperties;
public InstanceBulkheadHandler(InstanceBulkheadProperties bulkheadProperties) {
this.bulkheadProperties = bulkheadProperties;
}
@Override
protected String createKey(GovernanceRequest governanceRequest, BulkheadPolicy policy) {
return InstanceBulkheadProperties.MATCH_INSTANCE_BULKHEAD_KEY
+ "." + governanceRequest.getServiceName()
+ "." + policy.getName()
+ "." + governanceRequest.getInstanceId();
}
@Override
protected void onConfigurationChanged(String key) {
if (key.startsWith(InstanceBulkheadProperties.MATCH_INSTANCE_BULKHEAD_KEY)) {
for (String processorKey : processors.keySet()) {
if (processorKey.startsWith(key)) {
processors.remove(processorKey);
}
}
}
}
@Override
public BulkheadPolicy matchPolicy(GovernanceRequest governanceRequest) {
if (StringUtils.isEmpty(governanceRequest.getServiceName()) || StringUtils.isEmpty(
governanceRequest.getInstanceId())) {
LOGGER.info("Instance bulkhead is not properly configured, service id or instance id is empty.");
return null;
}
return matchersManager.match(governanceRequest, bulkheadProperties.getParsedEntity());
}
@Override
public Bulkhead createProcessor(String key, GovernanceRequest governanceRequest, BulkheadPolicy policy) {
return getBulkhead(key, policy);
}
private Bulkhead getBulkhead(String key, BulkheadPolicy policy) {
LOGGER.info("applying new policy {} for {}", key, policy.toString());
BulkheadConfig config = BulkheadConfig.custom()
.maxConcurrentCalls(policy.getMaxConcurrentCalls())
.maxWaitDuration(Duration.parse(policy.getMaxWaitDuration()))
.build();
BulkheadRegistry registry = BulkheadRegistry.of(config);
return registry.bulkhead(key, config);
}
}