/* * 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 gobblin.writer.http; import java.io.IOException; import java.util.Queue; import gobblin.async.DispatchException; import gobblin.http.HttpClient; import gobblin.http.ResponseHandler; import gobblin.http.ResponseStatus; import gobblin.writer.WriteResponse; /** * This class is an {@link AsyncHttpWriter} that writes data in a batch, which * is sent via http request * * @param <D> type of record * @param <RQ> type of request * @param <RP> type of response */ public class AsyncHttpWriter<D, RQ, RP> extends AbstractAsyncDataWriter<D> { public static final int DEFAULT_MAX_ATTEMPTS = 3; private final HttpClient<RQ, RP> client; private final ResponseHandler<RP> responseHandler; private final AsyncWriteRequestBuilder<D, RQ> requestBuilder; private final int maxAttempts; public AsyncHttpWriter(AsyncHttpWriterBuilder builder) { super(builder.getQueueCapacity()); this.client = builder.getClient(); this.requestBuilder = builder.getAsyncRequestBuilder(); this.responseHandler = builder.getResponseHandler(); this.maxAttempts = builder.getMaxAttempts(); } @Override protected void dispatch(Queue<BufferedRecord<D>> buffer) throws DispatchException { AsyncWriteRequest<D, RQ> asyncWriteRequest = requestBuilder.buildRequest(buffer); if (asyncWriteRequest == null) { return; } RQ rawRequest = asyncWriteRequest.getRawRequest(); RP response; int attempt = 0; while (attempt < maxAttempts) { try { response = client.sendRequest(rawRequest); } catch (IOException e) { // Retry attempt++; if (attempt == maxAttempts) { asyncWriteRequest.onFailure(e); throw new DispatchException("Write failed on IOException", e); } else { continue; } } ResponseStatus status = responseHandler.handleResponse(response); switch (status.getType()) { case OK: // Write succeeds asyncWriteRequest.onSuccess(WriteResponse.EMPTY); return; case CLIENT_ERROR: // Client error. Fail! DispatchException clientExp = new DispatchException("Write failed on client error"); asyncWriteRequest.onFailure(clientExp); throw clientExp; case SERVER_ERROR: // Server side error. Retry attempt++; if (attempt == maxAttempts) { DispatchException serverExp = new DispatchException("Write failed after " + maxAttempts + " attempts."); asyncWriteRequest.onFailure(serverExp); throw serverExp; } } } } @Override public void close() throws IOException { try { super.close(); } finally { client.close(); } } }