- 04 Jun, 2020 2 commits
-
-
pingcap-github-bot authored
-
pingcap-github-bot authored
-
- 03 Jun, 2020 1 commit
-
-
qupeng authored
Signed-off-by:
qupeng <qupeng@pingcap.com>
-
- 02 Jun, 2020 1 commit
-
-
pingcap-github-bot authored
-
- 01 Jun, 2020 1 commit
-
-
pingcap-github-bot authored
-
- 29 May, 2020 1 commit
-
-
pingcap-github-bot authored
-
- 12 May, 2020 1 commit
-
-
Connor authored
Signed-off-by:
Connor1996 <zbk602423539@gmail.com>
-
- 08 May, 2020 1 commit
-
-
Connor authored
* add titan customized stats Signed-off-by:
Connor <zbk602423539@gmail.com>
-
- 07 May, 2020 1 commit
-
-
pingcap-github-bot authored
-
- 06 May, 2020 2 commits
-
-
pingcap-github-bot authored
-
Neil Shen authored
Signed-off-by:
Neil Shen <overvenus@gmail.com>
-
- 04 May, 2020 1 commit
-
-
Weizhen Wang authored
remove Valist and make logger return the log string instead of ```snprinf``` by client. Signed-off-by:
Wangweizhen <hawking.rei@gmail.com>
-
- 29 Apr, 2020 1 commit
-
-
pingcap-github-bot authored
-
- 28 Apr, 2020 1 commit
-
-
pingcap-github-bot authored
-
- 26 Apr, 2020 1 commit
-
-
pingcap-github-bot authored
-
- 17 Apr, 2020 1 commit
-
-
pingcap-github-bot authored
-
- 14 Apr, 2020 1 commit
-
-
TXXT authored
- Export encryption perf context api - Fix travis - Default nightly toolchain Signed-off-by:
TXXT <hunterlxt@live.com>
-
- 13 Apr, 2020 1 commit
-
-
Connor authored
* add run sst dump Signed-off-by:
Connor <zbk602423539@gmail.com>
-
- 11 Apr, 2020 1 commit
-
-
Weizhen Wang authored
Signed-off-by:
Wangweizhen <hawking.rei@gmail.com> UCP https://github.com/tikv/tikv/issues/6496 Fix this error from clippy. ``` this public function dereferences a raw pointer but is not marked `unsafe` help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#not_unsafe_ptr_arg_deref ```
-
- 10 Apr, 2020 1 commit
-
-
pingcap-github-bot authored
rocksdb: Fix wrong key being read on ingested file with global seqno and delta encoding (facebook#6669) (#469)
-
- 02 Apr, 2020 1 commit
-
-
pingcap-github-bot authored
-
- 01 Apr, 2020 3 commits
-
-
pingcap-github-bot authored
-
yiwu-arbug authored
#463 forget to expose `static_libcpp` feature to top level Cargo.toml. Fixing it. Signed-off-by:
Yi Wu <yiwu@pingcap.com>
-
David Wong authored
Closes https://github.com/tikv/rust-rocksdb/issues/461Signed-off-by:
David Wong <davidwg@calibra.com>
-
- 31 Mar, 2020 1 commit
-
-
Weizhen Wang authored
Signed-off-by:
Wangweizhen <hawking.rei@gmail.com> UCP [#6496](https://github.com/tikv/tikv/issues/6496) add interface corresponds to the Logger interface
-
- 30 Mar, 2020 1 commit
-
-
yiwu-arbug authored
Fix rust-rocksdb/master should point to rocksdb/6.4.tikv. Also update rocksdb with the change: ``` 979a985cf 2020-03-25 yiwu@pingcap.com Add counter in perf_context to time cipher time (#158) ``` Signed-off-by:
Yi Wu <yiwu@pingcap.com>
-
- 20 Mar, 2020 3 commits
-
-
Yi Wu authored
Signed-off-by:
Yi Wu <yiwu@pingcap.com>
-
Wallace authored
Signed-off-by:
Little-Wallace <bupt2013211450@gmail.com> renew branch of multibatch-write. Optimize for large write batch block other thread.
-
yiwu-arbug authored
Add `KeyManagedEncryptedEnv` API and related `EncryptionKeyManager` trait. Signed-off-by:
Yi Wu <yiwu@pingcap.com>
-
- 18 Mar, 2020 1 commit
-
-
Qinxuan Chen authored
Signed-off-by:
koushiro <koushiro.cqx@gmail.com>
-
- 17 Mar, 2020 2 commits
-
-
pingcap-github-bot authored
-
Connor authored
-
- 11 Mar, 2020 2 commits
-
-
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>
-
- 06 Mar, 2020 2 commits
-
-
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>
-
- 05 Mar, 2020 1 commit
-
-
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>
-
- 04 Mar, 2020 1 commit
-
-
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>
-
- 03 Mar, 2020 1 commit
-
-
Wallace authored
* add write thread wait time for perf context
-
- 27 Feb, 2020 1 commit
-
-
Wallace authored
* add multi batch write interface
-