/Users/deen/code/yugabyte-db/src/yb/rocksutil/yb_rocksdb.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 | | #include "yb/rocksutil/yb_rocksdb.h" |
14 | | |
15 | | #include <string> |
16 | | |
17 | | #include "yb/util/bytes_formatter.h" |
18 | | |
19 | | using std::shared_ptr; |
20 | | using std::string; |
21 | | using strings::Substitute; |
22 | | |
23 | | using yb::FormatBytesAsStr; |
24 | | using yb::QuotesType; |
25 | | |
26 | | namespace yb { |
27 | | |
28 | 11.6M | void InitRocksDBWriteOptions(rocksdb::WriteOptions* write_options) { |
29 | | // We disable the WAL in RocksDB because we already have the Raft log and we should |
30 | | // replay it during recovery. |
31 | 11.6M | write_options->disableWAL = true; |
32 | 11.6M | write_options->sync = false; |
33 | 11.6M | } |
34 | | |
35 | | } // namespace yb |