Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

call fflush(NULL) will get "not an sstable (bad magic number)" #474

Closed
egmkang opened this issue Jun 1, 2017 · 3 comments
Closed

call fflush(NULL) will get "not an sstable (bad magic number)" #474

egmkang opened this issue Jun 1, 2017 · 3 comments
Assignees
Labels

Comments

@egmkang
Copy link

egmkang commented Jun 1, 2017

it's easy to replay, you write a program like this:

while (true)
    if RandomBetween(0, 10000) == 0
        fflush(NULL)
    leveldb::Set(RandomKey(), RandomValue())

you will get:

2017/06/01-15:24:37.659778 7fa9286dd700 Level-0 table #5975: 3703738 bytes Corruption: not an sstable (bad magic number)
@egmkang egmkang changed the title call fflush(NULL) will not an sstable (bad magic number) call fflush(NULL) will get not an sstable (bad magic number) Jun 1, 2017
@egmkang egmkang changed the title call fflush(NULL) will get not an sstable (bad magic number) call fflush(NULL) will get "not an sstable (bad magic number)" Jun 1, 2017
@ghemawat
Copy link
Contributor

ghemawat commented Jun 1, 2017

Thanks for the minimal reproduction.  I was able to re-create the failure and I have a pretty strong hunch as to what is going wrong:

leveldb's file IO routines are using _unlocked routines (fread_unlocked, fwrite_unlocked, etc.)  We had assumed this was safe because our FILE* objects were only being used in a single-threaded context. However fflush(NULL) can come around the side and attempt to flush what we thought were internal private FILE objects, thereby causing a race.

I am working on a fix.

@ghemawat ghemawat self-assigned this Jun 1, 2017
@cmumford cmumford added the bug label Oct 23, 2017
@Hypocritus
Copy link

Hypocritus commented Aug 14, 2018

@ghemawat, it's a pleasure to address you.

Please correct me if I am wrong, but I believe that is bug is affecting many users. For instance, just the STORJ project has many thousands of storage farmers (I being one), and I am regularly confronted with this error, which causes the node to abruptly exit.

storj-archived/storjshare-daemon#274

@cmumford
Copy link
Contributor

Fixed in 7e12c00

maochongxin pushed a commit to maochongxin/leveldb that referenced this issue Jul 21, 2022
* [Tools] A new, more versatile benchmark output compare tool

Sometimes, there is more than one implementation of some functionality.
And the obvious use-case is to benchmark them, which is better?

Currently, there is no easy way to compare the benchmarking results
in that case:
    The obvious solution is to have multiple binaries, each one
containing/running one implementation. And each binary must use
exactly the same benchmark family name, which is super bad,
because now the binary name should contain all the info about
benchmark family...

What if i tell you that is not the solution?
What if we could avoid producing one binary per benchmark family,
with the same family name used in each binary,
but instead could keep all the related families in one binary,
with their proper names, AND still be able to compare them?

There are three modes of operation:
1. Just compare two benchmarks, what `compare_bench.py` did:
```
$ ../tools/compare.py benchmarks ./a.out ./a.out
RUNNING: ./a.out --benchmark_out=/tmp/tmprBT5nW
Run on (8 X 4000 MHz CPU s)
2017-11-07 21:16:44
------------------------------------------------------
Benchmark               Time           CPU Iterations
------------------------------------------------------
BM_memcpy/8            36 ns         36 ns   19101577   211.669MB/s
BM_memcpy/64           76 ns         76 ns    9412571   800.199MB/s
BM_memcpy/512          84 ns         84 ns    8249070   5.64771GB/s
BM_memcpy/1024        116 ns        116 ns    6181763   8.19505GB/s
BM_memcpy/8192        643 ns        643 ns    1062855   11.8636GB/s
BM_copy/8             222 ns        222 ns    3137987   34.3772MB/s
BM_copy/64           1608 ns       1608 ns     432758   37.9501MB/s
BM_copy/512         12589 ns      12589 ns      54806   38.7867MB/s
BM_copy/1024        25169 ns      25169 ns      27713   38.8003MB/s
BM_copy/8192       201165 ns     201112 ns       3486   38.8466MB/s
RUNNING: ./a.out --benchmark_out=/tmp/tmpt1wwG_
Run on (8 X 4000 MHz CPU s)
2017-11-07 21:16:53
------------------------------------------------------
Benchmark               Time           CPU Iterations
------------------------------------------------------
BM_memcpy/8            36 ns         36 ns   19397903   211.255MB/s
BM_memcpy/64           73 ns         73 ns    9691174   839.635MB/s
BM_memcpy/512          85 ns         85 ns    8312329   5.60101GB/s
BM_memcpy/1024        118 ns        118 ns    6438774   8.11608GB/s
BM_memcpy/8192        656 ns        656 ns    1068644   11.6277GB/s
BM_copy/8             223 ns        223 ns    3146977   34.2338MB/s
BM_copy/64           1611 ns       1611 ns     435340   37.8751MB/s
BM_copy/512         12622 ns      12622 ns      54818   38.6844MB/s
BM_copy/1024        25257 ns      25239 ns      27779   38.6927MB/s
BM_copy/8192       205013 ns     205010 ns       3479    38.108MB/s
Comparing ./a.out to ./a.out
Benchmark                 Time             CPU      Time Old      Time New       CPU Old       CPU New
------------------------------------------------------------------------------------------------------
BM_memcpy/8             0.0020          0.0020            36            36            36            36
BM_memcpy/64           -0.0468         -0.0470            76            73            76            73
BM_memcpy/512           0.0081          0.0083            84            85            84            85
BM_memcpy/1024          0.0098          0.0097           116           118           116           118
BM_memcpy/8192          0.0200          0.0203           643           656           643           656
BM_copy/8               0.0046          0.0042           222           223           222           223
BM_copy/64              0.0020          0.0020          1608          1611          1608          1611
BM_copy/512             0.0027          0.0026         12589         12622         12589         12622
BM_copy/1024            0.0035          0.0028         25169         25257         25169         25239
BM_copy/8192            0.0191          0.0194        201165        205013        201112        205010
```

