This repository was archived by the owner on Sep 28, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathClientOptions.java
More file actions
207 lines (183 loc) · 6.85 KB
/
Copy pathClientOptions.java
File metadata and controls
207 lines (183 loc) · 6.85 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
/*
* Copyright 2017 Pilosa Corp.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* 3. Neither the name of the copyright holder nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
* CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
* DAMAGE.
*/
package com.pilosa.client;
import org.apache.http.ssl.SSLContexts;
import javax.net.ssl.SSLContext;
/**
* Contains options to customize {@link PilosaClient}.
* <p>
* In order to set options, create a {@link ClientOptions.Builder} object using {@link ClientOptions#builder()}.
* <p>
* <pre>
* <code>
* ClientOptions options = ClientOptions.builder()
* .setSocketTimeout(10000)
* .setConnectTimeout(100)
* .build();
* </code>
* </pre>
*/
@SuppressWarnings("WeakerAccess")
public final class ClientOptions {
public static class Builder {
private Builder() {
}
/**
* Sets the timeout for waiting for data from the socket.
*
* @param millis timeout in milliseconds
* @return ClientOptions builder object
*/
public Builder setSocketTimeout(int millis) {
this.socketTimeout = millis;
return this;
}
/**
* Sets the timeout for establishing a connection.
*
* @param millis timeout in milliseconds
* @return ClientOptions builder object
*/
public Builder setConnectTimeout(int millis) {
this.connectTimeout = millis;
return this;
}
/**
* Sets the number of retries before failing a request.
* @param count number of retries
* @return ClientOptions builder object
*/
public Builder setRetryCount(int count) {
this.retryCount = count;
return this;
}
/**
* Sets the number of maximum connections per host.
* <p>
* Determines the number of concurrent requests that can run against a Pilosa host.
*
* @param size maximum number of connections per host
* @return ClientOptions builder object
*/
public Builder setConnectionPoolSizePerRoute(int size) {
this.connectionPoolSizePerRoute = size;
return this;
}
/**
* Sets the number of maximum total connections.
* <p>
* Determines the number of concurrent requests that can run against a Pilosa cluster.
*
* @param size maximum number of connections per cluster
* @return ClientOptions builder object
*/
public Builder setConnectionPoolTotalSize(int size) {
this.connectionPoolTotalSize = size;
return this;
}
public Builder setSslContext(SSLContext sslContext) {
this.sslContext = sslContext;
return this;
}
public Builder setManualServerAddress(boolean manualServerAddress) {
this.manualServerAddress = manualServerAddress;
return this;
}
/**
* Creates the ClientOptions object.
* @return ClientOptions object
*/
public ClientOptions build() {
return new ClientOptions(this.socketTimeout, this.connectTimeout,
this.retryCount, this.connectionPoolSizePerRoute, this.connectionPoolTotalSize,
this.sslContext, this.manualServerAddress);
}
private int socketTimeout = 300000;
private int connectTimeout = 30000;
private int retryCount = 3;
private int connectionPoolSizePerRoute = 10;
private int connectionPoolTotalSize = 100;
private SSLContext sslContext = SSLContexts.createDefault();
private long shardWidth = DEFAULT_SHARD_WIDTH;
private boolean manualServerAddress = false;
}
public static final long DEFAULT_SHARD_WIDTH = 1048576L;
/**
* Creates a ClientOptions.Builder object.
* @return a Builder object
*/
public static Builder builder() {
return new Builder();
}
public int getSocketTimeout() {
return socketTimeout;
}
public int getConnectTimeout() {
return connectTimeout;
}
public int getRetryCount() {
return retryCount;
}
public int getConnectionPoolSizePerRoute() {
return connectionPoolSizePerRoute;
}
public int getConnectionPoolTotalSize() {
return connectionPoolTotalSize;
}
public SSLContext getSslContext() {
return this.sslContext;
}
public boolean isManualServerAddress() {
return this.manualServerAddress;
}
private ClientOptions(final int socketTimeout, final int connectTimeout, final int retryCount,
final int connectionPoolSizePerRoute, final int connectionPoolTotalSize,
final SSLContext sslContext,
final boolean manualServerAddress) {
this.socketTimeout = socketTimeout;
this.connectTimeout = connectTimeout;
this.retryCount = retryCount;
this.connectionPoolSizePerRoute = connectionPoolSizePerRoute;
this.connectionPoolTotalSize = connectionPoolTotalSize;
this.sslContext = sslContext;
this.manualServerAddress = manualServerAddress;
}
private final int socketTimeout; // milliseconds
private final int connectTimeout; // milliseconds
private final int retryCount;
private final int connectionPoolSizePerRoute;
private final int connectionPoolTotalSize;
private final SSLContext sslContext;
private final boolean manualServerAddress;
}