- 13 Jul, 2021 1 commit
-
-
Xintao authored
update rocksdb to include tikv/rocksdb#246 for tikv-4.x include 6eb4fda4Signed-off-by:
Xintao <hunterlxt@live.com>
-
- 24 May, 2021 1 commit
-
-
ti-srebot authored
-
- 19 Dec, 2020 1 commit
-
-
ti-srebot authored
update rocksdb to include tikv/rocksdb#223 for tikv-4.x Signed-off-by:
ti-srebot <ti-srebot@pingcap.com>
-
- 20 Nov, 2020 1 commit
-
-
ti-srebot authored
Signed-off-by:
ti-srebot <ti-srebot@pingcap.com>
-
- 12 Nov, 2020 1 commit
-
-
ti-srebot authored
-
- 11 Nov, 2020 1 commit
-
-
ti-srebot authored
Signed-off-by:
ti-srebot <ti-srebot@pingcap.com>
-
- 04 Nov, 2020 1 commit
-
-
Xinye Tao authored
Signed-off-by:
tabokie <xy.tao@outlook.com>
-
- 03 Nov, 2020 1 commit
-
-
ti-srebot authored
Signed-off-by:
ti-srebot <ti-srebot@pingcap.com>
-
- 21 Sep, 2020 1 commit
-
-
Connor authored
Signed-off-by:
Connor1996 <zbk602423539@gmail.com>
-
- 08 Sep, 2020 1 commit
-
-
ti-srebot authored
Signed-off-by:
ti-srebot <ti-srebot@pingcap.com>
-
- 19 Aug, 2020 1 commit
-
-
glorv authored
add `set_compression_options` for `ColumnFamilyOptions` so that we can set the `compression level` when generate sst files Signed-off-by:
glorv <glorvs@163.com>
-
- 23 Jul, 2020 1 commit
-
-
Jay authored
Jemallocator has not been active for several months. We published our own fork, which upgraded jemalloc to 5.2.1. Signed-off-by:
Jay Lee <BusyJayLee@gmail.com>
-
- 30 Jun, 2020 1 commit
-
-
Ryan Leung authored
cherry-pick #510 and #516
-
- 04 Jun, 2020 2 commits
-
-
pingcap-github-bot authored
update titan to include tikv/titan#169 for tikv-4.x include the following changes ``` 81814ec 2020-06-04 zbk602423539@gmail.. Fix GC may delete a already deleted blob file (#168) (#169) 80657c0 2020-06-04 zbk602423539@gmail.. Fix wrong assert delta < 0 for cocurrent compaction while flush (#172) (#176) 0db7976 2020-06-04 sre-bot@pingcap.com Fix wrong live data size when encounter rewrite failure (#161) (#175) c41f2a2 2020-06-04 sre-bot@pingcap.com feat: Titan should return user value to compaction filter #163 (#164) (#174) ``` Signed-off-by:
sre-bot <sre-bot@pingcap.com>
-
pingcap-github-bot authored
Signed-off-by:
sre-bot <sre-bot@pingcap.com>
-
- 13 May, 2020 1 commit
-
-
Connor authored
* Add titan stats enum (#414) * add titan customized stats Signed-off-by:
Connor <zbk602423539@gmail.com> * copy rocksdb options to titan options when using (#488) Signed-off-by:
Connor1996 <zbk602423539@gmail.com>
-
- 30 Apr, 2020 1 commit
-
-
pingcap-github-bot authored
Signed-off-by:
sre-bot <sre-bot@pingcap.com>
-
- 20 Apr, 2020 1 commit
-
-
pingcap-github-bot authored
update rocksdb to include tikv/rocksdb#168 for tikv-4.x Signed-off-by:
sre-bot <sre-bot@pingcap.com>
-
- 16 Apr, 2020 1 commit
-
-
pingcap-github-bot authored
Signed-off-by:
sre-bot <sre-bot@pingcap.com>
-
- 15 Apr, 2020 1 commit
-
-
TXXT authored
- Export encryption perf context api - Fix travis - Default nightly toolchain Signed-off-by:
TXXT <hunterlxt@live.com>
-
- 10 Apr, 2020 1 commit
-
-
pingcap-github-bot authored
update rocksdb to include tikv/rocksdb#163 for tikv-4.x Signed-off-by:
sre-bot <sre-bot@pingcap.com>
-
- 20 Mar, 2020 19 commits
-
-
Wallace authored
Signed-off-by:
Little-Wallace <bupt2013211450@gmail.com> renew branch of multibatch-write. Optimize for large write batch block other thread.
-
Yi Wu authored
Signed-off-by:
Yi Wu <yiwu@pingcap.com>
-
yiwu-arbug authored
Add `KeyManagedEncryptedEnv` API and related `EncryptionKeyManager` trait. Signed-off-by:
Yi Wu <yiwu@pingcap.com>
-
Qinxuan Chen authored
Signed-off-by:
koushiro <koushiro.cqx@gmail.com>
-
pingcap-github-bot authored
-
Wallace authored
Signed-off-by:
Little-Wallace <bupt2013211450@gmail.com>
-
yiwu-arbug authored
* update rocksdb Signed-off-by:
Yi Wu <yiwu@pingcap.com> * update titan Signed-off-by:
Yi Wu <yiwu@pingcap.com>
-
qupeng authored
Signed-off-by:
qupeng <qupeng@pingcap.com> Co-authored-by:
zhangjinpeng1987 <zhangjinpeng@pingcap.com>
-
glorv authored
* add pre generated binding for aarch64 Signed-off-by:
glorv <glorvs@163.com>
-
yiwu-arbug authored
This reverts commit 9abbf010. As commentted in https://github.com/tikv/rust-rocksdb/pull/442#issuecomment-595001970, `PerfContext` is naturally `!Send` because it contains a raw pointer. Reverting #442 makes this crate compile on stable Rust.  Signed-off-by:
Yilin Chen <sticnarf@gmail.com>
-
yiwu-arbug authored
fix tikv/tikv#6973 As mentioned in the linked issue, the aim is to implement `!Send` for the `PerfContext` struct. Although the issue is related to the `tikv/tikv` repo, the concerned `PerfContext` is taken from this repo. Due to the rule that "foreign traits can't be implemented on foreign types", it isn't possible to directly implement the `!Send` trait on the `PerfContext` struct. So, either I had to enclose the `PerfContext` within another type and implement `!Send` for the new type (along with implementing all the functions present for `PerfContext`), or directly add the `!Send` implementation, where the struct is defined, i.e, in this repo. I've taken the second path. but, there is a problem. `impl !Send` is currently only supported in nightly and not on stable channel. So, it's necessary to build this crate with nightly toolchain, if this patch is accepted. Signed-off-by:
Govardhan G D <govardhangdg@gmail.com>
-
Wallace authored
* add write thread wait time for perf context
-
Wallace authored
* add multi batch write interface
-
Wallace authored
* add interface set_target_path_id for CompatOptions Signed-off-by:
Little-Wallace <bupt2013211450@gmail.com>
-
Brian Anderson authored
* Add reference counted TableProperties bindings Signed-off-by:
Brian Anderson <andersrb@gmail.com> * Add test for table_properties_rc Signed-off-by:
Brian Anderson <andersrb@gmail.com> * rustfmt Signed-off-by:
Brian Anderson <andersrb@gmail.com> * Fix a clippy lint Signed-off-by:
Brian Anderson <andersrb@gmail.com> * Various changes from review feedback Signed-off-by:
Brian Anderson <andersrb@gmail.com>
-
pingcap-github-bot authored
-
pingcap-github-bot authored
-
yiwu-arbug authored
Update travis to bulid with xcode11.3, to catch compile error unique to clang11. Tested with a version of rocksdb with clang11 compile errors and see the error in travis CI: https://travis-ci.org/tikv/rust-rocksdb/jobs/634612576?utm_medium=notification&utm_source=github_statusSigned-off-by:
Yi Wu <yiwu@pingcap.com>
-
pingcap-github-bot authored
-