2016-02-10 00:12:00 +01:00
|
|
|
// Copyright (c) 2011-present, Facebook, Inc. All rights reserved.
|
2017-07-16 01:03:42 +02:00
|
|
|
// This source code is licensed under both the GPLv2 (found in the
|
|
|
|
// COPYING file in the root directory) and Apache 2.0 License
|
|
|
|
// (found in the LICENSE.Apache file in the root directory).
|
2014-04-29 17:32:56 +02:00
|
|
|
#pragma once
|
|
|
|
|
2019-02-20 19:10:11 +01:00
|
|
|
#define ROCKSDB_MAJOR 6
|
2020-01-25 00:35:04 +01:00
|
|
|
#define ROCKSDB_MINOR 7
|
2019-05-01 00:05:25 +02:00
|
|
|
#define ROCKSDB_PATCH 0
|
TablePropertiesCollectorFactory
Summary:
This diff addresses task #4296714 and rethinks how users provide us with TablePropertiesCollectors as part of Options.
Here's description of task #4296714:
I'm debugging #4295529 and noticed that our count of user properties kDeletedKeys is wrong. We're sharing one single InternalKeyPropertiesCollector with all Table Builders. In LOG Files, we're outputting number of kDeletedKeys as connected with a single table, while it's actually the total count of deleted keys since creation of the DB.
For example, this table has 3155 entries and 1391828 deleted keys.
The problem with current approach that we call methods on a single TablePropertiesCollector for all the tables we create. Even worse, we could do it from multiple threads at the same time and TablePropertiesCollector has no way of knowing which table we're calling it for.
Good part: Looks like nobody inside Facebook is using Options::table_properties_collectors. This means we should be able to painfully change the API.
In this change, I introduce TablePropertiesCollectorFactory. For every table we create, we call `CreateTablePropertiesCollector`, which creates a TablePropertiesCollector for a single table. We then use it sequentially from a single thread, which means it doesn't have to be thread-safe.
Test Plan:
Added a test in table_properties_collector_test that fails on master (build two tables, assert that kDeletedKeys count is correct for the second one).
Also, all other tests
Reviewers: sdong, dhruba, haobo, kailiu
Reviewed By: kailiu
CC: leveldb
Differential Revision: https://reviews.facebook.net/D18579
2014-05-13 21:30:55 +02:00
|
|
|
|
|
|
|
// Do not use these. We made the mistake of declaring macros starting with
|
|
|
|
// double underscore. Now we have to live with our choice. We'll deprecate these
|
|
|
|
// at some point
|
|
|
|
#define __ROCKSDB_MAJOR__ ROCKSDB_MAJOR
|
|
|
|
#define __ROCKSDB_MINOR__ ROCKSDB_MINOR
|
|
|
|
#define __ROCKSDB_PATCH__ ROCKSDB_PATCH
|