Skip to content

Instantly share code, notes, and snippets.

@mtrunkat
Last active March 19, 2024 06:28
Show Gist options
  • Save mtrunkat/203c33347cc96db51a754a45bb902669 to your computer and use it in GitHub Desktop.
Save mtrunkat/203c33347cc96db51a754a45bb902669 to your computer and use it in GitHub Desktop.
Run "mongo --repair" in Docker container that cannot start because of MongoDB error
#!/bin/bash
# See https://github.com/docker-library/mongo/pull/63
docker run --rm --volumes-from my-mongo-server mongo unlink "/data/db/mongod.lock"
docker run --rm --volumes-from my-mongo-server mongo --repair
@zulucoda
Copy link

awesome thanks for sharing :bowtie:

@azcoigreach
Copy link

azcoigreach commented Dec 22, 2017

Thank you. This was very helpful.

I ended up running a second mongo container with the /bin/bash command and --volumes-from my-mongo-server. This created a means for me to access my database without the mongo container restarting constantly...

docker run -ti --volumes-from my-mongo-server --name my-mongo-server-cmd -p 27018:27017 mongo /bin/bash

@medkhelifi
Copy link

Very helpful, Thank you ...

@bbraunstein
Copy link

"Unable to start up mongodb due to missing featureCompatibilityVersion document. Please run with --repair to restore the document."

This was the perfect fix I needed to restore my mongodb container while retaining the data. After the documents were repaired, I was able to re-execute docker start mongodb. Thanks! +1

@jjpeet
Copy link

jjpeet commented Aug 30, 2018

Hi @azcoigreach I'm a docker noob and need to repair my MongoDB.

This is the command I use to run my docker mongo;

docker run -it -d --name="mongo" \
    -p 27017:27017 \
    -p 27018:27018 \
    -p 27019:27019 \
    -e TIMEZONE="Australia/Brisbane" \
    -e TZ="Australia/Brisbane" \
    -v /Users/james/docker/mongo/configdb:/data/configdb \
    -v /Users/james/docker/mongo/db:/data/db \
    --restart always \
    mongo:latest

Would you be able to suggest how I start up a docker to access these local DBs and repair them?
I can't figure out how to translate you command line above to my context...

Thx
JP

@jjpeet
Copy link

jjpeet commented Aug 30, 2018

Had another look at it this morning and I think I've done it using the following;

docker run -it -d --name="mongofix" \
    -p 27017:27017 \
    -p 27018:27018 \
    -p 27019:27019 \
    -e TIMEZONE="Australia/Brisbane" \
    -e TZ="Australia/Brisbane" \
    -v /Users/james/docker/mongo/configdb:/data/configdb \
    -v /Users/james/docker/mongo/db:/data/db \
    mongo:latest /bin/bash

Now all I need to do it get mongod working to then be able to run mongo --repair. It's reporting all sorts of errors from multiple restores of backups made when it was working).

Any thoughts on what this means?

2018-08-31T08:32:07.415+1000 I -        [initandlisten] Detected data files in /data/db created by the 'wiredTiger' storage engine, so setting the active storage engine to 'wiredTiger'.
2018-08-31T08:32:07.427+1000 I STORAGE  [initandlisten] wiredtiger_open config: create,cache_size=487M,session_max=20000,eviction=(threads_min=4,threads_max=4),config_base=false,statistics=(fast),cache_cursors=false,compatibility=(release="3.0",require_max="3.0"),log=(enabled=true,archive=true,path=journal,compressor=snappy),file_manager=(close_idle_time=100000),statistics_log=(wait=0),verbose=(recovery_progress),
2018-08-31T08:32:08.242+1000 E STORAGE  [initandlisten] WiredTiger error (-31802) [1535668328:242482][6171:0x7f55860b6a00], file:WiredTiger.wt, connection: unable to read root page from file:WiredTiger.wt: WT_ERROR: non-specific WiredTiger error
2018-08-31T08:32:08.242+1000 E STORAGE  [initandlisten] WiredTiger error (0) [1535668328:242597][6171:0x7f55860b6a00], file:WiredTiger.wt, connection: WiredTiger has failed to open its metadata
2018-08-31T08:32:08.242+1000 E STORAGE  [initandlisten] WiredTiger error (0) [1535668328:242613][6171:0x7f55860b6a00], file:WiredTiger.wt, connection: This may be due to the database files being encrypted, being from an older version or due to corruption on disk
2018-08-31T08:32:08.242+1000 E STORAGE  [initandlisten] WiredTiger error (0) [1535668328:242860][6171:0x7f55860b6a00], file:WiredTiger.wt, connection: You should confirm that you have opened the database with the correct options including all encryption and compression options
2018-08-31T08:32:08.246+1000 E -        [initandlisten] Assertion: 28595:-31802: WT_ERROR: non-specific WiredTiger error src/mongo/db/storage/wiredtiger/wiredtiger_kv_engine.cpp 421
2018-08-31T08:32:08.248+1000 I STORAGE  [initandlisten] exception in initAndListen: Location28595: -31802: WT_ERROR: non-specific WiredTiger error, terminating
2018-08-31T08:32:08.248+1000 I NETWORK  [initandlisten] shutdown: going to close listening sockets...
2018-08-31T08:32:08.248+1000 I NETWORK  [initandlisten] removing socket file: /tmp/mongodb-27017.sock
2018-08-31T08:32:08.249+1000 I CONTROL  [initandlisten] now exiting
2018-08-31T08:32:08.249+1000 I CONTROL  [initandlisten] shutting down with code:100

@F-Yousri
Copy link

worked like a charm, thanks for sharing

@milton-influry
Copy link

Thank you!

@col-panic
Copy link

col-panic commented Mar 25, 2020

Thanks a lot, yet i see

2020-03-25T08:23:29.346+0000 I STORAGE  [initandlisten] Error: journal files are present in journal directory, yet starting without journaling enabled.
2020-03-25T08:23:29.346+0000 I STORAGE  [initandlisten] It is recommended that you start with journaling enabled so that recovery may occur.
2020-03-25T08:23:29.346+0000 I STORAGE  [initandlisten] **************
2020-03-25T08:23:29.346+0000 I STORAGE  [initandlisten] exception in initAndListen: Location13597: can't start without --journal enabled when journal/ files are present, terminating

adding the --journal flag however does not help

@jmattiace
Copy link

🙌🏽

@omar-palomino-exa
Copy link

Wow, it worked like charm. 👯

@asyfsaeed
Copy link

saved my day :)

@LeeThompson
Copy link

