forked from vectordotdev/vector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathremap.rs
269 lines (231 loc) · 8.06 KB
/
remap.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
use chrono::{DateTime, Utc};
use criterion::{criterion_group, criterion_main, BatchSize, Criterion};
use indexmap::IndexMap;
use vector::transforms::{
add_fields::AddFields,
coercer::CoercerConfig,
json_parser::{JsonParser, JsonParserConfig},
remap::{Remap, RemapConfig},
FunctionTransform,
};
use vector::{
config::TransformConfig,
event::{Event, Value},
test_util::runtime,
};
use vrl::prelude::*;
criterion_group!(
name = benches;
// encapsulates CI noise we saw in
// https://github.com/timberio/vector/issues/5394
config = Criterion::default().noise_threshold(0.02);
targets = benchmark_remap, upcase, downcase, parse_json
);
criterion_main!(benches);
bench_function! {
upcase => vrl_stdlib::Upcase;
literal_value {
args: func_args![value: "foo"],
want: Ok("FOO")
}
}
bench_function! {
downcase => vrl_stdlib::Downcase;
literal_value {
args: func_args![value: "FOO"],
want: Ok("foo")
}
}
bench_function! {
parse_json => vrl_stdlib::ParseJson;
literal_value {
args: func_args![value: r#"{"key": "value"}"#],
want: Ok(value!({"key": "value"})),
}
}
fn benchmark_remap(c: &mut Criterion) {
let mut rt = runtime();
let add_fields_runner = |tform: &mut Box<dyn FunctionTransform>, event: Event| {
let mut result = Vec::with_capacity(1);
tform.transform(&mut result, event);
let output_1 = result[0].as_log();
debug_assert_eq!(output_1.get("foo").unwrap().to_string_lossy(), "bar");
debug_assert_eq!(output_1.get("bar").unwrap().to_string_lossy(), "baz");
debug_assert_eq!(output_1.get("copy").unwrap().to_string_lossy(), "buz");
result
};
c.bench_function("remap: add fields with remap", |b| {
let mut tform: Box<dyn FunctionTransform> = Box::new(
Remap::new(RemapConfig {
source: indoc! {r#".foo = "bar"
.bar = "baz"
.copy = string!(.copy_from)
"#}
.to_string(),
drop_on_err: true,
})
.unwrap(),
);
let event = {
let mut event = Event::from("augment me");
event.as_mut_log().insert("copy_from", "buz".to_owned());
event
};
b.iter_batched(
|| event.clone(),
|event| add_fields_runner(&mut tform, event),
BatchSize::SmallInput,
);
});
c.bench_function("remap: add fields with add_fields", |b| {
let mut fields = IndexMap::new();
fields.insert("foo".into(), String::from("bar").into());
fields.insert("bar".into(), String::from("baz").into());
fields.insert("copy".into(), String::from("{{ copy_from }}").into());
let mut tform: Box<dyn FunctionTransform> = Box::new(AddFields::new(fields, true).unwrap());
let event = {
let mut event = Event::from("augment me");
event.as_mut_log().insert("copy_from", "buz".to_owned());
event
};
b.iter_batched(
|| event.clone(),
|event| add_fields_runner(&mut tform, event),
BatchSize::SmallInput,
);
});
let json_parser_runner = |tform: &mut Box<dyn FunctionTransform>, event: Event| {
let mut result = Vec::with_capacity(1);
tform.transform(&mut result, event);
let output_1 = result[0].as_log();
debug_assert_eq!(
output_1.get("foo").unwrap().to_string_lossy(),
r#"{"key": "value"}"#
);
debug_assert_eq!(
output_1.get("bar").unwrap().to_string_lossy(),
r#"{"key":"value"}"#
);
result
};
c.bench_function("remap: parse JSON with remap", |b| {
let mut tform: Box<dyn FunctionTransform> = Box::new(
Remap::new(RemapConfig {
source: ".bar = parse_json!(string!(.foo))".to_owned(),
drop_on_err: false,
})
.unwrap(),
);
let event = {
let mut event = Event::from("parse me");
event
.as_mut_log()
.insert("foo", r#"{"key": "value"}"#.to_owned());
event
};
b.iter_batched(
|| event.clone(),
|event| json_parser_runner(&mut tform, event),
BatchSize::SmallInput,
);
});
c.bench_function("remap: parse JSON with json_parser", |b| {
let mut tform: Box<dyn FunctionTransform> = Box::new(JsonParser::from(JsonParserConfig {
field: Some("foo".to_string()),
target_field: Some("bar".to_owned()),
drop_field: false,
drop_invalid: false,
overwrite_target: None,
}));
let event = {
let mut event = Event::from("parse me");
event
.as_mut_log()
.insert("foo", r#"{"key": "value"}"#.to_owned());
event
};
b.iter_batched(
|| event.clone(),
|event| json_parser_runner(&mut tform, event),
BatchSize::SmallInput,
);
});
let coerce_runner =
|tform: &mut Box<dyn FunctionTransform>, event: Event, timestamp: DateTime<Utc>| {
let mut result = Vec::with_capacity(1);
tform.transform(&mut result, event);
let output_1 = result[0].as_log();
debug_assert_eq!(output_1.get("number").unwrap(), &Value::Integer(1234));
debug_assert_eq!(output_1.get("bool").unwrap(), &Value::Boolean(true));
debug_assert_eq!(
output_1.get("timestamp").unwrap(),
&Value::Timestamp(timestamp),
);
result
};
c.bench_function("remap: coerce with remap", |b| {
let mut tform: Box<dyn FunctionTransform> = Box::new(
Remap::new(RemapConfig {
source: indoc! {r#"
.number = to_int!(.number)
.bool = to_bool!(.bool)
.timestamp = parse_timestamp!(string!(.timestamp), format: "%d/%m/%Y:%H:%M:%S %z")
"#}
.to_owned(),
drop_on_err: true,
})
.unwrap(),
);
let mut event = Event::from("coerce me");
for &(key, value) in &[
("number", "1234"),
("bool", "yes"),
("timestamp", "19/06/2019:17:20:49 -0400"),
] {
event.as_mut_log().insert(key, value.to_owned());
}
let timestamp =
DateTime::parse_from_str("19/06/2019:17:20:49 -0400", "%d/%m/%Y:%H:%M:%S %z")
.unwrap()
.with_timezone(&Utc);
b.iter_batched(
|| event.clone(),
|event| coerce_runner(&mut tform, event, timestamp),
BatchSize::SmallInput,
);
});
c.bench_function("remap: coerce with coercer", |b| {
let mut tform: Box<dyn FunctionTransform> = rt
.block_on(async move {
toml::from_str::<CoercerConfig>(indoc! {r#"
drop_unspecified = false
[types]
number = "int"
bool = "bool"
timestamp = "timestamp|%d/%m/%Y:%H:%M:%S %z"
"#})
.unwrap()
.build()
.await
.unwrap()
})
.into_function();
let mut event = Event::from("coerce me");
for &(key, value) in &[
("number", "1234"),
("bool", "yes"),
("timestamp", "19/06/2019:17:20:49 -0400"),
] {
event.as_mut_log().insert(key, value.to_owned());
}
let timestamp =
DateTime::parse_from_str("19/06/2019:17:20:49 -0400", "%d/%m/%Y:%H:%M:%S %z")
.unwrap()
.with_timezone(&Utc);
b.iter_batched(
|| event.clone(),
|event| coerce_runner(&mut tform, event, timestamp),
BatchSize::SmallInput,
);
});
}