YugabyteDB (2.13.0.0-b42, bfc6a6643e7399ac8a0e81d06a3ee6d6571b33ab)

Coverage Report

Created: 2022-03-09 17:30

/Users/deen/code/yugabyte-db/src/yb/yql/cql/cqlserver/cql_server_options.cc
Line
Count
Source
1
// Copyright (c) YugaByte, Inc.
2
//
3
// Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
4
// in compliance with the License.  You may obtain a copy of the License at
5
//
6
// http://www.apache.org/licenses/LICENSE-2.0
7
//
8
// Unless required by applicable law or agreed to in writing, software distributed under the License
9
// is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
10
// or implied.  See the License for the specific language governing permissions and limitations
11
// under the License.
12
//
13
14
#include "yb/yql/cql/cqlserver/cql_server_options.h"
15
16
#include "yb/util/flag_tags.h"
17
18
#include "yb/yql/cql/cqlserver/cql_server.h"
19
20
DEFINE_int32(cql_rpc_keepalive_time_ms, 120000,
21
             "If an RPC connection from a client is idle for this amount of time, the server "
22
             "will disconnect the client. Setting flag to 0 disables this clean up.");
23
TAG_FLAG(cql_rpc_keepalive_time_ms, advanced);
24
25
namespace yb {
26
namespace cqlserver {
27
28
4.54k
CQLServerOptions::CQLServerOptions() : ServerBaseOptions(CQLServer::kDefaultPort) {
29
4.54k
  server_type = "tserver";
30
4.54k
  rpc_opts.connection_keepalive_time_ms = FLAGS_cql_rpc_keepalive_time_ms;
31
4.54k
}
32
33
} // namespace cqlserver
34
} // namespace yb