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
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
|
#include <DataTypes/DataTypeLowCardinality.h>
#include <DataTypes/DataTypeString.h>
#include <DataTypes/DataTypesNumber.h>
#include <Disks/StoragePolicy.h>
#include <IO/ReadBufferFromFile.h>
#include <IO/ReadHelpers.h>
#include <IO/WriteBufferFromFile.h>
#include <IO/WriteIntText.h>
#include <Interpreters/Context.h>
#include <Interpreters/InterpreterInsertQuery.h>
#include <Interpreters/evaluateConstantExpression.h>
#include <Parsers/ASTCreateQuery.h>
#include <Parsers/ASTInsertQuery.h>
#include <Processors/Executors/CompletedPipelineExecutor.h>
#include <QueryPipeline/Pipe.h>
#include <Storages/FileLog/FileLogSource.h>
#include <Storages/FileLog/StorageFileLog.h>
#include <Storages/StorageFactory.h>
#include <Storages/StorageMaterializedView.h>
#include <Storages/checkAndGetLiteralArgument.h>
#include <Common/Exception.h>
#include <Common/Macros.h>
#include <Common/filesystemHelpers.h>
#include <Common/getNumberOfPhysicalCPUCores.h>
#include <Common/logger_useful.h>
#include <sys/stat.h>
namespace DB
{
namespace ErrorCodes
{
extern const int NUMBER_OF_ARGUMENTS_DOESNT_MATCH;
extern const int BAD_ARGUMENTS;
extern const int CANNOT_STAT;
extern const int BAD_FILE_TYPE;
extern const int CANNOT_READ_ALL_DATA;
extern const int LOGICAL_ERROR;
extern const int TABLE_METADATA_ALREADY_EXISTS;
extern const int CANNOT_SELECT;
extern const int QUERY_NOT_ALLOWED;
}
namespace
{
const auto MAX_THREAD_WORK_DURATION_MS = 60000;
}
static constexpr auto TMP_SUFFIX = ".tmp";
StorageFileLog::StorageFileLog(
const StorageID & table_id_,
ContextPtr context_,
const ColumnsDescription & columns_,
const String & path_,
const String & metadata_base_path_,
const String & format_name_,
std::unique_ptr<FileLogSettings> settings,
const String & comment,
bool attach)
: IStorage(table_id_)
, WithContext(context_->getGlobalContext())
, filelog_settings(std::move(settings))
, path(path_)
, metadata_base_path(std::filesystem::path(metadata_base_path_) / "metadata")
, format_name(format_name_)
, log(&Poco::Logger::get("StorageFileLog (" + table_id_.table_name + ")"))
, disk(getContext()->getStoragePolicy("default")->getDisks().at(0))
, milliseconds_to_wait(filelog_settings->poll_directory_watch_events_backoff_init.totalMilliseconds())
{
StorageInMemoryMetadata storage_metadata;
storage_metadata.setColumns(columns_);
storage_metadata.setComment(comment);
setInMemoryMetadata(storage_metadata);
if (!fileOrSymlinkPathStartsWith(path, getContext()->getUserFilesPath()))
{
if (attach)
{
LOG_ERROR(log, "The absolute data path should be inside `user_files_path`({})", getContext()->getUserFilesPath());
return;
}
else
throw Exception(
ErrorCodes::BAD_ARGUMENTS,
"The absolute data path should be inside `user_files_path`({})",
getContext()->getUserFilesPath());
}
bool created_metadata_directory = false;
try
{
if (!attach)
{
if (disk->exists(metadata_base_path))
{
throw Exception(
ErrorCodes::TABLE_METADATA_ALREADY_EXISTS,
"Metadata files already exist by path: {}, remove them manually if it is intended",
metadata_base_path);
}
disk->createDirectories(metadata_base_path);
created_metadata_directory = true;
}
loadMetaFiles(attach);
loadFiles();
assert(file_infos.file_names.size() == file_infos.meta_by_inode.size());
assert(file_infos.file_names.size() == file_infos.context_by_name.size());
if (path_is_directory)
directory_watch = std::make_unique<FileLogDirectoryWatcher>(root_data_path, *this, getContext());
auto thread = getContext()->getSchedulePool().createTask(log->name(), [this] { threadFunc(); });
task = std::make_shared<TaskContext>(std::move(thread));
}
catch (...)
{
if (!attach)
{
if (created_metadata_directory)
disk->removeRecursive(metadata_base_path);
throw;
}
tryLogCurrentException(__PRETTY_FUNCTION__);
}
}
void StorageFileLog::loadMetaFiles(bool attach)
{
/// Attach table
if (attach)
{
/// Meta file may lost, log and create directory
if (!disk->exists(metadata_base_path))
{
/// Create metadata_base_path directory when store meta data
LOG_ERROR(log, "Metadata files of table {} are lost.", getStorageID().getTableName());
}
/// Load all meta info to file_infos;
deserialize();
}
}
void StorageFileLog::loadFiles()
{
auto absolute_path = std::filesystem::absolute(path);
absolute_path = absolute_path.lexically_normal(); /// Normalize path.
if (std::filesystem::is_regular_file(absolute_path))
{
path_is_directory = false;
root_data_path = absolute_path.parent_path();
file_infos.file_names.push_back(absolute_path.filename());
}
else if (std::filesystem::is_directory(absolute_path))
{
root_data_path = absolute_path;
/// Just consider file with depth 1
for (const auto & dir_entry : std::filesystem::directory_iterator{absolute_path})
{
if (dir_entry.is_regular_file())
{
file_infos.file_names.push_back(dir_entry.path().filename());
}
}
}
else
{
throw Exception(ErrorCodes::BAD_ARGUMENTS, "The path {} neither a regular file, nor a directory", absolute_path.c_str());
}
/// Get files inode
for (const auto & file : file_infos.file_names)
{
auto inode = getInode(getFullDataPath(file));
file_infos.context_by_name.emplace(file, FileContext{.inode = inode});
}
/// Update file meta or create file meta
for (const auto & [file, ctx] : file_infos.context_by_name)
{
if (auto it = file_infos.meta_by_inode.find(ctx.inode); it != file_infos.meta_by_inode.end())
{
/// data file have been renamed, need update meta file's name
if (it->second.file_name != file)
{
disk->replaceFile(getFullMetaPath(it->second.file_name), getFullMetaPath(file));
it->second.file_name = file;
}
}
/// New file
else
{
FileMeta meta{file, 0, 0};
file_infos.meta_by_inode.emplace(ctx.inode, meta);
}
}
/// Clear unneeded meta file, because data files may be deleted
if (file_infos.meta_by_inode.size() > file_infos.context_by_name.size())
{
InodeToFileMeta valid_metas;
valid_metas.reserve(file_infos.context_by_name.size());
for (const auto & [inode, meta] : file_infos.meta_by_inode)
{
/// Note, here we need to use inode to judge does the meta file is valid.
/// In the case that when a file deleted, then we create new file with the
/// same name, it will have different inode number with stored meta file,
/// so the stored meta file is invalid
if (auto it = file_infos.context_by_name.find(meta.file_name);
it != file_infos.context_by_name.end() && it->second.inode == inode)
valid_metas.emplace(inode, meta);
/// Delete meta file from filesystem
else
disk->removeFileIfExists(getFullMetaPath(meta.file_name));
}
file_infos.meta_by_inode.swap(valid_metas);
}
}
void StorageFileLog::serialize() const
{
for (const auto & [inode, meta] : file_infos.meta_by_inode)
serialize(inode, meta);
}
void StorageFileLog::serialize(UInt64 inode, const FileMeta & file_meta) const
{
auto full_path = getFullMetaPath(file_meta.file_name);
if (disk->exists(full_path))
{
checkOffsetIsValid(file_meta.file_name, file_meta.last_writen_position);
}
std::string tmp_path = full_path + TMP_SUFFIX;
disk->removeFileIfExists(tmp_path);
try
{
disk->createFile(tmp_path);
auto out = disk->writeFile(tmp_path);
writeIntText(inode, *out);
writeChar('\n', *out);
writeIntText(file_meta.last_writen_position, *out);
}
catch (...)
{
disk->removeFileIfExists(tmp_path);
throw;
}
disk->replaceFile(tmp_path, full_path);
}
void StorageFileLog::deserialize()
{
if (!disk->exists(metadata_base_path))
return;
std::vector<std::string> files_to_remove;
/// In case of single file (not a watched directory),
/// iterated directory always has one file inside.
for (const auto dir_iter = disk->iterateDirectory(metadata_base_path); dir_iter->isValid(); dir_iter->next())
{
const auto & filename = dir_iter->name();
if (filename.ends_with(TMP_SUFFIX))
{
files_to_remove.push_back(getFullMetaPath(filename));
continue;
}
auto [metadata, inode] = readMetadata(filename);
if (!metadata)
continue;
file_infos.meta_by_inode.emplace(inode, metadata);
}
for (const auto & file : files_to_remove)
disk->removeFile(file);
}
UInt64 StorageFileLog::getInode(const String & file_name)
{
struct stat file_stat;
if (stat(file_name.c_str(), &file_stat))
{
throw Exception(ErrorCodes::CANNOT_STAT, "Can not get stat info of file {}", file_name);
}
return file_stat.st_ino;
}
Pipe StorageFileLog::read(
const Names & column_names,
const StorageSnapshotPtr & storage_snapshot,
SelectQueryInfo & /* query_info */,
ContextPtr local_context,
QueryProcessingStage::Enum /* processed_stage */,
size_t /* max_block_size */,
size_t /* num_streams */)
{
/// If there are MVs depended on this table, we just forbid reading
if (!local_context->getSettingsRef().stream_like_engine_allow_direct_select)
throw Exception(ErrorCodes::QUERY_NOT_ALLOWED,
"Direct select is not allowed. To enable use setting `stream_like_engine_allow_direct_select`");
if (mv_attached)
throw Exception(ErrorCodes::QUERY_NOT_ALLOWED, "Cannot read from StorageFileLog with attached materialized views");
std::lock_guard lock(file_infos_mutex);
if (running_streams)
{
throw Exception(ErrorCodes::CANNOT_SELECT, "Another select query is running on this table, need to wait it finish.");
}
updateFileInfos();
/// No files to parse
if (file_infos.file_names.empty())
{
LOG_WARNING(log, "There is a idle table named {}, no files need to parse.", getName());
return Pipe{};
}
auto modified_context = Context::createCopy(local_context);
auto max_streams_number = std::min<UInt64>(filelog_settings->max_threads, file_infos.file_names.size());
/// Each stream responsible for closing it's files and store meta
openFilesAndSetPos();
Pipes pipes;
pipes.reserve(max_streams_number);
for (size_t stream_number = 0; stream_number < max_streams_number; ++stream_number)
{
pipes.emplace_back(std::make_shared<FileLogSource>(
*this,
storage_snapshot,
modified_context,
column_names,
getMaxBlockSize(),
getPollTimeoutMillisecond(),
stream_number,
max_streams_number));
}
return Pipe::unitePipes(std::move(pipes));
}
void StorageFileLog::increaseStreams()
{
running_streams += 1;
}
void StorageFileLog::reduceStreams()
{
running_streams -= 1;
}
void StorageFileLog::drop()
{
try
{
std::filesystem::remove_all(metadata_base_path);
}
catch (...)
{
tryLogCurrentException(__PRETTY_FUNCTION__);
}
}
void StorageFileLog::startup()
{
if (task)
task->holder->activateAndSchedule();
}
void StorageFileLog::shutdown()
{
if (task)
{
task->stream_cancelled = true;
/// Reader thread may wait for wake up
wakeUp();
LOG_TRACE(log, "Waiting for cleanup");
task->holder->deactivate();
/// If no reading call and threadFunc, the log files will never
/// be opened, also just leave the work of close files and
/// store meta to streams. because if we close files in here,
/// may result in data race with unfinishing reading pipeline
}
}
void StorageFileLog::assertStreamGood(const std::ifstream & reader)
{
if (!reader.good())
{
throw Exception(ErrorCodes::CANNOT_READ_ALL_DATA, "Stream is in bad state");
}
}
void StorageFileLog::openFilesAndSetPos()
{
for (const auto & file : file_infos.file_names)
{
auto & file_ctx = findInMap(file_infos.context_by_name, file);
if (file_ctx.status != FileStatus::NO_CHANGE)
{
file_ctx.reader.emplace(getFullDataPath(file));
auto & reader = file_ctx.reader.value();
assertStreamGood(reader);
reader.seekg(0, reader.end);
assertStreamGood(reader);
auto file_end = reader.tellg();
assertStreamGood(reader);
auto & meta = findInMap(file_infos.meta_by_inode, file_ctx.inode);
if (meta.last_writen_position > static_cast<UInt64>(file_end))
{
throw Exception(
ErrorCodes::CANNOT_READ_ALL_DATA,
"Last saved offsset for File {} is bigger than file size ({} > {})",
file,
meta.last_writen_position,
file_end);
}
/// update file end at the moment, used in ReadBuffer and serialize
meta.last_open_end = file_end;
reader.seekg(meta.last_writen_position);
assertStreamGood(reader);
}
}
serialize();
}
void StorageFileLog::closeFilesAndStoreMeta(size_t start, size_t end)
{
assert(start < end);
assert(end <= file_infos.file_names.size());
for (size_t i = start; i < end; ++i)
{
auto & file_ctx = findInMap(file_infos.context_by_name, file_infos.file_names[i]);
if (file_ctx.reader)
{
if (file_ctx.reader->is_open())
file_ctx.reader->close();
}
auto & meta = findInMap(file_infos.meta_by_inode, file_ctx.inode);
serialize(file_ctx.inode, meta);
}
}
void StorageFileLog::storeMetas(size_t start, size_t end)
{
assert(start < end);
assert(end <= file_infos.file_names.size());
for (size_t i = start; i < end; ++i)
{
auto & file_ctx = findInMap(file_infos.context_by_name, file_infos.file_names[i]);
auto & meta = findInMap(file_infos.meta_by_inode, file_ctx.inode);
serialize(file_ctx.inode, meta);
}
}
void StorageFileLog::checkOffsetIsValid(const String & filename, UInt64 offset) const
{
auto [metadata, _] = readMetadata(filename);
if (metadata.last_writen_position > offset)
{
throw Exception(
ErrorCodes::LOGICAL_ERROR,
"Last stored last_written_position in meta file {} is bigger than current last_written_pos ({} > {})",
filename, metadata.last_writen_position, offset);
}
}
StorageFileLog::ReadMetadataResult StorageFileLog::readMetadata(const String & filename) const
{
auto full_path = getFullMetaPath(filename);
if (!disk->isFile(full_path))
{
throw Exception(
ErrorCodes::BAD_FILE_TYPE,
"The file {} under {} is not a regular file",
filename, metadata_base_path);
}
auto in = disk->readFile(full_path);
FileMeta metadata;
UInt64 inode, last_written_pos;
if (in->eof()) /// File is empty.
{
disk->removeFile(full_path);
return {};
}
if (!tryReadIntText(inode, *in))
throw Exception(ErrorCodes::CANNOT_READ_ALL_DATA, "Read meta file {} failed (1)", full_path);
if (!checkChar('\n', *in))
throw Exception(ErrorCodes::CANNOT_READ_ALL_DATA, "Read meta file {} failed (2)", full_path);
if (!tryReadIntText(last_written_pos, *in))
throw Exception(ErrorCodes::CANNOT_READ_ALL_DATA, "Read meta file {} failed (3)", full_path);
metadata.file_name = filename;
metadata.last_writen_position = last_written_pos;
return { metadata, inode };
}
size_t StorageFileLog::getMaxBlockSize() const
{
return filelog_settings->max_block_size.changed ? filelog_settings->max_block_size.value
: getContext()->getSettingsRef().max_insert_block_size.value;
}
size_t StorageFileLog::getPollMaxBatchSize() const
{
size_t batch_size = filelog_settings->poll_max_batch_size.changed ? filelog_settings->poll_max_batch_size.value
: getContext()->getSettingsRef().max_block_size.value;
return std::min(batch_size, getMaxBlockSize());
}
size_t StorageFileLog::getPollTimeoutMillisecond() const
{
return filelog_settings->poll_timeout_ms.changed ? filelog_settings->poll_timeout_ms.totalMilliseconds()
: getContext()->getSettingsRef().stream_poll_timeout_ms.totalMilliseconds();
}
bool StorageFileLog::checkDependencies(const StorageID & table_id)
{
// Check if all dependencies are attached
auto view_ids = DatabaseCatalog::instance().getDependentViews(table_id);
if (view_ids.empty())
return true;
for (const auto & view_id : view_ids)
{
auto view = DatabaseCatalog::instance().tryGetTable(view_id, getContext());
if (!view)
return false;
// If it materialized view, check it's target table
auto * materialized_view = dynamic_cast<StorageMaterializedView *>(view.get());
if (materialized_view && !materialized_view->tryGetTargetTable())
return false;
// Check all its dependencies
if (!checkDependencies(view_id))
return false;
}
return true;
}
size_t StorageFileLog::getTableDependentCount() const
{
auto table_id = getStorageID();
// Check if at least one direct dependency is attached
return DatabaseCatalog::instance().getDependentViews(table_id).size();
}
void StorageFileLog::threadFunc()
{
bool reschedule = false;
try
{
auto table_id = getStorageID();
auto dependencies_count = getTableDependentCount();
if (dependencies_count)
{
auto start_time = std::chrono::steady_clock::now();
mv_attached.store(true);
// Keep streaming as long as there are attached views and streaming is not cancelled
while (!task->stream_cancelled)
{
if (!checkDependencies(table_id))
{
/// For this case, we can not wait for watch thread to wake up
reschedule = true;
break;
}
LOG_DEBUG(log, "Started streaming to {} attached views", dependencies_count);
if (streamToViews())
{
LOG_TRACE(log, "Stream stalled. Reschedule.");
if (milliseconds_to_wait
< static_cast<uint64_t>(filelog_settings->poll_directory_watch_events_backoff_max.totalMilliseconds()))
milliseconds_to_wait *= filelog_settings->poll_directory_watch_events_backoff_factor.value;
break;
}
else
{
milliseconds_to_wait = filelog_settings->poll_directory_watch_events_backoff_init.totalMilliseconds();
}
auto ts = std::chrono::steady_clock::now();
auto duration = std::chrono::duration_cast<std::chrono::milliseconds>(ts-start_time);
if (duration.count() > MAX_THREAD_WORK_DURATION_MS)
{
LOG_TRACE(log, "Thread work duration limit exceeded. Reschedule.");
reschedule = true;
break;
}
}
}
}
catch (...)
{
tryLogCurrentException(__PRETTY_FUNCTION__);
}
mv_attached.store(false);
// Wait for attached views
if (!task->stream_cancelled)
{
if (path_is_directory)
{
if (!getTableDependentCount() || reschedule)
task->holder->scheduleAfter(milliseconds_to_wait);
else
{
std::unique_lock<std::mutex> lock(mutex);
/// Waiting for watch directory thread to wake up
cv.wait(lock, [this] { return has_new_events; });
has_new_events = false;
if (task->stream_cancelled)
return;
task->holder->schedule();
}
}
else
task->holder->scheduleAfter(milliseconds_to_wait);
}
}
bool StorageFileLog::streamToViews()
{
std::lock_guard lock(file_infos_mutex);
if (running_streams)
{
LOG_INFO(log, "Another select query is running on this table, need to wait it finish.");
return true;
}
Stopwatch watch;
auto table_id = getStorageID();
auto table = DatabaseCatalog::instance().getTable(table_id, getContext());
if (!table)
throw Exception(ErrorCodes::LOGICAL_ERROR, "Engine table {} doesn't exist", table_id.getNameForLogs());
auto metadata_snapshot = getInMemoryMetadataPtr();
auto storage_snapshot = getStorageSnapshot(metadata_snapshot, getContext());
auto max_streams_number = std::min<UInt64>(filelog_settings->max_threads.value, file_infos.file_names.size());
/// No files to parse
if (max_streams_number == 0)
{
LOG_INFO(log, "There is a idle table named {}, no files need to parse.", getName());
return updateFileInfos();
}
// Create an INSERT query for streaming data
auto insert = std::make_shared<ASTInsertQuery>();
insert->table_id = table_id;
auto new_context = Context::createCopy(getContext());
InterpreterInsertQuery interpreter(insert, new_context, false, true, true);
auto block_io = interpreter.execute();
/// Each stream responsible for closing it's files and store meta
openFilesAndSetPos();
Pipes pipes;
pipes.reserve(max_streams_number);
for (size_t stream_number = 0; stream_number < max_streams_number; ++stream_number)
{
pipes.emplace_back(std::make_shared<FileLogSource>(
*this,
storage_snapshot,
new_context,
block_io.pipeline.getHeader().getNames(),
getPollMaxBatchSize(),
getPollTimeoutMillisecond(),
stream_number,
max_streams_number));
}
auto input= Pipe::unitePipes(std::move(pipes));
assertBlocksHaveEqualStructure(input.getHeader(), block_io.pipeline.getHeader(), "StorageFileLog streamToViews");
std::atomic<size_t> rows = 0;
{
block_io.pipeline.complete(std::move(input));
block_io.pipeline.setNumThreads(max_streams_number);
block_io.pipeline.setConcurrencyControl(new_context->getSettingsRef().use_concurrency_control);
block_io.pipeline.setProgressCallback([&](const Progress & progress) { rows += progress.read_rows.load(); });
CompletedPipelineExecutor executor(block_io.pipeline);
executor.execute();
}
UInt64 milliseconds = watch.elapsedMilliseconds();
LOG_DEBUG(log, "Pushing {} rows to {} took {} ms.", rows, table_id.getNameForLogs(), milliseconds);
return updateFileInfos();
}
void StorageFileLog::wakeUp()
{
std::unique_lock<std::mutex> lock(mutex);
has_new_events = true;
lock.unlock();
cv.notify_one();
}
void registerStorageFileLog(StorageFactory & factory)
{
auto creator_fn = [](const StorageFactory::Arguments & args)
{
ASTs & engine_args = args.engine_args;
size_t args_count = engine_args.size();
bool has_settings = args.storage_def->settings;
auto filelog_settings = std::make_unique<FileLogSettings>();
if (has_settings)
{
filelog_settings->loadFromQuery(*args.storage_def);
}
auto physical_cpu_cores = getNumberOfPhysicalCPUCores();
auto num_threads = filelog_settings->max_threads.value;
if (!num_threads) /// Default
{
num_threads = std::max(1U, physical_cpu_cores / 4);
filelog_settings->set("max_threads", num_threads);
}
else if (num_threads > physical_cpu_cores)
{
throw Exception(ErrorCodes::BAD_ARGUMENTS, "Number of threads to parse files can not be bigger than {}", physical_cpu_cores);
}
else if (num_threads < 1)
{
throw Exception(ErrorCodes::BAD_ARGUMENTS, "Number of threads to parse files can not be lower than 1");
}
if (filelog_settings->max_block_size.changed && filelog_settings->max_block_size.value < 1)
{
throw Exception(ErrorCodes::BAD_ARGUMENTS, "filelog_max_block_size can not be lower than 1");
}
if (filelog_settings->poll_max_batch_size.changed && filelog_settings->poll_max_batch_size.value < 1)
{
throw Exception(ErrorCodes::BAD_ARGUMENTS, "filelog_poll_max_batch_size can not be lower than 1");
}
size_t init_sleep_time = filelog_settings->poll_directory_watch_events_backoff_init.totalMilliseconds();
size_t max_sleep_time = filelog_settings->poll_directory_watch_events_backoff_max.totalMilliseconds();
if (init_sleep_time > max_sleep_time)
{
throw Exception(ErrorCodes::BAD_ARGUMENTS,
"poll_directory_watch_events_backoff_init can not "
"be greater than poll_directory_watch_events_backoff_max");
}
if (filelog_settings->poll_directory_watch_events_backoff_factor.changed
&& !filelog_settings->poll_directory_watch_events_backoff_factor.value)
throw Exception(ErrorCodes::BAD_ARGUMENTS, "poll_directory_watch_events_backoff_factor can not be 0");
if (args_count != 2)
throw Exception(ErrorCodes::NUMBER_OF_ARGUMENTS_DOESNT_MATCH, "Arguments size of StorageFileLog should be 2, path and format name");
auto path_ast = evaluateConstantExpressionAsLiteral(engine_args[0], args.getContext());
auto format_ast = evaluateConstantExpressionAsLiteral(engine_args[1], args.getContext());
auto path = checkAndGetLiteralArgument<String>(path_ast, "path");
auto format = checkAndGetLiteralArgument<String>(format_ast, "format");
return std::make_shared<StorageFileLog>(
args.table_id,
args.getContext(),
args.columns,
path,
args.relative_data_path,
format,
std::move(filelog_settings),
args.comment,
args.attach);
};
factory.registerStorage(
"FileLog",
creator_fn,
StorageFactory::StorageFeatures{
.supports_settings = true,
});
}
bool StorageFileLog::updateFileInfos()
{
if (file_infos.file_names.empty())
return false;
if (!directory_watch)
{
/// For table just watch one file, we can not use directory monitor to watch it
if (!path_is_directory)
{
assert(file_infos.file_names.size() == file_infos.meta_by_inode.size());
assert(file_infos.file_names.size() == file_infos.context_by_name.size());
assert(file_infos.file_names.size() == 1);
if (auto it = file_infos.context_by_name.find(file_infos.file_names[0]); it != file_infos.context_by_name.end())
{
it->second.status = FileStatus::UPDATED;
return true;
}
}
return false;
}
/// Do not need to hold file_status lock, since it will be holded
/// by caller when call this function
auto error = directory_watch->getErrorAndReset();
if (error.has_error)
LOG_ERROR(log, "Error happened during watching directory {}: {}", directory_watch->getPath(), error.error_msg);
/// These file infos should always have same size(one for one) before update and after update
assert(file_infos.file_names.size() == file_infos.meta_by_inode.size());
assert(file_infos.file_names.size() == file_infos.context_by_name.size());
auto events = directory_watch->getEventsAndReset();
for (const auto & [file_name, event_infos] : events)
{
String file_path = getFullDataPath(file_name);
for (const auto & event_info : event_infos.file_events)
{
switch (event_info.type)
{
case DirectoryWatcherBase::DW_ITEM_ADDED:
{
LOG_TRACE(log, "New event {} watched, file_name: {}", event_info.callback, file_name);
/// Check if it is a regular file, and new file may be renamed or removed
if (std::filesystem::is_regular_file(file_path))
{
auto inode = getInode(file_path);
file_infos.file_names.push_back(file_name);
if (auto it = file_infos.meta_by_inode.find(inode); it != file_infos.meta_by_inode.end())
it->second = FileMeta{.file_name = file_name};
else
file_infos.meta_by_inode.emplace(inode, FileMeta{.file_name = file_name});
if (auto it = file_infos.context_by_name.find(file_name); it != file_infos.context_by_name.end())
it->second = FileContext{.status = FileStatus::OPEN, .inode = inode};
else
file_infos.context_by_name.emplace(file_name, FileContext{.inode = inode});
}
break;
}
case DirectoryWatcherBase::DW_ITEM_MODIFIED:
{
LOG_TRACE(log, "New event {} watched, file_name: {}", event_info.callback, file_name);
/// When new file added and appended, it has two event: DW_ITEM_ADDED
/// and DW_ITEM_MODIFIED, since the order of these two events in the
/// sequence is uncentain, so we may can not find it in file_infos, just
/// skip it, the file info will be handled in DW_ITEM_ADDED case.
if (auto it = file_infos.context_by_name.find(file_name); it != file_infos.context_by_name.end())
it->second.status = FileStatus::UPDATED;
break;
}
case DirectoryWatcherBase::DW_ITEM_REMOVED:
case DirectoryWatcherBase::DW_ITEM_MOVED_FROM:
{
LOG_TRACE(log, "New event {} watched, file_name: {}", event_info.callback, file_name);
if (auto it = file_infos.context_by_name.find(file_name); it != file_infos.context_by_name.end())
it->second.status = FileStatus::REMOVED;
break;
}
case DirectoryWatcherBase::DW_ITEM_MOVED_TO:
{
LOG_TRACE(log, "New event {} watched, file_name: {}", event_info.callback, file_name);
/// Similar to DW_ITEM_ADDED, but if it removed from an old file
/// should obtain old meta file and rename meta file
if (std::filesystem::is_regular_file(file_path))
{
file_infos.file_names.push_back(file_name);
auto inode = getInode(file_path);
if (auto it = file_infos.context_by_name.find(file_name); it != file_infos.context_by_name.end())
it->second = FileContext{.inode = inode};
else
file_infos.context_by_name.emplace(file_name, FileContext{.inode = inode});
/// File has been renamed, we should also rename meta file
if (auto it = file_infos.meta_by_inode.find(inode); it != file_infos.meta_by_inode.end())
{
auto old_name = it->second.file_name;
it->second.file_name = file_name;
if (std::filesystem::exists(getFullMetaPath(old_name)))
std::filesystem::rename(getFullMetaPath(old_name), getFullMetaPath(file_name));
}
/// May move from other place, adding new meta info
else
file_infos.meta_by_inode.emplace(inode, FileMeta{.file_name = file_name});
}
}
}
}
}
std::vector<String> valid_files;
/// Remove file infos with REMOVE status
for (const auto & file_name : file_infos.file_names)
{
if (auto it = file_infos.context_by_name.find(file_name); it != file_infos.context_by_name.end())
{
if (it->second.status == FileStatus::REMOVED)
{
/// We need to check that this inode does not hold by other file(mv),
/// otherwise, we can not destroy it.
auto inode = it->second.inode;
/// If it's now hold by other file, than the file_name should has
/// been changed during updating file_infos
if (auto meta = file_infos.meta_by_inode.find(inode);
meta != file_infos.meta_by_inode.end() && meta->second.file_name == file_name)
file_infos.meta_by_inode.erase(meta);
if (std::filesystem::exists(getFullMetaPath(file_name)))
std::filesystem::remove(getFullMetaPath(file_name));
file_infos.context_by_name.erase(it);
}
else
{
valid_files.push_back(file_name);
}
}
}
file_infos.file_names.swap(valid_files);
/// These file infos should always have same size(one for one)
assert(file_infos.file_names.size() == file_infos.meta_by_inode.size());
assert(file_infos.file_names.size() == file_infos.context_by_name.size());
return events.empty() || file_infos.file_names.empty();
}
NamesAndTypesList StorageFileLog::getVirtuals() const
{
return NamesAndTypesList{
{"_filename", std::make_shared<DataTypeLowCardinality>(std::make_shared<DataTypeString>())},
{"_offset", std::make_shared<DataTypeUInt64>()}};
}
Names StorageFileLog::getVirtualColumnNames()
{
return {"_filename", "_offset"};
}
}
|