1. 19 9月, 2012 1 次提交
  2. 18 9月, 2012 7 次提交
  3. 17 9月, 2012 2 次提交
  4. 15 9月, 2012 3 次提交
  5. 14 9月, 2012 3 次提交
  6. 13 9月, 2012 1 次提交
  7. 07 9月, 2012 3 次提交
  8. 05 9月, 2012 3 次提交
  9. 30 8月, 2012 4 次提交
    • D
      Release 1.5.0.fb. · 8bab0568
      Dhruba Borthakur 提交于
      Summary:
      
      Test Plan:
      
      Reviewers:
      
      CC:
      
      Task ID: #
      
      Blame Rev:
      8bab0568
    • D
      Add libhdfs.a to the build process. · f0b1654f
      Dhruba Borthakur 提交于
      Fix compilcation error for hdfs build.
      
      Summary:
      
      Test Plan:
      
      Reviewers:
      
      CC:
      
      Task ID: #
      
      Blame Rev:
      f0b1654f
    • D
      Clean up compiler warnings generated by -Wall option. · fe936316
      Dhruba Borthakur 提交于
      Summary:
      Clean up compiler warnings generated by -Wall option.
      make clean all OPT=-Wall
      
      This is a pre-requisite before making a new release.
      
      Test Plan: compile and run unit tests
      
      Reviewers: heyongqiang
      
      Reviewed By: heyongqiang
      
      Differential Revision: https://reviews.facebook.net/D5019
      fe936316
    • D
      The sharding of the block cache is limited to 2*20 pieces. · e5fe80e4
      Dhruba Borthakur 提交于
      Summary:
      The numbers of shards that the block cache is divided into is
      configurable. However, if the user specifies that he/she wants
      the block cache to be divided into more than 2**20 pieces, then
      the system will rey to allocate a huge array of that size) that
      could fail.
      
      It is better to limit the sharding of the block cache to an
      upper bound. The default sharding is 16 shards (i.e. 2**4)
      and the maximum is now 2 million shards (i.e. 2**20).
      
      Also, fixed a bug with the LRUCache where the numShardBits
      should be a private member of the LRUCache object rather than
      a static variable.
      
      Test Plan:
      run db_bench with --cache_numshardbits=64.
      
      Task ID: #
      
      Blame Rev:
      
      Reviewers: heyongqiang
      
      Reviewed By: heyongqiang
      
      Differential Revision: https://reviews.facebook.net/D5013
      e5fe80e4
  10. 29 8月, 2012 5 次提交
  11. 28 8月, 2012 1 次提交
    • D
      Introduce a new method Env->Fsync() that issues fsync (instead of fdatasync). · fc20273e
      Dhruba Borthakur 提交于
      Summary:
      Introduce a new method Env->Fsync() that issues fsync (instead of fdatasync).
      This is needed for data durability when running on ext3 filesystems.
      Added options to the benchmark db_bench to generate performance numbers
      with either fsync or fdatasync enabled.
      
      Cleaned up Makefile to build leveldb_shell only when building the thrift
      leveldb server.
      
      Test Plan: build and run benchmark
      
      Reviewers: heyongqiang
      
      Reviewed By: heyongqiang
      
      Differential Revision: https://reviews.facebook.net/D4911
      fc20273e
  12. 25 8月, 2012 7 次提交