/Users/deen/code/yugabyte-db/src/yb/client/client_builder-internal.cc
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 | | // The following only applies to changes made to this file as part of YugaByte development. |
19 | | // |
20 | | // Portions Copyright (c) YugaByte, Inc. |
21 | | // |
22 | | // Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except |
23 | | // in compliance with the License. You may obtain a copy of the License at |
24 | | // |
25 | | // http://www.apache.org/licenses/LICENSE-2.0 |
26 | | // |
27 | | // Unless required by applicable law or agreed to in writing, software distributed under the License |
28 | | // is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express |
29 | | // or implied. See the License for the specific language governing permissions and limitations |
30 | | // under the License. |
31 | | // |
32 | | |
33 | | #include "yb/client/client_builder-internal.h" |
34 | | |
35 | | #include <map> |
36 | | #include <set> |
37 | | |
38 | | #include <boost/preprocessor/cat.hpp> |
39 | | #include <boost/preprocessor/stringize.hpp> |
40 | | |
41 | | #include "yb/util/metrics_fwd.h" |
42 | | #include "yb/util/status_fwd.h" |
43 | | #include "yb/util/metric_entity.h" |
44 | | |
45 | | DEFINE_int32( |
46 | | yb_client_num_reactors, 16, |
47 | | "Number of reactor threads for the yb client to communicate with different tservers."); |
48 | | |
49 | | DEFINE_int32( |
50 | | yb_client_admin_operation_timeout_sec, 120, |
51 | | "The number of seconds after which an admin operation should timeout."); |
52 | | |
53 | | namespace yb { |
54 | | |
55 | | namespace client { |
56 | | |
57 | | YBClientBuilder::Data::Data() |
58 | | : master_address_flag_name_("tserver_master_addrs"), |
59 | | num_reactors_(FLAGS_yb_client_num_reactors), |
60 | | default_admin_operation_timeout_( |
61 | | MonoDelta::FromSeconds(FLAGS_yb_client_admin_operation_timeout_sec)), |
62 | 34.3k | default_rpc_timeout_(MonoDelta::FromSeconds(60)) {} |
63 | | |
64 | 898 | YBClientBuilder::Data::~Data() { |
65 | 898 | } |
66 | | |
67 | | } // namespace client |
68 | | } // namespace yb |