forked from ClickHouse/clickhouse-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinsert.rs
289 lines (246 loc) · 9.11 KB
/
insert.rs
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
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
use std::{future::Future, marker::PhantomData, mem, panic, pin::Pin, time::Duration};
use bytes::{Bytes, BytesMut};
use hyper::{self, body, Body, Request};
use serde::Serialize;
use tokio::{
task::JoinHandle,
time::{Instant, Sleep},
};
use url::Url;
use crate::{
error::{Error, Result},
response::Response,
row::{self, Row},
rowbinary, Client, Compression,
};
const BUFFER_SIZE: usize = 128 * 1024;
const MIN_CHUNK_SIZE: usize = BUFFER_SIZE - 1024; // slightly less to avoid extra reallocations
/// Performs one `INSERT`.
///
/// The [`Insert::end`] must be called to finalize the `INSERT`.
/// Otherwise, the whole `INSERT` will be aborted.
///
/// Rows are being sent progressively to spread network load.
#[must_use]
pub struct Insert<T> {
buffer: BytesMut,
sender: Option<body::Sender>,
#[cfg(feature = "lz4")]
compression: Compression,
send_timeout: Option<Duration>,
end_timeout: Option<Duration>,
// Use boxed `Sleep` to reuse a timer entry, it improves performance.
// Also, `tokio::time::timeout()` significantly increases a future's size.
sleep: Pin<Box<Sleep>>,
handle: JoinHandle<Result<()>>,
_marker: PhantomData<fn() -> T>, // TODO: test contravariance.
}
// It should be a regular function, but it decreases performance.
macro_rules! timeout {
($self:expr, $timeout:ident, $fut:expr) => {{
if let Some(timeout) = $self.$timeout {
$self.sleep.as_mut().reset(Instant::now() + timeout);
}
tokio::select! {
res = $fut => Some(res),
_ = &mut $self.sleep, if $self.$timeout.is_some() => None,
}
}};
}
impl<T> Insert<T> {
pub(crate) fn new(client: &Client, table: &str) -> Result<Self>
where
T: Row,
{
let mut url = Url::parse(&client.url).map_err(|err| Error::InvalidParams(err.into()))?;
let mut pairs = url.query_pairs_mut();
pairs.clear();
if let Some(database) = &client.database {
pairs.append_pair("database", database);
}
let fields = row::join_column_names::<T>()
.expect("the row type must be a struct or a wrapper around it");
// TODO: what about escaping a table name?
// https://clickhouse.yandex/docs/en/query_language/syntax/#syntax-identifiers
let query = format!("INSERT INTO {table}({fields}) FORMAT RowBinary");
pairs.append_pair("query", &query);
if client.compression.is_lz4() {
pairs.append_pair("decompress", "1");
}
for (name, value) in &client.options {
pairs.append_pair(name, value);
}
drop(pairs);
let mut builder = Request::post(url.as_str());
if let Some(user) = &client.user {
builder = builder.header("X-ClickHouse-User", user);
}
if let Some(password) = &client.password {
builder = builder.header("X-ClickHouse-Key", password);
}
let (sender, body) = Body::channel();
let request = builder
.body(body)
.map_err(|err| Error::InvalidParams(Box::new(err)))?;
let future = client.client._request(request);
let handle =
tokio::spawn(async move { Response::new(future, Compression::None).finish().await });
Ok(Self {
buffer: BytesMut::with_capacity(BUFFER_SIZE),
sender: Some(sender),
#[cfg(feature = "lz4")]
compression: client.compression,
send_timeout: None,
end_timeout: None,
sleep: Box::pin(tokio::time::sleep(Duration::new(0, 0))),
handle,
_marker: PhantomData,
})
}
/// Sets timeouts for different operations.
///
/// `send_timeout` restricts time on sending a data chunk to a socket.
/// `None` disables the timeout, it's a default.
/// It's roughly equivalent to `tokio::time::timeout(insert.write(..))`.
///
/// `end_timeout` restricts time on waiting for a response from the CH server.
/// Thus, it includes all work needed to handle `INSERT` by the CH server,
/// e.g. handling all materialized views and so on.
/// `None` disables the timeout, it's a default.
/// It's roughly equivalent to `tokio::time::timeout(insert.end(..))`.
///
/// These timeouts are much more performant (~x10) than wrapping `write()` and `end()` calls
/// into `tokio::time::timeout()`.
pub fn with_timeouts(
mut self,
send_timeout: Option<Duration>,
end_timeout: Option<Duration>,
) -> Self {
self.set_timeouts(send_timeout, end_timeout);
self
}
pub(crate) fn set_timeouts(
&mut self,
send_timeout: Option<Duration>,
end_timeout: Option<Duration>,
) {
self.send_timeout = send_timeout;
self.end_timeout = end_timeout;
}
/// Serializes the provided row into an internal buffer.
/// Once the buffer is full, it's sent to a background task writing to the socket.
///
/// Close to:
/// ```ignore
/// async fn write<T>(&self, row: &T) -> Result<usize>;
/// ```
///
/// A returned future doesn't depend on the row's lifetime.
///
/// Returns an error if the row cannot be serialized or the background task failed.
/// Once failed, the whole `INSERT` is aborted and cannot be used anymore.
///
/// # Panics
/// If called after previous call returned an error.
pub fn write<'a>(&'a mut self, row: &T) -> impl Future<Output = Result<()>> + 'a + Send
where
T: Serialize,
{
let result = self.do_write(row);
async move {
result?;
if self.buffer.len() >= MIN_CHUNK_SIZE {
self.send_chunk().await?;
}
Ok(())
}
}
#[inline(always)]
pub(crate) fn do_write(&mut self, row: &T) -> Result<usize>
where
T: Serialize,
{
assert!(self.sender.is_some(), "write() after error");
let old_buf_size = self.buffer.len();
let result = rowbinary::serialize_into(&mut self.buffer, row);
let written = self.buffer.len() - old_buf_size;
if result.is_err() {
self.abort();
}
result.and(Ok(written))
}
/// Ends `INSERT`, the server starts processing the data.
///
/// Succeeds if the server returns 200, that means the `INSERT` was handled successfully,
/// including all materialized views and quorum writes.
///
/// NOTE: If it isn't called, the whole `INSERT` is aborted.
pub async fn end(mut self) -> Result<()> {
if !self.buffer.is_empty() {
self.send_chunk().await?;
}
self.sender = None; // terminate the sender successfully
self.wait_handle().await
}
async fn send_chunk(&mut self) -> Result<()> {
if self.sender.is_none() {
return Ok(());
}
// Hyper uses non-trivial and inefficient schema of buffering chunks.
// It's difficult to determine when allocations occur.
// So, instead we control it manually here and rely on the system allocator.
let chunk = self.take_and_prepare_chunk()?;
let sender = self.sender.as_mut().unwrap(); // checked above
let is_timed_out = match timeout!(self, send_timeout, sender.send_data(chunk)) {
Some(Ok(())) => return Ok(()),
Some(Err(_)) => false, // an actual error will be returned from `wait_handle`
None => true,
};
// Error handling.
self.abort();
// TODO: is it required to wait the handle in the case of timeout?
let res = self.wait_handle().await;
if is_timed_out {
Err(Error::TimedOut)
} else {
res?; // a real error should be here.
Err(Error::Network("channel closed".into()))
}
}
async fn wait_handle(&mut self) -> Result<()> {
match timeout!(self, end_timeout, &mut self.handle) {
Some(Ok(res)) => res,
Some(Err(err)) if err.is_panic() => panic::resume_unwind(err.into_panic()),
Some(Err(err)) => Err(Error::Custom(format!("unexpected error: {err}"))),
None => {
// We can do nothing useful here, so just shut down the background task.
self.handle.abort();
Err(Error::TimedOut)
}
}
}
#[cfg(feature = "lz4")]
fn take_and_prepare_chunk(&mut self) -> Result<Bytes> {
Ok(if self.compression.is_lz4() {
let compressed = crate::compression::lz4::compress(&self.buffer, self.compression)?;
self.buffer.clear();
compressed
} else {
mem::replace(&mut self.buffer, BytesMut::with_capacity(BUFFER_SIZE)).freeze()
})
}
#[cfg(not(feature = "lz4"))]
fn take_and_prepare_chunk(&mut self) -> Result<Bytes> {
Ok(mem::replace(&mut self.buffer, BytesMut::with_capacity(BUFFER_SIZE)).freeze())
}
fn abort(&mut self) {
if let Some(sender) = self.sender.take() {
sender.abort();
}
}
}
impl<T> Drop for Insert<T> {
fn drop(&mut self) {
self.abort();
}
}