org.apache.gobblin.http.ThrottledHttpClient Maven / Gradle / Ivy
/*
* 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.gobblin.http;
import java.io.IOException;
import org.apache.commons.lang.exception.ExceptionUtils;
import com.codahale.metrics.Timer;
import lombok.Getter;
import lombok.extern.slf4j.Slf4j;
import org.apache.gobblin.async.Callback;
import org.apache.gobblin.broker.gobblin_scopes.GobblinScopeTypes;
import org.apache.gobblin.broker.iface.NotConfiguredException;
import org.apache.gobblin.broker.iface.SharedResourcesBroker;
import org.apache.gobblin.metrics.MetricContext;
import org.apache.gobblin.metrics.broker.MetricContextFactory;
import org.apache.gobblin.metrics.broker.MetricContextKey;
import org.apache.gobblin.util.http.HttpLimiterKey;
import org.apache.gobblin.util.limiter.Limiter;
import org.apache.gobblin.util.limiter.broker.SharedLimiterFactory;
/**
* A {@link HttpClient} for throttling calls to the underlying TX operation using the input
* {@link Limiter}.
*/
@Slf4j
public abstract class ThrottledHttpClient implements HttpClient {
protected final Limiter limiter;
protected final SharedResourcesBroker broker;
@Getter
private final Timer sendTimer;
private final MetricContext metricContext;
public ThrottledHttpClient (SharedResourcesBroker broker, String limiterKey) {
this.broker = broker;
try {
this.limiter = broker.getSharedResource(new SharedLimiterFactory<>(), new HttpLimiterKey(limiterKey));
this.metricContext = broker.getSharedResource(new MetricContextFactory<>(), new MetricContextKey());
this.sendTimer = this.metricContext.timer(limiterKey);
} catch (NotConfiguredException e) {
log.error ("Limiter cannot be initialized due to exception " + ExceptionUtils.getFullStackTrace(e));
throw new RuntimeException(e);
}
}
public final RP sendRequest(RQ request) throws IOException {
final Timer.Context context = sendTimer.time();
try {
if (limiter.acquirePermits(1) != null) {
log.debug ("Acquired permits successfully");
return sendRequestImpl (request);
} else {
throw new IOException ("Acquired permits return null");
}
} catch (InterruptedException e) {
throw new IOException("Throttling is interrupted");
} finally {
context.stop();
}
}
public final void sendAsyncRequest(RQ request, Callback © 2015 - 2025 Weber Informatics LLC | Privacy Policy