- 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
-
- 24 Feb, 2020 1 commit
-
-
Wallace authored
* add interface set_target_path_id for CompatOptions Signed-off-by:
Little-Wallace <bupt2013211450@gmail.com>
-
- 07 Feb, 2020 1 commit
-
-
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>
-
- 04 Feb, 2020 3 commits
-
-
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>
-
- 31 Jan, 2020 1 commit
-
-
pingcap-github-bot authored
-
- 19 Jan, 2020 1 commit
-
-
yiwu-arbug authored
Needed by https://github.com/tikv/tikv/pull/6209Signed-off-by:
Yi Wu <yiwu@pingcap.com>
-
- 09 Jan, 2020 1 commit
-
-
yiwu-arbug authored
Update rocksdb with the following changes: ``` cb7efe6d7 2020-01-08 zbk602423539@gmail.. Add oldest snapshot sequence property (#6228) (#141) c7d775168 2020-01-07 zbk602423539@gmail.. statistics: make ticker and histogram extendible (#136) ebec1bd8a 2020-01-07 bupt2013211450@gma.. add multibatch write into memtable (#131) 4dcfb8789 2020-01-07 zbk602423539@gmail.. fix invalid register for .seh_savexmm (#140) ``` Signed-off-by:
Yi Wu <yiwu@pingcap.com>
-
- 31 Dec, 2019 1 commit
-
-
pingcap-github-bot authored
-