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
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
|
#include "../mkql_multihopping.h"
#include "mkql_computation_node_ut.h"
#include <yql/essentials/minikql/mkql_node.h>
#include <yql/essentials/minikql/mkql_node_cast.h>
#include <yql/essentials/minikql/mkql_program_builder.h>
#include <yql/essentials/minikql/mkql_function_registry.h>
#include <yql/essentials/minikql/computation/mkql_computation_node.h>
#include <yql/essentials/minikql/computation/mkql_computation_node_holders.h>
#include <yql/essentials/minikql/computation/mkql_computation_node_graph_saveload.h>
#include <yql/essentials/minikql/invoke_builtins/mkql_builtins.h>
#include <yql/essentials/minikql/comp_nodes/mkql_factories.h>
#include <library/cpp/testing/unittest/registar.h>
namespace NKikimr {
namespace NMiniKQL {
namespace {
struct TInputItem {
ui32 Key = 0;
i64 Time = 0;
ui32 Val = 0;
};
struct TOutputItem {
ui32 Key = 0;
ui32 Val = 0;
ui64 Time = 0;
constexpr bool operator==(const TOutputItem& rhs) const
{
return this->Key == rhs.Key && this->Val == rhs.Val && this->Time == rhs.Time;
}
};
struct TOutputGroup {
TOutputGroup(std::initializer_list<TOutputItem> items) : Items(items) {}
std::vector<TOutputItem> Items;
};
std::vector<TOutputItem> Ordered(std::vector<TOutputItem> vec) {
std::sort(vec.begin(), vec.end(), [](auto l, auto r) {
return std::make_tuple(l.Key, l.Val, l.Time) < std::make_tuple(r.Key, r.Val, r.Time);
});
return vec;
}
IOutputStream &operator<<(IOutputStream &output, std::vector<TOutputItem> items) {
output << "[";
for (ui32 i = 0; i < items.size(); ++i) {
output << "(" << items.at(i).Key << ";" << items.at(i).Val << ";" << items.at(i).Time << ")";
if (i != items.size() - 1)
output << ",";
}
output << "]";
return output;
}
TComputationNodeFactory GetAuxCallableFactory(TWatermark& watermark) {
return [&watermark](TCallable& callable, const TComputationNodeFactoryContext& ctx) -> IComputationNode* {
if (callable.GetType()->GetName() == "MyStream") {
return new TExternalComputationNode(ctx.Mutables);
} else if (callable.GetType()->GetName() == "MultiHoppingCore") {
return WrapMultiHoppingCore(callable, ctx, watermark);
}
return GetBuiltinFactory()(callable, ctx);
};
}
struct TStream : public NUdf::TBoxedValue {
TStream(const TUnboxedValueVector& items, std::function<void()> fetchCallback, bool* yield)
: Items(items)
, FetchCallback(fetchCallback)
, yield(yield) {}
private:
TUnboxedValueVector Items;
ui32 Index = 0;
std::function<void()> FetchCallback;
bool* yield;
NUdf::EFetchStatus Fetch(NUdf::TUnboxedValue& result) final {
FetchCallback();
if (*yield) {
return NUdf::EFetchStatus::Yield;
}
if (Index >= Items.size()) {
return NUdf::EFetchStatus::Finish;
}
result = Items[Index++];
return NUdf::EFetchStatus::Ok;
}
};
THolder<IComputationGraph> BuildGraph(
TSetup<false>& setup,
bool watermarkMode,
const std::vector<TInputItem> items,
std::function<void()> fetchCallback,
bool dataWatermarks,
bool* yield,
ui64 hop = 10,
ui64 interval = 30,
ui64 delay = 20)
{
TProgramBuilder& pgmBuilder = *setup.PgmBuilder;
auto structType = pgmBuilder.NewEmptyStructType();
structType = pgmBuilder.NewStructType(structType, "key",
pgmBuilder.NewDataType(NUdf::TDataType<ui32>::Id));
structType = pgmBuilder.NewStructType(structType, "time",
pgmBuilder.NewDataType(NUdf::TDataType<NUdf::TTimestamp>::Id));
structType = pgmBuilder.NewStructType(structType, "sum",
pgmBuilder.NewDataType(NUdf::TDataType<ui32>::Id));
auto keyIndex = AS_TYPE(TStructType, structType)->GetMemberIndex("key");
auto timeIndex = AS_TYPE(TStructType, structType)->GetMemberIndex("time");
auto sumIndex = AS_TYPE(TStructType, structType)->GetMemberIndex("sum");
auto inStreamType = pgmBuilder.NewStreamType(structType);
TCallableBuilder inStream(pgmBuilder.GetTypeEnvironment(), "MyStream", inStreamType);
auto streamNode = inStream.Build();
auto pgmReturn = pgmBuilder.MultiHoppingCore(
TRuntimeNode(streamNode, false),
[&](TRuntimeNode item) { // keyExtractor
return pgmBuilder.Member(item, "key");
},
[&](TRuntimeNode item) { // timeExtractor
return pgmBuilder.Member(item, "time");
},
[&](TRuntimeNode item) { // init
std::vector<std::pair<std::string_view, TRuntimeNode>> members;
members.emplace_back("sum", pgmBuilder.Member(item, "sum"));
return pgmBuilder.NewStruct(members);
},
[&](TRuntimeNode item, TRuntimeNode state) { // update
auto add = pgmBuilder.AggrAdd(
pgmBuilder.Member(item, "sum"),
pgmBuilder.Member(state, "sum"));
std::vector<std::pair<std::string_view, TRuntimeNode>> members;
members.emplace_back("sum", add);
return pgmBuilder.NewStruct(members);
},
[&](TRuntimeNode state) { // save
return pgmBuilder.Member(state, "sum");
},
[&](TRuntimeNode savedState) { // load
std::vector<std::pair<std::string_view, TRuntimeNode>> members;
members.emplace_back("sum", savedState);
return pgmBuilder.NewStruct(members);
},
[&](TRuntimeNode state1, TRuntimeNode state2) { // merge
auto add = pgmBuilder.AggrAdd(
pgmBuilder.Member(state1, "sum"),
pgmBuilder.Member(state2, "sum"));
std::vector<std::pair<std::string_view, TRuntimeNode>> members;
members.emplace_back("sum", add);
return pgmBuilder.NewStruct(members);
},
[&](TRuntimeNode key, TRuntimeNode state, TRuntimeNode time) { // finish
std::vector<std::pair<std::string_view, TRuntimeNode>> members;
members.emplace_back("key", key);
members.emplace_back("sum", pgmBuilder.Member(state, "sum"));
members.emplace_back("time", time);
return pgmBuilder.NewStruct(members);
},
pgmBuilder.NewDataLiteral<NUdf::EDataSlot::Interval>(NUdf::TStringRef((const char*)&hop, sizeof(hop))), // hop
pgmBuilder.NewDataLiteral<NUdf::EDataSlot::Interval>(NUdf::TStringRef((const char*)&interval, sizeof(interval))), // interval
pgmBuilder.NewDataLiteral<NUdf::EDataSlot::Interval>(NUdf::TStringRef((const char*)&delay, sizeof(delay))), // delay
pgmBuilder.NewDataLiteral<bool>(dataWatermarks),
pgmBuilder.NewDataLiteral<bool>(watermarkMode)
);
auto graph = setup.BuildGraph(pgmReturn, {streamNode});
TUnboxedValueVector streamItems;
for (size_t i = 0; i < items.size(); ++i) {
NUdf::TUnboxedValue* itemsPtr;
auto structValues = graph->GetHolderFactory().CreateDirectArrayHolder(3, itemsPtr);
itemsPtr[keyIndex] = NUdf::TUnboxedValuePod(items.at(i).Key);
itemsPtr[timeIndex] = NUdf::TUnboxedValuePod(items.at(i).Time);
itemsPtr[sumIndex] = NUdf::TUnboxedValuePod(items.at(i).Val);
streamItems.push_back(std::move(structValues));
}
auto streamValue = NUdf::TUnboxedValuePod(new TStream(streamItems, fetchCallback, yield));
graph->GetEntryPoint(0, true)->SetValue(graph->GetContext(), std::move(streamValue));
return graph;
}
}
Y_UNIT_TEST_SUITE(TMiniKQLMultiHoppingTest) {
void TestImpl(
const std::vector<TInputItem>& input,
const std::vector<TOutputGroup>& expected,
bool dataWatermarks,
ui64 hop = 10,
ui64 interval = 30,
ui64 delay = 20,
std::function<void(ui32, TSetup<false>&)> customCheck = [](ui32, TSetup<false>&){},
TWatermark* watermark = nullptr,
bool* yield = nullptr,
std::function<void()> fetch_callback= [](){},
bool watermarkMode = false)
{
bool yield_clone = false;
if (!yield) {
yield = &yield_clone;
}
if (watermarkMode) {
dataWatermarks = false;
}
TWatermark watermark_clone{TInstant::Zero()};
if (watermark == nullptr) {
watermark = &watermark_clone;
}
TSetup<false> setup1(GetAuxCallableFactory(*watermark));
ui32 curGroupId = 0;
std::vector<TOutputItem> curResult;
auto check = [&curResult, &curGroupId, &expected, customCheck, &setup1, &fetch_callback]() {
fetch_callback();
auto expectedItems = Ordered(expected.at(curGroupId).Items); // Add more empty lists at yield in expected
curResult = Ordered(curResult);
UNIT_ASSERT_EQUAL_C(curResult, expectedItems, "curGroup: " << curGroupId << " actual: " << curResult << " expected: " << expectedItems);
customCheck(curGroupId, setup1);
curGroupId++;
curResult.clear();
};
auto graph1 = BuildGraph(setup1, watermarkMode, input, check, dataWatermarks, yield, hop, interval, delay);
auto root1 = graph1->GetValue();
NUdf::EFetchStatus status = NUdf::EFetchStatus::Ok;
while (status == NUdf::EFetchStatus::Ok || status == NUdf::EFetchStatus::Yield) {
NUdf::TUnboxedValue val;
status = root1.Fetch(val);
if (status == NUdf::EFetchStatus::Ok) {
curResult.emplace_back(TOutputItem{val.GetElement(0).Get<ui32>(), val.GetElement(1).Get<ui32>(), val.GetElement(2).Get<ui64>()});
}
}
check();
UNIT_ASSERT_EQUAL_C(curGroupId, expected.size(), "1: " << curGroupId << " 2: " << expected.size());
}
void TestWatermarksImpl(
const std::vector<TInputItem>& input,
const std::vector<TOutputGroup>& expected,
const std::vector<std::pair<ui64, TInstant>>& watermarks)
{
bool yield = false;
TWatermark watermark;
ui64 inp_index = 0;
ui64 pattern_index = 0;
auto avant_fetch = [&yield, &watermark, &watermarks, &inp_index, &pattern_index](){
yield = false;
if (pattern_index >= watermarks.size()) {
return;
}
if (inp_index == watermarks[pattern_index].first) {
yield = true;
watermark.WatermarkIn = watermarks[pattern_index].second;
++pattern_index;
} else {
++inp_index;
}
};
TestImpl(input, expected, false, 10, 30, 20, [](ui32, TSetup<false>&){}, &watermark, &yield, avant_fetch, true);
}
Y_UNIT_TEST(TestThrowWatermarkFromPast) {
const std::vector<TInputItem> input = {
// Group; Time; Value
{1, 101, 2},
{1, 131, 3},
{1, 200, 4},
{1, 300, 5},
{1, 400, 6}
};
const std::vector<TOutputGroup> expected = {
TOutputGroup({}),
TOutputGroup({}),
TOutputGroup({}),
TOutputGroup({}),
TOutputGroup({}),
TOutputGroup({}),
TOutputGroup({}),
TOutputGroup({}),
TOutputGroup({})
};
std::vector<std::pair<ui64, TInstant>> yield_pattern = {
{2, TInstant::MicroSeconds(20)},
{3, TInstant::MicroSeconds(40)}
};
TestWatermarksImpl(input, expected, yield_pattern);
}
Y_UNIT_TEST(TestThrowWatermarkFromFuture) {
const std::vector<TInputItem> input = {
// Group; Time; Value
{1, 101, 2},
{1, 131, 3},
{1, 200, 4},
{1, 300, 5},
{1, 400, 6}
};
const std::vector<TOutputGroup> expected = {
TOutputGroup({}),
TOutputGroup({}),
TOutputGroup({}),
TOutputGroup({}),
TOutputGroup({}),
TOutputGroup({}),
TOutputGroup({}),
TOutputGroup({}),
TOutputGroup({})
};
std::vector<std::pair<ui64, TInstant>> yield_pattern = {
{2, TInstant::MicroSeconds(1000)},
{3, TInstant::MicroSeconds(2000)}
};
TestWatermarksImpl(input, expected, yield_pattern);
}
Y_UNIT_TEST(TestWatermarkFlow1) {
const std::vector<TInputItem> input = {
// Group; Time; Value
{1, 101, 2},
{1, 131, 3},
{1, 200, 4},
{1, 300, 5},
{1, 400, 6}
};
const std::vector<TOutputGroup> expected = {
TOutputGroup({}),
TOutputGroup({}),
TOutputGroup({}),
TOutputGroup({}),
TOutputGroup({}),
TOutputGroup({{1, 2, 110},{1, 2, 120},{1, 2, 130}}),
TOutputGroup({}),
TOutputGroup({}),
TOutputGroup({})
};
std::vector<std::pair<ui64, TInstant>> yield_pattern = {
{0, TInstant::MicroSeconds(100)},
{3, TInstant::MicroSeconds(200)}
};
TestWatermarksImpl(input, expected, yield_pattern);
}
Y_UNIT_TEST(TestWatermarkFlow2) {
const std::vector<TInputItem> input = {
// Group; Time; Value
{1, 100, 2},
{1, 105, 3},
{1, 80, 4},
{1, 107, 5},
{1, 106, 6}
};
const std::vector<TOutputGroup> expected = {
TOutputGroup({}),
TOutputGroup({}),
TOutputGroup({}),
TOutputGroup({}),
TOutputGroup({}),
TOutputGroup({}),
TOutputGroup({}),
TOutputGroup({{1, 4, 90}, {1, 4, 100}, {1, 4, 110}})
};
std::vector<std::pair<ui64, TInstant>> yield_pattern = {
{0, TInstant::MicroSeconds(76)},
};
TestWatermarksImpl(input, expected, yield_pattern);
}
Y_UNIT_TEST(TestWatermarkFlow3) {
const std::vector<TInputItem> input = {
// Group; Time; Value
{1, 90, 2},
{1, 99, 3},
{1, 80, 4},
{1, 107, 5},
{1, 106, 6}
};
const std::vector<TOutputGroup> expected = {
TOutputGroup({}),
TOutputGroup({}),
TOutputGroup({}),
TOutputGroup({}),
TOutputGroup({}),
TOutputGroup({}),
TOutputGroup({}),
TOutputGroup({{1, 4, 90}, {1, 9, 100}, {1, 9, 110}, {1, 5, 120}})
};
std::vector<std::pair<ui64, TInstant>> yield_pattern = {
{0, TInstant::MicroSeconds(76)},
};
TestWatermarksImpl(input, expected, yield_pattern);
}
Y_UNIT_TEST(TestDataWatermarks) {
const std::vector<TInputItem> input = {
// Group; Time; Value
{1, 101, 2},
{2, 101, 2},
{1, 111, 3},
{2, 140, 5},
{2, 160, 1}
};
const std::vector<TOutputGroup> expected = {
TOutputGroup({}),
TOutputGroup({}),
TOutputGroup({}),
TOutputGroup({}),
TOutputGroup({{1, 2, 110}, {1, 5, 120}, {2, 2, 110}, {2, 2, 120}}),
TOutputGroup({{2, 2, 130}, {1, 5, 130}, {1, 3, 140}}),
TOutputGroup({{2, 5, 150}, {2, 5, 160}, {2, 6, 170}, {2, 1, 180}, {2, 1, 190}}),
};
TestImpl(input, expected, true);
}
Y_UNIT_TEST(TestDataWatermarksNoGarbage) {
const std::vector<TInputItem> input = {
// Group; Time; Value
{1, 100, 2},
{2, 150, 1}
};
const std::vector<TOutputGroup> expected = {
TOutputGroup({}),
TOutputGroup({}),
TOutputGroup({{1, 2, 110}, {1, 2, 120}, {1, 2, 130}}),
TOutputGroup({{2, 1, 160}, {2, 1, 170}, {2, 1, 180}}),
};
TestImpl(input, expected, true, 10, 30, 20,
[](ui32 curGroup, TSetup<false>& setup) {
if (curGroup != 2) {
return;
}
setup.StatsRegistry->ForEachStat([](const TStatKey& key, i64 value) {
if (key.GetName() == "MultiHop_KeysCount") {
UNIT_ASSERT_EQUAL_C(value, 1, "actual: " << value << " expected: " << 1);
}
});
});
}
Y_UNIT_TEST(TestValidness1) {
const std::vector<TInputItem> input1 = {
// Group; Time; Value
{1, 101, 2},
{2, 101, 2},
{1, 111, 3},
{2, 140, 5},
{2, 160, 1}
};
const std::vector<TOutputGroup> expected = {
TOutputGroup({}),
TOutputGroup({}),
TOutputGroup({}),
TOutputGroup({}),
TOutputGroup({{2, 2, 110}, {2, 2, 120}}),
TOutputGroup({{2, 2, 130}}),
TOutputGroup({{1, 2, 110}, {1, 5, 120}, {1, 5, 130}, {1, 3, 140}, {2, 5, 150},
{2, 5, 160}, {2, 6, 170}, {2, 1, 190}, {2, 1, 180}}),
};
TestImpl(input1, expected, false);
}
Y_UNIT_TEST(TestValidness2) {
const std::vector<TInputItem> input = {
// Group; Time; Value
{2, 101, 2}, {1, 101, 2}, {2, 102, 3}, {1, 102, 3}, {2, 115, 4},
{1, 115, 4}, {2, 123, 6}, {1, 123, 6}, {2, 124, 5}, {1, 124, 5},
{2, 125, 7}, {1, 125, 7}, {2, 140, 2}, {1, 140, 2}, {2, 147, 1},
{1, 147, 1}, {2, 151, 6}, {1, 151, 6}, {2, 159, 2}, {1, 159, 2},
{2, 185, 8}, {1, 185, 8}
};
const std::vector<TOutputGroup> expected = {
TOutputGroup({}),
TOutputGroup({}), TOutputGroup({}), TOutputGroup({}), TOutputGroup({}),
TOutputGroup({}), TOutputGroup({}), TOutputGroup({}), TOutputGroup({}),
TOutputGroup({}), TOutputGroup({}), TOutputGroup({}), TOutputGroup({}),
TOutputGroup({{1, 5, 110}, {1, 9, 120}, {2, 5, 110}, {2, 9, 120}}),
TOutputGroup({}),
TOutputGroup({}), TOutputGroup({}),
TOutputGroup({{2, 27, 130}, {1, 27, 130}}),
TOutputGroup({}), TOutputGroup({}), TOutputGroup({}),
TOutputGroup({{2, 22, 140}, {2, 21, 150}, {2, 11, 160}, {1, 22, 140}, {1, 21, 150}, {1, 11, 160}}),
TOutputGroup({}),
TOutputGroup({{1, 11, 170}, {1, 8, 180}, {1, 8, 190}, {1, 8, 200}, {1, 8, 210}, {2, 11, 170},
{2, 8, 180}, {2, 8, 190}, {2, 8, 200}, {2, 8, 210}}),
};
TestImpl(input, expected, true);
}
Y_UNIT_TEST(TestValidness3) {
const std::vector<TInputItem> input = {
// Group; Time; Value
{1, 105, 1}, {1, 107, 4}, {2, 106, 3}, {1, 111, 7}, {1, 117, 3},
{2, 110, 2}, {1, 108, 9}, {1, 121, 4}, {2, 107, 2}, {2, 141, 5},
{1, 141, 10}
};
const std::vector<TOutputGroup> expected = {
TOutputGroup({}),
TOutputGroup({}), TOutputGroup({}), TOutputGroup({}), TOutputGroup({}),
TOutputGroup({}), TOutputGroup({}), TOutputGroup({}),
TOutputGroup({{1, 14, 110}, {2, 3, 110}}),
TOutputGroup({}),
TOutputGroup({{2, 7, 115}, {2, 2, 120}, {1, 21, 115}, {1, 10, 120}, {1, 7, 125}, {1, 4, 130}}),
TOutputGroup({}),
TOutputGroup({{1, 10, 145}, {1, 10, 150}, {2, 5, 145}, {2, 5, 150}})
};
TestImpl(input, expected, true, 5, 10, 10);
}
Y_UNIT_TEST(TestDelay) {
const std::vector<TInputItem> input = {
// Group; Time; Value
{1, 101, 3}, {1, 111, 5}, {1, 120, 7}, {1, 80, 9}, {1, 79, 11}
};
const std::vector<TOutputGroup> expected = {
TOutputGroup({}),
TOutputGroup({}), TOutputGroup({}), TOutputGroup({}),
TOutputGroup({}), TOutputGroup({}),
TOutputGroup({{1, 12, 110}, {1, 8, 120}, {1, 15, 130}, {1, 12, 140}, {1, 7, 150}})
};
TestImpl(input, expected, false);
}
Y_UNIT_TEST(TestWindowsBeforeFirstElement) {
const std::vector<TInputItem> input = {
// Group; Time; Value
{1, 101, 2}, {1, 111, 3}
};
const std::vector<TOutputGroup> expected = {
TOutputGroup({}),
TOutputGroup({}),
TOutputGroup({}),
TOutputGroup({{1, 2, 110}, {1, 5, 120}, {1, 5, 130}, {1, 3, 140}})
};
TestImpl(input, expected, false);
}
Y_UNIT_TEST(TestSubzeroValues) {
const std::vector<TInputItem> input = {
// Group; Time; Value
{1, 1, 2}
};
const std::vector<TOutputGroup> expected = {
TOutputGroup({}),
TOutputGroup({}),
TOutputGroup({{1, 2, 30}}),
};
TestImpl(input, expected, false);
}
}
} // namespace NMiniKQL
} // namespace NKikimr
|