Files
doris/be/src/runtime/result_buffer_mgr.h
hongbin e61d296486 [Refactor] Replace '#ifndef' with '#pragma once' (#9456)
* Replace '#ifndef' with '#pragma once'
2022-05-10 09:25:59 +08:00

91 lines
2.9 KiB
C++

// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied. See the License for the
// specific language governing permissions and limitations
// under the License.
#pragma once
#include <map>
#include <mutex>
#include <thread>
#include <unordered_map>
#include <vector>
#include "common/status.h"
#include "gen_cpp/Types_types.h"
#include "gutil/ref_counted.h"
#include "util/thread.h"
#include "util/uid_util.h"
namespace doris {
class TFetchDataResult;
class BufferControlBlock;
struct GetResultBatchCtx;
class PUniqueId;
// manage all result buffer control block in one backend
class ResultBufferMgr {
public:
ResultBufferMgr();
~ResultBufferMgr();
// init Result Buffer Mgr, start cancel thread
Status init();
// create one result sender for this query_id
// the returned sender do not need release
// sender is not used when call cancel or unregister
Status create_sender(const TUniqueId& query_id, int buffer_size,
std::shared_ptr<BufferControlBlock>* sender);
// fetch data, used by RPC
Status fetch_data(const TUniqueId& fragment_id, TFetchDataResult* result);
void fetch_data(const PUniqueId& finst_id, GetResultBatchCtx* ctx);
// cancel
Status cancel(const TUniqueId& fragment_id);
// cancel one query at a future time.
Status cancel_at_time(time_t cancel_time, const TUniqueId& query_id);
private:
typedef std::unordered_map<TUniqueId, std::shared_ptr<BufferControlBlock>> BufferMap;
typedef std::map<time_t, std::vector<TUniqueId>> TimeoutMap;
std::shared_ptr<BufferControlBlock> find_control_block(const TUniqueId& query_id);
// used to erase the buffer that fe not clears
// when fe crush, this thread clear the buffer avoid memory leak in this backend
void cancel_thread();
// lock for buffer map
std::mutex _lock;
// buffer block map
BufferMap _buffer_map;
// lock for timeout map
std::mutex _timeout_lock;
// map (cancel_time : query to be cancelled),
// cancel time maybe equal, so use one list
TimeoutMap _timeout_map;
CountDownLatch _stop_background_threads_latch;
scoped_refptr<Thread> _clean_thread;
};
// TUniqueId hash function used for std::unordered_map
std::size_t hash_value(const TUniqueId& fragment_id);
} // namespace doris