/root/doris/be/src/common/daemon.h
Line | Count | Source |
1 | | // Licensed to the Apache Software Foundation (ASF) under one |
2 | | // or more contributor license agreements. See the NOTICE file |
3 | | // distributed with this work for additional information |
4 | | // regarding copyright ownership. The ASF licenses this file |
5 | | // to you under the Apache License, Version 2.0 (the |
6 | | // "License"); you may not use this file except in compliance |
7 | | // with the License. You may obtain a copy of the License at |
8 | | // |
9 | | // http://www.apache.org/licenses/LICENSE-2.0 |
10 | | // |
11 | | // Unless required by applicable law or agreed to in writing, |
12 | | // software distributed under the License is distributed on an |
13 | | // "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
14 | | // KIND, either express or implied. See the License for the |
15 | | // specific language governing permissions and limitations |
16 | | // under the License. |
17 | | |
18 | | #pragma once |
19 | | |
20 | | #include <vector> |
21 | | |
22 | | #include "gutil/ref_counted.h" |
23 | | #include "util/countdown_latch.h" |
24 | | #include "util/thread.h" |
25 | | |
26 | | namespace doris { |
27 | | |
28 | | class Daemon { |
29 | | public: |
30 | 2 | Daemon() : _stop_background_threads_latch(1) {} |
31 | 1 | ~Daemon() = default; |
32 | | |
33 | | // Start background threads |
34 | | void start(); |
35 | | |
36 | | // Stop background threads |
37 | | void stop(); |
38 | | |
39 | | private: |
40 | | void tcmalloc_gc_thread(); |
41 | | void memory_maintenance_thread(); |
42 | | void memory_gc_thread(); |
43 | | void memtable_memory_refresh_thread(); |
44 | | void calculate_metrics_thread(); |
45 | | void je_reset_dirty_decay_thread() const; |
46 | | void cache_adjust_capacity_thread(); |
47 | | void cache_prune_stale_thread(); |
48 | | void report_runtime_query_statistics_thread(); |
49 | | void be_proc_monitor_thread(); |
50 | | void calculate_workload_group_metrics_thread(); |
51 | | |
52 | | CountDownLatch _stop_background_threads_latch; |
53 | | std::vector<scoped_refptr<Thread>> _threads; |
54 | | }; |
55 | | } // namespace doris |