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
|
#include "columnshard__index_scan.h"
#include <ydb/core/tx/conveyor/usage/service.h>
#include <ydb/core/tx/conveyor/usage/events.h>
namespace NKikimr::NColumnShard {
TColumnShardScanIterator::TColumnShardScanIterator(NOlap::TReadMetadata::TConstPtr readMetadata,
NColumnShard::TDataTasksProcessorContainer processor, const NColumnShard::TConcreteScanCounters& scanCounters)
: ReadMetadata(readMetadata)
, IndexedData(ReadMetadata, false, scanCounters, processor)
, DataTasksProcessor(processor)
, ScanCounters(scanCounters)
{
ui32 batchNo = 0;
for (size_t i = 0; i < ReadMetadata->CommittedBlobs.size(); ++i, ++batchNo) {
const auto& cmtBlob = ReadMetadata->CommittedBlobs[i];
WaitCommitted.emplace(cmtBlob, batchNo);
}
IndexedData.InitRead(batchNo);
// Add cached batches without read
for (auto& [blobId, batch] : ReadMetadata->CommittedBatches) {
auto cmt = WaitCommitted.extract(NOlap::TCommittedBlob::BuildKeyBlob(blobId));
Y_VERIFY(!cmt.empty());
const NOlap::TCommittedBlob& cmtBlob = cmt.key();
ui32 batchNo = cmt.mapped();
IndexedData.AddNotIndexed(batchNo, batch, cmtBlob);
}
// Read all remained committed blobs
for (const auto& [cmtBlob, _] : WaitCommitted) {
auto& blobId = cmtBlob.GetBlobId();
IndexedData.AddBlobToFetchInFront(0, TBlobRange(blobId, 0, blobId.BlobSize()));
}
Y_VERIFY(ReadMetadata->IsSorted());
if (ReadMetadata->Empty()) {
IndexedData.Abort();
}
}
void TColumnShardScanIterator::AddData(const TBlobRange& blobRange, TString data) {
const auto& blobId = blobRange.BlobId;
if (IndexedData.IsIndexedBlob(blobRange)) {
IndexedData.AddIndexed(blobRange, data);
} else {
auto cmt = WaitCommitted.extract(NOlap::TCommittedBlob::BuildKeyBlob(blobId));
Y_VERIFY(!cmt.empty());
const NOlap::TCommittedBlob& cmtBlob = cmt.key();
ui32 batchNo = cmt.mapped();
IndexedData.AddNotIndexed(batchNo, data, cmtBlob);
}
}
NKikimr::NOlap::TPartialReadResult TColumnShardScanIterator::GetBatch() {
FillReadyResults();
if (ReadyResults.empty()) {
return {};
}
auto result(std::move(ReadyResults.front()));
ReadyResults.pop_front();
return result;
}
NKikimr::NColumnShard::TBlobRange TColumnShardScanIterator::GetNextBlobToRead() {
return IndexedData.ExtractNextBlob();
}
void TColumnShardScanIterator::FillReadyResults() {
auto ready = IndexedData.GetReadyResults(MaxRowsInBatch);
i64 limitLeft = ReadMetadata->Limit == 0 ? INT64_MAX : ReadMetadata->Limit - ItemsRead;
for (size_t i = 0; i < ready.size() && limitLeft; ++i) {
if (ready[i].ResultBatch->num_rows() == 0 && !ready[i].LastReadKey) {
Y_VERIFY(i + 1 == ready.size(), "Only last batch can be empty!");
break;
}
ReadyResults.emplace_back(std::move(ready[i]));
auto& batch = ReadyResults.back();
if (batch.ResultBatch->num_rows() > limitLeft) {
// Trim the last batch if total row count exceeds the requested limit
batch.ResultBatch = batch.ResultBatch->Slice(0, limitLeft);
}
limitLeft -= batch.ResultBatch->num_rows();
ItemsRead += batch.ResultBatch->num_rows();
}
if (limitLeft == 0) {
DataTasksProcessor.Stop();
WaitCommitted.clear();
IndexedData.Abort();
}
if (WaitCommitted.empty() && IndexedData.IsFinished()) {
DataTasksProcessor.Stop();
}
}
bool TColumnShardScanIterator::HasWaitingTasks() const {
return DataTasksProcessor.InWaiting();
}
TColumnShardScanIterator::~TColumnShardScanIterator() {
ReadMetadata->ReadStats->PrintToLog();
}
void TColumnShardScanIterator::Apply(IDataTasksProcessor::ITask::TPtr task) {
if (!task->IsDataProcessed() || DataTasksProcessor.IsStopped() || !task->IsSameProcessor(DataTasksProcessor)) {
return;
}
Y_VERIFY(task->Apply(IndexedData.GetGranulesContext()));
}
}
|