2. Compare two different filters of one benchmark:
(for simplicity, the benchmark is executed twice)
```
$ ../tools/compare.py filters ./a.out BM_memcpy BM_copy
RUNNING: ./a.out --benchmark_filter=BM_memcpy --benchmark_out=/tmp/tmpBWKk0k
Run on (8 X 4000 MHz CPU s)
2017-11-07 21:37:28
------------------------------------------------------
Benchmark               Time           CPU Iterations
------------------------------------------------------
BM_memcpy/8            36 ns         36 ns   17891491   211.215MB/s
BM_memcpy/64           74 ns         74 ns    9400999   825.646MB/s
BM_memcpy/512          87 ns         87 ns    8027453   5.46126GB/s
BM_memcpy/1024        111 ns        111 ns    6116853    8.5648GB/s
BM_memcpy/8192        657 ns        656 ns    1064679   11.6247GB/s
RUNNING: ./a.out --benchmark_filter=BM_copy --benchmark_out=/tmp/tmpAvWcOM
Run on (8 X 4000 MHz CPU s)
2017-11-07 21:37:33
----------------------------------------------------
Benchmark             Time           CPU Iterations
----------------------------------------------------
BM_copy/8           227 ns        227 ns    3038700   33.6264MB/s
BM_copy/64         1640 ns       1640 ns     426893   37.2154MB/s
BM_copy/512       12804 ns      12801 ns      55417   38.1444MB/s
BM_copy/1024      25409 ns      25407 ns      27516   38.4365MB/s
BM_copy/8192     202986 ns     202990 ns       3454   38.4871MB/s
Comparing BM_memcpy to BM_copy (from ./a.out)
Benchmark                               Time             CPU      Time Old      Time New       CPU Old       CPU New
--------------------------------------------------------------------------------------------------------------------
[BM_memcpy vs. BM_copy]/8             5.2829          5.2812            36           227            36           227
[BM_memcpy vs. BM_copy]/64           21.1719         21.1856            74          1640            74          1640
[BM_memcpy vs. BM_copy]/512         145.6487        145.6097            87         12804            87         12801
[BM_memcpy vs. BM_copy]/1024        227.1860        227.1776           111         25409           111         25407
[BM_memcpy vs. BM_copy]/8192        308.1664        308.2898           657        202986           656        202990
```

3. Compare filter one from benchmark one to filter two from benchmark two:
(for simplicity, the benchmark is executed twice)
```
$ ../tools/compare.py benchmarksfiltered ./a.out BM_memcpy ./a.out BM_copy
RUNNING: ./a.out --benchmark_filter=BM_memcpy --benchmark_out=/tmp/tmp_FvbYg
Run on (8 X 4000 MHz CPU s)
2017-11-07 21:38:27
------------------------------------------------------
Benchmark               Time           CPU Iterations
------------------------------------------------------
BM_memcpy/8            37 ns         37 ns   18953482   204.118MB/s
BM_memcpy/64           74 ns         74 ns    9206578   828.245MB/s
BM_memcpy/512          91 ns         91 ns    8086195   5.25476GB/s
BM_memcpy/1024        120 ns        120 ns    5804513   7.95662GB/s
BM_memcpy/8192        664 ns        664 ns    1028363   11.4948GB/s
RUNNING: ./a.out --benchmark_filter=BM_copy --benchmark_out=/tmp/tmpDfL5iE
Run on (8 X 4000 MHz CPU s)
2017-11-07 21:38:32
----------------------------------------------------
Benchmark             Time           CPU Iterations
----------------------------------------------------
BM_copy/8           230 ns        230 ns    2985909   33.1161MB/s
BM_copy/64         1654 ns       1653 ns     419408   36.9137MB/s
BM_copy/512       13122 ns      13120 ns      53403   37.2156MB/s
BM_copy/1024      26679 ns      26666 ns      26575   36.6218MB/s
BM_copy/8192     215068 ns     215053 ns       3221   36.3283MB/s
Comparing BM_memcpy (from ./a.out) to BM_copy (from ./a.out)
Benchmark                               Time             CPU      Time Old      Time New       CPU Old       CPU New
--------------------------------------------------------------------------------------------------------------------
[BM_memcpy vs. BM_copy]/8             5.1649          5.1637            37           230            37           230
[BM_memcpy vs. BM_copy]/64           21.4352         21.4374            74          1654            74          1653
[BM_memcpy vs. BM_copy]/512         143.6022        143.5865            91         13122            91         13120
[BM_memcpy vs. BM_copy]/1024        221.5903        221.4790           120         26679           120         26666
[BM_memcpy vs. BM_copy]/8192        322.9059        323.0096           664        215068           664        215053
```

* [Docs] Document tools/compare.py

* [docs] Document how the change is calculated
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

4 participants