-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathobserver.log.20211117
5299 lines (4395 loc) · 591 KB
/
observer.log.20211117
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
991
992
993
994
995
996
997
998
999
1000
[2021-11-17 8:26:52 pid:16176 tid:7f5e14d82740 INFO: /home/briansun/Projects/miniob-contest/src/observer/init.cpp init 204]>>Output configuration
Begin dump configuration
[]
[DefaultStorageStage]
BaseDir=./miniob
SystemDb=sys
ThreadId=IOThreads
[DefaultThreads]
count=3
[ExecuteStage]
NextStages=DefaultStorageStage,MemStorageStage
ThreadId=SQLThreads
[IOThreads]
count=3
[LOG]
LOG_CONSOLE_LEVEL=1
LOG_FILE_LEVEL=3
LOG_FILE_NAME=observer.log
[MemStorageStage]
ThreadId=IOThreads
[MetricsStage]
NextStages=TimerStage
[NET]
CLIENT_ADDRESS=INADDR_ANY
MAX_CONNECTION_NUM=8192
PORT=6789
[OptimizeStage]
NextStages=ExecuteStage
ThreadId=SQLThreads
[ParseStage]
NextStages=OptimizeStage
ThreadId=SQLThreads
[PlanCacheStage]
NextStages=ExecuteStage,ParseStage
ThreadId=SQLThreads
[QueryCacheStage]
NextStages=PlanCacheStage
ThreadId=SQLThreads
[ResolveStage]
NextStages=QueryCacheStage
ThreadId=SQLThreads
[SEDA_BASE]
EventHistory=false
MaxEventHistoryNum=100
STAGES=SessionStage,ExecuteStage,OptimizeStage,ParseStage,ResolveStage,PlanCacheStage,QueryCacheStage,DefaultStorageStage,MemStorageStage,TimerStage,MetricsStage
ThreadPools=SQLThre
[2021-11-17 8:26:52 pid:16176 tid:7f5e14d82740 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/init.cpp init_seda 66]>>(Re)Starting State: Pid: 16176 Time: Wed Nov 17 08:26:52 2021
[2021-11-17 8:26:52 pid:16176 tid:7f5e14d82740 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/init.cpp init_seda 68]>>The process Name is observer
[2021-11-17 8:26:52 pid:16176 tid:7f5e14d82740 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/seda_config.cpp init_event_history 201]>>Successfully init_event_history, EventHistory:0, MaxEventHops:100
[2021-11-17 8:26:52 pid:16176 tid:7f5e11d7b700 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/thread_pool.cpp run_thread 242]>>threadid = 7f5e11d7b700, threadname = DefaultThreads
[2021-11-17 8:26:52 pid:16176 tid:7f5e14d82740 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/seda_config.cpp init_stages 347]>>Stage SessionStage use threadpool DefaultThreads.
[2021-11-17 8:26:52 pid:16176 tid:7f5e14d82740 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/seda_config.cpp init_stages 347]>>Stage ExecuteStage use threadpool DefaultThreads.
[2021-11-17 8:26:52 pid:16176 tid:7f5e14d82740 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/seda_config.cpp init_stages 347]>>Stage OptimizeStage use threadpool DefaultThreads.
[2021-11-17 8:26:52 pid:16176 tid:7f5e14d82740 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/seda_config.cpp init_stages 347]>>Stage ParseStage use threadpool DefaultThreads.
[2021-11-17 8:26:52 pid:16176 tid:7f5e14d82740 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/seda_config.cpp init_stages 347]>>Stage ResolveStage use threadpool DefaultThreads.
[2021-11-17 8:26:52 pid:16176 tid:7f5e1157a700 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/thread_pool.cpp run_thread 242]>>threadid = 7f5e1157a700, threadname = DefaultThreads
[2021-11-17 8:26:52 pid:16176 tid:7f5e14d82740 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/seda_config.cpp init_stages 347]>>Stage PlanCacheStage use threadpool DefaultThreads.
[2021-11-17 8:26:52 pid:16176 tid:7f5e14d82740 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/seda_config.cpp init_stages 347]>>Stage QueryCacheStage use threadpool DefaultThreads.
[2021-11-17 8:26:52 pid:16176 tid:7f5e14d81700 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/thread_pool.cpp run_thread 242]>>threadid = 7f5e14d81700, threadname = SQLThreads
[2021-11-17 8:26:52 pid:16176 tid:7f5e14d82740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/default/default_storage_stage.cpp set_properties 86]>>Use sys as system db
[2021-11-17 8:26:52 pid:16176 tid:7f5e14580700 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/thread_pool.cpp run_thread 242]>>threadid = 7f5e14580700, threadname = SQLThreads
[2021-11-17 8:26:52 pid:16176 tid:7f5e14d82740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/default/default_handler.cpp init 52]>>Default handler init with ./miniob success
[2021-11-17 8:26:52 pid:16176 tid:7f5e14d82740 WARNNING: /home/briansun/Projects/miniob-contest/src/observer/storage/default/default_handler.cpp create_db 74]>>Db already exists: sys
[2021-11-17 8:26:52 pid:16176 tid:7f5e14d82740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/field_meta.cpp init 71]>>Init a field with name=__trx
[2021-11-17 8:26:52 pid:16176 tid:7f5e14d82740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/field_meta.cpp init 71]>>Init a field with name=__trx
[2021-11-17 8:26:52 pid:16176 tid:7f5e14d82740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/field_meta.cpp init 71]>>Init a field with name=score
[2021-11-17 8:26:52 pid:16176 tid:7f5e14d82740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/default/disk_buffer_pool.cpp open_file 136]>>Successfully open file ./miniob/db/sys/floatT.data.
[2021-11-17 8:26:52 pid:16176 tid:7f5e14d82740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/default/disk_buffer_pool.cpp open_file 177]>>Successfully open ./miniob/db/sys/floatT.data. file_id=0, hdr_frame=0x7f5e10546010
[2021-11-17 8:26:52 pid:16176 tid:7f5e14d82740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/db.cpp open_all_tables 131]>>Open table: floatT, file: floatT.table
[2021-11-17 8:26:52 pid:16176 tid:7f5e14d82740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/field_meta.cpp init 71]>>Init a field with name=__trx
[2021-11-17 8:26:52 pid:16176 tid:7f5e14d82740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/field_meta.cpp init 71]>>Init a field with name=age
[2021-11-17 8:26:52 pid:16176 tid:7f5e14d82740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/field_meta.cpp init 71]>>Init a field with name=dt
[2021-11-17 8:26:52 pid:16176 tid:7f5e14d82740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/default/disk_buffer_pool.cpp open_file 136]>>Successfully open file ./miniob/db/sys/t1.data.
[2021-11-17 8:26:52 pid:16176 tid:7f5e14d82740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/default/disk_buffer_pool.cpp open_file 177]>>Successfully open ./miniob/db/sys/t1.data. file_id=1, hdr_frame=0x7f5e10547028
[2021-11-17 8:26:52 pid:16176 tid:7f5e14d82740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/db.cpp open_all_tables 131]>>Open table: t1, file: t1.table
[2021-11-17 8:26:52 pid:16176 tid:7f5e14d82740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/field_meta.cpp init 71]>>Init a field with name=__trx
[2021-11-17 8:26:52 pid:16176 tid:7f5e14d82740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/field_meta.cpp init 71]>>Init a field with name=age
[2021-11-17 8:26:52 pid:16176 tid:7f5e14d82740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/field_meta.cpp init 71]>>Init a field with name=name
[2021-11-17 8:26:52 pid:16176 tid:7f5e14d82740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/default/disk_buffer_pool.cpp open_file 136]>>Successfully open file ./miniob/db/sys/floatT2.data.
[2021-11-17 8:26:52 pid:16176 tid:7f5e1257c700 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/thread_pool.cpp run_thread 242]>>threadid = 7f5e1257c700, threadname = IOThreads
[2021-11-17 8:26:52 pid:16176 tid:7f5e10d79700 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/thread_pool.cpp run_thread 242]>>threadid = 7f5e10d79700, threadname = DefaultThreads
[2021-11-17 8:26:52 pid:16176 tid:7f5e14d82740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/default/disk_buffer_pool.cpp open_file 177]>>Successfully open ./miniob/db/sys/floatT2.data. file_id=2, hdr_frame=0x7f5e10548040
[2021-11-17 8:26:52 pid:16176 tid:7f5e14d82740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/db.cpp open_all_tables 131]>>Open table: floatT2, file: floatT2.table
[2021-11-17 8:26:52 pid:16176 tid:7f5e13d7f700 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/thread_pool.cpp run_thread 242]>>threadid = 7f5e13d7f700, threadname = SQLThreads
[2021-11-17 8:26:52 pid:16176 tid:7f5e12d7d700 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/thread_pool.cpp run_thread 242]>>threadid = 7f5e12d7d700, threadname = IOThreads
[2021-11-17 8:26:52 pid:16176 tid:7f5e1357e700 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/thread_pool.cpp run_thread 242]>>threadid = 7f5e1357e700, threadname = IOThreads
[2021-11-17 8:26:52 pid:16176 tid:7f5e14d82740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/field_meta.cpp init 71]>>Init a field with name=__trx
[2021-11-17 8:26:52 pid:16176 tid:7f5e14d82740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/field_meta.cpp init 71]>>Init a field with name=age
[2021-11-17 8:26:52 pid:16176 tid:7f5e14d82740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/field_meta.cpp init 71]>>Init a field with name=sex
[2021-11-17 8:26:52 pid:16176 tid:7f5e14d82740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/field_meta.cpp init 71]>>Init a field with name=dt
[2021-11-17 8:26:52 pid:16176 tid:7f5e14d82740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/default/disk_buffer_pool.cpp open_file 136]>>Successfully open file ./miniob/db/sys/ex.data.
[2021-11-17 8:26:52 pid:16176 tid:7f5e14d82740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/default/disk_buffer_pool.cpp open_file 177]>>Successfully open ./miniob/db/sys/ex.data. file_id=3, hdr_frame=0x7f5e10549058
[2021-11-17 8:26:52 pid:16176 tid:7f5e14d82740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/default/disk_buffer_pool.cpp open_file 136]>>Successfully open file ./miniob/db/sys/ex-iex.index.
[2021-11-17 8:26:52 pid:16176 tid:7f5e14d82740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/default/disk_buffer_pool.cpp open_file 177]>>Successfully open ./miniob/db/sys/ex-iex.index. file_id=4, hdr_frame=0x7f5e1054a070
[2021-11-17 8:26:52 pid:16176 tid:7f5e14d82740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/db.cpp open_all_tables 131]>>Open table: ex, file: ex.table
[2021-11-17 8:26:52 pid:16176 tid:7f5e14d82740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/field_meta.cpp init 71]>>Init a field with name=__trx
[2021-11-17 8:26:52 pid:16176 tid:7f5e14d82740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/field_meta.cpp init 71]>>Init a field with name=id
[2021-11-17 8:26:52 pid:16176 tid:7f5e14d82740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/field_meta.cpp init 71]>>Init a field with name=sex
[2021-11-17 8:26:52 pid:16176 tid:7f5e14d82740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/field_meta.cpp init 71]>>Init a field with name=grade
[2021-11-17 8:26:52 pid:16176 tid:7f5e14d82740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/default/disk_buffer_pool.cpp open_file 136]>>Successfully open file ./miniob/db/sys/t2.data.
[2021-11-17 8:26:52 pid:16176 tid:7f5e14d82740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/default/disk_buffer_pool.cpp open_file 177]>>Successfully open ./miniob/db/sys/t2.data. file_id=5, hdr_frame=0x7f5e1054c0a0
[2021-11-17 8:26:52 pid:16176 tid:7f5e14d82740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/db.cpp open_all_tables 131]>>Open table: t2, file: t2.table
[2021-11-17 8:26:52 pid:16176 tid:7f5e14d82740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/db.cpp open_all_tables 134]>>All table have been opened. num=5
[2021-11-17 8:26:52 pid:16176 tid:7f5e14d82740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/default/default_storage_stage.cpp set_properties 110]>>Open system db success: sys
[2021-11-17 8:26:52 pid:16176 tid:7f5e14d82740 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/seda_config.cpp init_stages 347]>>Stage DefaultStorageStage use threadpool DefaultThreads.
[2021-11-17 8:26:52 pid:16176 tid:7f5e14d82740 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/seda_config.cpp init_stages 347]>>Stage MemStorageStage use threadpool DefaultThreads.
[2021-11-17 8:26:52 pid:16176 tid:7f5e14d82740 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/seda_config.cpp get_thread_pool 291]>>Not set thread_pool_id for TimerStage, use default threadpool DefaultThreads
[2021-11-17 8:26:52 pid:16176 tid:7f5e14d82740 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/seda_config.cpp init_stages 347]>>Stage TimerStage use threadpool DefaultThreads.
[2021-11-17 8:26:52 pid:16176 tid:7f5e14d82740 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/seda_config.cpp get_thread_pool 291]>>Not set thread_pool_id for MetricsStage, use default threadpool DefaultThreads
[2021-11-17 8:26:52 pid:16176 tid:7f5e14d82740 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/seda_config.cpp init_stages 347]>>Stage MetricsStage use threadpool DefaultThreads.
[2021-11-17 8:26:52 pid:16176 tid:7f5e14d82740 INFO: /home/briansun/Projects/miniob-contest/deps/common/metrics/metrics_registry.cpp register_metric 37]>>Successfully register metric :DefaultStorageStage.query
[2021-11-17 8:26:52 pid:16176 tid:7f5e14d82740 INFO: /home/briansun/Projects/miniob-contest/deps/common/metrics/metrics_registry.cpp register_metric 37]>>Successfully register metric :SessionStage.sql
[2021-11-17 8:26:52 pid:16176 tid:7f5e14d82740 INFO: /home/briansun/Projects/miniob-contest/src/observer/init.cpp init 228]>>Successfully init utility
[2021-11-17 8:26:52 pid:16176 tid:7f5e14d82740 INFO: /home/briansun/Projects/miniob-contest/deps/common/metrics/metrics_registry.cpp register_metric 37]>>Successfully register metric :SessionStage.readsocket
[2021-11-17 8:26:52 pid:16176 tid:7f5e14d82740 INFO: /home/briansun/Projects/miniob-contest/deps/common/metrics/metrics_registry.cpp register_metric 37]>>Successfully register metric :SessionStage.writesocket
[2021-11-17 8:26:52 pid:16176 tid:7f5e14d82740 INFO: /home/briansun/Projects/miniob-contest/src/observer/net/server.cpp start_tcp_server 330]>>Listen on port 6789
[2021-11-17 8:26:52 pid:16176 tid:7f5e14d82740 INFO: /home/briansun/Projects/miniob-contest/src/observer/net/server.cpp start_tcp_server 348]>>Observer start success
[2021-11-17 8:26:58 pid:16176 tid:7f5e14d82740 INFO: /home/briansun/Projects/miniob-contest/src/observer/net/server.cpp accept 276]>>Accepted connection from 127.0.0.1:10448
[2021-11-17 8:27:14 pid:16176 tid:7f5e14d82740 INFO: /home/briansun/Projects/miniob-contest/src/observer/net/server.cpp recv 170]>>receive command(size=42): select * from t1, t2 where t1.age=t2.id;
[2021-11-17 8:29:12 pid:16398 tid:7f0c72d39740 INFO: /home/briansun/Projects/miniob-contest/src/observer/init.cpp init 204]>>Output configuration
Begin dump configuration
[]
[DefaultStorageStage]
BaseDir=./miniob
SystemDb=sys
ThreadId=IOThreads
[DefaultThreads]
count=3
[ExecuteStage]
NextStages=DefaultStorageStage,MemStorageStage
ThreadId=SQLThreads
[IOThreads]
count=3
[LOG]
LOG_CONSOLE_LEVEL=1
LOG_FILE_LEVEL=3
LOG_FILE_NAME=observer.log
[MemStorageStage]
ThreadId=IOThreads
[MetricsStage]
NextStages=TimerStage
[NET]
CLIENT_ADDRESS=INADDR_ANY
MAX_CONNECTION_NUM=8192
PORT=6789
[OptimizeStage]
NextStages=ExecuteStage
ThreadId=SQLThreads
[ParseStage]
NextStages=OptimizeStage
ThreadId=SQLThreads
[PlanCacheStage]
NextStages=ExecuteStage,ParseStage
ThreadId=SQLThreads
[QueryCacheStage]
NextStages=PlanCacheStage
ThreadId=SQLThreads
[ResolveStage]
NextStages=QueryCacheStage
ThreadId=SQLThreads
[SEDA_BASE]
EventHistory=false
MaxEventHistoryNum=100
STAGES=SessionStage,ExecuteStage,OptimizeStage,ParseStage,ResolveStage,PlanCacheStage,QueryCacheStage,DefaultStorageStage,MemStorageStage,TimerStage,MetricsStage
ThreadPools=SQLThre
[2021-11-17 8:29:12 pid:16398 tid:7f0c72d39740 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/init.cpp init_seda 66]>>(Re)Starting State: Pid: 16398 Time: Wed Nov 17 08:29:12 2021
[2021-11-17 8:29:12 pid:16398 tid:7f0c72d39740 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/init.cpp init_seda 68]>>The process Name is observer
[2021-11-17 8:29:12 pid:16398 tid:7f0c72d39740 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/seda_config.cpp init_event_history 201]>>Successfully init_event_history, EventHistory:0, MaxEventHops:100
[2021-11-17 8:29:12 pid:16398 tid:7f0c72537700 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/thread_pool.cpp run_thread 242]>>threadid = 7f0c72537700, threadname = SQLThreads
[2021-11-17 8:29:12 pid:16398 tid:7f0c71d36700 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/thread_pool.cpp run_thread 242]>>threadid = 7f0c71d36700, threadname = SQLThreads
[2021-11-17 8:29:12 pid:16398 tid:7f0c71535700 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/thread_pool.cpp run_thread 242]>>threadid = 7f0c71535700, threadname = IOThreads
[2021-11-17 8:29:12 pid:16398 tid:7f0c70d34700 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/thread_pool.cpp run_thread 242]>>threadid = 7f0c70d34700, threadname = IOThreads
[2021-11-17 8:29:12 pid:16398 tid:7f0c637fe700 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/thread_pool.cpp run_thread 242]>>threadid = 7f0c637fe700, threadname = DefaultThreads
[2021-11-17 8:29:12 pid:16398 tid:7f0c62ffd700 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/thread_pool.cpp run_thread 242]>>threadid = 7f0c62ffd700, threadname = DefaultThreads
[2021-11-17 8:29:12 pid:16398 tid:7f0c63fff700 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/thread_pool.cpp run_thread 242]>>threadid = 7f0c63fff700, threadname = IOThreads
[2021-11-17 8:29:12 pid:16398 tid:7f0c72d38700 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/thread_pool.cpp run_thread 242]>>threadid = 7f0c72d38700, threadname = SQLThreads
[2021-11-17 8:29:12 pid:16398 tid:7f0c627fc700 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/thread_pool.cpp run_thread 242]>>threadid = 7f0c627fc700, threadname = DefaultThreads
[2021-11-17 8:29:12 pid:16398 tid:7f0c72d39740 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/seda_config.cpp init_stages 347]>>Stage SessionStage use threadpool DefaultThreads.
[2021-11-17 8:29:12 pid:16398 tid:7f0c72d39740 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/seda_config.cpp init_stages 347]>>Stage ExecuteStage use threadpool DefaultThreads.
[2021-11-17 8:29:12 pid:16398 tid:7f0c72d39740 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/seda_config.cpp init_stages 347]>>Stage OptimizeStage use threadpool DefaultThreads.
[2021-11-17 8:29:12 pid:16398 tid:7f0c72d39740 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/seda_config.cpp init_stages 347]>>Stage ParseStage use threadpool DefaultThreads.
[2021-11-17 8:29:12 pid:16398 tid:7f0c72d39740 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/seda_config.cpp init_stages 347]>>Stage ResolveStage use threadpool DefaultThreads.
[2021-11-17 8:29:12 pid:16398 tid:7f0c72d39740 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/seda_config.cpp init_stages 347]>>Stage PlanCacheStage use threadpool DefaultThreads.
[2021-11-17 8:29:12 pid:16398 tid:7f0c72d39740 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/seda_config.cpp init_stages 347]>>Stage QueryCacheStage use threadpool DefaultThreads.
[2021-11-17 8:29:12 pid:16398 tid:7f0c72d39740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/default/default_storage_stage.cpp set_properties 86]>>Use sys as system db
[2021-11-17 8:29:12 pid:16398 tid:7f0c72d39740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/default/default_handler.cpp init 52]>>Default handler init with ./miniob success
[2021-11-17 8:29:12 pid:16398 tid:7f0c72d39740 WARNNING: /home/briansun/Projects/miniob-contest/src/observer/storage/default/default_handler.cpp create_db 74]>>Db already exists: sys
[2021-11-17 8:29:12 pid:16398 tid:7f0c72d39740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/field_meta.cpp init 71]>>Init a field with name=__trx
[2021-11-17 8:29:12 pid:16398 tid:7f0c72d39740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/field_meta.cpp init 71]>>Init a field with name=__trx
[2021-11-17 8:29:12 pid:16398 tid:7f0c72d39740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/field_meta.cpp init 71]>>Init a field with name=score
[2021-11-17 8:29:12 pid:16398 tid:7f0c72d39740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/default/disk_buffer_pool.cpp open_file 136]>>Successfully open file ./miniob/db/sys/floatT.data.
[2021-11-17 8:29:12 pid:16398 tid:7f0c72d39740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/default/disk_buffer_pool.cpp open_file 177]>>Successfully open ./miniob/db/sys/floatT.data. file_id=0, hdr_frame=0x7f0c70501010
[2021-11-17 8:29:12 pid:16398 tid:7f0c72d39740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/db.cpp open_all_tables 131]>>Open table: floatT, file: floatT.table
[2021-11-17 8:29:12 pid:16398 tid:7f0c72d39740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/field_meta.cpp init 71]>>Init a field with name=__trx
[2021-11-17 8:29:12 pid:16398 tid:7f0c72d39740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/field_meta.cpp init 71]>>Init a field with name=age
[2021-11-17 8:29:12 pid:16398 tid:7f0c72d39740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/field_meta.cpp init 71]>>Init a field with name=dt
[2021-11-17 8:29:12 pid:16398 tid:7f0c72d39740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/default/disk_buffer_pool.cpp open_file 136]>>Successfully open file ./miniob/db/sys/t1.data.
[2021-11-17 8:29:12 pid:16398 tid:7f0c72d39740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/default/disk_buffer_pool.cpp open_file 177]>>Successfully open ./miniob/db/sys/t1.data. file_id=1, hdr_frame=0x7f0c70502028
[2021-11-17 8:29:12 pid:16398 tid:7f0c72d39740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/db.cpp open_all_tables 131]>>Open table: t1, file: t1.table
[2021-11-17 8:29:12 pid:16398 tid:7f0c72d39740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/field_meta.cpp init 71]>>Init a field with name=__trx
[2021-11-17 8:29:12 pid:16398 tid:7f0c72d39740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/field_meta.cpp init 71]>>Init a field with name=age
[2021-11-17 8:29:12 pid:16398 tid:7f0c72d39740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/field_meta.cpp init 71]>>Init a field with name=name
[2021-11-17 8:29:12 pid:16398 tid:7f0c72d39740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/default/disk_buffer_pool.cpp open_file 136]>>Successfully open file ./miniob/db/sys/floatT2.data.
[2021-11-17 8:29:12 pid:16398 tid:7f0c72d39740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/default/disk_buffer_pool.cpp open_file 177]>>Successfully open ./miniob/db/sys/floatT2.data. file_id=2, hdr_frame=0x7f0c70503040
[2021-11-17 8:29:12 pid:16398 tid:7f0c72d39740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/db.cpp open_all_tables 131]>>Open table: floatT2, file: floatT2.table
[2021-11-17 8:29:12 pid:16398 tid:7f0c72d39740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/field_meta.cpp init 71]>>Init a field with name=__trx
[2021-11-17 8:29:12 pid:16398 tid:7f0c72d39740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/field_meta.cpp init 71]>>Init a field with name=age
[2021-11-17 8:29:12 pid:16398 tid:7f0c72d39740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/field_meta.cpp init 71]>>Init a field with name=sex
[2021-11-17 8:29:12 pid:16398 tid:7f0c72d39740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/field_meta.cpp init 71]>>Init a field with name=dt
[2021-11-17 8:29:12 pid:16398 tid:7f0c72d39740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/default/disk_buffer_pool.cpp open_file 136]>>Successfully open file ./miniob/db/sys/ex.data.
[2021-11-17 8:29:12 pid:16398 tid:7f0c72d39740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/default/disk_buffer_pool.cpp open_file 177]>>Successfully open ./miniob/db/sys/ex.data. file_id=3, hdr_frame=0x7f0c70504058
[2021-11-17 8:29:12 pid:16398 tid:7f0c72d39740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/default/disk_buffer_pool.cpp open_file 136]>>Successfully open file ./miniob/db/sys/ex-iex.index.
[2021-11-17 8:29:12 pid:16398 tid:7f0c72d39740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/default/disk_buffer_pool.cpp open_file 177]>>Successfully open ./miniob/db/sys/ex-iex.index. file_id=4, hdr_frame=0x7f0c70505070
[2021-11-17 8:29:12 pid:16398 tid:7f0c72d39740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/db.cpp open_all_tables 131]>>Open table: ex, file: ex.table
[2021-11-17 8:29:12 pid:16398 tid:7f0c72d39740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/field_meta.cpp init 71]>>Init a field with name=__trx
[2021-11-17 8:29:12 pid:16398 tid:7f0c72d39740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/field_meta.cpp init 71]>>Init a field with name=id
[2021-11-17 8:29:12 pid:16398 tid:7f0c72d39740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/field_meta.cpp init 71]>>Init a field with name=sex
[2021-11-17 8:29:12 pid:16398 tid:7f0c72d39740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/field_meta.cpp init 71]>>Init a field with name=grade
[2021-11-17 8:29:12 pid:16398 tid:7f0c72d39740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/default/disk_buffer_pool.cpp open_file 136]>>Successfully open file ./miniob/db/sys/t2.data.
[2021-11-17 8:29:12 pid:16398 tid:7f0c72d39740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/default/disk_buffer_pool.cpp open_file 177]>>Successfully open ./miniob/db/sys/t2.data. file_id=5, hdr_frame=0x7f0c705070a0
[2021-11-17 8:29:12 pid:16398 tid:7f0c72d39740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/db.cpp open_all_tables 131]>>Open table: t2, file: t2.table
[2021-11-17 8:29:12 pid:16398 tid:7f0c72d39740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/db.cpp open_all_tables 134]>>All table have been opened. num=5
[2021-11-17 8:29:12 pid:16398 tid:7f0c72d39740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/default/default_storage_stage.cpp set_properties 110]>>Open system db success: sys
[2021-11-17 8:29:12 pid:16398 tid:7f0c72d39740 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/seda_config.cpp init_stages 347]>>Stage DefaultStorageStage use threadpool DefaultThreads.
[2021-11-17 8:29:12 pid:16398 tid:7f0c72d39740 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/seda_config.cpp init_stages 347]>>Stage MemStorageStage use threadpool DefaultThreads.
[2021-11-17 8:29:12 pid:16398 tid:7f0c72d39740 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/seda_config.cpp get_thread_pool 291]>>Not set thread_pool_id for TimerStage, use default threadpool DefaultThreads
[2021-11-17 8:29:12 pid:16398 tid:7f0c72d39740 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/seda_config.cpp init_stages 347]>>Stage TimerStage use threadpool DefaultThreads.
[2021-11-17 8:29:12 pid:16398 tid:7f0c72d39740 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/seda_config.cpp get_thread_pool 291]>>Not set thread_pool_id for MetricsStage, use default threadpool DefaultThreads
[2021-11-17 8:29:12 pid:16398 tid:7f0c72d39740 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/seda_config.cpp init_stages 347]>>Stage MetricsStage use threadpool DefaultThreads.
[2021-11-17 8:29:12 pid:16398 tid:7f0c72d39740 INFO: /home/briansun/Projects/miniob-contest/deps/common/metrics/metrics_registry.cpp register_metric 37]>>Successfully register metric :DefaultStorageStage.query
[2021-11-17 8:29:12 pid:16398 tid:7f0c72d39740 INFO: /home/briansun/Projects/miniob-contest/deps/common/metrics/metrics_registry.cpp register_metric 37]>>Successfully register metric :SessionStage.sql
[2021-11-17 8:29:12 pid:16398 tid:7f0c72d39740 INFO: /home/briansun/Projects/miniob-contest/src/observer/init.cpp init 228]>>Successfully init utility
[2021-11-17 8:29:12 pid:16398 tid:7f0c72d39740 INFO: /home/briansun/Projects/miniob-contest/deps/common/metrics/metrics_registry.cpp register_metric 37]>>Successfully register metric :SessionStage.readsocket
[2021-11-17 8:29:12 pid:16398 tid:7f0c72d39740 INFO: /home/briansun/Projects/miniob-contest/deps/common/metrics/metrics_registry.cpp register_metric 37]>>Successfully register metric :SessionStage.writesocket
[2021-11-17 8:29:12 pid:16398 tid:7f0c72d39740 INFO: /home/briansun/Projects/miniob-contest/src/observer/net/server.cpp start_tcp_server 330]>>Listen on port 6789
[2021-11-17 8:29:12 pid:16398 tid:7f0c72d39740 INFO: /home/briansun/Projects/miniob-contest/src/observer/net/server.cpp start_tcp_server 348]>>Observer start success
[2021-11-17 8:29:13 pid:16398 tid:7f0c72d39740 INFO: /home/briansun/Projects/miniob-contest/src/observer/net/server.cpp accept 276]>>Accepted connection from 127.0.0.1:13008
[2021-11-17 8:29:16 pid:16398 tid:7f0c72d39740 INFO: /home/briansun/Projects/miniob-contest/src/observer/net/server.cpp recv 170]>>receive command(size=42): select * from t1, t2 where t1.age=t2.id;
[2021-11-17 8:40:7 pid:17556 tid:7f7847ecb740 INFO: /home/briansun/Projects/miniob-contest/src/observer/init.cpp init 204]>>Output configuration
Begin dump configuration
[]
[DefaultStorageStage]
BaseDir=./miniob
SystemDb=sys
ThreadId=IOThreads
[DefaultThreads]
count=3
[ExecuteStage]
NextStages=DefaultStorageStage,MemStorageStage
ThreadId=SQLThreads
[IOThreads]
count=3
[LOG]
LOG_CONSOLE_LEVEL=1
LOG_FILE_LEVEL=3
LOG_FILE_NAME=observer.log
[MemStorageStage]
ThreadId=IOThreads
[MetricsStage]
NextStages=TimerStage
[NET]
CLIENT_ADDRESS=INADDR_ANY
MAX_CONNECTION_NUM=8192
PORT=6789
[OptimizeStage]
NextStages=ExecuteStage
ThreadId=SQLThreads
[ParseStage]
NextStages=OptimizeStage
ThreadId=SQLThreads
[PlanCacheStage]
NextStages=ExecuteStage,ParseStage
ThreadId=SQLThreads
[QueryCacheStage]
NextStages=PlanCacheStage
ThreadId=SQLThreads
[ResolveStage]
NextStages=QueryCacheStage
ThreadId=SQLThreads
[SEDA_BASE]
EventHistory=false
MaxEventHistoryNum=100
STAGES=SessionStage,ExecuteStage,OptimizeStage,ParseStage,ResolveStage,PlanCacheStage,QueryCacheStage,DefaultStorageStage,MemStorageStage,TimerStage,MetricsStage
ThreadPools=SQLThre
[2021-11-17 8:40:7 pid:17556 tid:7f7847ecb740 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/init.cpp init_seda 66]>>(Re)Starting State: Pid: 17556 Time: Wed Nov 17 08:40:07 2021
[2021-11-17 8:40:7 pid:17556 tid:7f7847ecb740 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/init.cpp init_seda 68]>>The process Name is observer
[2021-11-17 8:40:7 pid:17556 tid:7f7847ecb740 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/seda_config.cpp init_event_history 201]>>Successfully init_event_history, EventHistory:0, MaxEventHops:100
[2021-11-17 8:40:7 pid:17556 tid:7f7847eca700 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/thread_pool.cpp run_thread 242]>>threadid = 7f7847eca700, threadname = SQLThreads
[2021-11-17 8:40:7 pid:17556 tid:7f7846ec8700 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/thread_pool.cpp run_thread 242]>>threadid = 7f7846ec8700, threadname = SQLThreads
[2021-11-17 8:40:7 pid:17556 tid:7f7845ec6700 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/thread_pool.cpp run_thread 242]>>threadid = 7f7845ec6700, threadname = IOThreads
[2021-11-17 8:40:7 pid:17556 tid:7f78476c9700 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/thread_pool.cpp run_thread 242]>>threadid = 7f78476c9700, threadname = SQLThreads
[2021-11-17 8:40:7 pid:17556 tid:7f78466c7700 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/thread_pool.cpp run_thread 242]>>threadid = 7f78466c7700, threadname = IOThreads
[2021-11-17 8:40:7 pid:17556 tid:7f78456c5700 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/thread_pool.cpp run_thread 242]>>threadid = 7f78456c5700, threadname = IOThreads
[2021-11-17 8:40:7 pid:17556 tid:7f7844ec4700 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/thread_pool.cpp run_thread 242]>>threadid = 7f7844ec4700, threadname = DefaultThreads
[2021-11-17 8:40:7 pid:17556 tid:7f7837fff700 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/thread_pool.cpp run_thread 242]>>threadid = 7f7837fff700, threadname = DefaultThreads
[2021-11-17 8:40:7 pid:17556 tid:7f78377fe700 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/thread_pool.cpp run_thread 242]>>threadid = 7f78377fe700, threadname = DefaultThreads
[2021-11-17 8:40:7 pid:17556 tid:7f7847ecb740 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/seda_config.cpp init_stages 347]>>Stage SessionStage use threadpool DefaultThreads.
[2021-11-17 8:40:7 pid:17556 tid:7f7847ecb740 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/seda_config.cpp init_stages 347]>>Stage ExecuteStage use threadpool DefaultThreads.
[2021-11-17 8:40:7 pid:17556 tid:7f7847ecb740 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/seda_config.cpp init_stages 347]>>Stage OptimizeStage use threadpool DefaultThreads.
[2021-11-17 8:40:7 pid:17556 tid:7f7847ecb740 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/seda_config.cpp init_stages 347]>>Stage ParseStage use threadpool DefaultThreads.
[2021-11-17 8:40:7 pid:17556 tid:7f7847ecb740 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/seda_config.cpp init_stages 347]>>Stage ResolveStage use threadpool DefaultThreads.
[2021-11-17 8:40:7 pid:17556 tid:7f7847ecb740 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/seda_config.cpp init_stages 347]>>Stage PlanCacheStage use threadpool DefaultThreads.
[2021-11-17 8:40:7 pid:17556 tid:7f7847ecb740 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/seda_config.cpp init_stages 347]>>Stage QueryCacheStage use threadpool DefaultThreads.
[2021-11-17 8:40:7 pid:17556 tid:7f7847ecb740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/default/default_storage_stage.cpp set_properties 86]>>Use sys as system db
[2021-11-17 8:40:7 pid:17556 tid:7f7847ecb740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/default/default_handler.cpp init 52]>>Default handler init with ./miniob success
[2021-11-17 8:40:7 pid:17556 tid:7f7847ecb740 WARNNING: /home/briansun/Projects/miniob-contest/src/observer/storage/default/default_handler.cpp create_db 74]>>Db already exists: sys
[2021-11-17 8:40:7 pid:17556 tid:7f7847ecb740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/field_meta.cpp init 71]>>Init a field with name=__trx
[2021-11-17 8:40:7 pid:17556 tid:7f7847ecb740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/field_meta.cpp init 71]>>Init a field with name=__trx
[2021-11-17 8:40:7 pid:17556 tid:7f7847ecb740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/field_meta.cpp init 71]>>Init a field with name=score
[2021-11-17 8:40:7 pid:17556 tid:7f7847ecb740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/default/disk_buffer_pool.cpp open_file 136]>>Successfully open file ./miniob/db/sys/floatT.data.
[2021-11-17 8:40:7 pid:17556 tid:7f7847ecb740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/default/disk_buffer_pool.cpp open_file 177]>>Successfully open ./miniob/db/sys/floatT.data. file_id=0, hdr_frame=0x7f7844691010
[2021-11-17 8:40:7 pid:17556 tid:7f7847ecb740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/db.cpp open_all_tables 131]>>Open table: floatT, file: floatT.table
[2021-11-17 8:40:7 pid:17556 tid:7f7847ecb740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/field_meta.cpp init 71]>>Init a field with name=__trx
[2021-11-17 8:40:7 pid:17556 tid:7f7847ecb740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/field_meta.cpp init 71]>>Init a field with name=age
[2021-11-17 8:40:7 pid:17556 tid:7f7847ecb740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/field_meta.cpp init 71]>>Init a field with name=dt
[2021-11-17 8:40:7 pid:17556 tid:7f7847ecb740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/default/disk_buffer_pool.cpp open_file 136]>>Successfully open file ./miniob/db/sys/t1.data.
[2021-11-17 8:40:7 pid:17556 tid:7f7847ecb740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/default/disk_buffer_pool.cpp open_file 177]>>Successfully open ./miniob/db/sys/t1.data. file_id=1, hdr_frame=0x7f7844692028
[2021-11-17 8:40:7 pid:17556 tid:7f7847ecb740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/db.cpp open_all_tables 131]>>Open table: t1, file: t1.table
[2021-11-17 8:40:7 pid:17556 tid:7f7847ecb740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/field_meta.cpp init 71]>>Init a field with name=__trx
[2021-11-17 8:40:7 pid:17556 tid:7f7847ecb740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/field_meta.cpp init 71]>>Init a field with name=age
[2021-11-17 8:40:7 pid:17556 tid:7f7847ecb740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/field_meta.cpp init 71]>>Init a field with name=name
[2021-11-17 8:40:7 pid:17556 tid:7f7847ecb740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/default/disk_buffer_pool.cpp open_file 136]>>Successfully open file ./miniob/db/sys/floatT2.data.
[2021-11-17 8:40:7 pid:17556 tid:7f7847ecb740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/default/disk_buffer_pool.cpp open_file 177]>>Successfully open ./miniob/db/sys/floatT2.data. file_id=2, hdr_frame=0x7f7844693040
[2021-11-17 8:40:7 pid:17556 tid:7f7847ecb740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/db.cpp open_all_tables 131]>>Open table: floatT2, file: floatT2.table
[2021-11-17 8:40:7 pid:17556 tid:7f7847ecb740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/field_meta.cpp init 71]>>Init a field with name=__trx
[2021-11-17 8:40:7 pid:17556 tid:7f7847ecb740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/field_meta.cpp init 71]>>Init a field with name=age
[2021-11-17 8:40:7 pid:17556 tid:7f7847ecb740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/field_meta.cpp init 71]>>Init a field with name=sex
[2021-11-17 8:40:7 pid:17556 tid:7f7847ecb740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/field_meta.cpp init 71]>>Init a field with name=dt
[2021-11-17 8:40:7 pid:17556 tid:7f7847ecb740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/default/disk_buffer_pool.cpp open_file 136]>>Successfully open file ./miniob/db/sys/ex.data.
[2021-11-17 8:40:7 pid:17556 tid:7f7847ecb740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/default/disk_buffer_pool.cpp open_file 177]>>Successfully open ./miniob/db/sys/ex.data. file_id=3, hdr_frame=0x7f7844694058
[2021-11-17 8:40:7 pid:17556 tid:7f7847ecb740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/default/disk_buffer_pool.cpp open_file 136]>>Successfully open file ./miniob/db/sys/ex-iex.index.
[2021-11-17 8:40:7 pid:17556 tid:7f7847ecb740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/default/disk_buffer_pool.cpp open_file 177]>>Successfully open ./miniob/db/sys/ex-iex.index. file_id=4, hdr_frame=0x7f7844695070
[2021-11-17 8:40:7 pid:17556 tid:7f7847ecb740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/db.cpp open_all_tables 131]>>Open table: ex, file: ex.table
[2021-11-17 8:40:7 pid:17556 tid:7f7847ecb740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/field_meta.cpp init 71]>>Init a field with name=__trx
[2021-11-17 8:40:7 pid:17556 tid:7f7847ecb740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/field_meta.cpp init 71]>>Init a field with name=id
[2021-11-17 8:40:7 pid:17556 tid:7f7847ecb740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/field_meta.cpp init 71]>>Init a field with name=sex
[2021-11-17 8:40:7 pid:17556 tid:7f7847ecb740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/field_meta.cpp init 71]>>Init a field with name=grade
[2021-11-17 8:40:7 pid:17556 tid:7f7847ecb740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/default/disk_buffer_pool.cpp open_file 136]>>Successfully open file ./miniob/db/sys/t2.data.
[2021-11-17 8:40:7 pid:17556 tid:7f7847ecb740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/default/disk_buffer_pool.cpp open_file 177]>>Successfully open ./miniob/db/sys/t2.data. file_id=5, hdr_frame=0x7f78446970a0
[2021-11-17 8:40:7 pid:17556 tid:7f7847ecb740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/db.cpp open_all_tables 131]>>Open table: t2, file: t2.table
[2021-11-17 8:40:7 pid:17556 tid:7f7847ecb740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/db.cpp open_all_tables 134]>>All table have been opened. num=5
[2021-11-17 8:40:7 pid:17556 tid:7f7847ecb740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/default/default_storage_stage.cpp set_properties 110]>>Open system db success: sys
[2021-11-17 8:40:7 pid:17556 tid:7f7847ecb740 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/seda_config.cpp init_stages 347]>>Stage DefaultStorageStage use threadpool DefaultThreads.
[2021-11-17 8:40:7 pid:17556 tid:7f7847ecb740 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/seda_config.cpp init_stages 347]>>Stage MemStorageStage use threadpool DefaultThreads.
[2021-11-17 8:40:7 pid:17556 tid:7f7847ecb740 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/seda_config.cpp get_thread_pool 291]>>Not set thread_pool_id for TimerStage, use default threadpool DefaultThreads
[2021-11-17 8:40:7 pid:17556 tid:7f7847ecb740 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/seda_config.cpp init_stages 347]>>Stage TimerStage use threadpool DefaultThreads.
[2021-11-17 8:40:7 pid:17556 tid:7f7847ecb740 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/seda_config.cpp get_thread_pool 291]>>Not set thread_pool_id for MetricsStage, use default threadpool DefaultThreads
[2021-11-17 8:40:7 pid:17556 tid:7f7847ecb740 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/seda_config.cpp init_stages 347]>>Stage MetricsStage use threadpool DefaultThreads.
[2021-11-17 8:40:7 pid:17556 tid:7f7847ecb740 INFO: /home/briansun/Projects/miniob-contest/deps/common/metrics/metrics_registry.cpp register_metric 37]>>Successfully register metric :DefaultStorageStage.query
[2021-11-17 8:40:7 pid:17556 tid:7f7847ecb740 INFO: /home/briansun/Projects/miniob-contest/deps/common/metrics/metrics_registry.cpp register_metric 37]>>Successfully register metric :SessionStage.sql
[2021-11-17 8:40:7 pid:17556 tid:7f7847ecb740 INFO: /home/briansun/Projects/miniob-contest/src/observer/init.cpp init 228]>>Successfully init utility
[2021-11-17 8:40:7 pid:17556 tid:7f7847ecb740 INFO: /home/briansun/Projects/miniob-contest/deps/common/metrics/metrics_registry.cpp register_metric 37]>>Successfully register metric :SessionStage.readsocket
[2021-11-17 8:40:7 pid:17556 tid:7f7847ecb740 INFO: /home/briansun/Projects/miniob-contest/deps/common/metrics/metrics_registry.cpp register_metric 37]>>Successfully register metric :SessionStage.writesocket
[2021-11-17 8:40:7 pid:17556 tid:7f7847ecb740 INFO: /home/briansun/Projects/miniob-contest/src/observer/net/server.cpp start_tcp_server 330]>>Listen on port 6789
[2021-11-17 8:40:7 pid:17556 tid:7f7847ecb740 INFO: /home/briansun/Projects/miniob-contest/src/observer/net/server.cpp start_tcp_server 348]>>Observer start success
[2021-11-17 8:40:12 pid:17556 tid:7f7847ecb740 INFO: /home/briansun/Projects/miniob-contest/src/observer/net/server.cpp accept 276]>>Accepted connection from 127.0.0.1:57554
[2021-11-17 8:40:15 pid:17556 tid:7f7847ecb740 INFO: /home/briansun/Projects/miniob-contest/src/observer/net/server.cpp recv 170]>>receive command(size=42): select * from t1, t2 where t1.age=t2.id;
[2021-11-17 8:40:15 pid:17556 tid:7f78377fe700 PANIC: /home/briansun/Projects/miniob-contest/src/observer/sql/executor/tuple.cpp Tuple 20]>>Copy constructor of tuple is not supported
[2021-11-17 8:40:15 pid:17556 tid:7f78377fe700 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/table.cpp sync 851]>>Sync table over. table=t2
[2021-11-17 8:40:15 pid:17556 tid:7f78377fe700 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/table.cpp sync 851]>>Sync table over. table=ex
[2021-11-17 8:40:15 pid:17556 tid:7f78377fe700 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/table.cpp sync 851]>>Sync table over. table=floatT2
[2021-11-17 8:40:15 pid:17556 tid:7f78377fe700 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/table.cpp sync 851]>>Sync table over. table=t1
[2021-11-17 8:40:15 pid:17556 tid:7f78377fe700 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/table.cpp sync 851]>>Sync table over. table=floatT
[2021-11-17 8:40:15 pid:17556 tid:7f78377fe700 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/db.cpp sync 158]>>Sync db over. db=sys
[2021-11-17 8:40:15 pid:17556 tid:7f78377fe700 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/default/disk_buffer_pool.cpp close_file 203]>>Successfully close file 5:.
[2021-11-17 8:40:15 pid:17556 tid:7f78377fe700 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/table.cpp ~Table 47]>>Table has been closed: t2
[2021-11-17 8:40:15 pid:17556 tid:7f78377fe700 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/default/disk_buffer_pool.cpp close_file 203]>>Successfully close file 3:./miniob/db/sys/ex.data.
[2021-11-17 8:40:15 pid:17556 tid:7f78377fe700 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/table.cpp ~Table 47]>>Table has been closed: ex
[2021-11-17 8:40:15 pid:17556 tid:7f78377fe700 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/default/disk_buffer_pool.cpp close_file 203]>>Successfully close file 2:./miniob/db/sys/floatT2.data.
[2021-11-17 8:40:15 pid:17556 tid:7f78377fe700 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/table.cpp ~Table 47]>>Table has been closed: floatT2
[2021-11-17 8:40:15 pid:17556 tid:7f78377fe700 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/default/disk_buffer_pool.cpp close_file 203]>>Successfully close file 1:./miniob/db/sys/t1.data.
[2021-11-17 8:40:15 pid:17556 tid:7f78377fe700 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/table.cpp ~Table 47]>>Table has been closed: t1
[2021-11-17 8:40:15 pid:17556 tid:7f78377fe700 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/default/disk_buffer_pool.cpp close_file 203]>>Successfully close file 0:./miniob/db/sys/floatT.data.
[2021-11-17 8:40:15 pid:17556 tid:7f78377fe700 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/table.cpp ~Table 47]>>Table has been closed: floatT
[2021-11-17 8:40:15 pid:17556 tid:7f78377fe700 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/db.cpp ~Db 33]>>Db has been closed: sys
[2021-11-17 9:23:40 pid:20946 tid:7f84caa26740 INFO: /home/briansun/Projects/miniob-contest/src/observer/init.cpp init 204]>>Output configuration
Begin dump configuration
[]
[DefaultStorageStage]
BaseDir=./miniob
SystemDb=sys
ThreadId=IOThreads
[DefaultThreads]
count=3
[ExecuteStage]
NextStages=DefaultStorageStage,MemStorageStage
ThreadId=SQLThreads
[IOThreads]
count=3
[LOG]
LOG_CONSOLE_LEVEL=1
LOG_FILE_LEVEL=3
LOG_FILE_NAME=observer.log
[MemStorageStage]
ThreadId=IOThreads
[MetricsStage]
NextStages=TimerStage
[NET]
CLIENT_ADDRESS=INADDR_ANY
MAX_CONNECTION_NUM=8192
PORT=6789
[OptimizeStage]
NextStages=ExecuteStage
ThreadId=SQLThreads
[ParseStage]
NextStages=OptimizeStage
ThreadId=SQLThreads
[PlanCacheStage]
NextStages=ExecuteStage,ParseStage
ThreadId=SQLThreads
[QueryCacheStage]
NextStages=PlanCacheStage
ThreadId=SQLThreads
[ResolveStage]
NextStages=QueryCacheStage
ThreadId=SQLThreads
[SEDA_BASE]
EventHistory=false
MaxEventHistoryNum=100
STAGES=SessionStage,ExecuteStage,OptimizeStage,ParseStage,ResolveStage,PlanCacheStage,QueryCacheStage,DefaultStorageStage,MemStorageStage,TimerStage,MetricsStage
ThreadPools=SQLThre
[2021-11-17 9:23:40 pid:20946 tid:7f84caa26740 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/init.cpp init_seda 66]>>(Re)Starting State: Pid: 20946 Time: Wed Nov 17 09:23:40 2021
[2021-11-17 9:23:40 pid:20946 tid:7f84caa26740 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/init.cpp init_seda 68]>>The process Name is observer
[2021-11-17 9:23:40 pid:20946 tid:7f84caa26740 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/seda_config.cpp init_event_history 201]>>Successfully init_event_history, EventHistory:0, MaxEventHops:100
[2021-11-17 9:23:40 pid:20946 tid:7f84caa25700 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/thread_pool.cpp run_thread 242]>>threadid = 7f84caa25700, threadname = SQLThreads
[2021-11-17 9:23:40 pid:20946 tid:7f84c0a21700 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/thread_pool.cpp run_thread 242]>>threadid = 7f84c0a21700, threadname = IOThreads
[2021-11-17 9:23:40 pid:20946 tid:7f84c1a23700 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/thread_pool.cpp run_thread 242]>>threadid = 7f84c1a23700, threadname = SQLThreads
[2021-11-17 9:23:40 pid:20946 tid:7f84c9222700 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/thread_pool.cpp run_thread 242]>>threadid = 7f84c9222700, threadname = DefaultThreads
[2021-11-17 9:23:40 pid:20946 tid:7f84ca224700 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/thread_pool.cpp run_thread 242]>>threadid = 7f84ca224700, threadname = SQLThreads
[2021-11-17 9:23:40 pid:20946 tid:7f84c9a23700 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/thread_pool.cpp run_thread 242]>>threadid = 7f84c9a23700, threadname = IOThreads
[2021-11-17 9:23:40 pid:20946 tid:7f84c1222700 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/thread_pool.cpp run_thread 242]>>threadid = 7f84c1222700, threadname = IOThreads
[2021-11-17 9:23:40 pid:20946 tid:7f84c8a21700 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/thread_pool.cpp run_thread 242]>>threadid = 7f84c8a21700, threadname = DefaultThreads
[2021-11-17 9:23:40 pid:20946 tid:7f84caa26740 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/seda_config.cpp init_stages 347]>>Stage SessionStage use threadpool DefaultThreads.
[2021-11-17 9:23:40 pid:20946 tid:7f84caa26740 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/seda_config.cpp init_stages 347]>>Stage ExecuteStage use threadpool DefaultThreads.
[2021-11-17 9:23:40 pid:20946 tid:7f84caa26740 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/seda_config.cpp init_stages 347]>>Stage OptimizeStage use threadpool DefaultThreads.
[2021-11-17 9:23:40 pid:20946 tid:7f84caa26740 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/seda_config.cpp init_stages 347]>>Stage ParseStage use threadpool DefaultThreads.
[2021-11-17 9:23:40 pid:20946 tid:7f84caa26740 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/seda_config.cpp init_stages 347]>>Stage ResolveStage use threadpool DefaultThreads.
[2021-11-17 9:23:40 pid:20946 tid:7f84caa26740 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/seda_config.cpp init_stages 347]>>Stage PlanCacheStage use threadpool DefaultThreads.
[2021-11-17 9:23:40 pid:20946 tid:7f84caa26740 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/seda_config.cpp init_stages 347]>>Stage QueryCacheStage use threadpool DefaultThreads.
[2021-11-17 9:23:40 pid:20946 tid:7f84caa26740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/default/default_storage_stage.cpp set_properties 86]>>Use sys as system db
[2021-11-17 9:23:40 pid:20946 tid:7f84caa26740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/default/default_handler.cpp init 52]>>Default handler init with ./miniob success
[2021-11-17 9:23:40 pid:20946 tid:7f84caa26740 WARNNING: /home/briansun/Projects/miniob-contest/src/observer/storage/default/default_handler.cpp create_db 74]>>Db already exists: sys
[2021-11-17 9:23:40 pid:20946 tid:7f84caa26740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/field_meta.cpp init 71]>>Init a field with name=__trx
[2021-11-17 9:23:40 pid:20946 tid:7f84caa26740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/field_meta.cpp init 71]>>Init a field with name=__trx
[2021-11-17 9:23:40 pid:20946 tid:7f84caa26740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/field_meta.cpp init 71]>>Init a field with name=score
[2021-11-17 9:23:40 pid:20946 tid:7f84c3fff700 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/thread_pool.cpp run_thread 242]>>threadid = 7f84c3fff700, threadname = DefaultThreads
[2021-11-17 9:23:40 pid:20946 tid:7f84caa26740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/default/disk_buffer_pool.cpp open_file 136]>>Successfully open file ./miniob/db/sys/floatT.data.
[2021-11-17 9:23:40 pid:20946 tid:7f84caa26740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/default/disk_buffer_pool.cpp open_file 177]>>Successfully open ./miniob/db/sys/floatT.data. file_id=0, hdr_frame=0x7f84c81ee010
[2021-11-17 9:23:40 pid:20946 tid:7f84caa26740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/db.cpp open_all_tables 131]>>Open table: floatT, file: floatT.table
[2021-11-17 9:23:40 pid:20946 tid:7f84caa26740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/field_meta.cpp init 71]>>Init a field with name=__trx
[2021-11-17 9:23:40 pid:20946 tid:7f84caa26740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/field_meta.cpp init 71]>>Init a field with name=age
[2021-11-17 9:23:40 pid:20946 tid:7f84caa26740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/field_meta.cpp init 71]>>Init a field with name=dt
[2021-11-17 9:23:40 pid:20946 tid:7f84caa26740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/default/disk_buffer_pool.cpp open_file 136]>>Successfully open file ./miniob/db/sys/t1.data.
[2021-11-17 9:23:40 pid:20946 tid:7f84caa26740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/default/disk_buffer_pool.cpp open_file 177]>>Successfully open ./miniob/db/sys/t1.data. file_id=1, hdr_frame=0x7f84c81ef028
[2021-11-17 9:23:40 pid:20946 tid:7f84caa26740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/db.cpp open_all_tables 131]>>Open table: t1, file: t1.table
[2021-11-17 9:23:40 pid:20946 tid:7f84caa26740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/field_meta.cpp init 71]>>Init a field with name=__trx
[2021-11-17 9:23:40 pid:20946 tid:7f84caa26740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/field_meta.cpp init 71]>>Init a field with name=age
[2021-11-17 9:23:40 pid:20946 tid:7f84caa26740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/field_meta.cpp init 71]>>Init a field with name=name
[2021-11-17 9:23:40 pid:20946 tid:7f84caa26740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/default/disk_buffer_pool.cpp open_file 136]>>Successfully open file ./miniob/db/sys/floatT2.data.
[2021-11-17 9:23:40 pid:20946 tid:7f84caa26740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/default/disk_buffer_pool.cpp open_file 177]>>Successfully open ./miniob/db/sys/floatT2.data. file_id=2, hdr_frame=0x7f84c81f0040
[2021-11-17 9:23:40 pid:20946 tid:7f84caa26740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/db.cpp open_all_tables 131]>>Open table: floatT2, file: floatT2.table
[2021-11-17 9:23:40 pid:20946 tid:7f84caa26740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/field_meta.cpp init 71]>>Init a field with name=__trx
[2021-11-17 9:23:40 pid:20946 tid:7f84caa26740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/field_meta.cpp init 71]>>Init a field with name=age
[2021-11-17 9:23:40 pid:20946 tid:7f84caa26740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/field_meta.cpp init 71]>>Init a field with name=sex
[2021-11-17 9:23:40 pid:20946 tid:7f84caa26740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/field_meta.cpp init 71]>>Init a field with name=dt
[2021-11-17 9:23:40 pid:20946 tid:7f84caa26740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/default/disk_buffer_pool.cpp open_file 136]>>Successfully open file ./miniob/db/sys/ex.data.
[2021-11-17 9:23:40 pid:20946 tid:7f84caa26740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/default/disk_buffer_pool.cpp open_file 177]>>Successfully open ./miniob/db/sys/ex.data. file_id=3, hdr_frame=0x7f84c81f1058
[2021-11-17 9:23:40 pid:20946 tid:7f84caa26740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/default/disk_buffer_pool.cpp open_file 136]>>Successfully open file ./miniob/db/sys/ex-iex.index.
[2021-11-17 9:23:40 pid:20946 tid:7f84caa26740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/default/disk_buffer_pool.cpp open_file 177]>>Successfully open ./miniob/db/sys/ex-iex.index. file_id=4, hdr_frame=0x7f84c81f2070
[2021-11-17 9:23:40 pid:20946 tid:7f84caa26740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/db.cpp open_all_tables 131]>>Open table: ex, file: ex.table
[2021-11-17 9:23:40 pid:20946 tid:7f84caa26740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/field_meta.cpp init 71]>>Init a field with name=__trx
[2021-11-17 9:23:40 pid:20946 tid:7f84caa26740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/field_meta.cpp init 71]>>Init a field with name=id
[2021-11-17 9:23:40 pid:20946 tid:7f84caa26740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/field_meta.cpp init 71]>>Init a field with name=sex
[2021-11-17 9:23:40 pid:20946 tid:7f84caa26740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/field_meta.cpp init 71]>>Init a field with name=grade
[2021-11-17 9:23:40 pid:20946 tid:7f84caa26740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/default/disk_buffer_pool.cpp open_file 136]>>Successfully open file ./miniob/db/sys/t2.data.
[2021-11-17 9:23:40 pid:20946 tid:7f84caa26740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/default/disk_buffer_pool.cpp open_file 177]>>Successfully open ./miniob/db/sys/t2.data. file_id=5, hdr_frame=0x7f84c81f40a0
[2021-11-17 9:23:40 pid:20946 tid:7f84caa26740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/db.cpp open_all_tables 131]>>Open table: t2, file: t2.table
[2021-11-17 9:23:40 pid:20946 tid:7f84caa26740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/db.cpp open_all_tables 134]>>All table have been opened. num=5
[2021-11-17 9:23:40 pid:20946 tid:7f84caa26740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/default/default_storage_stage.cpp set_properties 110]>>Open system db success: sys
[2021-11-17 9:23:40 pid:20946 tid:7f84caa26740 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/seda_config.cpp init_stages 347]>>Stage DefaultStorageStage use threadpool DefaultThreads.
[2021-11-17 9:23:40 pid:20946 tid:7f84caa26740 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/seda_config.cpp init_stages 347]>>Stage MemStorageStage use threadpool DefaultThreads.
[2021-11-17 9:23:40 pid:20946 tid:7f84caa26740 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/seda_config.cpp get_thread_pool 291]>>Not set thread_pool_id for TimerStage, use default threadpool DefaultThreads
[2021-11-17 9:23:40 pid:20946 tid:7f84caa26740 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/seda_config.cpp init_stages 347]>>Stage TimerStage use threadpool DefaultThreads.
[2021-11-17 9:23:40 pid:20946 tid:7f84caa26740 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/seda_config.cpp get_thread_pool 291]>>Not set thread_pool_id for MetricsStage, use default threadpool DefaultThreads
[2021-11-17 9:23:40 pid:20946 tid:7f84caa26740 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/seda_config.cpp init_stages 347]>>Stage MetricsStage use threadpool DefaultThreads.
[2021-11-17 9:23:40 pid:20946 tid:7f84caa26740 INFO: /home/briansun/Projects/miniob-contest/deps/common/metrics/metrics_registry.cpp register_metric 37]>>Successfully register metric :DefaultStorageStage.query
[2021-11-17 9:23:40 pid:20946 tid:7f84caa26740 INFO: /home/briansun/Projects/miniob-contest/deps/common/metrics/metrics_registry.cpp register_metric 37]>>Successfully register metric :SessionStage.sql
[2021-11-17 9:23:40 pid:20946 tid:7f84caa26740 INFO: /home/briansun/Projects/miniob-contest/src/observer/init.cpp init 228]>>Successfully init utility
[2021-11-17 9:23:40 pid:20946 tid:7f84caa26740 INFO: /home/briansun/Projects/miniob-contest/deps/common/metrics/metrics_registry.cpp register_metric 37]>>Successfully register metric :SessionStage.readsocket
[2021-11-17 9:23:40 pid:20946 tid:7f84caa26740 INFO: /home/briansun/Projects/miniob-contest/deps/common/metrics/metrics_registry.cpp register_metric 37]>>Successfully register metric :SessionStage.writesocket
[2021-11-17 9:23:40 pid:20946 tid:7f84caa26740 INFO: /home/briansun/Projects/miniob-contest/src/observer/net/server.cpp start_tcp_server 330]>>Listen on port 6789
[2021-11-17 9:23:40 pid:20946 tid:7f84caa26740 INFO: /home/briansun/Projects/miniob-contest/src/observer/net/server.cpp start_tcp_server 348]>>Observer start success
[2021-11-17 9:23:48 pid:20946 tid:7f84caa26740 INFO: /home/briansun/Projects/miniob-contest/src/observer/net/server.cpp accept 276]>>Accepted connection from 127.0.0.1:49373
[2021-11-17 9:23:51 pid:20946 tid:7f84caa26740 INFO: /home/briansun/Projects/miniob-contest/src/observer/net/server.cpp recv 170]>>receive command(size=42): select * from t1, t2 where t1.age=t2.id;
[2021-11-17 9:24:7 pid:21039 tid:7f7c03342740 INFO: /home/briansun/Projects/miniob-contest/src/observer/init.cpp init 204]>>Output configuration
Begin dump configuration
[]
[DefaultStorageStage]
BaseDir=./miniob
SystemDb=sys
ThreadId=IOThreads
[DefaultThreads]
count=3
[ExecuteStage]
NextStages=DefaultStorageStage,MemStorageStage
ThreadId=SQLThreads
[IOThreads]
count=3
[LOG]
LOG_CONSOLE_LEVEL=1
LOG_FILE_LEVEL=3
LOG_FILE_NAME=observer.log
[MemStorageStage]
ThreadId=IOThreads
[MetricsStage]
NextStages=TimerStage
[NET]
CLIENT_ADDRESS=INADDR_ANY
MAX_CONNECTION_NUM=8192
PORT=6789
[OptimizeStage]
NextStages=ExecuteStage
ThreadId=SQLThreads
[ParseStage]
NextStages=OptimizeStage
ThreadId=SQLThreads
[PlanCacheStage]
NextStages=ExecuteStage,ParseStage
ThreadId=SQLThreads
[QueryCacheStage]
NextStages=PlanCacheStage
ThreadId=SQLThreads
[ResolveStage]
NextStages=QueryCacheStage
ThreadId=SQLThreads
[SEDA_BASE]
EventHistory=false
MaxEventHistoryNum=100
STAGES=SessionStage,ExecuteStage,OptimizeStage,ParseStage,ResolveStage,PlanCacheStage,QueryCacheStage,DefaultStorageStage,MemStorageStage,TimerStage,MetricsStage
ThreadPools=SQLThre
[2021-11-17 9:24:7 pid:21039 tid:7f7c03342740 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/init.cpp init_seda 66]>>(Re)Starting State: Pid: 21039 Time: Wed Nov 17 09:24:07 2021
[2021-11-17 9:24:7 pid:21039 tid:7f7c03342740 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/init.cpp init_seda 68]>>The process Name is observer
[2021-11-17 9:24:7 pid:21039 tid:7f7c03342740 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/seda_config.cpp init_event_history 201]>>Successfully init_event_history, EventHistory:0, MaxEventHops:100
[2021-11-17 9:24:7 pid:21039 tid:7f7c03341700 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/thread_pool.cpp run_thread 242]>>threadid = 7f7c03341700, threadname = SQLThreads
[2021-11-17 9:24:7 pid:21039 tid:7f7c02b40700 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/thread_pool.cpp run_thread 242]>>threadid = 7f7c02b40700, threadname = SQLThreads
[2021-11-17 9:24:7 pid:21039 tid:7f7c0233f700 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/thread_pool.cpp run_thread 242]>>threadid = 7f7c0233f700, threadname = SQLThreads
[2021-11-17 9:24:7 pid:21039 tid:7f7c01b3e700 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/thread_pool.cpp run_thread 242]>>threadid = 7f7c01b3e700, threadname = IOThreads
[2021-11-17 9:24:7 pid:21039 tid:7f7c0133d700 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/thread_pool.cpp run_thread 242]>>threadid = 7f7c0133d700, threadname = IOThreads
[2021-11-17 9:24:7 pid:21039 tid:7f7c00b3c700 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/thread_pool.cpp run_thread 242]>>threadid = 7f7c00b3c700, threadname = IOThreads
[2021-11-17 9:24:7 pid:21039 tid:7f7bebfff700 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/thread_pool.cpp run_thread 242]>>threadid = 7f7bebfff700, threadname = DefaultThreads
[2021-11-17 9:24:7 pid:21039 tid:7f7beb7fe700 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/thread_pool.cpp run_thread 242]>>threadid = 7f7beb7fe700, threadname = DefaultThreads
[2021-11-17 9:24:7 pid:21039 tid:7f7beaffd700 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/thread_pool.cpp run_thread 242]>>threadid = 7f7beaffd700, threadname = DefaultThreads
[2021-11-17 9:24:7 pid:21039 tid:7f7c03342740 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/seda_config.cpp init_stages 347]>>Stage SessionStage use threadpool DefaultThreads.
[2021-11-17 9:24:7 pid:21039 tid:7f7c03342740 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/seda_config.cpp init_stages 347]>>Stage ExecuteStage use threadpool DefaultThreads.
[2021-11-17 9:24:7 pid:21039 tid:7f7c03342740 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/seda_config.cpp init_stages 347]>>Stage OptimizeStage use threadpool DefaultThreads.
[2021-11-17 9:24:7 pid:21039 tid:7f7c03342740 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/seda_config.cpp init_stages 347]>>Stage ParseStage use threadpool DefaultThreads.
[2021-11-17 9:24:7 pid:21039 tid:7f7c03342740 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/seda_config.cpp init_stages 347]>>Stage ResolveStage use threadpool DefaultThreads.
[2021-11-17 9:24:7 pid:21039 tid:7f7c03342740 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/seda_config.cpp init_stages 347]>>Stage PlanCacheStage use threadpool DefaultThreads.
[2021-11-17 9:24:7 pid:21039 tid:7f7c03342740 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/seda_config.cpp init_stages 347]>>Stage QueryCacheStage use threadpool DefaultThreads.
[2021-11-17 9:24:7 pid:21039 tid:7f7c03342740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/default/default_storage_stage.cpp set_properties 86]>>Use sys as system db
[2021-11-17 9:24:7 pid:21039 tid:7f7c03342740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/default/default_handler.cpp init 52]>>Default handler init with ./miniob success
[2021-11-17 9:24:7 pid:21039 tid:7f7c03342740 WARNNING: /home/briansun/Projects/miniob-contest/src/observer/storage/default/default_handler.cpp create_db 74]>>Db already exists: sys
[2021-11-17 9:24:7 pid:21039 tid:7f7c03342740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/field_meta.cpp init 71]>>Init a field with name=__trx
[2021-11-17 9:24:7 pid:21039 tid:7f7c03342740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/field_meta.cpp init 71]>>Init a field with name=__trx
[2021-11-17 9:24:7 pid:21039 tid:7f7c03342740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/field_meta.cpp init 71]>>Init a field with name=score
[2021-11-17 9:24:7 pid:21039 tid:7f7c03342740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/default/disk_buffer_pool.cpp open_file 136]>>Successfully open file ./miniob/db/sys/floatT.data.
[2021-11-17 9:24:7 pid:21039 tid:7f7c03342740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/default/disk_buffer_pool.cpp open_file 177]>>Successfully open ./miniob/db/sys/floatT.data. file_id=0, hdr_frame=0x7f7c00309010
[2021-11-17 9:24:7 pid:21039 tid:7f7c03342740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/db.cpp open_all_tables 131]>>Open table: floatT, file: floatT.table
[2021-11-17 9:24:7 pid:21039 tid:7f7c03342740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/field_meta.cpp init 71]>>Init a field with name=__trx
[2021-11-17 9:24:7 pid:21039 tid:7f7c03342740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/field_meta.cpp init 71]>>Init a field with name=age
[2021-11-17 9:24:7 pid:21039 tid:7f7c03342740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/field_meta.cpp init 71]>>Init a field with name=dt
[2021-11-17 9:24:7 pid:21039 tid:7f7c03342740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/default/disk_buffer_pool.cpp open_file 136]>>Successfully open file ./miniob/db/sys/t1.data.
[2021-11-17 9:24:7 pid:21039 tid:7f7c03342740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/default/disk_buffer_pool.cpp open_file 177]>>Successfully open ./miniob/db/sys/t1.data. file_id=1, hdr_frame=0x7f7c0030a028
[2021-11-17 9:24:7 pid:21039 tid:7f7c03342740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/db.cpp open_all_tables 131]>>Open table: t1, file: t1.table
[2021-11-17 9:24:7 pid:21039 tid:7f7c03342740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/field_meta.cpp init 71]>>Init a field with name=__trx
[2021-11-17 9:24:7 pid:21039 tid:7f7c03342740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/field_meta.cpp init 71]>>Init a field with name=age
[2021-11-17 9:24:7 pid:21039 tid:7f7c03342740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/field_meta.cpp init 71]>>Init a field with name=name
[2021-11-17 9:24:7 pid:21039 tid:7f7c03342740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/default/disk_buffer_pool.cpp open_file 136]>>Successfully open file ./miniob/db/sys/floatT2.data.
[2021-11-17 9:24:7 pid:21039 tid:7f7c03342740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/default/disk_buffer_pool.cpp open_file 177]>>Successfully open ./miniob/db/sys/floatT2.data. file_id=2, hdr_frame=0x7f7c0030b040
[2021-11-17 9:24:7 pid:21039 tid:7f7c03342740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/db.cpp open_all_tables 131]>>Open table: floatT2, file: floatT2.table
[2021-11-17 9:24:7 pid:21039 tid:7f7c03342740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/field_meta.cpp init 71]>>Init a field with name=__trx
[2021-11-17 9:24:7 pid:21039 tid:7f7c03342740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/field_meta.cpp init 71]>>Init a field with name=age
[2021-11-17 9:24:7 pid:21039 tid:7f7c03342740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/field_meta.cpp init 71]>>Init a field with name=sex
[2021-11-17 9:24:7 pid:21039 tid:7f7c03342740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/field_meta.cpp init 71]>>Init a field with name=dt
[2021-11-17 9:24:7 pid:21039 tid:7f7c03342740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/default/disk_buffer_pool.cpp open_file 136]>>Successfully open file ./miniob/db/sys/ex.data.
[2021-11-17 9:24:7 pid:21039 tid:7f7c03342740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/default/disk_buffer_pool.cpp open_file 177]>>Successfully open ./miniob/db/sys/ex.data. file_id=3, hdr_frame=0x7f7c0030c058
[2021-11-17 9:24:7 pid:21039 tid:7f7c03342740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/default/disk_buffer_pool.cpp open_file 136]>>Successfully open file ./miniob/db/sys/ex-iex.index.
[2021-11-17 9:24:7 pid:21039 tid:7f7c03342740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/default/disk_buffer_pool.cpp open_file 177]>>Successfully open ./miniob/db/sys/ex-iex.index. file_id=4, hdr_frame=0x7f7c0030d070
[2021-11-17 9:24:7 pid:21039 tid:7f7c03342740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/db.cpp open_all_tables 131]>>Open table: ex, file: ex.table
[2021-11-17 9:24:7 pid:21039 tid:7f7c03342740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/field_meta.cpp init 71]>>Init a field with name=__trx
[2021-11-17 9:24:7 pid:21039 tid:7f7c03342740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/field_meta.cpp init 71]>>Init a field with name=id
[2021-11-17 9:24:7 pid:21039 tid:7f7c03342740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/field_meta.cpp init 71]>>Init a field with name=sex
[2021-11-17 9:24:7 pid:21039 tid:7f7c03342740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/field_meta.cpp init 71]>>Init a field with name=grade
[2021-11-17 9:24:7 pid:21039 tid:7f7c03342740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/default/disk_buffer_pool.cpp open_file 136]>>Successfully open file ./miniob/db/sys/t2.data.
[2021-11-17 9:24:7 pid:21039 tid:7f7c03342740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/default/disk_buffer_pool.cpp open_file 177]>>Successfully open ./miniob/db/sys/t2.data. file_id=5, hdr_frame=0x7f7c0030f0a0
[2021-11-17 9:24:7 pid:21039 tid:7f7c03342740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/db.cpp open_all_tables 131]>>Open table: t2, file: t2.table
[2021-11-17 9:24:7 pid:21039 tid:7f7c03342740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/db.cpp open_all_tables 134]>>All table have been opened. num=5
[2021-11-17 9:24:7 pid:21039 tid:7f7c03342740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/default/default_storage_stage.cpp set_properties 110]>>Open system db success: sys
[2021-11-17 9:24:7 pid:21039 tid:7f7c03342740 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/seda_config.cpp init_stages 347]>>Stage DefaultStorageStage use threadpool DefaultThreads.
[2021-11-17 9:24:7 pid:21039 tid:7f7c03342740 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/seda_config.cpp init_stages 347]>>Stage MemStorageStage use threadpool DefaultThreads.
[2021-11-17 9:24:7 pid:21039 tid:7f7c03342740 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/seda_config.cpp get_thread_pool 291]>>Not set thread_pool_id for TimerStage, use default threadpool DefaultThreads
[2021-11-17 9:24:7 pid:21039 tid:7f7c03342740 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/seda_config.cpp init_stages 347]>>Stage TimerStage use threadpool DefaultThreads.
[2021-11-17 9:24:7 pid:21039 tid:7f7c03342740 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/seda_config.cpp get_thread_pool 291]>>Not set thread_pool_id for MetricsStage, use default threadpool DefaultThreads
[2021-11-17 9:24:7 pid:21039 tid:7f7c03342740 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/seda_config.cpp init_stages 347]>>Stage MetricsStage use threadpool DefaultThreads.
[2021-11-17 9:24:7 pid:21039 tid:7f7c03342740 INFO: /home/briansun/Projects/miniob-contest/deps/common/metrics/metrics_registry.cpp register_metric 37]>>Successfully register metric :DefaultStorageStage.query
[2021-11-17 9:24:7 pid:21039 tid:7f7c03342740 INFO: /home/briansun/Projects/miniob-contest/deps/common/metrics/metrics_registry.cpp register_metric 37]>>Successfully register metric :SessionStage.sql
[2021-11-17 9:24:7 pid:21039 tid:7f7c03342740 INFO: /home/briansun/Projects/miniob-contest/src/observer/init.cpp init 228]>>Successfully init utility
[2021-11-17 9:24:7 pid:21039 tid:7f7c03342740 INFO: /home/briansun/Projects/miniob-contest/deps/common/metrics/metrics_registry.cpp register_metric 37]>>Successfully register metric :SessionStage.readsocket
[2021-11-17 9:24:7 pid:21039 tid:7f7c03342740 INFO: /home/briansun/Projects/miniob-contest/deps/common/metrics/metrics_registry.cpp register_metric 37]>>Successfully register metric :SessionStage.writesocket
[2021-11-17 9:24:7 pid:21039 tid:7f7c03342740 INFO: /home/briansun/Projects/miniob-contest/src/observer/net/server.cpp start_tcp_server 330]>>Listen on port 6789
[2021-11-17 9:24:7 pid:21039 tid:7f7c03342740 INFO: /home/briansun/Projects/miniob-contest/src/observer/net/server.cpp start_tcp_server 348]>>Observer start success
[2021-11-17 9:24:12 pid:21039 tid:7f7c03342740 INFO: /home/briansun/Projects/miniob-contest/src/observer/net/server.cpp accept 276]>>Accepted connection from 127.0.0.1:52957
[2021-11-17 9:24:12 pid:21039 tid:7f7c03342740 INFO: /home/briansun/Projects/miniob-contest/src/observer/net/server.cpp recv 170]>>receive command(size=42): select * from t1, t2 where t1.age=t2.id;
[2021-11-17 9:30:16 pid:21039 tid:7f7beb7fe700 INFO: /home/briansun/Projects/miniob-contest/deps/common/metrics/log_reporter.cpp report 35]>>DefaultStorageStage.query:mean:0,tps:0
[2021-11-17 9:30:16 pid:21039 tid:7f7beb7fe700 INFO: /home/briansun/Projects/miniob-contest/deps/common/metrics/log_reporter.cpp report 35]>>SessionStage.readsocket:mean:0,tps:0.00271003
[2021-11-17 9:30:16 pid:21039 tid:7f7beb7fe700 INFO: /home/briansun/Projects/miniob-contest/deps/common/metrics/log_reporter.cpp report 35]>>SessionStage.sql:mean:0,tps:0
[2021-11-17 9:30:16 pid:21039 tid:7f7beb7fe700 INFO: /home/briansun/Projects/miniob-contest/deps/common/metrics/log_reporter.cpp report 35]>>SessionStage.writesocket:mean:0,tps:0
[2021-11-17 9:31:29 pid:21490 tid:7fd3496c5740 INFO: /home/briansun/Projects/miniob-contest/src/observer/init.cpp init 204]>>Output configuration
Begin dump configuration
[]
[DefaultStorageStage]
BaseDir=./miniob
SystemDb=sys
ThreadId=IOThreads
[DefaultThreads]
count=3
[ExecuteStage]
NextStages=DefaultStorageStage,MemStorageStage
ThreadId=SQLThreads
[IOThreads]
count=3
[LOG]
LOG_CONSOLE_LEVEL=1
LOG_FILE_LEVEL=3
LOG_FILE_NAME=observer.log
[MemStorageStage]
ThreadId=IOThreads
[MetricsStage]
NextStages=TimerStage
[NET]
CLIENT_ADDRESS=INADDR_ANY
MAX_CONNECTION_NUM=8192
PORT=6789
[OptimizeStage]
NextStages=ExecuteStage
ThreadId=SQLThreads
[ParseStage]
NextStages=OptimizeStage
ThreadId=SQLThreads
[PlanCacheStage]
NextStages=ExecuteStage,ParseStage
ThreadId=SQLThreads
[QueryCacheStage]
NextStages=PlanCacheStage
ThreadId=SQLThreads
[ResolveStage]
NextStages=QueryCacheStage
ThreadId=SQLThreads
[SEDA_BASE]
EventHistory=false
MaxEventHistoryNum=100
STAGES=SessionStage,ExecuteStage,OptimizeStage,ParseStage,ResolveStage,PlanCacheStage,QueryCacheStage,DefaultStorageStage,MemStorageStage,TimerStage,MetricsStage
ThreadPools=SQLThre
[2021-11-17 9:31:29 pid:21490 tid:7fd3496c5740 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/init.cpp init_seda 66]>>(Re)Starting State: Pid: 21490 Time: Wed Nov 17 09:31:29 2021
[2021-11-17 9:31:29 pid:21490 tid:7fd3496c5740 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/init.cpp init_seda 68]>>The process Name is observer
[2021-11-17 9:31:29 pid:21490 tid:7fd3496c5740 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/seda_config.cpp init_event_history 201]>>Successfully init_event_history, EventHistory:0, MaxEventHops:100
[2021-11-17 9:31:29 pid:21490 tid:7fd3496c4700 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/thread_pool.cpp run_thread 242]>>threadid = 7fd3496c4700, threadname = SQLThreads
[2021-11-17 9:31:29 pid:21490 tid:7fd3486c2700 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/thread_pool.cpp run_thread 242]>>threadid = 7fd3486c2700, threadname = SQLThreads
[2021-11-17 9:31:29 pid:21490 tid:7fd348ec3700 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/thread_pool.cpp run_thread 242]>>threadid = 7fd348ec3700, threadname = SQLThreads
[2021-11-17 9:31:29 pid:21490 tid:7fd347ec1700 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/thread_pool.cpp run_thread 242]>>threadid = 7fd347ec1700, threadname = IOThreads
[2021-11-17 9:31:29 pid:21490 tid:7fd3476c0700 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/thread_pool.cpp run_thread 242]>>threadid = 7fd3476c0700, threadname = IOThreads
[2021-11-17 9:31:29 pid:21490 tid:7fd346ebf700 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/thread_pool.cpp run_thread 242]>>threadid = 7fd346ebf700, threadname = IOThreads
[2021-11-17 9:31:29 pid:21490 tid:7fd3496c5740 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/seda_config.cpp init_stages 347]>>Stage SessionStage use threadpool DefaultThreads.
[2021-11-17 9:31:29 pid:21490 tid:7fd345ebd700 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/thread_pool.cpp run_thread 242]>>threadid = 7fd345ebd700, threadname = DefaultThreads
[2021-11-17 9:31:29 pid:21490 tid:7fd3456bc700 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/thread_pool.cpp run_thread 242]>>threadid = 7fd3456bc700, threadname = DefaultThreads
[2021-11-17 9:31:29 pid:21490 tid:7fd3466be700 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/thread_pool.cpp run_thread 242]>>threadid = 7fd3466be700, threadname = DefaultThreads
[2021-11-17 9:31:29 pid:21490 tid:7fd3496c5740 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/seda_config.cpp init_stages 347]>>Stage ExecuteStage use threadpool DefaultThreads.
[2021-11-17 9:31:29 pid:21490 tid:7fd3496c5740 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/seda_config.cpp init_stages 347]>>Stage OptimizeStage use threadpool DefaultThreads.
[2021-11-17 9:31:29 pid:21490 tid:7fd3496c5740 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/seda_config.cpp init_stages 347]>>Stage ParseStage use threadpool DefaultThreads.
[2021-11-17 9:31:29 pid:21490 tid:7fd3496c5740 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/seda_config.cpp init_stages 347]>>Stage ResolveStage use threadpool DefaultThreads.
[2021-11-17 9:31:29 pid:21490 tid:7fd3496c5740 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/seda_config.cpp init_stages 347]>>Stage PlanCacheStage use threadpool DefaultThreads.
[2021-11-17 9:31:29 pid:21490 tid:7fd3496c5740 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/seda_config.cpp init_stages 347]>>Stage QueryCacheStage use threadpool DefaultThreads.
[2021-11-17 9:31:29 pid:21490 tid:7fd3496c5740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/default/default_storage_stage.cpp set_properties 86]>>Use sys as system db
[2021-11-17 9:31:29 pid:21490 tid:7fd3496c5740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/default/default_handler.cpp init 52]>>Default handler init with ./miniob success
[2021-11-17 9:31:29 pid:21490 tid:7fd3496c5740 WARNNING: /home/briansun/Projects/miniob-contest/src/observer/storage/default/default_handler.cpp create_db 74]>>Db already exists: sys
[2021-11-17 9:31:29 pid:21490 tid:7fd3496c5740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/field_meta.cpp init 71]>>Init a field with name=__trx
[2021-11-17 9:31:29 pid:21490 tid:7fd3496c5740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/field_meta.cpp init 71]>>Init a field with name=__trx
[2021-11-17 9:31:29 pid:21490 tid:7fd3496c5740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/field_meta.cpp init 71]>>Init a field with name=score
[2021-11-17 9:31:29 pid:21490 tid:7fd3496c5740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/default/disk_buffer_pool.cpp open_file 136]>>Successfully open file ./miniob/db/sys/floatT.data.
[2021-11-17 9:31:29 pid:21490 tid:7fd3496c5740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/default/disk_buffer_pool.cpp open_file 177]>>Successfully open ./miniob/db/sys/floatT.data. file_id=0, hdr_frame=0x7fd344e89010
[2021-11-17 9:31:29 pid:21490 tid:7fd3496c5740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/db.cpp open_all_tables 131]>>Open table: floatT, file: floatT.table
[2021-11-17 9:31:29 pid:21490 tid:7fd3496c5740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/field_meta.cpp init 71]>>Init a field with name=__trx
[2021-11-17 9:31:29 pid:21490 tid:7fd3496c5740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/field_meta.cpp init 71]>>Init a field with name=age
[2021-11-17 9:31:29 pid:21490 tid:7fd3496c5740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/field_meta.cpp init 71]>>Init a field with name=dt
[2021-11-17 9:31:29 pid:21490 tid:7fd3496c5740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/default/disk_buffer_pool.cpp open_file 136]>>Successfully open file ./miniob/db/sys/t1.data.
[2021-11-17 9:31:29 pid:21490 tid:7fd3496c5740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/default/disk_buffer_pool.cpp open_file 177]>>Successfully open ./miniob/db/sys/t1.data. file_id=1, hdr_frame=0x7fd344e8a028
[2021-11-17 9:31:29 pid:21490 tid:7fd3496c5740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/db.cpp open_all_tables 131]>>Open table: t1, file: t1.table
[2021-11-17 9:31:29 pid:21490 tid:7fd3496c5740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/field_meta.cpp init 71]>>Init a field with name=__trx
[2021-11-17 9:31:29 pid:21490 tid:7fd3496c5740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/field_meta.cpp init 71]>>Init a field with name=age
[2021-11-17 9:31:29 pid:21490 tid:7fd3496c5740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/field_meta.cpp init 71]>>Init a field with name=name
[2021-11-17 9:31:29 pid:21490 tid:7fd3496c5740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/default/disk_buffer_pool.cpp open_file 136]>>Successfully open file ./miniob/db/sys/floatT2.data.
[2021-11-17 9:31:29 pid:21490 tid:7fd3496c5740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/default/disk_buffer_pool.cpp open_file 177]>>Successfully open ./miniob/db/sys/floatT2.data. file_id=2, hdr_frame=0x7fd344e8b040
[2021-11-17 9:31:29 pid:21490 tid:7fd3496c5740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/db.cpp open_all_tables 131]>>Open table: floatT2, file: floatT2.table
[2021-11-17 9:31:29 pid:21490 tid:7fd3496c5740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/field_meta.cpp init 71]>>Init a field with name=__trx
[2021-11-17 9:31:29 pid:21490 tid:7fd3496c5740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/field_meta.cpp init 71]>>Init a field with name=age
[2021-11-17 9:31:29 pid:21490 tid:7fd3496c5740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/field_meta.cpp init 71]>>Init a field with name=sex
[2021-11-17 9:31:29 pid:21490 tid:7fd3496c5740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/field_meta.cpp init 71]>>Init a field with name=dt
[2021-11-17 9:31:29 pid:21490 tid:7fd3496c5740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/default/disk_buffer_pool.cpp open_file 136]>>Successfully open file ./miniob/db/sys/ex.data.
[2021-11-17 9:31:29 pid:21490 tid:7fd3496c5740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/default/disk_buffer_pool.cpp open_file 177]>>Successfully open ./miniob/db/sys/ex.data. file_id=3, hdr_frame=0x7fd344e8c058
[2021-11-17 9:31:29 pid:21490 tid:7fd3496c5740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/default/disk_buffer_pool.cpp open_file 136]>>Successfully open file ./miniob/db/sys/ex-iex.index.
[2021-11-17 9:31:29 pid:21490 tid:7fd3496c5740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/default/disk_buffer_pool.cpp open_file 177]>>Successfully open ./miniob/db/sys/ex-iex.index. file_id=4, hdr_frame=0x7fd344e8d070
[2021-11-17 9:31:29 pid:21490 tid:7fd3496c5740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/db.cpp open_all_tables 131]>>Open table: ex, file: ex.table
[2021-11-17 9:31:29 pid:21490 tid:7fd3496c5740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/field_meta.cpp init 71]>>Init a field with name=__trx
[2021-11-17 9:31:29 pid:21490 tid:7fd3496c5740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/field_meta.cpp init 71]>>Init a field with name=id
[2021-11-17 9:31:29 pid:21490 tid:7fd3496c5740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/field_meta.cpp init 71]>>Init a field with name=sex
[2021-11-17 9:31:29 pid:21490 tid:7fd3496c5740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/field_meta.cpp init 71]>>Init a field with name=grade
[2021-11-17 9:31:29 pid:21490 tid:7fd3496c5740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/default/disk_buffer_pool.cpp open_file 136]>>Successfully open file ./miniob/db/sys/t2.data.
[2021-11-17 9:31:29 pid:21490 tid:7fd3496c5740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/default/disk_buffer_pool.cpp open_file 177]>>Successfully open ./miniob/db/sys/t2.data. file_id=5, hdr_frame=0x7fd344e8f0a0
[2021-11-17 9:31:29 pid:21490 tid:7fd3496c5740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/db.cpp open_all_tables 131]>>Open table: t2, file: t2.table
[2021-11-17 9:31:29 pid:21490 tid:7fd3496c5740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/common/db.cpp open_all_tables 134]>>All table have been opened. num=5
[2021-11-17 9:31:29 pid:21490 tid:7fd3496c5740 INFO: /home/briansun/Projects/miniob-contest/src/observer/storage/default/default_storage_stage.cpp set_properties 110]>>Open system db success: sys
[2021-11-17 9:31:29 pid:21490 tid:7fd3496c5740 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/seda_config.cpp init_stages 347]>>Stage DefaultStorageStage use threadpool DefaultThreads.
[2021-11-17 9:31:29 pid:21490 tid:7fd3496c5740 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/seda_config.cpp init_stages 347]>>Stage MemStorageStage use threadpool DefaultThreads.
[2021-11-17 9:31:29 pid:21490 tid:7fd3496c5740 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/seda_config.cpp get_thread_pool 291]>>Not set thread_pool_id for TimerStage, use default threadpool DefaultThreads
[2021-11-17 9:31:29 pid:21490 tid:7fd3496c5740 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/seda_config.cpp init_stages 347]>>Stage TimerStage use threadpool DefaultThreads.
[2021-11-17 9:31:29 pid:21490 tid:7fd3496c5740 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/seda_config.cpp get_thread_pool 291]>>Not set thread_pool_id for MetricsStage, use default threadpool DefaultThreads
[2021-11-17 9:31:29 pid:21490 tid:7fd3496c5740 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/seda_config.cpp init_stages 347]>>Stage MetricsStage use threadpool DefaultThreads.
[2021-11-17 9:31:29 pid:21490 tid:7fd3496c5740 INFO: /home/briansun/Projects/miniob-contest/deps/common/metrics/metrics_registry.cpp register_metric 37]>>Successfully register metric :DefaultStorageStage.query
[2021-11-17 9:31:29 pid:21490 tid:7fd3496c5740 INFO: /home/briansun/Projects/miniob-contest/deps/common/metrics/metrics_registry.cpp register_metric 37]>>Successfully register metric :SessionStage.sql
[2021-11-17 9:31:29 pid:21490 tid:7fd3496c5740 INFO: /home/briansun/Projects/miniob-contest/src/observer/init.cpp init 228]>>Successfully init utility
[2021-11-17 9:31:29 pid:21490 tid:7fd3496c5740 INFO: /home/briansun/Projects/miniob-contest/deps/common/metrics/metrics_registry.cpp register_metric 37]>>Successfully register metric :SessionStage.readsocket
[2021-11-17 9:31:29 pid:21490 tid:7fd3496c5740 INFO: /home/briansun/Projects/miniob-contest/deps/common/metrics/metrics_registry.cpp register_metric 37]>>Successfully register metric :SessionStage.writesocket
[2021-11-17 9:31:29 pid:21490 tid:7fd3496c5740 INFO: /home/briansun/Projects/miniob-contest/src/observer/net/server.cpp start_tcp_server 330]>>Listen on port 6789
[2021-11-17 9:31:29 pid:21490 tid:7fd3496c5740 INFO: /home/briansun/Projects/miniob-contest/src/observer/net/server.cpp start_tcp_server 348]>>Observer start success
[2021-11-17 9:31:31 pid:21490 tid:7fd3496c5740 INFO: /home/briansun/Projects/miniob-contest/src/observer/net/server.cpp accept 276]>>Accepted connection from 127.0.0.1:15070
[2021-11-17 9:31:32 pid:21490 tid:7fd3496c5740 INFO: /home/briansun/Projects/miniob-contest/src/observer/net/server.cpp recv 170]>>receive command(size=42): select * from t1, t2 where t1.age=t2.id;
[2021-11-17 9:31:34 pid:21490 tid:7fd3496c5740 INFO: /home/briansun/Projects/miniob-contest/src/observer/net/server.cpp recv 160]>>The peer has been closed 127.0.0.1:15070
[2021-11-17 9:31:34 pid:21490 tid:7fd3496c5740 INFO: /home/briansun/Projects/miniob-contest/src/observer/net/server.cpp close_connection 97]>>Close connection of 127.0.0.1:15070.
[2021-11-17 9:32:29 pid:21490 tid:7fd345ebd700 INFO: /home/briansun/Projects/miniob-contest/deps/common/metrics/log_reporter.cpp report 35]>>DefaultStorageStage.query:mean:0,tps:0
[2021-11-17 9:32:29 pid:21490 tid:7fd345ebd700 INFO: /home/briansun/Projects/miniob-contest/deps/common/metrics/log_reporter.cpp report 35]>>SessionStage.readsocket:mean:0,tps:0.0333333
[2021-11-17 9:32:29 pid:21490 tid:7fd345ebd700 INFO: /home/briansun/Projects/miniob-contest/deps/common/metrics/log_reporter.cpp report 35]>>SessionStage.sql:mean:0,tps:0.0166667
[2021-11-17 9:32:29 pid:21490 tid:7fd345ebd700 INFO: /home/briansun/Projects/miniob-contest/deps/common/metrics/log_reporter.cpp report 35]>>SessionStage.writesocket:mean:0,tps:0.0333333
[2021-11-17 9:33:29 pid:21490 tid:7fd3456bc700 INFO: /home/briansun/Projects/miniob-contest/deps/common/metrics/log_reporter.cpp report 35]>>DefaultStorageStage.query:mean:0,tps:0
[2021-11-17 9:33:29 pid:21490 tid:7fd3456bc700 INFO: /home/briansun/Projects/miniob-contest/deps/common/metrics/log_reporter.cpp report 35]>>SessionStage.readsocket:mean:0,tps:0
[2021-11-17 9:33:29 pid:21490 tid:7fd3456bc700 INFO: /home/briansun/Projects/miniob-contest/deps/common/metrics/log_reporter.cpp report 35]>>SessionStage.sql:mean:0,tps:0
[2021-11-17 9:33:29 pid:21490 tid:7fd3456bc700 INFO: /home/briansun/Projects/miniob-contest/deps/common/metrics/log_reporter.cpp report 35]>>SessionStage.writesocket:mean:0,tps:0
[2021-11-17 9:34:29 pid:21490 tid:7fd3466be700 INFO: /home/briansun/Projects/miniob-contest/deps/common/metrics/log_reporter.cpp report 35]>>DefaultStorageStage.query:mean:0,tps:0
[2021-11-17 9:34:29 pid:21490 tid:7fd3466be700 INFO: /home/briansun/Projects/miniob-contest/deps/common/metrics/log_reporter.cpp report 35]>>SessionStage.readsocket:mean:0,tps:0
[2021-11-17 9:34:29 pid:21490 tid:7fd3466be700 INFO: /home/briansun/Projects/miniob-contest/deps/common/metrics/log_reporter.cpp report 35]>>SessionStage.sql:mean:0,tps:0
[2021-11-17 9:34:29 pid:21490 tid:7fd3466be700 INFO: /home/briansun/Projects/miniob-contest/deps/common/metrics/log_reporter.cpp report 35]>>SessionStage.writesocket:mean:0,tps:0
[2021-11-17 9:35:29 pid:21490 tid:7fd345ebd700 INFO: /home/briansun/Projects/miniob-contest/deps/common/metrics/log_reporter.cpp report 35]>>DefaultStorageStage.query:mean:0,tps:0
[2021-11-17 9:35:29 pid:21490 tid:7fd345ebd700 INFO: /home/briansun/Projects/miniob-contest/deps/common/metrics/log_reporter.cpp report 35]>>SessionStage.readsocket:mean:0,tps:0
[2021-11-17 9:35:29 pid:21490 tid:7fd345ebd700 INFO: /home/briansun/Projects/miniob-contest/deps/common/metrics/log_reporter.cpp report 35]>>SessionStage.sql:mean:0,tps:0
[2021-11-17 9:35:29 pid:21490 tid:7fd345ebd700 INFO: /home/briansun/Projects/miniob-contest/deps/common/metrics/log_reporter.cpp report 35]>>SessionStage.writesocket:mean:0,tps:0
[2021-11-17 9:36:29 pid:21490 tid:7fd3456bc700 INFO: /home/briansun/Projects/miniob-contest/deps/common/metrics/log_reporter.cpp report 35]>>DefaultStorageStage.query:mean:0,tps:0
[2021-11-17 9:36:29 pid:21490 tid:7fd3456bc700 INFO: /home/briansun/Projects/miniob-contest/deps/common/metrics/log_reporter.cpp report 35]>>SessionStage.readsocket:mean:0,tps:0
[2021-11-17 9:36:29 pid:21490 tid:7fd3456bc700 INFO: /home/briansun/Projects/miniob-contest/deps/common/metrics/log_reporter.cpp report 35]>>SessionStage.sql:mean:0,tps:0
[2021-11-17 9:36:29 pid:21490 tid:7fd3456bc700 INFO: /home/briansun/Projects/miniob-contest/deps/common/metrics/log_reporter.cpp report 35]>>SessionStage.writesocket:mean:0,tps:0
[2021-11-17 9:36:50 pid:21490 tid:7fd31ffff700 INFO: /home/briansun/Projects/miniob-contest/src/observer/main.cpp quit_thread_func 135]>>Receive signal: 15
[2021-11-17 9:36:50 pid:21490 tid:7fd31ffff700 INFO: /home/briansun/Projects/miniob-contest/src/observer/net/server.cpp shutdown 429]>>Server shutting down
[2021-11-17 9:36:50 pid:21490 tid:7fd31ffff700 INFO: /home/briansun/Projects/miniob-contest/src/observer/net/server.cpp shutdown 449]>>Server quit
[2021-11-17 10:9:53 pid:25227 tid:7fbea6ff4740 INFO: /home/briansun/Projects/miniob-contest/src/observer/init.cpp init 204]>>Output configuration
Begin dump configuration
[]
[DefaultStorageStage]
BaseDir=./miniob
SystemDb=sys
ThreadId=IOThreads
[DefaultThreads]
count=3
[ExecuteStage]
NextStages=DefaultStorageStage,MemStorageStage
ThreadId=SQLThreads
[IOThreads]
count=3
[LOG]
LOG_CONSOLE_LEVEL=1
LOG_FILE_LEVEL=3
LOG_FILE_NAME=observer.log
[MemStorageStage]
ThreadId=IOThreads
[MetricsStage]
NextStages=TimerStage
[NET]
CLIENT_ADDRESS=INADDR_ANY
MAX_CONNECTION_NUM=8192
PORT=6789
[OptimizeStage]
NextStages=ExecuteStage
ThreadId=SQLThreads
[ParseStage]
NextStages=OptimizeStage
ThreadId=SQLThreads
[PlanCacheStage]
NextStages=ExecuteStage,ParseStage
ThreadId=SQLThreads
[QueryCacheStage]
NextStages=PlanCacheStage
ThreadId=SQLThreads
[ResolveStage]
NextStages=QueryCacheStage
ThreadId=SQLThreads
[SEDA_BASE]
EventHistory=false
MaxEventHistoryNum=100
STAGES=SessionStage,ExecuteStage,OptimizeStage,ParseStage,ResolveStage,PlanCacheStage,QueryCacheStage,DefaultStorageStage,MemStorageStage,TimerStage,MetricsStage
ThreadPools=SQLThre
[2021-11-17 10:9:53 pid:25227 tid:7fbea6ff4740 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/init.cpp init_seda 66]>>(Re)Starting State: Pid: 25227 Time: Wed Nov 17 10:09:53 2021
[2021-11-17 10:9:53 pid:25227 tid:7fbea6ff4740 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/init.cpp init_seda 68]>>The process Name is observer
[2021-11-17 10:9:53 pid:25227 tid:7fbea6ff4740 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/seda_config.cpp init_event_history 201]>>Successfully init_event_history, EventHistory:0, MaxEventHops:100
[2021-11-17 10:9:53 pid:25227 tid:7fbea6ff3700 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/thread_pool.cpp run_thread 242]>>threadid = 7fbea6ff3700, threadname = SQLThreads
[2021-11-17 10:9:53 pid:25227 tid:7fbea67f2700 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/thread_pool.cpp run_thread 242]>>threadid = 7fbea67f2700, threadname = SQLThreads
[2021-11-17 10:9:53 pid:25227 tid:7fbea5ff1700 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/thread_pool.cpp run_thread 242]>>threadid = 7fbea5ff1700, threadname = SQLThreads
[2021-11-17 10:9:53 pid:25227 tid:7fbea57f0700 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/thread_pool.cpp run_thread 242]>>threadid = 7fbea57f0700, threadname = IOThreads
[2021-11-17 10:9:53 pid:25227 tid:7fbea4fef700 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/thread_pool.cpp run_thread 242]>>threadid = 7fbea4fef700, threadname = IOThreads
[2021-11-17 10:9:53 pid:25227 tid:7fbe97fff700 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/thread_pool.cpp run_thread 242]>>threadid = 7fbe97fff700, threadname = IOThreads
[2021-11-17 10:9:53 pid:25227 tid:7fbe977fe700 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/thread_pool.cpp run_thread 242]>>threadid = 7fbe977fe700, threadname = DefaultThreads
[2021-11-17 10:9:53 pid:25227 tid:7fbe967fc700 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/thread_pool.cpp run_thread 242]>>threadid = 7fbe967fc700, threadname = DefaultThreads
[2021-11-17 10:9:53 pid:25227 tid:7fbea6ff4740 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/seda_config.cpp init_stages 347]>>Stage SessionStage use threadpool DefaultThreads.
[2021-11-17 10:9:53 pid:25227 tid:7fbea6ff4740 INFO: /home/briansun/Projects/miniob-contest/deps/common/seda/seda_config.cpp init_stages 347]>>Stage ExecuteStage use threadpool DefaultThreads.