And in the middle of the --repair it stops with a segmentation fault.
What a piece of **(#&$(

@woosuk288
Copy link

Thank you so much!!!

@guptaashwanee
Copy link

guptaashwanee commented Mar 18, 2024

I am not able to repair, it says this, any other possible way to solve this:

mongo0-1 | {"t":{"$date":"2024-02-16T13:55:27.106+00:00"},"s":"E", "c":"WT", "id":22435, "ctx":"initandlisten","msg":
"WiredTiger error message","attr":{"error":0,"message":{"ts_sec":1708091727,"ts_usec":106524,"thread":"1:0xffff96990040","session_
dhandle_name":"file:WiredTigerHS.wt","session_name":"hs_access","category":"WT_VERB_DEFAULT","category_id":9,"verbose_level":"ERRO
R","verbose_level_id":-3,"msg":"_wt_bm_corrupt_dump:77:{0: 958464, 4096, 0xfb403010}: (chunk 1 of 4): 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 e3 02 00 00 bb 02 00 00 01 00 00 01 00 10 00 00 5e a0 2f e9 01 00 00 00 e2 f5 1a 80 e3 0e 7f c0 cf c0 e3 12 a
f c0 cf c0 e3 1b 3f c0 cf c0 e3 25 9f c0 cf c0 e3 39 9f c0 cf c0 e3 55 7f c0 df c0 e3 64 1f c0 cf c0 e3 66 6f c0 cf c0 e3 6d 1f c0
cf c0 e3 7f 9f c0 df c0 e3 89 6f c0 cf c0 e3 9e 7f c0 cf c0 e3 a9 cf c0 e2 0f c0 e3 ac ff c0 df c0 e3 bd 4f c0 cf c0 e3 c7 2f c0
cf c0 e3 c7 9f c0 cf c0 e3 c9 2f c0 df c0 e3 eb 0f c0 cf c0 e3 ec ef c0 cf c0 e3 ed 7f c0 df c0 e3 f4 df c0 e2 0f c0 e4 01 03 cf c
0 cf c0 e4 01 04 9f c0 df c0 e4 01 08 df c0 cf c0 e4 01 14 2f c0 cf c0 e4 01 15 cf c0 e3 02 6f c0 e4 01 1e 6f c0 e3 02 7f c0 e4 01
23 af c0 e3 01 ff c0 e4 01 27 0f c0 e2 1f c0 e4 01 30 1f c0 e2 1f c0 e4 01 34 ff c0 e2 1f c0 e4 01 3c ef c0 cf c0 e4 01 44 af c0
e2 2f c0 e4 01 46 1f c0 cf c0 e4 01 48 ef c0 e2 2f c0 e4 01 49 9f c0 e2 2f c0 e4 01 4c 4f c0 e2 1f c0 e4 01 4d bf c0 e2 0f c0 e4 0
1 58 9f c0 cf c0 e4 01 59 4f c0 cf c0 e4 01 5b ff c0 e2 0f c0 e4 01 61 ff c0 e2 1f c0 e4 01 68 8f c0 e2 0f c0 e4 01 6f 2f c0 cf c0
e4 01 72 bf c0 df c0 e4 01 7d 3f c0 cf c0 e4 01 7f 8f c0 e3 02 bf c0 e4 01 86 6f c0 e3 03 5f c0 e4 01 8c 5f c0 e3 04 1f c0 e4 01
94 6f c0 df c0 e4 01 9a 7f c0 df c0 e4 01 9b 0f c0 e2 0f c0 e4 01 a0 2f c0 e3 03 df c0 e4 01 a7 6f c0 e2 0f c0 e4 01 aa ff c0 e3 0
2 cf c0 e4 01 b2 2f c0 e2 9f c0 e4 01 b4 7f c0 e2 1f c0 e4 01 b8 7f c0 e3 03 ef c0 e4 01 c1 1f c0 e3 03 1f c0 e4 01 c8 2f c0 e3 04
1f c0 e4 01 ce 5f c0 e3 01 ef c0 e4 01 d1 bf c0 e3 02 cf c0 e4 01 d8 df c0 e3 02 ef c0 e4 01 dd 0f c0 e3 02 1f c0 e4 01 e3 bf c0
e3 03 9f c0 e4 01 eb 2f c0 e3 03 3f c0 e4 01 f1 df c0 e3 05 2f c0 e4 01 fa 6f c0 e2 3f c0 e4 01 fc 4f c0 e3 04 6f c0 e4 02 05 5f c
0 e3 08 cf c0 e4 02 13 df c0 cf c0 e4 02 18 7f c0 e3 03 bf c0 e4 02 1f af c0 e2 1f c0 e4 02 21 6f c0 e3 09 3f c0 e2 1f c0 df c0 e3
03 1f c0 e2 0f c0 e3 12 9f c0 cf c0 e3 1a 7f c0 cf c0 e3 97 5f c0 e2 2f c0 e3 b3 df c0 e2 1f c0 e3 df 7f c0 e2 1f c0 e3 e6 1f c0
e2 3f c0 e4 01 0d bf c0 e2 3f c0 e4 01 13 bf c0 e2 4f c0 e4 01 22 2f c0 e2 3f c0 e4 01 2b 8f c0 e2 4f c0 e4 01 3b 4f c0 e3 01 0f c
0 e4 01 3f 5f c0 e2 3f c0 e4 01 5d cf c0 e2 4f c0 e4 01 93 1f c0 e3 01 2f c0 e4 02 12 8f c0 e3 01 2f c0 80 81 e3 24 cb f7 e4 02 2c
df c0 00 00 00 00 c5 b1 65 6e 63 72 79 70 74 69 6f 6e 3d 28 6b 65 79 69 64 3d 2c 6e 61 6d 65 3d 29 2c 62 6c 6f 63 6b 5f 6d 65 74
61 64 61 74 61 5f 65 6e 63 72 79 70 74 65 64 3d 66 61 6c 73 65 2c 62 6c 6f 63 6b 5f 6d 65 74 61 64 61 74 61 3d 5b 61 63 63 65 73 7
3 5f 70 61 74 74 65 72 6e 5f 68 69 6e 74 3d 6e 6f 6e 65 2c 61 6c 6c 6f 63 61 74 69 6f 6e 5f 73 69 7a 65 3d 34 4b 42 2c 61 70 70 5f
6d 65 74 61 64 61 74 61 3d 2c 61 73 73 65 72 74 3d 28 63 6f 6d 6d 69 74 5f 74 69 6d 65 73 74 61 6d 70 3d 6e 6f 6e 65 2c 64 75 72
61 62 6c 65 5f 74 69 6d 65 73 74 61 6d 70 3d 6e 6f 6e 65 2c 72 65 61 64 5f 74 69 6d 65 73 74 61 6d 70 3d 6e 6f 6e 65 2c 77 72 69 7
4 65 5f 74 69 6d 65 73 74 61 6d 70 3d 6f 66 66 29 2c 62 6c 6f 63 6b 5f 61 6c 6c 6f 63 61 74 69 6f 6e 3d 62 65 73 74 2c 62 6c 6f 63
6b 5f 63 6f 6d 70 72 65 73 73 6f 72 3d 73 6e 61 70 70 "}}}
mongo0-1 | {"t":{"$date":"2024-02-16T13:55:27.107+00:00"},"s":"E", "c":"WT", "id":22435, "ctx":"initandlisten","msg":
"WiredTiger error message","attr":{"error":0,"message":{"ts_sec":1708091727,"ts_usec":107076,"thread":"1:0xffff96990040","session

dhandle_name":"file:WiredTigerHS.wt","session_name":"hs_access","category":"WT_VERB_DEFAULT","category_id":9,"verbose_level":"ERRO
R","verbose_level_id":-3,"msg":"_wt_bm_corrupt_dump:77:{0: 958464, 4096, 0xfb403010}: (chunk 2 of 4): 79 2c 63 61 63 68 65 5f 72
65 73 69 64 65 6e 74 3d 66 61 6c 73 65 2c 63 68 65 63 6b 73 75 6d 3d 6f 6e 2c 63 6f 6c 6c 61 74 6f 72 3d 2c 63 6f 6c 75 6d 6e 73 3
d 2c 64 69 63 74 69 6f 6e 61 72 79 3d 30 2c 65 6e 63 72 79 70 74 69 6f 6e 3d 28 6b 65 79 69 64 3d 2c 6e 61 6d 65 3d 29 2c 66 6f 72
6d 61 74 3d 62 74 72 65 65 2c 68 75 66 66 6d 61 6e 5f 6b 65 79 3d 2c 68 75 66 66 6d 61 6e 5f 76 61 6c 75 65 3d 2c 69 64 3d 31 2c
69 67 6e 6f 72 65 5f 69 6e 5f 6d 65 6d 6f 72 79 5f 63 61 63 68 65 5f 73 69 7a 65 3d 66 61 6c 73 65 2c 69 6e 74 65 72 6e 61 6c 5f 6
9 74 65 6d 5f 6d 61 78 3d 30 2c 69 6e 74 65 72 6e 61 6c 5f 6b 65 79 5f 6d 61 78 3d 30 2c 69 6e 74 65 72 6e 61 6c 5f 6b 65 79 5f 74
72 75 6e 63 61 74 65 3d 74 72 75 65 2c 69 6e 74 65 72 6e 61 6c 5f 70 61 67 65 5f 6d 61 78 3d 31 36 4b 42 2c 6b 65 79 5f 66 6f 72
6d 61 74 3d 49 75 51 51 2c 6b 65 79 5f 67 61 70 3d 31 30 2c 6c 65 61 66 5f 69 74 65 6d 5f 6d 61 78 3d 30 2c 6c 65 61 66 5f 6b 65 7
9 5f 6d 61 78 3d 30 2c 6c 65 61 66 5f 70 61 67 65 5f 6d 61 78 3d 33 32 4b 42 2c 6c 65 61 66 5f 76 61 6c 75 65 5f 6d 61 78 3d 36 34
4d 42 2c 6c 6f 67 3d 28 65 6e 61 62 6c 65 64 3d 74 72 75 65 29 2c 6d 65 6d 6f 72 79 5f 70 61 67 65 5f 69 6d 61 67 65 5f 6d 61 78
3d 30 2c 6d 65 6d 6f 72 79 5f 70 61 67 65 5f 6d 61 78 3d 35 4d 42 2c 6f 73 5f 63 61 63 68 65 5f 64 69 72 74 79 5f 6d 61 78 3d 30 2
c 6f 73 5f 63 61 63 68 65 5f 6d 61 78 3d 30 2c 70 72 65 66 69 78 5f 63 6f 6d 70 72 65 73 73 69 6f 6e 3d 66 61 6c 73 65 2c 70 72 65
66 69 78 5f 63 6f 6d 70 72 65 73 73 69 6f 6e 5f 6d 69 6e 3d 34 2c 72 65 61 64 6f 6e 6c 79 3d 66 61 6c 73 65 2c 73 70 6c 69 74 5f
64 65 65 70 65 6e 5f 6d 69 6e 5f 63 68 69 6c 64 3d 30 2c 73 70 6c 69 74 5f 64 65 65 70 65 6e 5f 70 65 72 5f 63 68 69 6c 64 3d 30 2
c 73 70 6c 69 74 5f 70 63 74 3d 39 30 2c 74 69 65 72 65 64 5f 6f 62 6a 65 63 74 3d 66 61 6c 73 65 2c 74 69 65 72 65 64 5f 73 74 6f
72 61 67 65 3d 28 61 75 74 68 5f 74 6f 6b 65 6e 3d 2c 62 75 63 6b 65 74 3d 2c 62 75 63 6b 65 74 5f 70 72 65 66 69 78 3d 2c 63 61
63 68 65 5f 64 69 72 65 63 74 6f 72 79 3d 2c 6c 6f 63 61 6c 5f 72 65 74 65 6e 74 69 6f 6e 3d 33 30 30 2c 6e 61 6d 65 3d 2c 6f 62 6
a 65 63 74 5f 74 61 72 67 65 74 5f 73 69 7a 65 3d 30 29 2c 76 61 6c 75 65 5f 66 6f 72 6d 61 74 3d 51 51 51 75 2c 76 65 72 62 6f 73
65 3d 5b 5d 2c 76 65 72 73 69 6f 6e 3d 28 6d 61 6a 6f 72 3d 31 2c 6d 69 6e 6f 72 3d 31 29 2c 77 72 69 74 65 5f 74 69 6d 65 73 74
61 6d 70 5f 75 73 61 67 65 3d 6e 6f 6e 65 2c 63 68 65 63 6b 70 6f 69 6e 74 3d 28 57 69 72 65 64 54 69 67 65 72 43 68 65 63 6b 70 6
f 69 6e 74 2e 32 37 30 35 37 3d 28 61 64 64 72 3d 22 30 31 38 33 38 31 65 34 32 65 31 33 62 30 30 62 38 34 38 31 65 34 64 31 64 65
36 39 31 62 63 30 65 62 38 31 65 34 32 32 38 64 33 64 36 64 38 30 38 30 38 30 65 34 30 32 32 63 64 66 63 30 65 34 30 31 63 36 66
66 63 30 22 2c 6f 72 64 65 72 3d 32 37 30 35 37 2c 74 69 6d 65 3d 31 37 30 38 31 37 32 37 39 30 2c 73 69 7a 65 3d 32 39 38 33 31 3
1 36 38 2c 6e 65 77 65 73 74 5f 73 74 61 72 74 5f 64 75 72 61 62 6c 65 5f 74 73 3d 37 33 33 36 35 34 36 33 34 31 39 38 33 32 38 30
32 32 37 2c 6f 6c 64 65 73 74 5f 73 74 61 72 74 5f 74 "}}}
mongo0-1 | {"t":{"$date":"2024-02-16T13:55:27.107+00:00"},"s":"E", "c":"WT", "id":22435, "ctx":"initandlisten","msg":
"WiredTiger error message","attr":{"error":0,"message":{"ts_sec":1708091727,"ts_usec":107641,"thread":"1:0xffff96990040","session

dhandle_name":"file:WiredTigerHS.wt","session_name":"hs_access","category":"WT_VERB_DEFAULT","category_id":9,"verbose_level":"ERRO
R","verbose_level_id":-3,"msg":"_wt_bm_corrupt_dump:77:{0: 958464, 4096, 0xfb403010}: (chunk 3 of 4): 73 3d 30 2c 6e 65 77 65 73
74 5f 74 78 6e 3d 34 31 34 30 37 2c 6e 65 77 65 73 74 5f 73 74 6f 70 5f 64 75 72 61 62 6c 65 5f 74 73 3d 37 33 33 36 35 34 36 33 3
4 31 39 38 33 32 38 30 32 32 38 2c 6e 65 77 65 73 74 5f 73 74 6f 70 5f 74 73 3d 37 33 33 36 35 34 36 33 34 31 39 38 33 32 38 30 32
32 38 2c 6e 65 77 65 73 74 5f 73 74 6f 70 5f 74 78 6e 3d 34 31 34 30 37 2c 70 72 65 70 61 72 65 3d 30 2c 77 72 69 74 65 5f 67 65
6e 3d 32 34 31 39 37 34 33 2c 72 75 6e 5f 77 72 69 74 65 5f 67 65 6e 3d 32 34 31 39 36 35 38 29 29 2c 63 68 65 63 6b 70 6f 69 6e 7
4 5f 62 61 63 6b 75 70 5f 69 6e 66 6f 3d 2c 63 68 65 63 6b 70 6f 69 6e 74 5f 6c 73 6e 3d 28 32 33 31 39 2c 36 39 38 33 31 36 38 29
5d c1 3e 63 68 65 63 6b 70 6f 69 6e 74 3d 28 57 69 72 65 64 54 69 67 65 72 43 68 65 63 6b 70 6f 69 6e 74 2e 32 37 30 35 38 3d 28
61 64 64 72 3d 22 30 31 39 64 38 31 65 34 32 64 34 64 65 35 33 37 39 65 38 31 65 34 36 66 37 31 38 30 30 39 38 30 38 30 38 30 38 3
0 38 30 38 30 65 34 30 32 32 63 64 66 63 30 65 34 30 31 63 37 30 66 63 30 22 2c 6f 72 64 65 72 3d 32 37 30 35 38 2c 74 69 6d 65 3d
31 37 30 38 31 37 32 37 39 30 2c 73 69 7a 65 3d 32 39 38 33 35 32 36 34 2c 6e 65 77 65 73 74 5f 73 74 61 72 74 5f 64 75 72 61 62
6c 65 5f 74 73 3d 37 33 33 36 35 34 36 33 34 31 39 38 33 32 38 30 33 31 34 2c 6f 6c 64 65 73 74 5f 73 74 61 72 74 5f 74 73 3d 30 2
c 6e 65 77 65 73 74 5f 74 78 6e 3d 34 31 35 35 38 2c 6e 65 77 65 73 74 5f 73 74 6f 70 5f 64 75 72 61 62 6c 65 5f 74 73 3d 37 33 33
36 35 34 36 33 34 31 39 38 33 32 38 30 33 31 35 2c 6e 65 77 65 73 74 5f 73 74 6f 70 5f 74 73 3d 37 33 33 36 35 34 36 33 34 31 39
38 33 32 38 30 33 31 35 2c 6e 65 77 65 73 74 5f 73 74 6f 70 5f 74 78 6e 3d 34 31 35 35 38 2c 70 72 65 70 61 72 65 3d 30 2c 77 72 6
9 74 65 5f 67 65 6e 3d 32 34 31 39 37 36 36 2c 72 75 6e 5f 77 72 69 74 65 5f 67 65 6e 3d 32 34 31 39 36 35 38 29 29 9f 01 9d 81 e4
2d 4d e5 37 9e 81 e4 6f 71 80 09 80 80 80 80 80 80 e4 02 2c df c0 e4 01 c7 0f c0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0
0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0
0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0
0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 "}}}
mongo0-1 | {"t":{"$date":"2024-02-16T13:55:27.108+00:00"},"s":"E", "c":"WT", "id":22435, "ctx":"initandlisten","msg":
"WiredTiger error message","attr":{"error":0,"message":{"ts_sec":1708091727,"ts_usec":108189,"thread":"1:0xffff96990040","session

dhandle_name":"file:WiredTigerHS.wt","session_name":"hs_access","category":"WT_VERB_DEFAULT","category_id":9,"verbose_level":"ERRO
R","verbose_level_id":-3,"msg":"__wt_bm_corrupt_dump:77:{0: 958464, 4096, 0xfb403010}: (chunk 4 of 4): 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0
0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0
0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0
0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0
0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0
0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0
0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0
0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0
0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 "}}}
mongo0-1 | {"t":{"$date":"2024-02-16T13:55:27.108+00:00"},"s":"E", "c":"WT", "id":22435, "ctx":"initandlisten","msg":
"WiredTiger error message","attr":{"error":-31802,"message":{"ts_sec":1708091727,"ts_usec":108503,"thread":"1:0xffff96990040","ses
sion_dhandle_name":"file:WiredTigerHS.wt","session_name":"hs_access","category":"WT_VERB_DEFAULT","category_id":9,"verbose_level":
"ERROR","verbose_level_id":-3,"msg":"__wt_block_read_off:235:WiredTigerHS.wt: fatal read error","error_str":"WT_ERROR: non-specifi
c WiredTiger error","error_code":-31802}}}
mongo0-1 | {"t":{"$date":"2024-02-16T13:55:27.108+00:00"},"s":"E", "c":"WT", "id":22435, "ctx":"initandlisten","msg":
"WiredTiger error message","attr":{"error":-31804,"message":{"ts_sec":1708091727,"ts_usec":108586,"thread":"1:0xffff96990040","ses
sion_dhandle_name":"file:WiredTigerHS.wt","session_name":"hs_access","category":"WT_VERB_DEFAULT","category_id":9,"verbose_level":
"ERROR","verbose_level_id":-3,"msg":"__wt_block_read_off:235:the process must exit and restart","error_str":"WT_PANIC: WiredTiger
library panic","error_code":-31804}}}
mongo0-1 | {"t":{"$date":"2024-02-16T13:55:27.109+00:00"},"s":"E", "c":"WT", "id":22435, "ctx":"initandlisten","msg":
"WiredTiger error message","attr":{"error":-31804,"message":{"ts_sec":1708091727,"ts_usec":108969,"thread":"1:0xffff96990040","ses
sion_name":"txn-recover","category":"WT_VERB_DEFAULT","category_id":9,"verbose_level":"ERROR","verbose_level_id":-3,"msg":"_wt_tx
n_recover:1159:Recovery failed","error_str":"WT_PANIC: WiredTiger library panic","error_code":-31804}}}
mongo0-1 | {"t":{"$date":"2024-02-16T13:55:27.110+00:00"},"s":"E", "c":"WT", "id":22435, "ctx":"initandlisten","msg":
"WiredTiger error message","attr":{"error":0,"message":{"ts_sec":1708091727,"ts_usec":110490,"thread":"1:0xffff96990040","session

name":"connection","category":"WT_VERB_DEFAULT","category_id":9,"verbose_level":"ERROR","verbose_level_id":-3,"msg":"_wt_cache_de
stroy:373:cache server: exiting with 7 pages in memory and 0 pages evicted"}}}
mongo0-1 | {"t":{"$date":"2024-02-16T13:55:27.110+00:00"},"s":"E", "c":"WT", "id":22435, "ctx":"initandlisten","msg":
"WiredTiger error message","attr":{"error":0,"message":{"ts_sec":1708091727,"ts_usec":110653,"thread":"1:0xffff96990040","session

name":"connection","category":"WT_VERB_DEFAULT","category_id":9,"verbose_level":"ERROR","verbose_level_id":-3,"msg":"_wt_cache_de
stroy:376:cache server: exiting with 169369 image bytes in memory"}}}
mongo0-1 | {"t":{"$date":"2024-02-16T13:55:27.110+00:00"},"s":"E", "c":"WT", "id":22435, "ctx":"initandlisten","msg":
"WiredTiger error message","attr":{"error":0,"message":{"ts_sec":1708091727,"ts_usec":110727,"thread":"1:0xffff96990040","session

name":"connection","category":"WT_VERB_DEFAULT","category_id":9,"verbose_level":"ERROR","verbose_level_id":-3,"msg":"_wt_cache_de
stroy:379:cache server: exiting with 193177 bytes in memory"}}}
mongo0-1 | {"t":{"$date":"2024-02-16T13:55:27.110+00:00"},"s":"E", "c":"WT", "id":22435, "ctx":"initandlisten","msg":
"WiredTiger error message","attr":{"error":0,"message":{"ts_sec":1708091727,"ts_usec":110790,"thread":"1:0xffff96990040","session

name":"connection","category":"WT_VERB_DEFAULT","category_id":9,"verbose_level":"ERROR","verbose_level_id":-3,"msg":"_wt_cache_de
stroy:385:cache server: exiting with 143537 bytes dirty and 4 pages dirty"}}}
server-1 exited with code 0
mongo0-1 | {"t":{"$date":"2024-02-16T13:55:27.112+00:00"},"s":"W", "c":"STORAGE", "id":22347, "ctx":"initandlisten","msg":
"Failed to start up WiredTiger under any compatibility version. This may be due to an unsupported upgrade or downgrade."}
mongo0-1 | {"t":{"$date":"2024-02-16T13:55:27.112+00:00"},"s":"W", "c":"STORAGE", "id":22348, "ctx":"initandlisten","msg":
"WiredTiger metadata corruption detected"}
mongo0-1 | {"t":{"$date":"2024-02-16T13:55:27.112+00:00"},"s":"W", "c":"STORAGE", "id":22349, "ctx":"initandlisten","msg":
"Attempting to salvage WiredTiger metadata"}
mongo0-1 | {"t":{"$date":"2024-02-16T13:55:27.174+00:00"},"s":"E", "c":"WT", "id":22435, "ctx":"initandlisten","msg":
"WiredTiger error message","attr":{"error":0,"message":{"ts_sec":1708091727,"ts_usec":173900,"thread":"1:0xffff96990040","session

dhandle_name":"file:WiredTigerHS.wt","session_name":"hs_access","category":"WT_VERB_DEFAULT","category_id":9,"verbose_level":"ERRO
R","verbose_level_id":-3,"msg":"_wt_block_read_off:226:WiredTigerHS.wt: potential hardware corruption, read checksum error for 40
96B block at offset 958464: block header checksum of 0xe92fa05e doesn't match expected checksum of 0xfb403010"}}}
mongo0-1 | {"t":{"$date":"2024-02-16T13:55:27.174+00:00"},"s":"E", "c":"WT", "id":22435, "ctx":"initandlisten","msg":
"WiredTiger error message","attr":{"error":0,"message":{"ts_sec":1708091727,"ts_usec":174341,"thread":"1:0xffff96990040","session

dhandle_name":"file:WiredTigerHS.wt","session_name":"hs_access","category":"WT_VERB_DEFAULT","category_id":9,"verbose_level":"ERRO
R","verbose_level_id":-3,"msg":"_wt_bm_corrupt_dump:77:{0: 958464, 4096, 0xfb403010}: (chunk 1 of 4): 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 e3 02 00 00 bb 02 00 00 01 00 00 01 00 10 00 00 5e a0 2f e9 01 00 00 00 e2 f5 1a 80 e3 0e 7f c0 cf c0 e3 12 a
f c0 cf c0 e3 1b 3f c0 cf c0 e3 25 9f c0 cf c0 e3 39 9f c0 cf c0 e3 55 7f c0 df c0 e3 64 1f c0 cf c0 e3 66 6f c0 cf c0 e3 6d 1f c0
cf c0 e3 7f 9f c0 df c0 e3 89 6f c0 cf c0 e3 9e 7f c0 cf c0 e3 a9 cf c0 e2 0f c0 e3 ac ff c0 df c0 e3 bd 4f c0 cf c0 e3 c7 2f c0
cf c0 e3 c7 9f c0 cf c0 e3 c9 2f c0 df c0 e3 eb 0f c0 cf c0 e3 ec ef c0 cf c0 e3 ed 7f c0 df c0 e3 f4 df c0 e2 0f c0 e4 01 03 cf c
0 cf c0 e4 01 04 9f c0 df c0 e4 01 08 df c0 cf c0 e4 01 14 2f c0 cf c0 e4 01 15 cf c0 e3 02 6f c0 e4 01 1e 6f c0 e3 02 7f c0 e4 01
23 af c0 e3 01 ff c0 e4 01 27 0f c0 e2 1f c0 e4 01 30 1f c0 e2 1f c0 e4 01 34 ff c0 e2 1f c0 e4 01 3c ef c0 cf c0 e4 01 44 af c0
e2 2f c0 e4 01 46 1f c0 cf c0 e4 01 48 ef c0 e2 2f c0 e4 01 49 9f c0 e2 2f c0 e4 01 4c 4f c0 e2 1f c0 e4 01 4d bf c0 e2 0f c0 e4 0
1 58 9f c0 cf c0 e4 01 59 4f c0 cf c0 e4 01 5b ff c0 e2 0f c0 e4 01 61 ff c0 e2 1f c0 e4 01 68 8f c0 e2 0f c0 e4 01 6f 2f c0 cf c0
e4 01 72 bf c0 df c0 e4 01 7d 3f c0 cf c0 e4 01 7f 8f c0 e3 02 bf c0 e4 01 86 6f c0 e3 03 5f c0 e4 01 8c 5f c0 e3 04 1f c0 e4 01
94 6f c0 df c0 e4 01 9a 7f c0 df c0 e4 01 9b 0f c0 e2 0f c0 e4 01 a0 2f c0 e3 03 df c0 e4 01 a7 6f c0 e2 0f c0 e4 01 aa ff c0 e3 0
2 cf c0 e4 01 b2 2f c0 e2 9f c0 e4 01 b4 7f c0 e2 1f c0 e4 01 b8 7f c0 e3 03 ef c0 e4 01 c1 1f c0 e3 03 1f c0 e4 01 c8 2f c0 e3 04
1f c0 e4 01 ce 5f c0 e3 01 ef c0 e4 01 d1 bf c0 e3 02 cf c0 e4 01 d8 df c0 e3 02 ef c0 e4 01 dd 0f c0 e3 02 1f c0 e4 01 e3 bf c0
e3 03 9f c0 e4 01 eb 2f c0 e3 03 3f c0 e4 01 f1 df c0 e3 05 2f c0 e4 01 fa 6f c0 e2 3f c0 e4 01 fc 4f c0 e3 04 6f c0 e4 02 05 5f c
0 e3 08 cf c0 e4 02 13 df c0 cf c0 e4 02 18 7f c0 e3 03 bf c0 e4 02 1f af c0 e2 1f c0 e4 02 21 6f c0 e3 09 3f c0 e2 1f c0 df c0 e3
03 1f c0 e2 0f c0 e3 12 9f c0 cf c0 e3 1a 7f c0 cf c0 e3 97 5f c0 e2 2f c0 e3 b3 df c0 e2 1f c0 e3 df 7f c0 e2 1f c0 e3 e6 1f c0
e2 3f c0 e4 01 0d bf c0 e2 3f c0 e4 01 13 bf c0 e2 4f c0 e4 01 22 2f c0 e2 3f c0 e4 01 2b 8f c0 e2 4f c0 e4 01 3b 4f c0 e3 01 0f c
0 e4 01 3f 5f c0 e2 3f c0 e4 01 5d cf c0 e2 4f c0 e4 01 93 1f c0 e3 01 2f c0 e4 02 12 8f c0 e3 01 2f c0 80 81 e3 24 cb f7 e4 02 2c
df c0 00 00 00 00 c5 b1 65 6e 63 72 79 70 74 69 6f 6e 3d 28 6b 65 79 69 64 3d 2c 6e 61 6d 65 3d 29 2c 62 6c 6f 63 6b 5f 6d 65 74
61 64 61 74 61 5f 65 6e 63 72 79 70 74 65 64 3d 66 61 6c 73 65 2c 62 6c 6f 63 6b 5f 6d 65 74 61 64 61 74 61 3d 5b 61 63 63 65 73 7
3 5f 70 61 74 74 65 72 6e 5f 68 69 6e 74 3d 6e 6f 6e 65 2c 61 6c 6c 6f 63 61 74 69 6f 6e 5f 73 69 7a 65 3d 34 4b 42 2c 61 70 70 5f
6d 65 74 61 64 61 74 61 3d 2c 61 73 73 65 72 74 3d 28 63 6f 6d 6d 69 74 5f 74 69 6d 65 73 74 61 6d 70 3d 6e 6f 6e 65 2c 64 75 72
61 62 6c 65 5f 74 69 6d 65 73 74 61 6d 70 3d 6e 6f 6e 65 2c 72 65 61 64 5f 74 69 6d 65 73 74 61 6d 70 3d 6e 6f 6e 65 2c 77 72 69 7
4 65 5f 74 69 6d 65 73 74 61 6d 70 3d 6f 66 66 29 2c 62 6c 6f 63 6b 5f 61 6c 6c 6f 63 61 74 69 6f 6e 3d 62 65 73 74 2c 62 6c 6f 63
6b 5f 63 6f 6d 70 72 65 73 73 6f 72 3d 73 6e 61 70 70 "}}}
mongo0-1 | {"t":{"$date":"2024-02-16T13:55:27.175+00:00"},"s":"E", "c":"WT", "id":22435, "ctx":"initandlisten","msg":
"WiredTiger error message","attr":{"error":0,"message":{"ts_sec":1708091727,"ts_usec":174987,"thread":"1:0xffff96990040","session

dhandle_name":"file:WiredTigerHS.wt","session_name":"hs_access","category":"WT_VERB_DEFAULT","category_id":9,"verbose_level":"ERRO
R","verbose_level_id":-3,"msg":"_wt_bm_corrupt_dump:77:{0: 958464, 4096, 0xfb403010}: (chunk 2 of 4): 79 2c 63 61 63 68 65 5f 72
65 73 69 64 65 6e 74 3d 66 61 6c 73 65 2c 63 68 65 63 6b 73 75 6d 3d 6f 6e 2c 63 6f 6c 6c 61 74 6f 72 3d 2c 63 6f 6c 75 6d 6e 73 3
d 2c 64 69 63 74 69 6f 6e 61 72 79 3d 30 2c 65 6e 63 72 79 70 74 69 6f 6e 3d 28 6b 65 79 69 64 3d 2c 6e 61 6d 65 3d 29 2c 66 6f 72
6d 61 74 3d 62 74 72 65 65 2c 68 75 66 66 6d 61 6e 5f 6b 65 79 3d 2c 68 75 66 66 6d 61 6e 5f 76 61 6c 75 65 3d 2c 69 64 3d 31 2c
69 67 6e 6f 72 65 5f 69 6e 5f 6d 65 6d 6f 72 79 5f 63 61 63 68 65 5f 73 69 7a 65 3d 66 61 6c 73 65 2c 69 6e 74 65 72 6e 61 6c 5f 6
9 74 65 6d 5f 6d 61 78 3d 30 2c 69 6e 74 65 72 6e 61 6c 5f 6b 65 79 5f 6d 61 78 3d 30 2c 69 6e 74 65 72 6e 61 6c 5f 6b 65 79 5f 74
72 75 6e 63 61 74 65 3d 74 72 75 65 2c 69 6e 74 65 72 6e 61 6c 5f 70 61 67 65 5f 6d 61 78 3d 31 36 4b 42 2c 6b 65 79 5f 66 6f 72
6d 61 74 3d 49 75 51 51 2c 6b 65 79 5f 67 61 70 3d 31 30 2c 6c 65 61 66 5f 69 74 65 6d 5f 6d 61 78 3d 30 2c 6c 65 61 66 5f 6b 65 7
9 5f 6d 61 78 3d 30 2c 6c 65 61 66 5f 70 61 67 65 5f 6d 61 78 3d 33 32 4b 42 2c 6c 65 61 66 5f 76 61 6c 75 65 5f 6d 61 78 3d 36 34
4d 42 2c 6c 6f 67 3d 28 65 6e 61 62 6c 65 64 3d 74 72 75 65 29 2c 6d 65 6d 6f 72 79 5f 70 61 67 65 5f 69 6d 61 67 65 5f 6d 61 78
3d 30 2c 6d 65 6d 6f 72 79 5f 70 61 67 65 5f 6d 61 78 3d 35 4d 42 2c 6f 73 5f 63 61 63 68 65 5f 64 69 72 74 79 5f 6d 61 78 3d 30 2
c 6f 73 5f 63 61 63 68 65 5f 6d 61 78 3d 30 2c 70 72 65 66 69 78 5f 63 6f 6d 70 72 65 73 73 69 6f 6e 3d 66 61 6c 73 65 2c 70 72 65
66 69 78 5f 63 6f 6d 70 72 65 73 73 69 6f 6e 5f 6d 69 6e 3d 34 2c 72 65 61 64 6f 6e 6c 79 3d 66 61 6c 73 65 2c 73 70 6c 69 74 5f
64 65 65 70 65 6e 5f 6d 69 6e 5f 63 68 69 6c 64 3d 30 2c 73 70 6c 69 74 5f 64 65 65 70 65 6e 5f 70 65 72 5f 63 68 69 6c 64 3d 30 2
c 73 70 6c 69 74 5f 70 63 74 3d 39 30 2c 74 69 65 72 65 64 5f 6f 62 6a 65 63 74 3d 66 61 6c 73 65 2c 74 69 65 72 65 64 5f 73 74 6f
72 61 67 65 3d 28 61 75 74 68 5f 74 6f 6b 65 6e 3d 2c 62 75 63 6b 65 74 3d 2c 62 75 63 6b 65 74 5f 70 72 65 66 69 78 3d 2c 63 61
63 68 65 5f 64 69 72 65 63 74 6f 72 79 3d 2c 6c 6f 63 61 6c 5f 72 65 74 65 6e 74 69 6f 6e 3d 33 30 30 2c 6e 61 6d 65 3d 2c 6f 62 6
a 65 63 74 5f 74 61 72 67 65 74 5f 73 69 7a 65 3d 30 29 2c 76 61 6c 75 65 5f 66 6f 72 6d 61 74 3d 51 51 51 75 2c 76 65 72 62 6f 73
65 3d 5b 5d 2c 76 65 72 73 69 6f 6e 3d 28 6d 61 6a 6f 72 3d 31 2c 6d 69 6e 6f 72 3d 31 29 2c 77 72 69 74 65 5f 74 69 6d 65 73 74
61 6d 70 5f 75 73 61 67 65 3d 6e 6f 6e 65 2c 63 68 65 63 6b 70 6f 69 6e 74 3d 28 57 69 72 65 64 54 69 67 65 72 43 68 65 63 6b 70 6
f 69 6e 74 2e 32 37 30 35 37 3d 28 61 64 64 72 3d 22 30 31 38 33 38 31 65 34 32 65 31 33 62 30 30 62 38 34 38 31 65 34 64 31 64 65
36 39 31 62 63 30 65 62 38 31 65 34 32 32 38 64 33 64 36 64 38 30 38 30 38 30 65 34 30 32 32 63 64 66 63 30 65 34 30 31 63 36 66
66 63 30 22 2c 6f 72 64 65 72 3d 32 37 30 35 37 2c 74 69 6d 65 3d 31 37 30 38 31 37 32 37 39 30 2c 73 69 7a 65 3d 32 39 38 33 31 3
1 36 38 2c 6e 65 77 65 73 74 5f 73 74 61 72 74 5f 64 75 72 61 62 6c 65 5f 74 73 3d 37 33 33 36 35 34 36 33 34 31 39 38 33 32 38 30
32 32 37 2c 6f 6c 64 65 73 74 5f 73 74 61 72 74 5f 74 "}}}
mongo0-1 | {"t":{"$date":"2024-02-16T13:55:27.175+00:00"},"s":"E", "c":"WT", "id":22435, "ctx":"initandlisten","msg":
"WiredTiger error message","attr":{"error":0,"message":{"ts_sec":1708091727,"ts_usec":175554,"thread":"1:0xffff96990040","session

dhandle_name":"file:WiredTigerHS.wt","session_name":"hs_access","category":"WT_VERB_DEFAULT","category_id":9,"verbose_level":"ERRO
R","verbose_level_id":-3,"msg":"_wt_bm_corrupt_dump:77:{0: 958464, 4096, 0xfb403010}: (chunk 3 of 4): 73 3d 30 2c 6e 65 77 65 73
74 5f 74 78 6e 3d 34 31 34 30 37 2c 6e 65 77 65 73 74 5f 73 74 6f 70 5f 64 75 72 61 62 6c 65 5f 74 73 3d 37 33 33 36 35 34 36 33 3
4 31 39 38 33 32 38 30 32 32 38 2c 6e 65 77 65 73 74 5f 73 74 6f 70 5f 74 73 3d 37 33 33 36 35 34 36 33 34 31 39 38 33 32 38 30 32
32 38 2c 6e 65 77 65 73 74 5f 73 74 6f 70 5f 74 78 6e 3d 34 31 34 30 37 2c 70 72 65 70 61 72 65 3d 30 2c 77 72 69 74 65 5f 67 65
6e 3d 32 34 31 39 37 34 33 2c 72 75 6e 5f 77 72 69 74 65 5f 67 65 6e 3d 32 34 31 39 36 35 38 29 29 2c 63 68 65 63 6b 70 6f 69 6e 7
4 5f 62 61 63 6b 75 70 5f 69 6e 66 6f 3d 2c 63 68 65 63 6b 70 6f 69 6e 74 5f 6c 73 6e 3d 28 32 33 31 39 2c 36 39 38 33 31 36 38 29
5d c1 3e 63 68 65 63 6b 70 6f 69 6e 74 3d 28 57 69 72 65 64 54 69 67 65 72 43 68 65 63 6b 70 6f 69 6e 74 2e 32 37 30 35 38 3d 28
61 64 64 72 3d 22 30 31 39 64 38 31 65 34 32 64 34 64 65 35 33 37 39 65 38 31 65 34 36 66 37 31 38 30 30 39 38 30 38 30 38 30 38 3
0 38 30 38 30 65 34 30 32 32 63 64 66 63 30 65 34 30 31 63 37 30 66 63 30 22 2c 6f 72 64 65 72 3d 32 37 30 35 38 2c 74 69 6d 65 3d
31 37 30 38 31 37 32 37 39 30 2c 73 69 7a 65 3d 32 39 38 33 35 32 36 34 2c 6e 65 77 65 73 74 5f 73 74 61 72 74 5f 64 75 72 61 62
6c 65 5f 74 73 3d 37 33 33 36 35 34 36 33 34 31 39 38 33 32 38 30 33 31 34 2c 6f 6c 64 65 73 74 5f 73 74 61 72 74 5f 74 73 3d 30 2
c 6e 65 77 65 73 74 5f 74 78 6e 3d 34 31 35 35 38 2c 6e 65 77 65 73 74 5f 73 74 6f 70 5f 64 75 72 61 62 6c 65 5f 74 73 3d 37 33 33
36 35 34 36 33 34 31 39 38 33 32 38 30 33 31 35 2c 6e 65 77 65 73 74 5f 73 74 6f 70 5f 74 73 3d 37 33 33 36 35 34 36 33 34 31 39
38 33 32 38 30 33 31 35 2c 6e 65 77 65 73 74 5f 73 74 6f 70 5f 74 78 6e 3d 34 31 35 35 38 2c 70 72 65 70 61 72 65 3d 30 2c 77 72 6
9 74 65 5f 67 65 6e 3d 32 34 31 39 37 36 36 2c 72 75 6e 5f 77 72 69 74 65 5f 67 65 6e 3d 32 34 31 39 36 35 38 29 29 9f 01 9d 81 e4
2d 4d e5 37 9e 81 e4 6f 71 80 09 80 80 80 80 80 80 e4 02 2c df c0 e4 01 c7 0f c0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0
0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0
0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0
0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 "}}}
mongo0-1 | {"t":{"$date":"2024-02-16T13:55:27.176+00:00"},"s":"E", "c":"WT", "id":22435, "ctx":"initandlisten","msg":
"WiredTiger error message","attr":{"error":0,"message":{"ts_sec":1708091727,"ts_usec":176093,"thread":"1:0xffff96990040","session

dhandle_name":"file:WiredTigerHS.wt","session_name":"hs_access","category":"WT_VERB_DEFAULT","category_id":9,"verbose_level":"ERRO
R","verbose_level_id":-3,"msg":"__wt_bm_corrupt_dump:77:{0: 958464, 4096, 0xfb403010}: (chunk 4 of 4): 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0
0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0
0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0
0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0
0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0
0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0
0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0
0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0
0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 "}}}
mongo0-1 | {"t":{"$date":"2024-02-16T13:55:27.176+00:00"},"s":"E", "c":"WT", "id":22435, "ctx":"initandlisten","msg":
"WiredTiger error message","attr":{"error":-31802,"message":{"ts_sec":1708091727,"ts_usec":176854,"thread":"1:0xffff96990040","ses
sion_dhandle_name":"file:WiredTigerHS.wt","session_name":"hs_access","category":"WT_VERB_DEFAULT","category_id":9,"verbose_level":
"ERROR","verbose_level_id":-3,"msg":"__wt_block_read_off:235:WiredTigerHS.wt: fatal read error","error_str":"WT_ERROR: non-specifi
c WiredTiger error","error_code":-31802}}}
mongo0-1 | {"t":{"$date":"2024-02-16T13:55:27.177+00:00"},"s":"E", "c":"WT", "id":22435, "ctx":"initandlisten","msg":
"WiredTiger error message","attr":{"error":-31804,"message":{"ts_sec":1708091727,"ts_usec":176979,"thread":"1:0xffff96990040","ses
sion_dhandle_name":"file:WiredTigerHS.wt","session_name":"hs_access","category":"WT_VERB_DEFAULT","category_id":9,"verbose_level":
"ERROR","verbose_level_id":-3,"msg":"__wt_block_read_off:235:the process must exit and restart","error_str":"WT_PANIC: WiredTiger
library panic","error_code":-31804}}}
mongo0-1 | {"t":{"$date":"2024-02-16T13:55:27.177+00:00"},"s":"E", "c":"WT", "id":22435, "ctx":"initandlisten","msg":
"WiredTiger error message","attr":{"error":-31804,"message":{"ts_sec":1708091727,"ts_usec":177222,"thread":"1:0xffff96990040","ses
sion_name":"txn-recover","category":"WT_VERB_DEFAULT","category_id":9,"verbose_level":"ERROR","verbose_level_id":-3,"msg":"_wt_tx
n_recover:1159:Recovery failed","error_str":"WT_PANIC: WiredTiger library panic","error_code":-31804}}}
mongo0-1 | {"t":{"$date":"2024-02-16T13:55:27.178+00:00"},"s":"E", "c":"WT", "id":22435, "ctx":"initandlisten","msg":
"WiredTiger error message","attr":{"error":0,"message":{"ts_sec":1708091727,"ts_usec":178766,"thread":"1:0xffff96990040","session

name":"connection","category":"WT_VERB_DEFAULT","category_id":9,"verbose_level":"ERROR","verbose_level_id":-3,"msg":"_wt_cache_de
stroy:373:cache server: exiting with 19 pages in memory and 12 pages evicted"}}}
mongo0-1 | {"t":{"$date":"2024-02-16T13:55:27.178+00:00"},"s":"E", "c":"WT", "id":22435, "ctx":"initandlisten","msg":
"WiredTiger error message","attr":{"error":0,"message":{"ts_sec":1708091727,"ts_usec":178922,"thread":"1:0xffff96990040","session

name":"connection","category":"WT_VERB_DEFAULT","category_id":9,"verbose_level":"ERROR","verbose_level_id":-3,"msg":"_wt_cache_de
stroy:376:cache server: exiting with 169369 image bytes in memory"}}}
mongo0-1 | {"t":{"$date":"2024-02-16T13:55:27.179+00:00"},"s":"E", "c":"WT", "id":22435, "ctx":"initandlisten","msg":
"WiredTiger error message","attr":{"error":0,"message":{"ts_sec":1708091727,"ts_usec":178999,"thread":"1:0xffff96990040","session

name":"connection","category":"WT_VERB_DEFAULT","category_id":9,"verbose_level":"ERROR","verbose_level_id":-3,"msg":"_wt_cache_de
stroy:379:cache server: exiting with 193177 bytes in memory"}}}
mongo0-1 | {"t":{"$date":"2024-02-16T13:55:27.179+00:00"},"s":"E", "c":"WT", "id":22435, "ctx":"initandlisten","msg":
"WiredTiger error message","attr":{"error":0,"message":{"ts_sec":1708091727,"ts_usec":179094,"thread":"1:0xffff96990040","session

name":"connection","category":"WT_VERB_DEFAULT","category_id":9,"verbose_level":"ERROR","verbose_level_id":-3,"msg":"__wt_cache_de
stroy:385:cache server: exiting with 143537 bytes dirty and 4 pages dirty"}}}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment