com.signalfx.connection.RetryHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of signalfx-codahale Show documentation
Show all versions of signalfx-codahale Show documentation
Dropwizard Codahale metrics plugin for signalfx
The newest version!
package com.signalfx.connection;
import java.io.IOException;
import java.util.List;
import com.signalfx.shaded.apache.http.impl.client.DefaultHttpRequestRetryHandler;
import static com.signalfx.connection.RetryDefaults.DEFAULT_MAX_RETRIES;
import static com.signalfx.connection.RetryDefaults.DEFAULT_NON_RETRYABLE_EXCEPTIONS;
/**
* Compared to the {@link DefaultHttpRequestRetryHandler} we allow retry on {@link
* javax.net.ssl.SSLException}, because it gets thrown when we try to send data points over a
* connection that our server has already closed. It is still unknown how exactly our server closes
* "stale" connections in such a way that http client is unable to detect this.
*/
class RetryHandler extends DefaultHttpRequestRetryHandler {
public RetryHandler(final int maxRetries) {
this(maxRetries, DEFAULT_NON_RETRYABLE_EXCEPTIONS);
}
public RetryHandler() {
this(DEFAULT_MAX_RETRIES, DEFAULT_NON_RETRYABLE_EXCEPTIONS);
}
public RetryHandler(final int maxRetries, List> clazzes) {
super(maxRetries, true, clazzes);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy