https://github.com/facebook/rocksdb
Revision cc253982ddb155475a0b5d3c908847eab30bc53f authored by Andrew Kryczka on 02 March 2017, 18:45:04 UTC, committed by Facebook Github Bot on 02 March 2017, 18:54:11 UTC
Summary:
The default behavior was too weird because, previously, we got the L0 file size limit (64MB) from Options default and L1+ file size limit (2MB) from the hardcoded value. We should get both from Options default.
Closes https://github.com/facebook/rocksdb/pull/1943

Differential Revision: D4640301

Pulled By: ajkr

fbshipit-source-id: fd8c0fd
1 parent 8432bcf
Raw File
Tip revision: cc253982ddb155475a0b5d3c908847eab30bc53f authored by Andrew Kryczka on 02 March 2017, 18:45:04 UTC
Use more default options in db_bench
Tip revision: cc25398
appveyor.yml
version: 1.0.{build}
image: Visual Studio 2015
before_build:
- md %APPVEYOR_BUILD_FOLDER%\build
- cd %APPVEYOR_BUILD_FOLDER%\build
- cmake -G "Visual Studio 14 2015 Win64" -DOPTDBG=1 -DXPRESS=1 ..
- cd ..
build:
  project: build\rocksdb.sln
  parallel: true
  verbosity: minimal
test:
test_script:
- ps: build_tools\run_ci_db_test.ps1 -Run db_basic_test -Concurrency 8
- ps: build_tools\run_ci_db_test.ps1 -Run db_test2 -Concurrency 8
- ps: build_tools\run_ci_db_test.ps1 -Run db_test -Concurrency 8
- ps: build_tools\run_ci_db_test.ps1 -Run env_test,env_basic_test -Concurrency 2

back to top