-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathBulkWrite.java
More file actions
170 lines (146 loc) · 5.92 KB
/
BulkWrite.java
File metadata and controls
170 lines (146 loc) · 5.92 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
/*
* Copyright 2023 Greptime Team
*
* Licensed 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 io.greptime;
import io.greptime.models.TableSchema;
import io.greptime.rpc.Context;
/**
* BulkWrite API: writes data to the database in bulk.
*/
public interface BulkWrite {
/**
* The default timeout in milliseconds for each message.
*/
long DEFAULT_TIMEOUT_MS_PER_MESSAGE = 60000;
/**
* The default allocator init reservation bytes.
*/
long DEFAULT_ALLOCATOR_INIT_RESERVATION = 0;
/**
* The default allocator max allocation bytes.
*/
long DEFAULT_ALLOCATOR_MAX_ALLOCATION = 1024 * 1024 * 1024;
/**
* The default max in-flight requests in the stream.
*
* This value should be determined based on the size of each request packet. A higher value means more in-flight requests,
* which could potentially saturate network bandwidth or exceed the actual processing capacity of the database.
*/
int DEFAULT_MAX_REQUESTS_IN_FLIGHT = 8;
static class Config {
private long allocatorInitReservation = DEFAULT_ALLOCATOR_INIT_RESERVATION;
private long allocatorMaxAllocation = DEFAULT_ALLOCATOR_MAX_ALLOCATION;
private long timeoutMsPerMessage = DEFAULT_TIMEOUT_MS_PER_MESSAGE;
private int maxRequestsInFlight = DEFAULT_MAX_REQUESTS_IN_FLIGHT;
private Config() {}
public static Builder newBuilder() {
return new Builder();
}
public long getAllocatorInitReservation() {
return allocatorInitReservation;
}
public long getAllocatorMaxAllocation() {
return allocatorMaxAllocation;
}
public long getTimeoutMsPerMessage() {
return timeoutMsPerMessage;
}
public int getMaxRequestsInFlight() {
return maxRequestsInFlight;
}
public static class Builder {
private final Config config = new Config();
/**
* Set the initial space reservation for the allocator.
*
* @param allocatorInitReservation the initial space reservation
* @return this builder
*/
public Builder allocatorInitReservation(long allocatorInitReservation) {
config.allocatorInitReservation = allocatorInitReservation;
return this;
}
/**
* Set the maximum amount of space the new child allocator can allocate.
*
* @param allocatorMaxAllocation the maximum amount of space
* @return this builder
*/
public Builder allocatorMaxAllocation(long allocatorMaxAllocation) {
config.allocatorMaxAllocation = allocatorMaxAllocation;
return this;
}
/**
* Set the timeout in milliseconds for each message.
*
* @param timeoutMsPerMessage the timeout in milliseconds
* @return this builder
*/
public Builder timeoutMsPerMessage(long timeoutMsPerMessage) {
config.timeoutMsPerMessage = timeoutMsPerMessage;
return this;
}
/**
* Set the max in-flight requests in the stream.
*
* This value should be determined based on the size of each request packet. A higher value means more in-flight requests,
* which could potentially saturate network bandwidth or exceed the actual processing capacity of the database.
*
* @param maxRequestsInFlight the max in-flight requests
* @return this builder
*/
public Builder maxRequestsInFlight(int maxRequestsInFlight) {
config.maxRequestsInFlight = maxRequestsInFlight;
return this;
}
public Config build() {
return config;
}
}
}
default BulkStreamWriter bulkStreamWriter(TableSchema schema) {
return bulkStreamWriter(schema, Config.newBuilder().build());
}
default BulkStreamWriter bulkStreamWriter(TableSchema schema, Config config) {
return bulkStreamWriter(schema, config, Context.newDefault());
}
default BulkStreamWriter bulkStreamWriter(TableSchema schema, Config config, Context ctx) {
return bulkStreamWriter(
schema,
config.getAllocatorInitReservation(),
config.getAllocatorMaxAllocation(),
config.getTimeoutMsPerMessage(),
config.getMaxRequestsInFlight(),
ctx);
}
/**
* Creates a bulk stream writer for efficiently writing data to the server.
*
* @param schema the schema of the table
* @param allocatorInitReservation the initial space reservation (obtained from this allocator)
* @param allocatorMaxAllocation the maximum amount of space the new child allocator can allocate
* @param timeoutMsPerMessage the timeout in milliseconds for each message
* @param maxRequestsInFlight the max in-flight requests in the stream
* @param ctx invoke context
* @return a bulk stream writer instance
*/
BulkStreamWriter bulkStreamWriter(
TableSchema schema,
long allocatorInitReservation,
long allocatorMaxAllocation,
long timeoutMsPerMessage,
int maxRequestsInFlight,
Context ctx);
}