Code Monkey home page Code Monkey logo

stack's Introduction

ps2alerts-stack

Ansible Linter Yaml Linter

Powers the central services required to run the following projects:

If you wish to contribute, please join our Discord located at: https://discord.gg/7xF65ap

Getting Started

The PS2Alerts project utilises Kubernetes for its deployment and containerisation solution. It matches current infrastructure, and it solves a TON of headaches when it comes to getting code out to the world. Particularly SSL certificates. Fuck SSL certificate management. Locally however, for the sake of lowering local dev environment complexity and "things doing weird stuff" we're using Ansible to provision and maintain the local development environment. It will install not only the services required to run the application, but also a set of standardized commands shared across all developers.

Linux Debian and Mac OSX Catalina are the only supported operating systems for development. It can be done in Windows, but it's a hassle. If you feel the need to develop on Windows, WSL2 will be much easier to set up. Mac OSX does work with homebrew filling some gaps. Windows is not officially supported.

WSL setup guide

If you use windows
  1. Install using Powershell with admin rights enter: ย wsl --install
  2. Restart and ubuntu will be available as an app or in the windows terminal
  3. When you first start ubuntu you will have to choose your username and password(this is your sudo password)
  4. To check WSL version type wsl -l -v in powershell
  5. For Docker you can install windows version and then have that be integrated with WSL by ticking this checkbox and applying wsl intergration in settings WSL image Install ansible as given from the requirements and mongodb compass if you are working with data.
  6. Then add these to your hosts file to get to your markdown paste this c:\Windows\System32\Drivers\etc\hosts into explorer
127.0.0.1 dev.api.ps2alerts.com
127.0.0.1 dev.router.ps2alerts.com
127.0.0.1 dev.ps2alerts.com
127.0.0.1 dev.aggregator.ps2alerts.com
127.0.0.1 dev.aggregator-ps4eu.ps2alerts.com
127.0.0.1 dev.aggregator-ps4us.ps2alerts.com
  1. To ensure that the project will run properly NVM install here then type nvm install --lts for a long term support version of node.js Use this to get yarn via npm install --global yarn Then yarn install in all of the repos that you cloned to ensure that you have the files necessary. Then in the stack you can run ps2alerts-init Followed by ps2alerts-website-init for the first time And then ps2alerts-website-dev when you run this project again in the future
  2. Checking the site is working Go to http://localhost:8080 to check that traefik is showing the services are running properly Then dev.ps2alerts.com and you will get a https warning but you can click on advanced on Firefox/edge and continue. Note due to not having ssl you won't have any data but you can see that the site itself is working.
  3. To get https follow the Generating SSL Certificates steps.

Requirements

Installation

Ensure you have git cloned all 4 projects in the organisation down to your local machine. You need to have them all as siblings, e.g:

/path/to/your/code/folder/ps2alerts
-- aggregator
-- api
-- stack
-- website

Run command ansible-playbook init.yml -K and provide your sudo password. Ansible will ensure you have the correct commands etc.

Houston, we are a go! ๐Ÿš€

Simply execute ps2alerts-init in your terminal to begin! This will go off to each project and install all it's dependencies for each project. Grab a snickers and once it's done, we're good to go.

Once the project has fully initialized, you can start the project from now on using ps2alerts-start!

We have designed the API project to initialize the database for you. See "How to get data collection going" section below.

Adding certificates for local dev HTTPS access

If you want to access the dev environment over HTTPS (Say, because Chrome forces it and the main domain uses HSTS), you'll need to follow some additional steps:

Click to expand certificate instructions

The following instructions are based on Mac (alternatives for Linux are listed). YMMV without Mac.

  1. The certificates must be generated and placed in the ~/ps2alerts/certs directory. To generate local self-signed certs, we're going to use mkcert. Visit here for more context.
    • cd ~/ps2alerts/certs
    • brew install mkcert nss (nss is for Firefox, you can omit it if you don't use Firefox). Further install methods
    • mkcert -install (this will install the root certificate into your system, you will be prompted for your user password)
    • mkcert -cert-file dev.ps2alerts.com.pem -key-file dev.ps2alerts.com-key.pem dev.ps2alerts.com dev.api.ps2alerts.com dev.aggregator.ps2alerts.com dev.aggregator-ps4eu.ps2alerts.com dev.aggregator-ps4us.ps2alerts.com
  2. Restart the stack with ps2alerts-stack-restart if you're already running it and start it again with ps2alerts-stack-start to apply the rest of the certificate changes.

How to get data collection going

  1. ps2alerts-start
  2. ps2alerts-aggregator-msg
  3. Choose an open continent etc
  4. Open rabbit or run ps2alerts-aggregator-msg and see it doing things
  5. Now you have data!

Connecting to Mongodb

We are using MongoDB as our data document storage solution. In order to connect to Mongo for local development work, open up the Mongo Compass client and put the following in the connection string:

mongodb://root:foobar@localhost:27017

RabbitMQ

The project utilises RabbitMQ (MQs 101) for both storage of incoming data to be consumed by the API, and for administration of the aggregator. Once you have started the stack, you can access the dev environment version of RabbitMQ by going to the following URL:

http://localhost:15672/#/

Using credentials: guest | guest

There, you can see the channels and queues created by us, and is provisioned via the Ansible script. We are currently creating an exchange (for future purposes) but are directly asserting and binding queues in our applications for now. On local dev, we don't use a vhost, on production we do as it's a shared service.

Below describes our queue topics:

  • aggregatorAdmin- - Administrative messages manually triggered by developers, e.g. instance metagame start 10 8 to start a metagame instance on Miller, Esamir. To inject messages into your local environment, run ps2alerts-aggregator-msg.
  • api-queue- - Messages to be consumed by the API and persisted, one queue per environment
  • api-queue-delay-46min- - In order to figure out brackets, all GlobalAggregator messages must be delayed until the end of the alert, this is the 46 minute alert version.
  • api-queue-delay-91min- - Ditto - 91 minute version

Rabbit won't start

Chances are Rabbit is toppling due to a massive message backlog. To fix this, simply wipe the data partition for Rabbit's volume in Docker. On Mac, this is rm -rf ~/ps2alerts/mq/*, should be similar for linux. Restart Rabbit.

Grafana

We use grafana to monitor metrics from within the applications.

Development lifecycle

  1. Create / update dashboards, alerts and other matters on Grafana.
    1. NOTE: If you plan to edit alerts, you should be aware that Alert provisioning in Grafana is currently quite tedious. You are able to use the file provisioner to create the alerts, however after they are created you cannot edit them without copying them first. Unfortunately, this will mean you have two versions of the same alert (with one of them slightly tweaked).
    2. You will also need to export the alerts to the YML file and replace your new alert with the old one then commit that corrected file.
    3. It is recommended you do the following:
      1. Provision the usual set of alerts by uncommenting the line in start-dev.yml.
      2. Create a copy of your alert
      3. Edit the alert
      4. Export the alert list
      5. Merge the alert into the alerts.yml under monitoring/provisioning/alerting/alerts.yml
      6. Delete your "new" alert
      7. Restart the grafana container
      8. If you're finding that the alerts are being duplicated, you need to blow away your grafana instance. sudo rm -rf ~/ps2alerts/monitoring/grafana && docker restart ps2alerts-grafana
      9. This is not ideal, but unfortunately it is the faff that presents itself with grafana alerts right now.
    4. Alternatively, you may wish to simply create the alert you have in question and merge that with the alerts.yml. This will mean you don't have all alerts, but at least you won't have alerts you cannot control.
  2. Export Dashboards / Alerts to their JSON models
    1. Dashboards
      1. Go to the dashboard's settings and look under JSON model. Copy and paste this model to monitoring/lib/dashboards/<folder>/<dashboard>.json
    2. Alerts
      1. Go to the alert settings, click on Export, save the file to monitoring/provisioning/alerting/alerts.yml
  3. Commit these files

Deployment

Deployment is currently manually done by Maelstromeous. Upon merge into master, run ./sync-to-ceres.sh

stack's People

Contributors

maelstromeous avatar oslohes123 avatar ryanjsims avatar zhenghung avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

Forkers

ryanjsims

stack's Issues

Ansible deprecation warning for docker_container vs docker networks

When starting the dev environment (probably other environments too) there is a deprecation warning for Ansible about docker network behavior changing in Ansible 2.12, may or may not actually be a problem but its something that needs research.

image

[DEPRECATION WARNING]: Please note that docker_container handles networks slightly different than docker CLI. 
If you specify networks, the default network will still be attached as the first network. (You can specify 
purge_networks to remove all networks not explicitly listed.) This behavior will change in Ansible 2.12. You 
can change the behavior now by setting the new `networks_cli_compatible` option to `yes`, and remove this 
warning by setting it to `no`. This feature will be removed in version 2.12. Deprecation warnings can be 
disabled by setting deprecation_warnings=False in ansible.cfg.

RabbitMQ pod is randomly dying

For some reason today RabbitMQ has restarted multiple times, causing the PS2Alerts app to also restart lot. This may explain sometimes the sudden 3-7 restart rises I see in the monitoring.

Settle on hosting solution

Currently the solution will be hosted on my personal K8s Digital Ocean cluster. Need to decide if that's the best thing for the project, or whether we should seek another solution e.g. handcrafted / frameworked K8s cluster on cheaper infrastructure e.g. Contabo, OVH etc.

I will note however, since we're using a Digital Ocean managed K8s cluster at the moment, a ton of headaches are taken away from us e.g. backplane management, load balancers, disk provisioning etc.

Transition away from Digital Ocean

Digital Ocean's VPSs are hella expensive, and they occasionally have wonky DNS servers. Transition the project away from the DO k8s cluster to my own cluster on Contabo.

Create CD Pipeline

Currently the application is manually deployed, by me, via ansible playbooks. Now we're in a multi-developer environment this will no longer satistify for the project, therefore we need to use protected branches (so code only goes in via PR) and deploy when code has been merged into said branches.

Development Environment

  • Dev router (traefik)
  • API containerised
  • Website containerised
  • Websocket containerised
  • Required stack services created
  • Single command startup created
  • Aliases initial playbook created
  • Sample data import command
  • Local valid SSL

We are going to use K8s in order to replicate the production environment. Installation of K8s on a linux machine is pretty trivial, which makes it an ideal platform to begin development from and lower onboarding time, providing a consistent development environment.

My task will be to make spooling up the development environment as simple as possible, so users are able to literally type a single command and the environment is spooled up and good to go.

Currently thinking of doing this via Ansible, as it allows us to customise commands to execute much better rather than depending on Alises.

Database corrupted

Database is currently corrupted. Urgently needs investigating and fixing.

Stack:

{"t":{"$date":"2021-08-24T13:17:48.227+00:00"},"s":"I",  "c":"COMMAND",  "id":51803,   "ctx":"conn5","msg":"Slow query","attr":{"type":"command","ns":"ps2alerts.$cmd","command":{"update":"aggregate_global_vehicles_characters","updates":2,"ordered":true,"lsid":{"id":{"$uuid":"064d1d8c-9bc4-42a1-b499-252339bfb488"}},"$db":"ps2alerts"},"numYields":1,"reslen":111,"locks":{"ParallelBatchWriterMode":{"acquireCount":{"r":3}},"ReplicationStateTransition":{"acquireCount":{"w":4}},"Global":{"acquireCount":{"r":1,"w":3}},"Database":{"acquireCount":{"w":3}},"Collection":{"acquireCount":{"w":3}},"Mutex":{"acquireCount":{"r":2}}},"flowControl":{"acquireCount":3,"timeAcquiringMicros":5},"storage":{},"protocol":"op_msg","durationMillis":108}}
{"t":{"$date":"2021-08-24T13:17:48.255+00:00"},"s":"I",  "c":"NETWORK",  "id":22943,   "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:40406","connectionId":63,"connectionCount":35}}
{"t":{"$date":"2021-08-24T13:17:48.264+00:00"},"s":"I",  "c":"NETWORK",  "id":51800,   "ctx":"conn63","msg":"client metadata","attr":{"remote":"127.0.0.1:40406","client":"conn63","doc":{"driver":{"name":"nodejs","version":"4.0.0-beta.6"},"os":{"type":"Darwin","name":"darwin","architecture":"x64","version":"20.6.0"},"platform":"Node.js v12.4.0, LE (unified)|Node.js v12.4.0, LE (unified)","application":{"name":"MongoDB Compass"}}}}
{"t":{"$date":"2021-08-24T13:18:33.293+00:00"},"s":"I",  "c":"WRITE",    "id":51803,   "ctx":"conn5","msg":"Slow query","attr":{"type":"update","ns":"ps2alerts.aggregate_global_vehicles_characters","command":{"q":{"vehicle":15,"world":13,"character":"5429124457454896145","bracket":-1},"u":{"$inc":{"vehicles.kills":1}},"multi":true,"upsert":true},"planSummary":"IXSCAN { world: 1, vehicle: 1, character: 1, bracket: 1 }","keysExamined":0,"docsExamined":0,"nMatched":0,"nModified":0,"upsert":true,"keysInserted":4,"numYields":0,"queryHash":"2C6EB792","planCacheKey":"4CBC3842","locks":{"ParallelBatchWriterMode":{"acquireCount":{"r":1}},"ReplicationStateTransition":{"acquireCount":{"w":1}},"Global":{"acquireCount":{"w":1}},"Database":{"acquireCount":{"w":1}},"Collection":{"acquireCount":{"w":1}},"Mutex":{"acquireCount":{"r":1}}},"flowControl":{"acquireCount":1,"timeAcquiringMicros":2},"storage":{"data":{"bytesRead":24666,"timeReadingMicros":190555}},"durationMillis":191}}
{"t":{"$date":"2021-08-24T13:18:33.294+00:00"},"s":"I",  "c":"COMMAND",  "id":51803,   "ctx":"conn5","msg":"Slow query","attr":{"type":"command","ns":"ps2alerts.$cmd","command":{"update":"aggregate_global_vehicles_characters","updates":2,"ordered":true,"lsid":{"id":{"$uuid":"5b06120d-6a1d-4ae0-a72e-3c22d310014f"}},"$db":"ps2alerts"},"numYields":0,"reslen":111,"locks":{"ParallelBatchWriterMode":{"acquireCount":{"r":2}},"ReplicationStateTransition":{"acquireCount":{"w":3}},"Global":{"acquireCount":{"r":1,"w":2}},"Database":{"acquireCount":{"w":2}},"Collection":{"acquireCount":{"w":2}},"Mutex":{"acquireCount":{"r":2}}},"flowControl":{"acquireCount":2,"timeAcquiringMicros":4},"storage":{},"protocol":"op_msg","durationMillis":192}}
{"t":{"$date":"2021-08-24T13:18:37.891+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"WTCheckpointThread","msg":"WiredTiger message","attr":{"message":"[1629811117:891889][1:0x7f675fefe700], WT_SESSION.checkpoint: [WT_VERB_CHECKPOINT_PROGRESS] saving checkpoint snapshot min: 121630, snapshot max: 121630 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0)"}}
{"t":{"$date":"2021-08-24T13:19:36.086+00:00"},"s":"E",  "c":"STORAGE",  "id":22435,   "ctx":"conn6","msg":"WiredTiger error","attr":{"error":0,"message":"[1629811176:86834][1:0x7f67562e7700], file:collection-1088-5057605428677829423.wt, WT_CURSOR.search: __wt_block_read_off, 327: collection-1088-5057605428677829423.wt: read checksum error for 20480B block at offset 813948928: block header checksum of 0x265a3101 doesn't match expected checksum of 0xda605e34"}}
{"t":{"$date":"2021-08-24T13:19:36.087+00:00"},"s":"E",  "c":"STORAGE",  "id":22435,   "ctx":"conn6","msg":"WiredTiger error","attr":{"error":0,"message":"[1629811176:87202][1:0x7f67562e7700], file:collection-1088-5057605428677829423.wt, WT_CURSOR.search: __wt_bm_corrupt_dump, 139: {0: 813948928, 20480, 0xda605e34}: (chunk 1 of 20): 17 0e 67 1b 36 02 44 01 01 2d 4a 36 a3 03 2e da 01 00 56 a1 10 fd 94 12 e0 08 65 6a 00 a4 36 da 01 31 5a 26 da 80 21 86 4a 90 00 0e 66 c5 0e 07 66 08 37 36 32 36 d6 15 41 c6 52 90 00 52 da 01 00 a5 56 7f 00 26 e1 59 01 4f 4a 7f 00 00 30 0e bb 23 00 32 0e 2f 46 00 38 0e 71 a5 26 55 16 45 c4 7a 59 02 79 e9 10 a6 80 c0 cf 4f 26 25 0d 04 7c 03 49 59 04 91 ae 7a 69 03 51 d9 0e ee bd 0e c5 67 19 80 0e 90 1c 0d 80 61 69 26 8d 0b 01 c9 59 67 2a fd 2c 01 8e 35 9c 16 c3 23 15 0f 1a 89 27 15 39 dd e3 0e de 38 2e 17 0c 1a fc 0d bd 4e 01 59 59 9e 12 96 0d 16 87 0d 21 d3 15 63 09 72 15 62 1e 6b 0d 1a 8a 45 65 a8 1a 81 2c 11 be 11 23 36 8e 0d 0d 25 45 55 00 a7 3a e6 02 00 04 29 57 04 92 83 35 57 01 01 4a d7 01 e9 2a 14 31 30 30 36 34 36 32 44 79 01 01 2d 57 0e ba 08 19 d7 2e e6 02 00 f3 3a e6 02 e1 5f 09 91 00 a8 36 20 59 04 7c 08 09 91 04 96 99 15 91 21 2d 46 91 00 2d e8 0e 7c 1c 0e ea ea 2a a4 23 01 86 0d 91 21 e8 19 91 5d e7 01 54 35 36 36 1a 07 32 1b 00 2e 5b 04 61 c4 0e 5a 09 05 21 3d cd 21 b4 25 5c 10 a9 80 c0 b0 30 5d b3 11 cb 26 b8 73 01 01 46 cb 00 0e c7 1c 12 32 a5 0c 34 33 37 35 32 d6 75 01 6b 0d cb 05 7e 26 a4 10 21 41 19 da 5d 42 12 3a 19 91 50 16 30 4c 1d e9 12 6c dc 1a 0e 0c 01 43 15 2a 4d cf 5d 87 15 36 2e 04 01 45 75 16 15 b2 15 20 56 75 02 3a 09 39 7d 1f 0d 44 25 37 25 38 00 aa 3a 44 06 00 0a 49 03 00 98 26 fb 63 61 a2 3a 38 01 34 37 36 39 31 33 38 37 38 36 33 36 30 36 33 12 89 72 79 eb 0e e0 0e 2d 38 01 67 3d 38 01 0f 39 38 fa 12 02 05 ca 16 07 14 09 ca 00 ab 3a 5e 03 11 ca 7e 1e 08 0e 49 17 56 a6 e8 01 01 0d ca 36 cd 02 65 5e 31 e8 3a a2 11 0e 1c 0a 09 91 14 ac 80 c0 68 e8 00 22 36 14 04 7c 0b 29 5b 00 99 26 da 1f 21 11 3a 5b 01 0e 37 25 16 00 3e 10 35 39 34 37 32 36 60 54 21 8b 0d 91 41 93 91 7a 76 33 12 41 c8 15 2b 56 30 02 16 f7 31 15 25 28 44 65 61 74 68 4d 61 74 72 69 78 5c 00 0c 00 00 00 10 33 00 02 00 00 00 00 03 69 6e 66 61 6e 74 72 79 00 10 01 16 10 6b 69 6c 6c 73 09 1a f0 55 00 11 e3 05 89 ad 80 c0 07 87 00 00 00 07 5f 69 64 00 5f f5 7c 0b 30 df e7 fa cf cf 99 db 10 62 72 61 63 6b 65 74 00 03 00 00 00 02 63 68 61 72 61 63 74 65 72 00 14 00 00 00 35 34 32 38 33 38 31 36 38 32 31 36 36 38 38 34 38 31 37 00 10 76 65 68 69 63 6c 65 09 7d 18 77 6f 72 6c 64 00 11 5e 80 00 00 05 01 9a 10 10 72 6f 61 64 09 90 00 01 01 10 01 8f 10 ae 80 c0 42 c2 1d 8f 00 0d 09 8f 04 9b f8 7e 8f 00 38 39 38 35 30 36 32 33 30 37 35 35 38 35 37 37 19 8f 01 6b 0d 8f 01 66 52 0f 01 00 14 01 7f 04 03 76 09 c1 00 73 05 b7 14 10 64 65 61 74 68 09 0c 15 1b 00 44 01 14 14 4d 61 74 72 69 78 09 e7 00 35 05 2c 52 ca 00 10 af 80 c0 51 d1 1d ca 00 0e 09 ca 04 9c 34 15 ca 01 8f 46 59 01 3c 39 30 33 38 33 32 39 34 33 38 30 39 35 34 34 31 19 ca 21 89 0d ca 00 0d 32 59 01 00 1f 39 d9 05 ee 0c 74 65 61 6d 3d 58 56 d9 00 01 7e 15 1b 42 d9 00 00 33 09 20 4e a3 01 10 b0 80 c0 6e ee 4a d9 00 00 8d 82 d9 00 34 37 38 39 33 32 39 30 30 32 39 32 31 32 39 66 d9 00 35 89 00 1c 19 d9 05 fd 2d 94 32 bb 00 0c 4b 69 6c 6c 2d 93 00 1d 01 2f 09 ba 10 10 32 31 33 34 05 29 04 10 31 05 07 56 f9 01 01 56 82 05 01 45 99 10 b1 80 c0 15 95 1d f6 00 10 29 cf 04 9e ee 15 "}}
{"t":{"$date":"2021-08-24T13:19:36.087+00:00"},"s":"E",  "c":"STORAGE",  "id":22435,   "ctx":"conn6","msg":"WiredTiger error","attr":{"error":0,"message":"[1629811176:87489][1:0x7f67562e7700], file:collection-1088-5057605428677829423.wt, WT_CURSOR.search: __wt_bm_corrupt_dump, 139: {0: 813948928, 20480, 0xda605e34}: (chunk 2 of 20): f6 01 01 46 cf 01 38 38 37 35 34 39 34 35 36 30 38 37 39 36 30 38 3d cf 00 0e 01 ae 69 28 01 d1 20 10 73 75 69 63 69 64 65 73 09 0e 36 1c 03 52 b6 02 65 df 05 9d 10 b2 80 c0 6d ed 1d 9d 00 11 09 9d 04 9f b9 82 9d 00 34 39 30 34 33 36 30 30 36 38 39 34 31 39 33 39 93 85 42 09 9d 00 0a 41 6c 36 93 01 2d 88 05 25 4a 69 02 2e 4e 02 41 aa 08 10 31 32 05 2c 56 c7 00 01 60 3e 69 02 11 70 3d dd 05 6d 29 dd 09 f5 14 b3 80 c0 9e 1e 01 99 ba 11 f5 00 c8 15 f5 21 de 4a 92 01 34 30 31 30 36 31 38 30 33 38 34 35 35 34 35 9d 2b 21 51 0d f5 b2 ba 04 11 ae 08 73 00 2b 21 d4 2d 1e 05 4e 39 1e 5e 96 03 2e 2d 01 05 e4 00 32 05 3a 15 55 3e 03 01 51 cf 2d 92 00 54 6d ec 6d 03 05 42 2e 26 01 10 b4 80 c0 8a 0a 3d 26 00 12 49 1b 04 a0 44 7e 26 01 38 39 34 36 37 33 36 35 34 31 35 31 37 35 30 35 59 1b 21 56 2d 26 41 b8 52 9b 02 81 87 15 c2 00 73 69 c8 46 17 01 00 07 61 33 11 c9 42 08 01 d1 c0 0d e9 3d 08 25 66 29 27 41 5b 01 86 0d 2e 2d 1e 08 10 31 30 2d 04 36 56 03 65 2d 0c b5 80 b8 78 7d 2c 31 11 00 e2 7e 11 01 69 c9 1c 35 39 35 32 32 32 30 31 5d 37 00 09 21 f5 69 2c 01 8b 52 11 01 41 0d 09 7f 10 b6 80 c0 09 89 1d 80 00 13 29 91 04 a1 59 15 80 01 2c 4a b7 02 34 39 32 36 33 37 35 35 30 35 38 34 33 39 38 3d 91 01 01 0d 80 00 28 61 ac f5 f1 00 21 01 99 d1 0d 04 65 64 29 ba 2d 87 00 04 01 36 25 10 00 b7 5a 91 00 00 d0 15 91 01 01 4a 91 00 30 38 34 38 36 33 39 37 37 38 31 38 39 32 2e 11 01 01 01 0d 91 61 ff 3a 91 00 0d 81 00 24 3a 9d 00 21 3b 09 91 00 b8 3a 6b 05 00 14 29 22 04 a2 47 7e 91 00 34 30 31 33 36 31 30 33 36 39 35 33 30 38 30 bd 6b 41 69 0d 91 01 67 59 15 05 85 b9 6b 21 7a 19 ae 52 30 09 00 b9 3a 2e 01 00 15 09 9d 04 a3 e8 7e 9d 00 1c 39 31 36 35 38 31 35 31 c1 fb 00 37 2e 6b 05 01 01 1d 9d 19 80 25 bf 2d 2e 00 62 3a 2e 01 65 61 25 bf 10 ba 80 c0 56 d6 5d 50 00 16 09 91 04 a4 1d 15 91 61 b1 4a bf 01 19 91 08 31 39 39 2e e1 03 85 44 49 d0 36 07 05 7a 68 08 3d 49 41 5e 71 b9 00 73 42 49 01 11 1a 7d d3 00 13 01 e0 00 34 29 9e 6d bb 05 de 10 bb 80 c0 16 96 4a de 00 79 ae 01 01 46 de 00 34 39 30 37 34 32 34 30 34 34 38 31 38 38 39 2e 10 0a 21 0e 0d de 36 9d 02 1d de 00 0f 01 8e 71 39 1a 2e 0b 1d de 41 44 05 9e 04 bc 80 36 ae 0a 00 17 29 7c 04 a5 7d 35 7c 01 01 46 9e 00 30 38 36 33 31 37 32 39 36 31 37 34 31 35 32 0d 02 21 39 0d 9e 36 7c 01 5d 8d 00 1b 01 55 31 44 16 a2 0a 51 27 01 b9 15 1b 42 52 05 00 34 09 20 1d ca 01 6f 05 ca 10 bd 80 c0 33 b3 3d 68 00 18 09 ca 04 a6 36 15 ca 21 38 46 ca 00 00 39 1a d5 09 14 31 32 38 35 39 37 2e 68 01 01 5b 0d ca 21 30 59 d7 1d ca 00 0b 66 ca 00 01 3f 6e ca 00 05 20 05 bb 00 be 36 d0 05 11 ba 00 be 15 ba 61 d6 46 ba 00 38 38 37 39 30 30 39 37 39 39 37 31 31 35 32 34 2a 8f 0a 00 65 21 fe 69 00 36 50 05 1d ba 79 80 14 bf 80 c0 43 c3 00 26 87 08 0d 80 00 a7 b9 d0 56 3a 01 00 38 0e df 0b 24 30 31 34 34 34 34 36 31 32 33 56 7c 09 41 04 3d af 01 ca 52 49 01 01 63 35 2e 36 13 02 21 7d 15 1b 2e 13 02 41 fe f1 3f 29 4a 00 c0 3a 05 02 00 1a 49 05 04 a8 ff 35 4b 01 01 46 4b 01 00 39 4d 05 0c 32 31 39 36 36 2c 08 00 06 39 4b 04 0d 00 19 87 9a a2 00 85 89 00 36 0d c2 d5 d6 3d 86 05 f7 45 05 14 c1 80 c0 44 c4 00 39 86 "}}
{"t":{"$date":"2021-08-24T13:19:36.087+00:00"},"s":"E",  "c":"STORAGE",  "id":22435,   "ctx":"conn6","msg":"WiredTiger error","attr":{"error":0,"message":"[1629811176:87772][1:0x7f67562e7700], file:collection-1088-5057605428677829423.wt, WT_CURSOR.search: __wt_bm_corrupt_dump, 139: {0: 813948928, 20480, 0xda605e34}: (chunk 3 of 20): 00 1c 09 bb 00 aa 7e 38 0e 00 39 91 28 10 37 30 37 34 34 2e 86 01 41 61 4d 06 21 43 79 70 1d 80 01 19 15 1a 9d ce 05 b9 8d c7 3d bf 01 2f 19 c8 0e 75 0e 9d 65 01 1d 09 cc 10 c2 80 c0 60 e0 1d cc 00 1d 09 cc 04 ab 66 35 87 01 f8 46 87 01 34 38 36 31 32 38 38 35 37 38 39 31 37 33 33 2e 61 0d 05 90 49 d2 41 52 19 84 9d f4 12 c6 08 66 f4 04 41 f1 39 04 01 46 91 74 41 95 15 1b 4e 61 02 05 21 f9 74 05 0f 0e ec 0f 0c c3 80 bc 7c 4a e7 00 00 dd 7e e7 00 34 34 36 37 39 33 37 36 38 39 35 35 38 36 37 7d 39 7d b9 01 a1 19 e7 62 6b 01 00 c4 3a ce 07 00 1e 29 6b 04 ac 74 15 84 01 01 4a 6b 01 04 38 33 12 40 0c 14 37 36 31 32 35 33 5a ce 07 0e d9 0c 19 84 2e ce 07 45 5c 31 6c 04 65 64 3d fc 0c c5 80 b9 79 3d 14 00 21 09 90 04 ae e1 6e 90 00 44 37 36 38 37 37 38 38 38 39 33 36 31 34 37 33 39 33 31 3d 14 01 01 2d fb 41 62 19 90 21 22 31 c3 01 1a 49 7c 00 c6 3a 03 04 00 22 09 81 04 b1 02 6e 81 00 08 35 34 32 66 0d 0a 92 03 04 32 09 06 2e 44 02 45 ba 00 36 0d 20 4e 03 04 00 27 01 e1 45 4f 00 c7 36 08 06 11 ba 00 54 15 ba 5a 36 03 28 38 37 36 33 35 35 39 31 33 35 34 c6 c2 06 21 ca 09 7f 00 c8 3a 17 11 00 23 2d 3a 00 97 15 80 41 f9 4e 4b 02 2c 36 34 31 34 39 36 34 33 38 37 32 30 2e 88 06 2a b6 0a c1 88 79 42 36 8c 03 9d 90 01 32 75 8b 9d 90 00 2c a1 87 04 31 30 25 e8 04 10 39 09 07 00 38 25 10 04 10 31 1a 75 09 04 31 30 1a 59 0e 62 b0 04 1d 68 59 30 00 c9 36 75 01 0d f5 00 b2 26 7d 0a 01 01 4a f5 00 16 ab 0b c1 fd 08 34 32 36 2e 84 0f 7d c4 c5 32 4e f4 01 21 c9 29 75 00 ca 36 43 04 00 24 29 74 04 b2 6e 35 74 01 2b 46 7f 00 00 39 d1 b1 10 38 32 37 38 38 2e f6 05 5d ae 61 21 19 7f 62 43 04 10 cb 80 c0 b7 37 2a 61 0f 11 84 00 88 7a 84 00 10 38 31 38 30 39 0e ac 0c 14 38 39 39 39 35 36 2a 80 08 01 b4 52 b3 03 bd ae 4e 8f 00 b9 9f 12 38 13 1a 3a 0c 05 2a 16 87 10 00 15 21 8d 11 26 42 66 03 00 33 05 2b 15 20 5d 3f 00 49 41 3f 00 32 45 5e 51 3e 00 31 49 2e 08 10 31 35 11 09 4d 48 00 33 29 43 00 34 45 ee ed bd 22 66 08 59 c3 45 42 c1 05 00 cc 36 41 02 2d 3e 04 b3 10 7e 3e 01 28 30 34 31 34 32 39 39 39 34 31 38 36 26 15 61 92 52 3e 01 52 c0 02 00 cd 36 70 05 00 25 49 41 04 b3 55 15 7f 01 01 46 41 02 38 38 33 31 35 33 37 32 31 35 34 33 30 35 32 36 56 8d 0f 01 e4 59 41 41 4f 31 94 e1 6c 49 c1 10 ce 80 c0 86 06 5d 3e 11 81 00 d1 7e 81 00 30 35 39 37 33 30 33 32 35 34 30 33 30 38 2e 57 14 81 66 2d 00 01 73 19 81 5d 3e 01 19 d5 80 16 71 14 35 f8 36 ae 11 81 6b 4d 3e 01 59 15 26 42 3e 02 00 32 05 2b 2e 3e 04 01 30 51 6d 5d 4d 00 17 41 4d 04 31 32 25 1e 08 10 32 30 8d 96 29 0e 00 cf 3a ee 0d 00 26 29 8f 04 b4 1b 35 0e 21 54 46 8f 01 6d d0 0c 38 37 38 34 01 02 56 4c 03 81 4f 62 dd 04 25 1d f1 92 29 12 2e f7 00 45 ab 14 d0 80 c0 4e ce 00 26 64 0a 00 27 09 9e 04 b5 19 15 9e 01 01 46 9e 00 34 38 30 32 38 36 34 38 35 31 37 37 37 35 37 2e 9d 07 00 a0 21 0c 16 98 09 01 9e 31 2e 2d 83 69 b5 85 0e 6d cc 01 fe 15 26 3d 54 61 d9 1e 3e 0f 61 92 21 7b 15 28 2e ab 01 12 74 16 04 31 36 c9 0a 09 d6 10 d1 80 c0 1b 9b 4a d6 00 00 29 7a d6 00 00 39 ad 44 14 30 38 37 30 36 31 92 d6 00 45 77 4e cb 00 7a a3 00 14 d2 80 c0 72 f2 00 39 79 00 29 29 79 04 b6 82 82 a3 00 30 32 36 "}}
{"t":{"$date":"2021-08-24T13:19:36.088+00:00"},"s":"E",  "c":"STORAGE",  "id":22435,   "ctx":"conn6","msg":"WiredTiger error","attr":{"error":0,"message":"[1629811176:88061][1:0x7f67562e7700], file:collection-1088-5057605428677829423.wt, WT_CURSOR.search: __wt_bm_corrupt_dump, 139: {0: 813948928, 20480, 0xda605e34}: (chunk 4 of 20): 30 30 37 36 37 31 39 35 39 37 36 2a 11 12 21 21 2d 79 36 a6 09 9d 25 41 fb 35 45 2d 93 0d bd 05 3f 39 9f 15 26 2e c8 00 12 ba 08 16 a5 14 15 20 3d b3 12 f1 10 00 38 09 4a 00 35 29 d9 4a 1e 05 00 d3 3a 8f 09 00 2a 0d fa 00 ed 15 fa 41 1f 4a 73 02 04 34 38 41 77 18 34 33 34 31 36 38 33 2e dd 11 0e 23 08 0d fa 41 4e 99 1f 1d fa 01 19 15 b4 ae ac 0d 00 37 09 3b 65 2e 10 d4 80 c0 7a fa 3d b5 00 2b 09 bb 04 b7 6d 15 bb 01 01 4a bb 00 30 36 39 30 34 35 38 33 39 31 31 38 37 31 2e e8 14 01 eb 0d bb 25 b5 1a 19 16 2d 9b 29 8f 05 df 2d a6 32 c7 00 3d 7b 00 29 61 76 29 9a 1e 37 16 00 38 05 2d 2d 89 04 10 31 2d 91 52 1d 01 01 86 35 1d 42 f1 01 1a f5 0d 25 02 10 d5 80 c0 52 d2 3d 02 00 2f 29 02 04 bb 14 7e 02 01 1e a1 18 10 39 36 30 37 31 2e 1a 08 45 54 89 30 01 dd 39 02 2e 5a 03 41 9d 15 1b 2e a1 00 81 63 a1 7a 09 21 22 59 09 85 fb 29 3e 01 dc 3a 06 05 3e 33 05 05 da 00 d6 3a 97 02 00 30 0d da 00 d7 15 da 01 4a 4a dc 01 0e 22 10 20 39 36 34 38 37 39 33 36 33 2e dc 01 62 78 09 5d 97 09 b8 35 f6 2e f4 00 21 0e 52 f4 00 25 32 1a 43 10 05 bb 00 d7 3a bb 00 00 31 09 bb 04 bd 41 15 bb 01 01 46 bb 00 00 39 8d ef 18 31 38 33 36 30 32 38 dd 63 00 65 41 4f 29 95 45 97 35 59 1d bb 21 0f 15 a0 00 73 2e 1a 00 32 ba 00 5d a5 a9 aa 1e c7 18 05 bb 10 d8 80 c1 41 c1 2a 2c 08 00 32 0d bb 26 ad 0e 01 67 46 bb 00 04 38 33 0e 9a 11 18 33 36 32 36 37 39 34 32 ba 18 01 30 0d bb 01 88 39 5c 12 62 19 49 14 00 51 01 df 6d 52 85 b5 f9 26 32 91 01 1d bc 00 8b 01 33 01 bc 25 d6 00 35 05 28 0c 10 33 00 08 01 17 08 32 00 19 01 07 00 36 09 7c 00 31 16 af 09 08 32 30 30 29 a4 0c 10 31 36 32 0d 1a 00 32 09 1b c1 cf 49 b9 04 35 30 11 12 09 51 04 31 30 1a 45 08 1a 43 08 0e f3 1d 00 37 09 1b 08 32 30 33 3a 3e 1a 2e 08 03 45 14 00 33 05 cd 7d e3 7d 07 e5 4f 19 e7 21 1b 3e 07 03 31 2b 3a 7f 1b 25 21 1a 12 0b 8d 0b 4a d6 05 10 d9 80 c1 5e de 3d c9 00 33 29 c9 04 be f1 55 84 21 99 4a c9 01 34 38 38 35 38 38 34 37 35 30 34 38 30 39 34 2a 76 0a 45 2e 49 84 01 ae 2a e7 08 04 5c 00 5a e5 00 00 5e 21 87 19 e5 01 72 15 d6 00 73 16 32 0e 49 01 00 47 01 29 4d 01 e1 14 15 35 04 65 64 25 6e 15 36 5d 02 00 b8 01 34 00 32 29 f2 2d e4 2d b6 2d a2 04 31 34 2d cd 1a 57 0c ad 73 00 10 21 e6 05 c2 00 33 65 4d 21 dc 01 9a 04 10 38 09 4c 00 39 09 07 41 5c 12 e8 0b 22 87 0c 00 36 29 6e 45 2f 05 40 1e d0 0e 45 52 05 12 4d 62 08 32 31 33 c9 a7 08 10 31 30 16 08 09 01 2c 49 4b 15 cb 2e 2f 02 49 7e 00 34 05 fc 15 21 31 f8 04 65 64 1a 79 1d 11 26 65 14 65 af 00 da 3a 1d 18 31 e6 00 f3 7e e6 01 34 30 31 31 32 36 33 33 31 38 39 34 32 33 35 2a cc 11 25 0a 29 e6 85 fd 26 b9 1a 01 e1 52 79 04 05 8f 51 ad ae cb 07 29 50 09 ca 00 db 36 25 0d 0d c9 04 bf df 15 c9 01 01 46 af 02 b1 33 08 32 32 33 0e 6a 17 2a 32 1d 01 01 0d c9 36 ba 00 05 d7 4d 6c 21 e1 09 80 00 dc 3a 4b 08 00 34 69 30 04 c0 cd 7a 81 00 38 38 36 31 34 36 39 36 39 34 39 36 32 36 30 39 1d 81 01 76 1d 81 3d 4a 21 64 52 4a 01 41 fb 3d 4a 2e 63 0f 01 aa 6d 2d 01 59 15 26 2e 46 02 85 75 69 0b 15 20 7d 31 05 1f 2d 74 4a 32 04 00 dd 3a a8 14 00 35 29 02 04 c1 65 7e 02 01 30 39 39 38 31 33 38 37 33 31 36 35 32 39 5a a8 14 01 b4 19 f3 2e a8 14 0e "}}
{"t":{"$date":"2021-08-24T13:19:36.088+00:00"},"s":"E",  "c":"STORAGE",  "id":22435,   "ctx":"conn6","msg":"WiredTiger error","attr":{"error":0,"message":"[1629811176:88362][1:0x7f67562e7700], file:collection-1088-5057605428677829423.wt, WT_CURSOR.search: __wt_bm_corrupt_dump, 139: {0: 813948928, 20480, 0xda605e34}: (chunk 5 of 20): 97 13 2e ef 03 14 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 "}}
{"t":{"$date":"2021-08-24T13:19:36.088+00:00"},"s":"E",  "c":"STORAGE",  "id":22435,   "ctx":"conn6","msg":"WiredTiger error","attr":{"error":0,"message":"[1629811176:88663][1:0x7f67562e7700], file:collection-1088-5057605428677829423.wt, WT_CURSOR.search: __wt_bm_corrupt_dump, 139: {0: 813948928, 20480, 0xda605e34}: (chunk 6 of 20): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 "}}
{"t":{"$date":"2021-08-24T13:19:36.088+00:00"},"s":"E",  "c":"STORAGE",  "id":22435,   "ctx":"conn6","msg":"WiredTiger error","attr":{"error":0,"message":"[1629811176:88962][1:0x7f67562e7700], file:collection-1088-5057605428677829423.wt, WT_CURSOR.search: __wt_bm_corrupt_dump, 139: {0: 813948928, 20480, 0xda605e34}: (chunk 7 of 20): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 "}}
{"t":{"$date":"2021-08-24T13:19:36.089+00:00"},"s":"E",  "c":"STORAGE",  "id":22435,   "ctx":"conn6","msg":"WiredTiger error","attr":{"error":0,"message":"[1629811176:89265][1:0x7f67562e7700], file:collection-1088-5057605428677829423.wt, WT_CURSOR.search: __wt_bm_corrupt_dump, 139: {0: 813948928, 20480, 0xda605e34}: (chunk 8 of 20): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 "}}
{"t":{"$date":"2021-08-24T13:19:36.089+00:00"},"s":"E",  "c":"STORAGE",  "id":22435,   "ctx":"conn6","msg":"WiredTiger error","attr":{"error":0,"message":"[1629811176:89539][1:0x7f67562e7700], file:collection-1088-5057605428677829423.wt, WT_CURSOR.search: __wt_bm_corrupt_dump, 139: {0: 813948928, 20480, 0xda605e34}: (chunk 9 of 20): 00 00 00 00 00 00 00 00 cd a0 d8 15 00 00 00 00 b0 ee 00 00 14 03 00 00 07 05 00 01 00 50 00 00 e1 60 b0 1d 01 00 00 00 11 e3 a7 2f 0e 80 b9 79 00 00 00 07 5f 69 64 00 60 d2 35 97 9f 11 e7 46 28 47 00 00 00 00 00 00 f0 dc 03 30 44 9f ac 5a 10 62 72 61 63 6b 65 74 00 01 01 a8 02 63 68 61 72 61 63 74 65 72 00 14 00 00 00 35 34 32 38 39 34 36 37 33 36 35 32 34 30 39 31 37 39 33 00 10 76 65 68 69 63 6c 65 01 2f 80 00 10 77 6f 72 6c 64 00 01 00 00 00 03 69 6e 66 61 6e 74 72 79 00 11 00 00 00 10 64 65 61 74 68 73 05 1a 74 00 00 11 e3 a7 2f 0f 80 b8 78 00 00 00 07 5f 69 64 00 60 d2 35 97 9f 11 e7 46 44 9f ac 88 15 80 08 05 00 00 4a 80 00 40 39 31 34 34 39 30 32 31 38 35 34 38 32 30 34 39 00 15 80 01 30 0d 80 00 0a 32 80 00 00 10 01 80 0c 6b 69 6c 6c 2e 7f 00 10 10 80 c0 19 99 1d 80 00 99 09 80 04 af 78 82 80 00 2c 33 37 32 36 31 30 34 39 36 39 32 35 2e 00 01 00 08 01 67 29 00 05 80 00 76 29 18 00 73 46 00 01 11 1b 00 44 21 14 1c 4d 61 74 72 69 78 00 0c 01 3e 00 38 3d 20 14 11 80 c0 86 06 01 39 21 0d a1 04 b0 7b 15 a1 01 01 46 a1 01 3c 39 31 32 34 33 38 37 31 39 35 32 30 32 33 33 37 39 21 00 06 01 63 09 a1 08 d0 07 00 15 86 08 73 00 1f 01 19 29 21 00 04 01 0b 0c 74 65 61 6d 09 0f 21 c9 15 29 0c 4b 69 6c 6c 0d ae 00 1c 01 27 08 35 00 02 01 07 00 34 05 26 0c 10 31 30 33 05 09 14 00 10 72 6f 61 64 09 3f 01 20 59 08 41 42 1d 5c 01 1d 15 5c 00 54 0d 73 0d 60 25 0e 00 31 09 50 45 2e 10 12 80 c0 5e de 3d af 00 9b 29 af 04 b3 5e 7a 0e 01 38 38 30 37 32 32 30 33 35 30 32 38 35 39 36 31 3d 0e 05 63 29 0e 36 af 01 05 dc 09 c0 01 ff 51 ba 32 af 00 3d 0b 05 48 0d fb 19 ec 3e 74 02 4e f3 01 00 0d 21 3e 04 31 32 09 5a 05 e6 0c 13 80 b9 79 1d e5 00 9c 0d e5 00 9b 15 e5 41 e4 4e f3 01 6d 14 18 33 38 38 33 39 38 35 39 f3 01 01 2e e5 00 7a 94 03 10 14 80 c0 4f cf 46 81 00 04 b4 02 15 81 41 20 46 81 00 34 38 39 39 38 31 33 38 36 39 33 32 37 39 31 2e 81 00 00 0e 01 e4 29 66 01 ef 31 07 00 73 62 21 01 5a 5a 01 5d 55 21 95 19 c9 45 bc 36 b1 02 3d bd 29 57 10 15 80 c0 1a 9a 4a d7 00 00 ec 82 d7 00 30 32 30 38 35 36 30 33 31 34 39 37 35 35 9d ec 62 d7 00 42 ec 04 11 f2 2e ec 03 21 0a 04 10 31 69 38 09 a2 10 16 80 c0 33 b3 1d a2 00 9e 29 fa 04 b7 2a 7e a2 00 34 37 37 32 33 34 30 35 37 36 36 35 30 38 39 5d df 21 a9 2e 79 01 35 fa 5e 9a 02 36 a8 04 32 ee 02 2e bc 00 45 ef 00 34 09 20 45 b4 00 17 36 b4 02 00 9f 09 ba 04 b8 7f 15 ba 01 01 46 33 02 b5 c8 14 33 39 32 39 34 35 1d ba 01 01 0d ba 00 28 32 c8 05 42 5c 01 05 80 00 18 36 80 00 00 a0 09 80 04 ba 14 15 80 21 0a 6e 80 00 10 38 38 32 31 32 dd 48 01 01 0d 80 21 a9 39 3a 2e 80 00 25 20 05 80 10 19 80 c0 16 96 3d bb 00 a4 09 81 04 c0 0a 15 81 01 01 6e 81 00 14 39 32 39 36 38 31 79 b5 01 5c 0d 81 05 73 5e 50 05 45 fb 9d a9 36 06 03 09 9e 00 1a 3a 59 02 00 a5 09 9e 04 c2 83 15 9e 56 1f 01 08 38 30 31 e1 e0 1c 32 34 34 32 31 36 30 36 9d 53 1d 9e 36 1f 01 5d 59 00 03 01 f3 51 fa ae 59 02 2e 0d 05 00 1b 36 d9 01 00 a6 09 ba 04 c3 0c 15 ba 56 0d 05 34 38 37 37 34 35 31 31 33 36 37 37 30 30 37 2e b5 03 01 01 2d 58 a5 f2 75 13 25 66 1a a1 08 21 0f 29 3b 00 1c 3a 3b 01 00 a7 09 81 04 c4 62 15 81 01 01 46 d9 01 "}}
{"t":{"$date":"2021-08-24T13:19:36.089+00:00"},"s":"E",  "c":"STORAGE",  "id":22435,   "ctx":"conn6","msg":"WiredTiger error","attr":{"error":0,"message":"[1629811176:89826][1:0x7f67562e7700], file:collection-1088-5057605428677829423.wt, WT_CURSOR.search: __wt_bm_corrupt_dump, 139: {0: 813948928, 20480, 0xda605e34}: (chunk 10 of 20): ad 0d 1c 37 33 32 30 39 35 36 33 9d 36 21 17 52 81 00 3d 3b 00 17 01 55 ce 3b 01 00 33 25 9a 09 bb 00 1d 36 5c 09 00 a8 09 ba 04 c6 93 15 ba 56 3b 01 7d 94 0c 31 34 35 37 7d 94 65 f6 a9 c7 36 3b 01 1d ba 41 19 09 7f 10 1e 80 c0 07 87 7d 13 0d 80 00 c7 39 bb a1 c4 4a 3a 01 34 38 35 31 33 33 33 36 31 37 35 35 36 31 31 3d 3a 01 30 0d 80 04 e8 03 32 63 08 01 1a 39 ca 1d 8f 21 6d 09 8f 10 1f 80 c0 15 95 1d 8f 00 ab 29 0f 04 ca 91 35 0f 01 01 46 8f 00 31 0f 14 35 34 33 38 39 39 2e 4a 09 00 07 d9 d6 81 a3 1c 10 73 75 69 63 69 64 65 16 60 0a 7d b0 62 9d 00 01 19 09 9d 0c 20 80 ac 6c 1d 9c 00 ac 09 9c 04 cb 79 15 9c 01 2b 4e 9c 00 30 31 34 38 32 34 34 31 30 30 35 37 31 36 9d bf dd 9b 25 2b 32 9c 00 85 b2 00 21 36 1e 02 11 73 00 ac 15 73 86 1e 02 08 36 39 34 9d 13 21 6b 2d 9e 62 1e 02 01 c7 09 7f 00 22 36 d8 03 00 ad 09 f2 04 cc e9 15 7f 01 2b 46 f2 00 38 38 35 32 38 38 36 39 34 38 30 32 38 39 30 38 1d f2 01 01 0d 7f 01 f2 59 0e 2e d8 03 59 9e 00 23 36 72 01 0d 80 04 cd 72 15 80 01 01 4a 80 00 2c 33 35 35 33 36 39 34 34 37 31 34 36 32 1d 03 3d 72 0e 58 0b 4a 72 01 00 24 3a 11 03 00 af 09 f4 04 d0 27 15 74 56 f4 00 34 39 30 36 30 34 36 33 38 36 34 36 35 33 39 2e e6 01 01 30 1d f4 b6 74 02 00 25 36 01 02 11 8e 00 ab 15 8e 82 01 02 04 32 34 32 fb 0c 8e 01 02 01 24 49 01 0c 26 80 bc 7c 5d f3 00 b1 29 0d 04 d3 39 15 7f 01 01 46 81 01 71 8f 0e fa 0d 62 7f 00 21 f3 59 01 3a 72 0c 21 35 09 83 00 27 36 02 01 00 b3 09 83 04 d5 68 15 83 c1 07 4a 83 00 2c 30 35 38 32 37 35 37 36 32 31 33 39 32 db 05 01 30 2d 90 62 16 07 59 83 00 28 36 03 03 00 b6 09 7f 04 da 29 7e 7f 00 1c 31 31 39 39 34 30 36 36 16 7b 0e bd a0 01 01 52 7f 00 21 10 d1 db 19 80 00 29 3a 90 02 00 b8 09 81 04 dd dc 15 81 21 2b 4a 00 01 12 5c 0e 20 36 31 31 38 33 33 37 34 37 f6 a1 05 01 63 29 8e 00 2a 3a 6a 07 11 8f 00 e1 15 8f 01 01 46 8f 00 34 38 39 38 35 30 36 32 33 30 37 36 34 32 33 2e 77 0c 2a eb 0e 62 92 04 00 16 01 55 56 6a 07 01 3f 15 1b 42 fe 0a 00 36 09 20 a5 4c 00 2b 36 49 02 00 b9 29 49 04 de b6 15 ba 01 e6 46 ba 00 00 39 b9 bf 0c 31 35 38 34 2a fd 09 00 67 d9 5b 36 cd 04 dd db 01 54 09 7f 10 2c 80 c0 1b 9b 7d 4c 11 80 00 c0 15 80 01 01 46 80 00 34 38 34 36 30 33 32 33 37 34 38 39 34 33 30 2e 80 00 00 66 19 80 41 3c 56 20 01 05 81 11 1b 2e 20 01 a5 0b 08 31 30 32 09 22 25 22 10 2d 80 c0 09 89 46 a3 00 04 df 3a 15 a3 61 3c 46 a3 00 00 39 1a 69 11 14 35 36 38 38 36 32 2e 6c 02 01 01 52 ed 02 00 21 01 bc 1a c8 09 21 c3 22 12 0b 00 65 16 93 12 09 91 00 2e 52 b3 01 04 df bd 15 90 01 01 4e 90 00 1e 65 0f 0c 39 32 34 38 2e 4a 10 2a f9 11 25 33 22 58 0a 52 b3 01 00 2f 36 7f 00 00 ba 49 32 04 e1 21 15 7f 5a 7d 05 34 30 37 38 39 33 32 39 30 30 33 33 36 39 36 5d 32 21 8d 2d 0f 62 ec 02 79 fb 00 30 36 fe 06 00 bd 09 7f 04 e4 32 15 7f 01 4f 46 fe 00 34 38 35 39 35 31 32 39 37 37 33 31 33 35 38 2e 7e 07 25 69 16 1b 0a 41 b1 4a fe 06 14 31 80 c0 0b 8b 00 26 ca 12 11 74 00 59 7a 74 00 91 6e 14 37 32 31 38 33 37 2e 71 08 3e 74 00 26 22 0d 01 be 39 81 62 00 06 00 32 3a 01 05 00 be 29 07 00 e6 26 a2 0a 4a 86 01 40 38 32 35 31 31 32 32 33 38 39 37 36 34 31 36 33 35 2e 82 05 01 79 2d "}}
{"t":{"$date":"2021-08-24T13:19:36.090+00:00"},"s":"E",  "c":"STORAGE",  "id":22435,   "ctx":"conn6","msg":"WiredTiger error","attr":{"error":0,"message":"[1629811176:90118][1:0x7f67562e7700], file:collection-1088-5057605428677829423.wt, WT_CURSOR.search: __wt_bm_corrupt_dump, 139: {0: 813948928, 20480, 0xda605e34}: (chunk 11 of 20): 07 62 86 01 e5 03 3a ad 00 65 24 00 33 5a 8f 00 00 1a 35 22 5e 24 03 49 94 14 37 36 32 35 31 37 5a 31 0b c1 90 3a 75 00 39 22 52 a3 02 00 34 3a 1c 15 00 c5 29 1e 04 f2 a5 15 8f 4a 1e 01 04 35 34 f9 a2 0c 31 33 37 35 32 6d 13 01 fa 2e 1e 01 22 1c 15 3e 80 00 11 1a 2a 07 12 4a 54 04 00 35 36 40 07 00 c6 09 a0 04 f4 49 82 a0 00 00 33 0e bc 15 18 31 31 37 34 30 33 31 c2 1b 0e 21 e3 29 b0 00 36 3a 77 05 0d 81 04 f5 5c 7e 81 00 30 30 31 30 30 36 32 38 36 37 39 38 37 39 2e 81 00 00 a0 81 bb 69 46 45 3f 35 21 81 52 91 d4 05 81 11 1b 46 77 05 04 36 30 09 22 45 53 00 37 36 67 04 11 a2 00 dd 7e a2 00 59 52 0c 37 32 38 36 2a e5 0b 81 43 2e a2 00 76 e6 04 00 38 36 7f 00 00 c7 29 a2 00 f6 59 42 56 d1 02 34 38 39 33 36 36 30 34 31 34 33 37 32 34 31 2e 82 0e 5d 42 41 d1 52 7f 00 01 a3 09 fe 00 39 36 7f 00 00 ca 09 7f 04 fb 05 9a fe 00 0e 63 0a 04 32 36 2e 17 07 1d 7f 25 a0 76 fe 00 00 3a 3a d1 08 00 ce 05 80 08 a0 00 60 15 80 01 01 46 66 05 31 7e 0e 15 13 04 38 33 2e f0 0b 61 71 2d 7e 00 28 32 15 13 5e 41 03 ae 76 11 16 c9 17 29 3a 00 3b 56 bb 00 04 02 71 7e bb 00 24 30 32 36 30 30 37 37 30 31 34 0e ce 12 2a 9c 0a 8e 1f 07 21 5f 55 da 36 bb 00 62 f5 02 12 94 10 2e 32 19 00 3c 3a 46 05 00 d0 29 76 04 03 f2 7e bb 00 4d f4 21 f6 04 34 37 2e 47 0a 00 09 79 96 61 88 52 f6 01 00 1b 21 cb 3a 60 05 65 82 00 3d 36 84 02 00 d1 09 8e 04 05 9c 9e 8e 00 14 33 39 32 37 38 32 7d 82 2a 76 10 62 8e 00 25 2e 05 7f 00 3e 36 7f 00 00 d3 09 7f 04 09 b8 9e 7f 00 0c 35 34 38 33 32 53 06 3d 0d 8a 03 03 10 3f 80 c0 66 e6 fd f5 11 80 00 ce aa 80 00 36 ff 00 81 32 2e 03 03 b5 23 7d 03 85 02 11 1a dd 44 00 15 21 c9 1e a2 1a 1e ae 19 3d b5 01 38 39 de 12 59 15 36 4e 15 2a 68 15 4e e3 08 00 40 36 6d 01 00 d7 29 6d 04 0f 23 7a ed 00 04 38 34 0e 99 1a 0c 37 32 32 37 0e 06 0c 2e bf 17 3d ec 0e 54 10 19 9c 3e ed 00 25 ec 00 41 36 10 07 00 d8 09 7f 04 10 90 7a 7f 00 51 f9 14 37 37 30 37 33 34 2e d5 09 01 01 2e 6c 01 95 ef 41 79 32 8f 06 05 80 10 42 80 c0 b8 38 2a ac 1c 00 db 09 81 04 15 a4 15 81 21 bd 46 f0 04 34 38 37 35 34 39 34 35 36 30 32 39 34 31 35 2e f0 04 81 11 0d 81 62 ef 05 a1 14 35 ed 00 73 2e b8 1b 12 c3 1b 2a 09 0c 15 26 5d 13 12 69 0d 00 32 16 4b 0a 0e b2 0c 01 a2 04 10 33 09 10 0c 32 31 33 36 45 14 04 10 35 65 52 0c 10 32 30 33 16 e3 1b 1a 95 1c 04 10 37 0d 18 04 31 33 0d 0a 89 89 0c 10 31 35 31 09 bc 00 31 09 3a 15 7a 2e af 07 85 ba 09 6b 29 40 00 43 36 3f 02 2d 3f 04 16 15 35 3f 01 eb 4a 3f 01 1c 30 37 37 36 34 33 39 30 0e 01 0a 00 34 2e 74 05 81 07 2d 3f 8a ac 03 10 44 80 c0 68 e8 7d ac 00 dd 29 bf 04 19 12 15 80 01 01 46 80 00 51 40 18 35 34 31 36 35 31 30 9d ab 3e 2c 04 75 ac 2e a3 0d 00 0b 61 95 71 67 1e a3 0d 11 2b 42 30 01 00 39 05 30 56 0a 03 01 6f 15 3a 1e 4b 1e 04 65 64 2e 4d 1e 00 39 25 14 29 6f 10 45 80 c0 5d dd 4a f0 00 00 1b 15 f0 41 0d 66 f0 00 0e e0 0a 04 38 32 2e 9b 05 3e af 02 15 f0 45 8a 2a a4 19 4d 95 21 a0 15 b1 5d 95 4d 1a 09 1f 75 75 7d f4 09 1a 0d 5f 42 24 01 49 a4 09 e5 00 46 3a f5 1c 31 d5 00 b3 15 e5 01 4c 62 e5 00 14 34 32 36 37 37 34 32 94 04 05 9d 16 a4 0a 0e ea 0d 11 86 9a af 07 61 c7 0e ee 1e 01 76 09 a2 10 47 80 c0 9c "}}
{"t":{"$date":"2021-08-24T13:19:36.090+00:00"},"s":"E",  "c":"STORAGE",  "id":22435,   "ctx":"conn6","msg":"WiredTiger error","attr":{"error":0,"message":"[1629811176:90412][1:0x7f67562e7700], file:collection-1088-5057605428677829423.wt, WT_CURSOR.search: __wt_bm_corrupt_dump, 139: {0: 813948928, 20480, 0xda605e34}: (chunk 12 of 20): 1c 9d 36 00 de 49 77 00 1a 7e 23 06 28 38 31 38 36 37 31 38 36 33 32 32 0e 95 0e 2a 0b 0f 3d 87 81 a9 19 a2 25 87 2d 7c 61 11 2d 93 32 38 02 4a 4e 01 01 2b 66 27 06 3d 97 0e 91 0e 15 6f 3d d0 00 2e 41 e3 85 25 c1 62 04 10 33 45 59 85 25 21 07 00 10 16 28 11 08 10 31 31 05 0f 4e 59 06 10 48 80 c0 34 b4 5d ab 00 df 29 24 04 1c a8 35 c6 01 01 46 c6 01 1e 49 0b 10 32 37 33 38 34 32 4b 19 3d c6 01 df 39 24 21 32 31 24 01 9e 15 1b 2e 19 01 32 c6 01 52 a2 02 01 e9 29 e0 2c 49 8c 20 e4 76 49 6d 5e 80 c0 82 c2 4a c3 00 00 fc 15 c3 5e 6e 03 12 ae 0d 00 30 0e d2 1b 0e f4 17 26 21 1d 21 b7 4d 89 05 90 26 ff 0f a1 28 52 96 00 12 a6 09 56 ec 00 00 1d 21 42 11 1b 2e ec 00 25 2a 00 39 09 20 c5 e7 00 4a 36 a7 05 00 e0 29 8c 04 1e cb 15 c9 01 01 4e 8c 01 16 1e 21 14 37 33 39 39 33 30 2e ca 12 c5 84 69 52 25 8c 62 f2 03 05 7f 10 4b 80 c0 52 d2 3d 49 00 e1 09 80 00 20 7e 56 0c 34 38 36 36 32 35 33 32 33 30 30 38 34 34 37 2e 66 07 05 e2 4e 80 00 12 02 09 89 b7 05 0b b1 a6 00 73 25 ac 2e 13 03 0e de 0b 31 3d e2 0a 04 00 4c 3a 75 0c 00 e2 09 da 00 22 26 90 17 01 01 4a 5a 01 2c 36 32 39 39 31 38 32 36 31 35 35 33 32 2c 0b 61 91 52 da 00 7d b5 41 77 be bc 00 25 32 00 36 69 20 25 95 00 4d 36 50 13 00 e3 0d ba 26 ce 1a 01 01 46 ba 00 f1 3b 0e 67 0b 04 37 34 2e 6a 0e 21 51 0d ba 61 86 4a 50 13 0c 4e 80 c0 16 2e 72 20 0d 74 04 23 d8 55 88 01 da 4a 74 00 16 a3 0d 18 36 36 34 38 37 31 30 2e 73 21 61 b4 0d 74 61 51 59 88 25 fd 49 08 05 8d 59 08 01 0f 2e 08 02 05 10 0e d8 27 00 4f 3a b2 04 0d 9e 00 24 26 ec 1a 01 01 4a 9e 00 2a 86 0d 04 35 38 2e 9e 00 12 28 08 4e a6 02 3d cc 01 c2 5a cc 01 32 1b 00 2e e0 03 01 eb a1 7c 05 21 05 bc 10 50 80 c0 7d fd 7d 62 00 e4 29 ce 00 25 26 19 08 01 01 72 bc 00 04 36 31 32 cf 17 76 92 06 29 5a 21 ae b1 79 05 8c 71 50 dd 49 81 a5 1a 1e 21 c9 50 21 70 f1 f0 39 b0 3d 12 00 18 01 ab 11 4a 2e f7 00 45 c3 1a 2e 20 bd 3b 01 aa 25 05 00 51 36 d2 02 00 e7 29 04 00 29 26 2d 25 01 01 6a 04 01 08 33 39 33 0e a5 16 b9 af 2a cc 0c c5 64 46 92 1e 10 52 80 c0 17 97 3d 78 0d 74 04 2a 10 55 d2 01 01 46 74 00 12 01 0b 04 35 30 0e 00 1a 04 31 34 32 01 0b 21 48 4d 34 21 2a 31 08 a6 78 26 ed 93 25 12 00 53 3a 9f 04 00 e8 29 13 04 2b e8 15 9f c1 78 4a 9f 00 30 31 30 39 38 39 35 39 32 37 37 32 30 31 2e c1 16 7d e5 a5 f9 1a d1 09 36 41 05 41 18 15 ba 42 c2 01 00 38 0d 20 4e 34 06 25 cc 05 bb 00 54 36 b3 06 0d ba 04 2c 46 15 ba 01 65 4a ba 00 00 30 1e 37 29 0c 39 39 31 34 2e ea 0a 3d 59 61 40 52 7f 00 21 72 09 7f 00 55 3a 7b 21 00 ea 29 3a 04 2f 38 15 80 01 01 46 80 00 95 0d 0e 6d 17 04 38 30 56 fc 07 36 4d 02 21 83 5d cf 01 84 7a 9d 00 00 56 3a aa 04 00 ed 09 9d 00 35 26 22 0b 01 01 46 9d 00 66 0a 20 65 5b 89 aa 62 b6 0f 01 99 35 d6 36 f1 01 32 1b 00 2e f1 01 21 6a 36 3c 0b 10 57 80 c0 5a da 7d 32 00 ef 09 bc 00 39 26 aa 29 01 01 46 bc 00 29 59 1c 37 30 30 32 39 35 35 37 2e 47 1a 25 40 1d bc 55 93 dd 04 e5 56 3a 04 06 11 29 9d ad 00 1a 12 f6 0a 45 5b 6d 48 1e 7f 0d 11 2d 1e a4 0d 1a a2 0d 00 0f 05 31 00 30 1a 64 0f 49 3b 00 58 3a 75 03 11 e2 00 44 92 3b 02 05 e2 00 34 0e 17 08 99 88 62 e2 00 45 49 1a 1e 0c 61 10 15 a7 2e 84 01 25 dc 00 35 "}}
{"t":{"$date":"2021-08-24T13:19:36.091+00:00"},"s":"E",  "c":"STORAGE",  "id":22435,   "ctx":"conn6","msg":"WiredTiger error","attr":{"error":0,"message":"[1629811176:91063][1:0x7f67562e7700], file:collection-1088-5057605428677829423.wt, WT_CURSOR.search: __wt_bm_corrupt_dump, 139: {0: 813948928, 20480, 0xda605e34}: (chunk 13 of 20): 0d 20 4e 75 03 05 3a 65 75 00 59 36 75 03 00 f0 29 9c 04 3a 6b 15 ba 21 e9 46 9c 01 34 38 34 31 37 35 37 30 34 33 31 39 34 30 33 2e 4f 0f 61 d0 2d 9c 12 7a 0d 4e 7f 00 01 54 09 7f 00 5a 36 7f 00 00 f1 09 7f 00 3b 26 6f 1b 01 aa 4a 7f 00 1c 36 30 32 33 37 36 37 31 12 78 14 2e 93 08 8e f4 03 01 24 09 7f 00 5b 36 8d 12 11 7f 26 59 30 5a 7f 00 2c 30 34 34 36 37 37 39 35 38 34 38 31 32 00 08 01 01 0d fe 61 09 19 fe 2e b8 01 21 9f 09 80 10 5c 80 c0 5f df 7d 1b 0d 81 04 3c e7 35 7f 01 01 4a 00 01 2c 34 33 36 34 32 37 35 31 34 36 36 31 32 61 24 3d 7f 01 73 51 c5 32 73 12 21 7f 51 44 01 0c 15 26 00 4b 26 36 2f 1a ca 1a 1a a6 0f 19 c8 fd b6 32 3b 00 42 7f 02 0d 3a 45 65 00 5d 36 e6 01 00 f3 29 e6 04 3f 70 7a e6 00 12 7a 20 1c 30 30 37 33 39 36 30 30 32 f8 2a 8e 67 09 05 9f 05 7f 00 5e 36 7f 00 00 f5 09 7f 04 42 d2 15 7f 01 2b 46 65 01 00 39 0e bf 1e 1c 34 35 33 36 30 33 36 36 32 65 02 2a d5 0d 62 e4 02 59 65 00 5f 36 7f 00 00 f6 09 7f 04 43 ad 15 7f 01 01 46 7f 00 1a 9c 29 4a 8b 0d 8e fe 00 19 7f 00 60 36 e4 02 0d 7f 00 44 7e 44 26 34 39 30 31 38 30 35 33 30 38 34 32 34 34 35 2e 7e 05 01 01 4d e4 12 11 08 75 e2 41 71 32 58 02 25 7e 00 61 3a 1d 05 11 81 26 d7 2b 81 ed 46 00 01 a9 ff 00 32 12 77 0c 04 33 32 6e df 1b b5 ff 5e 9d 02 ca d8 02 05 bb 10 62 80 c0 43 c3 7d 9f 00 f7 29 bb 04 45 0d 35 bb 82 bb 00 04 37 30 6e c6 0e 8e 05 08 25 ca 19 e4 2e 65 01 32 1b 00 2e 82 03 81 7c e1 85 05 21 05 cb 00 63 3a 71 1a 11 cb 00 3e 15 cb 01 01 76 86 01 08 32 38 33 dd a3 61 35 5d 07 8e cb 00 01 33 09 8f 00 64 36 14 03 11 8e 00 64 aa 8e 00 04 38 38 2e 89 2e 9d f8 76 75 1c 25 0e 00 65 3a 0e 01 00 f9 29 d9 04 47 f8 15 80 01 ab 4e 0e 01 0e b1 34 18 36 31 36 32 37 38 31 32 55 26 04 d7 07 22 52 36 81 13 8e 0e 01 39 9d 00 66 36 0e 01 00 fa 09 8e 00 49 26 a3 1f 01 01 4e 8e 00 0e 53 21 0e 3f 08 0c 37 30 32 30 2e 0e 01 01 5b 2d 9c 76 dd 09 25 0e 10 67 80 c0 45 c5 5d e7 0d 80 04 4a 9e 35 0e 01 01 46 80 00 26 ad 11 0c 35 33 30 34 2e a2 03 0e f3 0f 0d 80 21 49 59 be 12 dd 14 16 4b 0e 01 19 32 2e 04 11 26 7d ae e1 2a 3e 90 09 2e e8 02 c9 a6 00 35 2e 4d 20 00 68 36 4c 01 00 fb 29 4c 04 4b b7 15 cc 86 b3 03 00 39 32 66 26 5d 5a 36 ef 04 9d 6e 0e 27 08 29 4c 00 69 3a 43 26 00 fe 09 80 04 4f df 15 80 01 2c 4a 4c 01 30 38 32 33 32 30 33 34 34 32 35 36 35 32 2e 5f 1b 01 01 2d 4c 61 d7 b9 6f 2e a0 18 12 b8 0e 1e ee 0a 1e a0 18 25 dd 00 6a 36 91 00 04 36 01 09 91 04 54 b9 15 91 01 01 46 91 00 a9 7f 41 5d 08 36 38 39 32 f6 11 01 01 0d 91 36 5d 02 2e 91 00 21 66 56 91 00 00 6b 32 a1 01 04 36 03 09 90 00 57 99 89 56 21 01 09 90 00 32 c5 0f 36 6d 02 5d ed 36 21 01 3d a1 41 6d 29 10 00 6c 36 c0 0f 15 80 00 98 35 10 56 80 00 2c 38 39 36 32 30 30 31 36 36 37 32 37 0e b7 31 26 ac 0b 0e 0e 10 2d 10 05 80 ae 8f 06 45 e1 16 5b 17 09 9f 00 6d 36 1e 01 00 04 29 1e 04 58 da 7a 9e 00 1a 82 28 18 31 30 36 35 32 38 37 2e 68 18 2a 2d 08 05 9e f5 ae 52 1e 01 00 6e 32 2d 08 11 7f 04 59 86 15 7f 21 d8 5e 2d 02 18 32 31 35 34 30 36 34 32 8a 04 01 01 2d 1d 36 3e 03 2e c8 06 01 99 09 ff 00 6f 36 80 27 04 36 05 29 00 00 59 79 bf 01 01 6e 81 00 10 34 33 35 32 34 2a 85 0f 12 b0 0d 16 2c 0e "}}
{"t":{"$date":"2021-08-24T13:19:36.092+00:00"},"s":"E",  "c":"STORAGE",  "id":22435,   "ctx":"conn6","msg":"WiredTiger error","attr":{"error":0,"message":"[1629811176:92061][1:0x7f67562e7700], file:collection-1088-5057605428677829423.wt, WT_CURSOR.search: __wt_bm_corrupt_dump, 139: {0: 813948928, 20480, 0xda605e34}: (chunk 14 of 20): 05 73 26 81 17 41 14 39 0f 62 80 27 10 70 80 c0 27 a7 b9 1e 11 93 04 5a 7c 35 14 5e 31 02 00 32 0e 67 26 0e 07 30 08 36 35 39 2e 23 0d 01 30 0d 93 01 fa 52 31 02 81 76 15 1a 00 4b 26 98 0b a5 41 0e ba 1d 01 be 1a 65 0b 32 e5 15 00 71 36 31 1c 15 af 00 a3 7a af 00 12 ee 0a 10 32 31 38 39 37 0e 39 2e be 53 0d 01 8e 15 af 1a 6d 0c 1a a6 0e 01 1b bd f3 15 26 2e c8 05 2e 07 03 31 0f 1d f5 05 1f 2e e6 12 10 72 80 c0 56 d6 4a 94 01 00 aa 6e e5 00 20 38 32 37 32 36 39 33 37 32 0e 50 0c 04 36 31 36 66 05 62 94 01 25 71 46 cb 00 32 a0 01 42 cb 00 1a 30 39 4a cb 00 12 a2 10 35 c0 16 9e 17 26 26 15 69 05 00 73 36 04 04 00 06 69 04 04 5b 5d 6e dd 00 2e d3 28 00 35 0e 6f 3e 2e 43 06 8e 22 05 01 24 09 7f 00 74 36 53 29 15 80 00 89 15 80 01 01 3a 84 03 08 38 32 37 0e 69 3e 24 34 35 35 38 36 30 35 32 30 36 2e 09 13 12 8c 11 69 84 85 05 b5 22 65 92 3d 5d 35 32 42 52 01 29 2a 09 a1 00 75 36 be 09 04 36 07 29 21 04 5d 01 6e a1 00 36 21 01 04 36 39 32 fb 16 45 61 19 a1 62 25 04 bd 34 45 01 e5 62 00 76 3a 8f 00 00 08 09 8f 00 5e 26 c5 10 01 01 3a 30 01 12 9f 40 00 39 0e db 12 14 31 39 33 37 37 38 32 df 0e 01 5c 0d 8f 21 22 99 a5 45 3e 2a 3f 09 f1 f2 00 73 3d bf 00 77 36 70 0d 04 36 09 0d 8f 00 d1 35 1e 41 ec 46 8f 00 04 39 31 0e cf 11 18 30 37 39 34 33 37 34 32 d3 11 41 1b 0d 8f 62 b0 04 61 e6 35 be 7d bb 1a a2 09 6d bd 19 ca 52 4a 01 00 78 56 bb 00 00 60 26 d4 18 56 bb 00 66 9c 23 01 30 2e bb 00 4e fe 06 01 24 15 bb 36 e6 14 01 fa 15 1b 42 94 02 2e 5b 3c 00 79 36 ca 11 04 36 0b 29 76 04 61 ff 35 76 01 01 46 76 01 30 38 35 36 36 38 37 38 34 36 31 35 37 37 32 a6 2d 2a de 30 36 35 03 85 92 5d 05 4e 40 03 3d 82 45 dc 1a 63 08 52 00 01 32 bb 01 2e e5 00 29 bc 32 22 31 10 7a 80 c0 35 b5 bd 79 0d e7 04 62 0b 7a e7 00 22 be 09 0e 2a 28 32 8b 43 3e e7 00 4e a2 01 32 a2 00 36 a2 01 32 1b 00 7a bd 00 00 7b 36 58 05 11 bc 7e ba 19 15 bc 04 35 34 3a ee 1b a2 bc 00 85 28 00 7c 3a 58 05 11 80 26 5e 32 56 5d 09 34 38 36 38 30 37 36 38 39 36 34 37 30 31 39 2e dc 09 01 fd 4d de 36 23 02 81 36 52 18 02 2e 22 01 45 19 6d 99 05 a1 10 7d 80 c0 50 d0 3d dd 00 0c 49 c4 04 63 bb 9e dd 01 0c 35 34 38 37 32 6b 36 bd f9 01 93 b9 f9 85 c9 99 be 05 c9 49 d3 32 73 03 3a 7c 17 05 b2 1a 59 14 11 4c 5d ea 00 13 12 9b 17 09 4d 0d 26 05 d8 00 7e 36 d5 0a 00 0d 09 d7 00 64 19 d7 56 78 01 35 f8 42 23 30 01 01 2e 78 01 55 b4 01 e5 32 78 01 05 80 00 7f 36 80 00 00 0f 09 80 00 66 26 82 13 81 82 46 1b 04 10 39 30 33 38 33 0e 6e 28 0c 39 31 30 39 32 8c 21 01 01 0d 80 a5 91 52 80 00 01 55 09 80 0c 80 80 c0 20 0e b5 2f 1a c0 46 04 36 10 09 81 04 68 1d 35 d8 56 01 01 18 38 35 39 34 37 36 35 0e 9a 45 04 36 37 0e 3e 28 22 c0 46 01 4e 0d 81 36 79 02 bd d7 32 c9 01 3d a6 12 e0 2a 16 72 28 12 cd 28 21 fc 09 a8 00 81 3a 5d 04 11 a8 00 20 7e a8 00 18 36 32 34 38 34 34 36 0e 12 12 00 39 32 fc 42 3e a8 00 35 29 1d a8 05 80 51 4e b2 5d 04 32 c5 30 00 82 3a bc 06 11 bd 00 41 15 bd 21 91 4a e6 01 1a 3b 24 0c 38 37 38 35 36 5e 21 21 95 2d 65 36 e6 01 96 bd 00 32 80 01 42 f8 03 2e 48 2f 00 83 36 7f 27 04 36 11 49 20 04 69 2f 15 bb 01 01 3a bb 00 0e ca 22 0e d5 1e 20 34 32 37 39 37 32 32 33 36 2e "}}
{"t":{"$date":"2021-08-24T13:19:36.092+00:00"},"s":"E",  "c":"STORAGE",  "id":22435,   "ctx":"conn6","msg":"WiredTiger error","attr":{"error":0,"message":"[1629811176:92295][1:0x7f67562e7700], file:collection-1088-5057605428677829423.wt, WT_CURSOR.search: __wt_bm_corrupt_dump, 139: {0: 813948928, 20480, 0xda605e34}: (chunk 15 of 20): 75 0d 65 a9 26 50 09 ba 5e 01 01 ee 0e be 14 25 9a 65 42 00 84 3a 5d 01 00 13 09 a2 00 6b 86 f6 29 0e b0 13 04 37 31 12 ac 3f 32 95 3c 2a c3 17 12 c5 10 52 93 0a 21 82 15 bd 42 43 01 00 39 0d 20 4e 55 02 0e 76 0f 09 bb 00 85 36 75 06 11 ba 99 7d 5a 17 02 00 30 12 13 1c 14 30 31 37 39 38 34 32 2e 45 21 d8 2d 5c 21 29 52 7f 00 01 24 09 7f 00 86 36 7f 00 00 15 29 39 04 6f 03 35 db 21 65 3a db 01 12 9c 0a 04 36 34 0e 60 30 00 34 0e 3d 3b 04 34 30 2a b8 28 01 af 0d 7f 0e e9 14 52 7f 00 01 54 09 7f 00 87 36 7f 00 00 16 09 7f 04 70 17 15 7f 01 01 46 7f 00 00 39 16 42 38 14 38 34 39 32 33 39 32 ff 23 21 59 0d 7f 01 66 52 7f 00 19 fe 10 88 80 c0 8a 0a 26 b7 29 04 36 17 09 80 04 71 b4 15 80 21 e3 3a 80 00 14 38 32 37 34 30 31 12 c5 0c 14 36 38 35 37 31 33 2e 72 45 2a 9b 0b 36 fa 04 00 2b c1 7d c9 c3 05 24 2a 96 09 3a e9 06 55 52 bd 15 cd bb 01 ba d1 bb 51 93 42 78 02 cd db 11 20 4e 24 07 ed d6 4a bf 22 00 89 32 32 23 31 11 04 72 04 76 11 01 08 36 34 32 0e 2b 33 14 30 38 31 33 34 32 36 ac 0c 00 da 26 f9 16 21 11 4a 73 00 00 8a 36 10 4b 04 36 18 29 85 00 73 82 01 1b 18 30 38 32 30 30 30 32 0e 81 1a 04 30 37 2e 41 11 05 69 89 5f e1 72 52 05 02 0e 7b 08 35 24 36 92 10 45 c3 29 ab 41 44 15 26 2e 6a 01 61 5b 08 10 31 30 05 2c 15 21 3d b1 85 e2 2e 95 0e 00 8b 36 ea 26 04 36 19 09 e6 00 74 7e eb 02 04 38 37 0e f3 4b 1c 31 32 38 37 33 33 38 39 2e 68 1b 05 63 09 e6 05 f1 26 ba 12 41 61 19 f5 3a 4c 09 45 44 09 de 01 0b 69 88 00 8c 36 88 03 00 1a 09 9d 04 76 0e 35 f7 21 14 3a 08 03 36 32 0f 04 38 30 32 6f 34 1d 9d 21 2b 19 8e 3e 9d 06 a5 c0 00 8d 56 7f 00 82 0e 2a 0e 14 17 20 32 36 38 34 32 37 38 38 31 2e 1c 01 04 57 08 22 6f 19 21 1c 7a 7f 00 14 8e 80 c0 36 b6 00 22 d6 3b 15 ff 00 6f 15 ff 01 01 46 ff 00 08 38 31 36 0e 5c 08 0c 37 38 36 39 0e 89 39 2a f4 15 8e 80 00 25 7e 71 a6 9a 59 08 12 ae 14 08 32 31 33 16 20 09 29 3d 00 8f 56 3d 01 26 3f 0a 01 01 3a bd 00 08 38 32 36 0e 6d 45 1c 34 31 39 32 38 31 33 33 36 ee 10 a2 bd 00 25 bc 00 90 36 7f 00 00 1b 49 3b 00 77 86 04 1d 28 30 39 33 37 34 31 31 35 30 39 32 32 42 06 41 be 5d d8 52 bc 01 25 3c 05 7f 00 91 3a 9d 08 11 80 26 eb 13 4a c3 05 5d bb 14 37 37 31 31 30 38 2e 9d 1a 41 31 2e 80 00 52 fb 07 82 19 04 05 21 05 a2 00 92 3a d8 0d 11 a2 26 b4 16 56 a2 00 0c 38 31 30 35 0e c1 22 14 39 32 35 37 34 36 2e d3 34 01 fe e6 a2 00 65 9b 16 07 0d 09 a1 0c 93 80 c0 42 2a d6 2e 04 36 1c 29 c3 04 79 4d 55 ff 56 fe 03 2c 38 30 31 31 32 36 33 33 33 31 35 36 36 e7 22 a1 5d 0d a1 62 fe 03 6a 1e 4a 0e 7d 09 75 1a 2e 76 05 05 bb 00 36 09 20 9d f0 25 6c 0e b1 2b 00 94 36 8c 02 00 1d 09 c9 00 7b 9e 41 4d 0c 37 37 30 37 36 7e 10 3d 6a 62 c9 00 41 b0 29 49 00 95 3a 87 0a 00 1e 0d 80 00 99 35 49 56 ea 01 30 39 30 39 38 38 36 33 36 33 39 37 36 33 32 41 4e 01 da 2d 49 41 97 52 0c 03 05 80 ba a6 02 25 49 1a 06 08 25 3a 00 96 3a dc 0f 0d bb 04 7c 1e 15 bb 01 01 3a 46 04 0e 09 0a 00 30 12 45 55 0c 32 36 34 34 01 05 2a 09 0a 2a 8a 09 e1 85 3a af 01 19 ca 4e 59 19 19 ce 12 0e 0e 1e 09 10 1e b9 1c 11 1f 1e db 08 22 1f 35 21 a4 0e 07 2d 21 37 09 d8 00 97 3a 93 01 00 1f 29 93 00 7c 26 ee 14 01 01 4e d8 00 1c 37 37 36 35 "}}
{"t":{"$date":"2021-08-24T13:19:36.092+00:00"},"s":"E",  "c":"STORAGE",  "id":22435,   "ctx":"conn6","msg":"WiredTiger error","attr":{"error":0,"message":"[1629811176:92440][1:0x7f67562e7700], file:collection-1088-5057605428677829423.wt, WT_CURSOR.search: __wt_bm_corrupt_dump, 139: {0: 813948928, 20480, 0xda605e34}: (chunk 16 of 20): 39 39 35 30 0e 08 52 2e 5d 08 21 c3 2d 93 01 d8 11 8c 36 c1 05 61 31 15 1b 42 c2 02 6e 7b 27 19 bb 00 98 36 17 10 0d ba 04 7d 6e 7a 92 01 1a 99 23 0e a1 0a 3a 31 0e 01 01 2e ba 00 22 99 0c 01 c8 2e 91 0a 29 3b 00 99 3a 3b 01 00 20 29 3b 04 7e 4a 15 81 21 0b 3a 3b 01 72 1d 0b 7d 4e 45 ce 52 5a 05 01 25 66 3b 01 1a 56 4f 19 bc 2a 50 08 05 3a 45 ce 00 9a 3a 15 06 00 21 09 bb 00 80 f9 14 4a bb 00 dd 15 0e 87 14 00 36 32 23 19 65 31 26 6d 09 56 bb 00 25 bc 11 1b 2e f6 01 49 98 2e 74 05 00 9b 36 aa 04 11 a1 7e b0 2b 2a 74 12 08 35 36 33 2e 76 41 01 d1 0d a1 8a e1 22 00 9c 36 e7 0b 00 22 29 20 00 81 7e f5 1f 00 38 1a 46 54 0e 36 0f 04 30 38 2e f7 0d 7d ee 21 db 4a e7 0b 00 9d 36 f2 00 00 23 09 73 00 82 26 66 27 01 01 3a 4e 02 2e 93 01 0c 35 34 38 30 32 48 40 21 ef 0d f2 01 73 52 13 02 25 92 45 13 00 9e 3a e8 20 00 24 09 80 00 85 26 0d 40 01 2c 46 80 00 00 38 0e 8f 54 0e 80 51 04 35 39 12 b5 46 26 e5 12 01 01 0d 80 36 ea 0e 2e e8 20 01 55 42 c0 04 05 91 00 9f 36 83 01 00 25 0d 90 7e db 29 55 02 04 33 39 3a 58 41 12 8f 17 49 a3 41 02 4a 83 01 00 a0 3a 8a 1a 0d 74 00 86 26 49 24 41 46 4a 04 01 0c 39 37 37 35 0e cb 42 00 37 0e c7 4d 2e d0 32 3a 84 01 62 e5 05 7d a6 21 12 29 02 10 a1 80 c0 53 d3 2a 77 0b 11 8f 26 72 4a 01 01 46 8f 00 35 03 10 35 34 38 36 34 2e 74 26 7d a6 81 d4 71 8b 32 2b 31 01 e3 15 1a 2a b2 0d 0e 57 37 00 10 16 4c 32 1e 5d 12 91 6e 62 d7 00 4e bc 06 25 dd 10 a2 80 c0 60 e0 46 db 00 04 87 06 b5 3c 01 01 46 db 00 0e 4f 0c 0e da 36 0c 30 30 39 37 0e f1 13 59 6e 3d 6a 21 42 19 db ba ef 19 16 42 0c 00 30 1e a0 2e 66 36 03 11 62 2e c8 04 25 60 2e c7 04 00 a3 36 02 29 04 36 29 49 c6 04 8b 56 7a e8 00 2e c3 01 04 37 37 2e 41 11 9d 49 21 c3 62 7b 01 3e 52 02 11 af 36 88 07 21 2b 15 1b 2e ca 00 a9 92 2e 02 09 00 a4 36 a0 04 0d ca 04 8c 45 6e ca 00 72 e5 14 3d b2 62 a0 04 01 24 49 32 00 a5 3a 9c 03 11 80 00 8b 15 80 41 b9 46 32 02 31 4a 46 c8 0c 25 ea 89 10 01 80 a2 4a 01 45 c1 10 a6 80 c0 4c cc 5d c1 00 2c 29 d9 04 8e c8 15 8f 0e e3 08 46 8f 00 2c 38 30 35 31 35 38 31 38 35 35 38 38 62 38 49 21 7d 39 b0 45 c1 2e 0f 13 04 6b 69 0e e0 5e 25 1b 11 26 2e bb 01 45 85 3a e5 12 7d c8 12 32 0a 22 20 43 2e ad 02 00 a7 36 e2 01 00 2f 09 d3 04 92 16 15 d3 56 62 01 0c 38 32 30 39 0e f8 22 0e ae 23 a1 06 79 94 2a da 25 21 62 66 4c 03 25 53 00 a8 56 7f 00 26 23 3e 5a 52 01 16 cc 30 10 36 37 34 31 39 da bf 58 05 7f 00 a9 32 ab 52 11 fe 04 93 81 15 fe 61 2c 46 d1 01 4d 60 0e 44 3f 04 38 34 32 6d 05 01 30 4d 60 36 00 07 3a 16 05 25 c9 05 83 00 aa 36 02 01 00 31 29 81 04 94 f0 15 83 01 01 5e 83 00 0e 6b 28 04 39 34 36 1b 3b dd f3 00 d0 0e 07 60 22 d2 0a 3e 1e 04 05 7f 04 ab 80 36 e8 0e 0d 80 00 95 26 9f 0d 01 01 4a 80 00 28 30 37 30 39 35 39 33 38 31 35 32 36 9b 4c 01 db 2d 03 62 01 02 21 d6 55 c8 36 9e 04 32 ba 0d 42 e3 02 00 32 09 20 3a b8 03 05 ca 00 ac 36 49 01 00 32 29 49 04 95 de 35 49 01 75 46 c9 00 00 38 26 65 52 04 32 37 32 0b 37 00 64 0e 9e 16 89 2c 65 9d 76 49 01 00 ad 3a ac 04 00 33 09 80 00 97 99 1d 56 4a 03 4d 4c 0e 07 28 04 37 32 5e 2f 14 21 49 1d f4 21 63 52 8f 00 01 19 29 0e 00 ae 36 0e 01 00 34 09 8e 04 98 18 35 0e 01 "}}
{"t":{"$date":"2021-08-24T13:19:36.092+00:00"},"s":"E",  "c":"STORAGE",  "id":22435,   "ctx":"conn6","msg":"WiredTiger error","attr":{"error":0,"message":"[1629811176:92582][1:0x7f67562e7700], file:collection-1088-5057605428677829423.wt, WT_CURSOR.search: __wt_bm_corrupt_dump, 139: {0: 813948928, 20480, 0xda605e34}: (chunk 17 of 20): 01 46 0e 01 20 39 31 33 32 31 38 38 38 37 0e db 09 00 37 2e 01 4f 01 5b 2d 0e c1 84 52 7f 00 41 fe 09 7f 00 af 56 7f 00 00 67 15 7f 4a 8d 01 24 38 32 38 39 31 37 34 34 30 35 0e 1b 1b 08 32 35 33 2e f1 4e 00 65 b2 8d 01 00 b0 3a bd 14 0d ff 00 99 26 73 21 01 ab 46 ff 00 14 38 33 35 33 34 31 0e 73 3e 08 32 35 34 32 59 16 3a ac 2e 66 ff 00 b1 9e 36 d6 02 01 6f 15 1b 2e d6 02 c5 91 08 32 30 30 16 67 46 29 3d 00 b1 3a 17 17 11 be 72 65 0e 2e 17 0c 04 33 39 3a aa 0d 3d bd 3a 4b 02 01 99 19 cd 3a 17 17 01 1d cd 7a 01 0b 09 9e 00 b2 3a 03 0f 11 9e 00 69 35 dc 01 01 46 5c 01 16 ef 51 08 37 31 37 a1 37 32 11 5f 2a 1a 13 76 b2 04 56 5c 01 01 dd 15 1b 2e 5c 01 e5 15 16 e9 47 09 bb 00 b3 3a a4 03 00 37 69 16 00 9c 19 bb 4a 97 02 21 59 62 5a 3f 01 30 6d 16 62 24 04 85 d2 7d be 25 4b 0e 9a 13 00 b4 36 25 03 11 8e 00 d4 82 49 01 0e c3 30 00 32 12 d6 2d 04 33 38 2e 04 15 00 a2 79 25 8a a4 03 00 b5 3a fb 05 00 39 29 0e 04 9e e0 15 80 76 b2 04 41 67 36 80 00 01 ea 2d 0e 41 67 3a 58 02 16 c3 08 05 24 1e bd 12 16 52 5d 35 bd 9a 34 03 25 d8 1a ed 08 25 49 00 b6 36 49 01 00 3a 09 c9 00 a0 26 f5 54 01 01 4a 92 02 2d d7 00 38 0e 4e 1a 00 33 2e 25 24 01 f9 52 c9 00 52 44 07 10 b7 80 c0 7c fc 2a 18 0a 00 3d 09 80 00 a5 26 90 5f 01 01 4a 80 00 2d c9 08 37 37 30 0e e6 3e 2a 47 0f 41 d3 52 80 00 65 a1 29 49 45 7b 62 49 01 5a 41 0a 45 7c 71 47 42 2c 03 1a 19 0a 11 20 2a 41 0a 41 dd 1e 02 0e 2e cc 02 21 ce 25 83 00 b8 36 83 01 00 3f 29 03 04 a7 74 7e 4c 02 30 30 37 34 32 34 30 34 31 37 33 37 30 34 2e 8f 33 01 5a 52 03 01 52 83 01 00 b9 52 7f 00 04 a8 43 7e 7f 00 16 49 22 10 31 30 31 31 34 36 8e 21 2a 46 09 36 cb 02 52 7f 00 00 ba 36 97 14 00 40 09 fe 04 a8 a9 15 7f 01 01 46 01 02 66 e0 40 01 01 0d fe 21 b3 79 4a 61 d8 1e 19 0c 21 23 29 7e 00 bb 36 ff 00 00 41 09 80 00 ab 26 73 5d 41 d1 46 80 00 51 81 0e 35 10 36 2f 38 01 5b 0d 80 8a ff 00 00 bc 3a 58 05 00 42 09 80 04 ad 09 7e 00 01 16 3a 47 10 37 30 33 32 35 36 70 5d 65 e3 16 7c 09 01 80 3a 3e 05 39 0f 3d 8e 61 34 29 0e 00 bd 3a d9 04 00 44 09 8f 04 ae c9 15 8f 61 3c 46 0f 01 24 38 31 32 33 33 30 32 36 33 38 0e 65 2c 2e bb 1c 01 5c 0d 8f 61 0a 66 80 00 3e a9 00 52 ce 15 21 d2 75 65 5e 85 03 65 56 00 be 36 d8 01 0d c9 00 af 26 45 6d 5a c9 00 10 30 33 39 39 36 0e 07 23 08 32 36 30 5e 26 1b 62 c9 00 05 9f 05 7f 00 bf 3a 89 08 00 45 29 49 04 b0 42 35 49 56 58 02 22 7e 29 08 33 39 36 0e 75 17 26 1e 0e 3a 58 02 3e 2f 01 22 63 0b 85 e8 36 dd 04 8d f7 19 9e 00 c0 3a 96 34 11 9e 00 8b 15 9e 01 01 4a e7 01 24 38 33 30 33 38 34 35 37 36 30 0e a0 34 bd 77 12 12 36 59 76 39 be 5d 67 05 80 11 1a 00 4b 26 65 32 45 b2 2e 86 4e 00 c1 36 14 04 00 47 29 3c 04 b3 13 7e 9e 00 16 41 1c 18 34 34 34 31 32 39 36 2e 84 1d 01 01 0d 9e 81 06 39 2d 01 0e 91 14 05 9f 25 bd 00 c2 36 3c 02 11 80 26 5e 08 5a 3c 02 2c 31 31 37 38 37 30 30 34 37 33 30 37 32 d5 37 65 89 29 1e 8a 3c 02 00 c3 52 7f 00 00 b4 82 33 53 16 57 15 14 32 32 37 38 33 35 32 c6 24 8e 82 1f 19 fe 00 c4 36 fd 43 04 36 48 29 7f 04 b5 54 86 7f 01 28 30 36 31 38 30 33 37 38 35 34 35 2e 85 13 1d ff 01 0b 39 7f 5e 1d 02 9a ce 08 21 4c 0e 36 23 19 bc 00 c5 36 96 10 00 "}}
{"t":{"$date":"2021-08-24T13:19:36.092+00:00"},"s":"E",  "c":"STORAGE",  "id":22435,   "ctx":"conn6","msg":"WiredTiger error","attr":{"error":0,"message":"[1629811176:92712][1:0x7f67562e7700], file:collection-1088-5057605428677829423.wt, WT_CURSOR.search: __wt_bm_corrupt_dump, 139: {0: 813948928, 20480, 0xda605e34}: (chunk 18 of 20): 4a 09 bb 04 b8 0f 15 bb 56 ba 01 cd cd 0e c4 20 08 38 37 33 2e fa 21 62 bf 04 3a 96 10 19 83 00 c6 3a fb 1c 00 4c 09 84 00 ba 82 87 16 0e 37 20 1c 34 31 32 34 36 34 30 36 32 80 24 01 5c 4d 3e 41 b0 52 3f 01 0e 37 47 2e 14 04 01 b8 71 6b 36 4e 01 81 48 15 1b 42 43 05 16 a4 53 2a ee 17 61 d9 65 15 00 c7 3a c3 13 11 d8 00 c1 35 5c 01 01 4a 34 04 81 2a 08 30 31 36 0e d8 2c 04 33 33 2e b9 5a 01 a4 0d d8 01 e3 19 af 00 20 0e 8d 0b 91 c3 1a a6 1d 2e c4 04 11 2a 42 b1 1d 85 4a 66 8b 09 2e 1f 00 05 d4 00 c8 3a 4c 21 00 4d 29 ac 04 bc a2 15 d4 4a a6 05 10 38 32 35 35 31 0e a2 41 00 36 0e 33 19 00 34 36 30 02 2a 91 0d 45 eb ca c6 06 00 36 25 0e 09 a1 00 c9 3a a1 38 00 4e 09 a1 04 bd ee 15 a1 01 01 46 75 01 22 9f 08 04 33 39 0e 96 23 2a 48 3f 3d 75 01 a1 62 47 06 62 e0 02 00 ca 36 9e 04 0d 92 04 be 4f 6e 92 00 72 af 35 41 91 4d 07 01 92 52 df 02 41 20 29 12 00 cb 3a 44 0f 00 4f 29 12 00 be 26 ad 12 01 2c 62 12 01 0e 42 0f 04 34 37 5e 82 1f 36 79 14 9d 9e 01 a4 55 77 ae 50 03 00 35 09 3b 45 6e 00 cc 56 bb 00 00 c0 26 cc 60 01 01 46 bb 00 66 56 49 5d 6e 62 ff 0f 21 f1 5a bb 00 32 1b 00 42 0b 04 2e ff 0f 00 cd 3a 29 03 2d 76 04 c0 9a 35 f6 5e 76 01 1a 8d 6b 08 39 32 32 36 86 71 81 58 2d f6 25 76 ca 29 03 2e f9 11 00 ce 36 96 02 00 52 49 16 00 c4 26 01 1f 4a c9 03 0e 9f 10 1a 48 0e 0e 91 0f 00 31 32 54 2e 21 f2 0d a0 8a 96 02 00 cf 36 7f 00 00 54 09 7f 00 c8 26 d3 2e 4a 78 06 00 38 0e 8e 35 1c 33 33 37 31 34 37 31 31 01 08 2e 80 1f 01 74 0d 7f c1 e6 7a 15 03 00 d0 3a cb 30 00 55 09 80 04 c9 65 35 9f 01 01 46 5a 02 15 ff 0e d3 5c 32 10 11 2a cb 30 c5 74 b6 9f 01 12 03 0e 22 b1 30 7a bd 00 00 d1 36 ba 1e 11 bc 00 ba 15 bc 76 5b 02 14 32 34 33 39 33 31 2e 83 10 2a f4 1b 41 5b 4a ba 1e 00 d2 36 af 01 00 56 29 2f 00 cb d9 cb 7a 2e 02 08 35 34 37 36 64 3d 7d 89 21 ba 7a f2 00 00 d3 36 7f 00 00 57 09 7f 04 cc 36 15 f2 4a 2e 02 5d ad 00 37 0e d4 64 32 e3 15 7d 4d 8a 2e 02 10 d4 80 c0 40 c0 2a 75 11 00 58 0d 80 00 ef 15 80 56 72 01 0e 2f 57 1c 34 31 34 36 38 31 36 35 0e e9 29 26 9c 0c e5 59 16 e0 0a 25 72 26 3c 2c 01 4a 66 0e 01 59 57 bd 6c 01 33 15 1a 3e 27 0c 2e 1d 07 00 d5 36 f6 55 04 36 59 09 c8 00 ce 7e f6 02 1e c2 73 0c 35 32 32 36 36 97 23 12 53 16 09 c8 25 c7 b6 f6 02 21 7b 22 de 5c 3d 04 0e 9c 09 39 04 3a a0 0d 21 eb 1a dc 08 41 45 c9 2a 00 d6 36 46 65 04 36 5c 09 da 04 d2 db 35 a2 01 01 3a d0 03 24 38 32 37 39 34 38 33 31 32 30 c5 e2 00 39 32 92 19 2a 23 45 ca da 00 69 d0 32 f9 44 10 d7 80 c0 37 b7 5d 45 0d a3 04 d3 f4 15 a3 21 c8 3a a3 00 45 c5 0e ee 23 04 36 31 0e d2 46 00 32 32 73 24 01 30 2d 7d 41 45 ba 7d 01 45 83 1a 81 1f 39 6d 62 c6 08 00 d8 3a e5 0c 00 5d 29 62 00 d5 7e 3c 02 bd 32 04 35 37 32 51 7a 21 57 0d bf a5 32 22 91 0f 5d db 21 ed 5a d9 00 62 8c 07 49 56 00 30 09 21 12 48 08 00 d9 36 3f 04 00 62 09 bb 00 db 26 66 32 01 67 46 7a 01 1e 5b 10 0e 59 61 00 39 32 13 58 01 7c 0d bb 01 6e 52 bb 00 21 9e 09 7f 00 da 56 7f 00 26 6a 24 5a 7f 00 62 d2 60 01 5b 7e 7f 00 e1 8f 09 7f 00 db 3a 46 09 00 66 09 ff 04 e1 31 55 79 56 bd 05 2c 38 37 39 30 34 33 36 30 30 33 34 32 0e 11 23 99 be 01 5c 0d 80 21 c5 66 ff 00 ce 93 02 2e 6d 17 "}}
{"t":{"$date":"2021-08-24T13:19:36.092+00:00"},"s":"E",  "c":"STORAGE",  "id":22435,   "ctx":"conn6","msg":"WiredTiger error","attr":{"error":0,"message":"[1629811176:92847][1:0x7f67562e7700], file:collection-1088-5057605428677829423.wt, WT_CURSOR.search: __wt_bm_corrupt_dump, 139: {0: 813948928, 20480, 0xda605e34}: (chunk 19 of 20): 00 dc 36 3a 01 11 ba aa 11 7a 3a 40 56 3d 3a 62 74 02 01 24 29 3a 00 dd 36 7f 00 00 67 29 39 04 e2 51 7e 39 01 1c 38 39 34 31 30 33 33 32 0e 20 0f 32 f0 38 b6 a5 5b 00 de 3a eb 14 00 68 09 80 00 e5 26 8b 47 01 01 4a b8 02 20 37 32 36 36 39 38 36 31 34 12 44 2b 2a cc 0c 65 f4 b9 af bd 73 01 f5 66 c8 01 65 46 00 df 3a e9 1c 00 69 09 8f 00 e6 72 a2 23 0e a3 2c 30 37 35 33 36 36 36 32 36 32 30 34 32 32 2e 44 1a 00 e3 26 9c 34 12 8e 0b 52 3e 06 62 8d 2e c5 7c 0c 32 30 31 39 0d 23 62 40 04 05 be 00 e0 36 cc 01 11 bd 26 be 56 01 01 4a 4c 01 12 5f 2d 0e 33 75 08 39 35 38 0e b6 25 22 64 3b 9d 04 8a 4b 02 00 e1 36 7f 00 00 6a 29 3c 00 e7 82 7e 34 62 b6 16 1d 7f 62 84 03 01 24 09 fe 00 e2 52 7f 00 04 e8 a4 55 ca 41 00 46 fe 00 12 e2 51 0e 1b 78 42 8e 0c a2 a4 1e 25 7d 00 e3 36 7f 00 00 6c 09 fe 04 ea ca 15 7f 01 01 3a 7f 00 30 38 32 37 37 30 39 38 35 32 36 34 35 39 0e 7f 23 2e 3a 02 a1 32 5d c9 52 fc 01 01 d3 09 7f 10 e4 80 c0 96 16 2a 67 38 0d 80 00 eb 82 85 2e 2c 37 31 36 36 35 32 36 35 35 36 37 32 32 a1 13 2a 32 0b 62 7e 01 41 16 2e 63 03 12 d6 08 55 e3 2e 35 1b a1 80 1a d3 08 01 d9 b5 37 2e 62 0e c1 68 0e 5b 2f 01 2c 2a a2 0b 01 30 11 55 2a fb 09 00 27 0e 11 12 1e 80 08 1e 4d 1b 1e 28 80 3a d7 3d 00 e5 36 4f 0c 00 6e 29 9d 04 ee 08 6e 9d 01 12 98 08 00 34 16 3e 85 42 75 7e 2a 5d 0b 21 04 4a 4f 0c 00 e6 3a a6 11 00 6f 09 74 00 ef 26 ba 72 01 01 66 11 02 10 36 30 39 34 37 32 47 4a 41 eb 5d 11 62 da 04 62 e0 08 00 e7 36 a3 02 11 92 00 68 35 06 21 79 3a 92 00 81 dd 1e fd 41 42 7f 18 01 30 1d 92 7a a3 02 00 e8 36 85 01 11 7f 00 e4 15 7f 21 e9 4a 7f 00 08 30 31 33 0e 42 86 14 35 36 32 39 37 35 2e d4 0d 41 6e 0d 7f 45 3b 46 2a 5d 00 e9 36 35 18 00 70 29 84 00 f0 26 ba 1a 01 01 4a 73 00 62 69 6a 01 01 0d 73 a5 cf b5 91 45 06 2a 62 28 69 96 00 ea 36 72 01 00 71 09 80 00 f1 26 4b 7d 61 c1 4a 80 00 1e fb 3c 08 38 30 38 36 8d 0c b6 94 04 00 eb 36 7f 00 00 72 09 7f 04 f2 a3 35 72 01 01 3a 7f 00 10 38 32 36 37 38 0e b5 24 1c 30 32 37 35 33 39 32 33 2e 99 32 b6 35 18 00 ec 36 7f 00 00 74 09 7f 2a f7 71 5a f1 01 20 32 30 34 31 32 36 39 34 36 0e ae 34 5a 1d 16 21 f1 39 7e 2a 4f 0b 61 26 29 7d 10 ed 80 c0 94 14 bd 13 11 80 26 47 1e 5a 80 00 2c 36 33 31 37 32 39 35 39 34 39 38 36 32 27 5f 2a 15 0a 05 80 52 ea 04 45 96 04 6b 69 0e 60 2a 00 12 21 60 11 26 2e ea 04 12 a5 08 00 33 05 2b 56 c6 00 61 5a 15 3a 9d f5 00 43 81 f5 00 39 12 16 0e a1 2a 41 3f 0e ac 39 00 36 09 9b 00 31 16 86 52 04 10 38 0d 0f 25 0d 1a 6e 0a b1 22 29 1c 00 ee 52 9b 01 00 f6 72 1a 02 bd 11 10 37 36 32 32 38 32 56 56 2a 4c 0e 01 95 52 9b 01 01 19 09 7f 00 ef 36 7f 00 00 78 49 1a 04 fb 9f 55 99 21 00 3a 99 02 85 8a 1e 74 5b 0e 5f 1f 5a 1a 02 62 ad 06 19 7f 10 f0 80 c0 25 a5 2a a8 0e 00 79 09 80 00 fc 26 ab 23 01 01 3a 80 00 0c 38 32 37 36 41 18 08 36 37 34 0e 27 32 00 38 32 91 58 3e 19 03 55 1a 12 2b 2c 3a b7 18 35 d9 42 ac 18 16 f0 09 36 7c 3b 00 f1 3a 49 06 0d ad 04 fd 7a 35 2d 01 01 3a ad 00 21 2d 12 06 22 12 8b 87 00 31 0e e1 4b 26 d7 09 45 7e 00 77 12 7b 8c 81 c5 c6 49 06 00 f2 36 57 05 00 7b 29 3f 04 ff 6b 15 92 56 bf 01 2a 28 0f 04 38 31 32 28 0f 01 01 0d 92 36 bf 01 "}}
{"t":{"$date":"2021-08-24T13:19:36.092+00:00"},"s":"E",  "c":"STORAGE",  "id":22435,   "ctx":"conn6","msg":"WiredTiger error","attr":{"error":0,"message":"[1629811176:92989][1:0x7f67562e7700], file:collection-1088-5057605428677829423.wt, WT_CURSOR.search: __wt_bm_corrupt_dump, 139: {0: 813948928, 20480, 0xda605e34}: (chunk 20 of 20): 56 57 05 00 f3 3a a7 0b 00 7c 05 81 08 a1 00 57 15 81 01 01 4a 13 01 30 39 32 36 33 37 35 35 32 38 36 34 39 32 2e 02 6e 3e c0 01 b5 d8 9d 5a 45 40 39 da 42 9b 00 11 1b 2e e9 03 4e d1 01 00 f4 36 fd 02 00 7d 09 bd 04 01 5f 15 bd 01 69 4a bd 00 04 35 33 0e b6 88 0c 38 37 35 30 0e a6 2d 2a 6a 13 81 f3 2d 3e 12 25 11 62 bd 00 12 a9 0a 00 f5 3a 2c 0f 00 7e 09 80 04 03 fb 7e 80 00 04 37 33 0e 8c 47 0c 30 34 36 36 0e 70 76 2a 2c 0f 2a 0d 09 76 80 00 31 22 36 2d 19 01 ef 15 1b 2e 3d 01 45 a8 2e d1 17 00 f6 3a bb 00 00 81 09 bb 04 07 19 15 bb 01 01 46 3b 01 5d 79 04 35 35 32 05 20 bd d2 01 87 66 3b 01 ce bb 00 2e e7 0f 00 f7 36 33 03 00 82 09 ba 00 08 82 f3 55 22 e8 0e 08 32 34 37 32 55 85 01 01 2d f5 c5 8c 35 f5 2e 98 02 41 1a 29 f6 00 f8 3a 46 04 00 84 09 81 00 0a 82 95 65 62 73 05 3d 3b 61 b4 c6 46 04 00 f9 3a 40 1a 00 85 09 93 00 0d 26 0b 8a 56 47 04 30 38 30 38 35 32 35 36 39 32 34 39 37 39 32 17 7a e5 7b 89 d9 01 93 ce b4 01 16 99 72 29 34 00 fa 36 a9 03 00 87 09 a0 04 0f 55 9e 6e 02 0c 31 33 37 30 32 f9 83 1d a0 62 6e 02 39 b3 00 fb 3a ee 02 11 80 7e b3 01 51 ee 14 35 34 34 35 31 38 2e 53 0e 21 50 2e 20 01 55 34 9d e6 0e 14 09 d2 3a 01 2e 30 42 00 fc 36 3a 01 00 88 29 3a 00 11 26 42 2a 01 8a 6a a8 03 08 31 33 37 36 86 31 a5 48 3d da 4e ba 00 21 53 29 b9 00 fd 36 6d 03 00 89 09 7f 00 12 72 3e 54 2a de 08 0e 21 1f 04 38 31 2e 55 12 01 01 52 7f 00 2e 6d 03 a1 07 09 80 00 fe 36 80 00 00 8b 09 80 00 15 7e 04 39 31 b9 0e 4b 1a 0e b9 23 f9 b2 01 01 82 80 00 39 00 00 ff 36 7f 01 11 80 82 0e 42 62 e9 0d 41 95 52 80 00 5d 39 15 7f 10 30 00 80 bd 7d 2a 5e 09 11 7f 26 0b 11 01 2b 4a fe 01 1a ed 62 14 35 38 33 36 30 34 2e cc 4b 01 01 0d 7f 36 61 06 52 5e 09 c1 e6 04 30 01 52 03 01 00 16 26 c7 53 01 01 3a 84 00 72 92 20 12 ef 18 9e 82 02 04 30 02 3a 4b 18 00 8c 49 03 00 17 86 2e 4c 1a 72 10 42 e9 51 a2 80 00 ba f6 04 c1 3d 1e 36 11 29 3b 00 03 3a 98 05 11 bc 26 7d 1d 81 24 3a 3c 01 61 3f 04 30 31 0e 5b 09 0e 7f 2c 00 32 0e 7c 83 59 bf dd 2b 01 6f ba a2 00 12 07 08 fd 4c 14 30 04 80 c0 3c bc 5d 61 00 8d 29 5d 04 18 f1 82 99 05 0e 79 20 18 35 37 31 30 32 34 30 32 60 5a 81 8f 2d dd 0e 12 0b 66 5f 04 19 bb 52 7b 02 11 1f 42 d9 0b 05 c4 bd 22 04 30 05 36 a0 02 00 8f 09 c3 00 1a 26 7a 41 01 93 46 64 01 14 38 31 33 30 31 38 0e 04 7a 00 39 0e 25 6d 9d 23 b2 22 05 04 30 06 3a 8b 2a 00 91 09 80 04 1d 8a 35 43 5e e4 01 5e 14 4e 3e e4 01 b5 a2 12 dc 1c 16 10 0f 61 f8 22 0d 0d 1a ad 30 3a 38 08 65 bd 00 07 36 1d 01 00 92 09 9d 04 1f 6d 15 9d 5a 1d 01 16 4a 16 0e 22 7c 04 32 35 32 b9 21 b6 1d 01 00 08 36 7f 00 00 94 09 7f 04 22 9d 7a 7f 00 0e 24 53 04 33 37 0e ae 27 08 30 36 38 32 8c 62 b6 7f 00 00 09 3a 9c 01 00 96 09 80 04 24 2b 82 80 00 89 3c 14 37 36 32 36 34 37 2e 29 13 62 bf 05 3d 9c 21 f0 3d 9c 01 33 2e 9c 01 05 10 10 11 e3 a7 30 0a 36 1d 01 11 9d 7e 48 4b d5 dc 00 33 0e 97 8b 2e 36 80 8e 68 16 41 39 49 1b 00 0b 3a 59 05 11 80 00 cd 35 1d 01 01 4a 39 03 62 c3 89 bd 59 e1 ce 59 b9 dd dc 41 dd 75 dd 36 be 0c 25 19 71 f8 2e be 0c 81 ea a1 59 05 21 25 3b 00 0c 36 3b 01 16 c4 9b 08 a1 26 b5 7e bb 00 08 30 35 39 0e 88 24 04 35 38 0e a7 49 00 31 "}}
{"t":{"$date":"2021-08-24T13:19:36.093+00:00"},"s":"E",  "c":"STORAGE",  "id":22435,   "ctx":"conn6","msg":"WiredTiger error","attr":{"error":-31802,"message":"[1629811176:93011][1:0x7f67562e7700], file:collection-1088-5057605428677829423.wt, WT_CURSOR.search: __wt_block_read_off, 336: collection-1088-5057605428677829423.wt: fatal read error: WT_ERROR: non-specific WiredTiger error"}}
{"t":{"$date":"2021-08-24T13:19:36.093+00:00"},"s":"E",  "c":"STORAGE",  "id":22435,   "ctx":"conn6","msg":"WiredTiger error","attr":{"error":-31804,"message":"[1629811176:93023][1:0x7f67562e7700], file:collection-1088-5057605428677829423.wt, WT_CURSOR.search: __wt_block_read_off, 336: the process must exit and restart: WT_PANIC: WiredTiger library panic"}}
{"t":{"$date":"2021-08-24T13:19:36.093+00:00"},"s":"F",  "c":"-",        "id":23089,   "ctx":"conn6","msg":"Fatal assertion","attr":{"msgid":50853,"file":"src/mongo/db/storage/wiredtiger/wiredtiger_util.cpp","line":520}}
{"t":{"$date":"2021-08-24T13:19:36.093+00:00"},"s":"F",  "c":"-",        "id":23090,   "ctx":"conn6","msg":"\n\n***aborting after fassert() failure\n\n"}
{"t":{"$date":"2021-08-24T13:19:36.093+00:00"},"s":"F",  "c":"CONTROL",  "id":4757800, "ctx":"conn6","msg":"Writing fatal message","attr":{"message":"Got signal: 6 (Aborted).\n"}}
{"t":{"$date":"2021-08-24T13:19:36.446+00:00"},"s":"I",  "c":"CONTROL",  "id":31431,   "ctx":"conn6","msg":"BACKTRACE: {bt}","attr":{"bt":{"backtrace":[{"a":"5581F8D06C1A","b":"5581F5F7A000","o":"2D8CC1A","s":"_ZN5mongo18stack_trace_detail12_GLOBAL__N_119printStackTraceImplERKNS1_7OptionsEPNS_14StackTraceSinkE.constprop.606","s+":"1EA"},{"a":"5581F8D08699","b":"5581F5F7A000","o":"2D8E699","s":"_ZN5mongo15printStackTraceEv","s+":"29"},{"a":"5581F8D05A46","b":"5581F5F7A000","o":"2D8BA46","s":"_ZN5mongo12_GLOBAL__N_116abruptQuitActionEiP9siginfo_tPv","s+":"66"},{"a":"7F676B81A980","b":"7F676B808000","o":"12980","s":"funlockfile","s+":"50"},{"a":"7F676B455FB7","b":"7F676B417000","o":"3EFB7","s":"gsignal","s+":"C7"},{"a":"7F676B457921","b":"7F676B417000","o":"40921","s":"abort","s+":"141"},{"a":"5581F6EA79F8","b":"5581F5F7A000","o":"F2D9F8","s":"_ZN5mongo25fassertFailedWithLocationEiPKcj","s+":"12B"},{"a":"5581F6B87D03","b":"5581F5F7A000","o":"C0DD03","s":"_ZN5mongo12_GLOBAL__N_141mdb_handle_error_with_startup_suppressionEP18__wt_event_handlerP12__wt_sessioniPKc.cold.1079","s+":"16"},{"a":"5581F707D0DB","b":"5581F5F7A000","o":"11030DB","s":"__eventv","s+":"3FB"},{"a":"5581F6B99B1D","b":"5581F5F7A000","o":"C1FB1D","s":"__wt_panic_func","s+":"10C"},{"a":"5581F6BA7109","b":"5581F5F7A000","o":"C2D109","s":"__wt_block_read_off.cold.5","s+":"85"},{"a":"5581F719BD1E","b":"5581F5F7A000","o":"1221D1E","s":"__wt_bm_read","s+":"16E"},{"a":"5581F70DB862","b":"5581F5F7A000","o":"1161862","s":"__wt_bt_read","s+":"92"},{"a":"5581F70E6525","b":"5581F5F7A000","o":"116C525","s":"__page_read","s+":"165"},{"a":"5581F70E7A1D","b":"5581F5F7A000","o":"116DA1D","s":"__wt_page_in_func","s+":"2ED"},{"a":"5581F712462D","b":"5581F5F7A000","o":"11AA62D","s":"__wt_row_search","s+":"90D"},{"a":"5581F70CC25F","b":"5581F5F7A000","o":"115225F","s":"__wt_btcur_search","s+":"94F"},{"a":"5581F7012D68","b":"5581F5F7A000","o":"1098D68","s":"__curfile_search","s+":"1A8"},{"a":"5581F6FC6B09","b":"5581F5F7A000","o":"104CB09","s":"_ZN5mongo30wiredTigerPrepareConflictRetryIZNS_31WiredTigerRecordStoreCursorBase9seekExactERKNS_8RecordIdEEUlvE_EEiPNS_16OperationContextEOT_","s+":"89"},{"a":"5581F6FC6E81","b":"5581F5F7A000","o":"104CE81","s":"_ZN5mongo31WiredTigerRecordStoreCursorBase9seekExactERKNS_8RecordIdE","s+":"B1"},{"a":"5581F79EA8CC","b":"5581F5F7A000","o":"1A708CC","s":"_ZN5mongo16WorkingSetCommon5fetchEPNS_16OperationContextEPNS_10WorkingSetEmNS_11unowned_ptrINS_20SeekableRecordCursorEEERKNS_15NamespaceStringE","s+":"6C"},{"a":"5581F79B3166","b":"5581F5F7A000","o":"1A39166","s":"_ZN5mongo10FetchStage6doWorkEPm","s+":"136"},{"a":"5581F79C9F14","b":"5581F5F7A000","o":"1A4FF14","s":"_ZN5mongo9PlanStage4workEPm","s+":"64"},{"a":"5581F79A5176","b":"5581F5F7A000","o":"1A2B176","s":"_ZN5mongo15CachedPlanStage12pickBestPlanEPNS_15PlanYieldPolicyE","s+":"166"},{"a":"5581F7A1132A","b":"5581F5F7A000","o":"1A9732A","s":"_ZN5mongo16PlanExecutorImpl13_pickBestPlanEv","s+":"BA"},{"a":"5581F7A1399A","b":"5581F5F7A000","o":"1A9999A","s":"_ZN5mongo16PlanExecutorImpl4makeEPNS_16OperationContextESt10unique_ptrINS_10WorkingSetESt14default_deleteIS4_EES3_INS_9PlanStageES5_IS8_EES3_INS_13QuerySolutionES5_ISB_EES3_INS_14CanonicalQueryES5_ISE_EERKN5boost13intrusive_ptrINS_17ExpressionContextEEEPKNS_10CollectionENS_15NamespaceStringENS_12PlanExecutor11YieldPolicyE","s+":"18A"},{"a":"5581F7A141BC","b":"5581F5F7A000","o":"1A9A1BC","s":"_ZN5mongo12PlanExecutor4makeESt10unique_ptrINS_14CanonicalQueryESt14default_deleteIS2_EES1_INS_10WorkingSetES3_IS6_EES1_INS_9PlanStageES3_IS9_EEPKNS_10CollectionENS0_11YieldPolicyENS_15NamespaceStringES1_INS_13QuerySolutionES3_ISH_EE","s+":"10C"},{"a":"5581F7A0AA6B","b":"5581F5F7A000","o":"1A90A6B","s":"_ZN5mongo17getExecutorUpdateEPNS_7OpDebugEPNS_10CollectionEPNS_12ParsedUpdateEN5boost8optionalINS_14ExplainOptions9VerbosityEEE","s+":"6DB"},{"a":"5581F7746B50","b":"5581F5F7A000","o":"17CCB50","s":"_ZN5mongo14performUpdatesEPNS_16OperationContextERKNS_9write_ops6UpdateE","s+":"CE0"},{"a":"5581F76A1956","b":"5581F5F7A000","o":"1727956","s":"_ZNK5mongo12_GLOBAL__N_19CmdUpdate10Invocation7runImplEPNS_16OperationContextERNS_14BSONObjBuilderE","s+":"46"},{"a":"5581F769F4DD","b":"5581F5F7A000","o":"17254DD","s":"_ZN5mongo12_GLOBAL__N_112WriteCommand14InvocationBase3runEPNS_16OperationContextEPNS_3rpc21ReplyBuilderInterfaceE","s+":"15D"},{"a":"5581F7C5C85F","b":"5581F5F7A000","o":"1CE285F","s":"_ZN5mongo14CommandHelpers20runCommandInvocationEPNS_16OperationContextERKNS_12OpMsgRequestEPNS_17CommandInvocationEPNS_3rpc21ReplyBuilderInterfaceE","s+":"7F"},{"a":"5581F73AEBEF","b":"5581F5F7A000","o":"1434BEF","s":"_ZN5mongo12_GLOBAL__N_114runCommandImplEPNS_16OperationContextEPNS_17CommandInvocationERKNS_12OpMsgRequestEPNS_3rpc21ReplyBuilderInterfaceENS_11LogicalTimeERKNS_23ServiceEntryPointCommon5HooksEPNS_14BSONObjBuilderERKNS_30OperationSessionInfoFromClientE","s+":"9FF"},{"a":"5581F73B1C3E","b":"5581F5F7A000","o":"1437C3E","s":"_ZZN5mongo12_GLOBAL__N_116receivedCommandsEPNS_16OperationContextERKNS_7MessageERKNS_23ServiceEntryPointCommon5HooksEENKUlvE_clEv","s+":"1C9E"},{"a":"5581F73B2E7D","b":"5581F5F7A000","o":"1438E7D","s":"_ZN5mongo23ServiceEntryPointCommon13handleRequestEPNS_16OperationContextERKNS_7MessageERKNS0_5HooksE","s+":"51D"},{"a":"5581F73A0ACC","b":"5581F5F7A000","o":"1426ACC","s":"_ZN5mongo23ServiceEntryPointMongod13handleRequestEPNS_16OperationContextERKNS_7MessageE","s+":"3C"},{"a":"5581F73ABA32","b":"5581F5F7A000","o":"1431A32","s":"_ZN5mongo19ServiceStateMachine15_processMessageENS0_11ThreadGuardE","s+":"F2"},{"a":"5581F73A9775","b":"5581F5F7A000","o":"142F775","s":"_ZN5mongo19ServiceStateMachine15_runNextInGuardENS0_11ThreadGuardE","s+":"125"},{"a":"5581F73AA606","b":"5581F5F7A000","o":"1430606","s":"_ZNSt17_Function_handlerIFvvEZN5mongo19ServiceStateMachine22_scheduleNextWithGuardENS2_11ThreadGuardENS1_9transport15ServiceExecutor13ScheduleFlagsENS4_23ServiceExecutorTaskNameENS2_9OwnershipEEUlvE_E9_M_invokeERKSt9_Any_data","s+":"56"},{"a":"5581F86C884A","b":"5581F5F7A000","o":"274E84A","s":"_ZN5mongo9transport26ServiceExecutorSynchronous8scheduleESt8functionIFvvEENS0_15ServiceExecutor13ScheduleFlagsENS0_23ServiceExecutorTaskNameE","s+":"18A"},{"a":"5581F73A8A7B","b":"5581F5F7A000","o":"142EA7B","s":"_ZN5mongo19ServiceStateMachine22_scheduleNextWithGuardENS0_11ThreadGuardENS_9transport15ServiceExecutor13ScheduleFlagsENS2_23ServiceExecutorTaskNameENS0_9OwnershipE","s+":"DB"},{"a":"5581F73A9D4D","b":"5581F5F7A000","o":"142FD4D","s":"_ZN5mongo19ServiceStateMachine15_sourceCallbackENS_6StatusE","s+":"50D"},{"a":"5581F73A9E30","b":"5581F5F7A000","o":"142FE30","s":"_ZN5mongo14future_details4callIRZNS_19ServiceStateMachine14_sourceMessageENS2_11ThreadGuardEEUlNS_10StatusWithINS_7MessageEEEE0_S6_EEDaOT_OT0_","s+":"60"},{"a":"5581F73AA0D5","b":"5581F5F7A000","o":"14300D5","s":"_ZN5mongo19ServiceStateMachine14_sourceMessageENS0_11ThreadGuardE","s+":"145"},{"a":"5581F73A97EA","b":"5581F5F7A000","o":"142F7EA","s":"_ZN5mongo19ServiceStateMachine15_runNextInGuardENS0_11ThreadGuardE","s+":"19A"},{"a":"5581F73AA606","b":"5581F5F7A000","o":"1430606","s":"_ZNSt17_Function_handlerIFvvEZN5mongo19ServiceStateMachine22_scheduleNextWithGuardENS2_11ThreadGuardENS1_9transport15ServiceExecutor13ScheduleFlagsENS4_23ServiceExecutorTaskNameENS2_9OwnershipEEUlvE_E9_M_invokeERKSt9_Any_data","s+":"56"},{"a":"5581F86C8EC4","b":"5581F5F7A000","o":"274EEC4","s":"_ZNSt17_Function_handlerIFvvEZN5mongo9transport26ServiceExecutorSynchronous8scheduleESt8functionIS0_ENS2_15ServiceExecutor13ScheduleFlagsENS2_23ServiceExecutorTaskNameEEUlvE0_E9_M_invokeERKSt9_Any_data","s+":"D4"},{"a":"5581F8A19F06","b":"5581F5F7A000","o":"2A9FF06","s":"_ZNSt17_Function_handlerIFvvEZN5mongo25launchServiceWorkerThreadESt8functionIS0_EEUlvE1_E9_M_invokeERKSt9_Any_data","s+":"56"},{"a":"5581F8A19F74","b":"5581F5F7A000","o":"2A9FF74","s":"_ZN5mongo12_GLOBAL__N_17runFuncEPv","s+":"14"},{"a":"7F676B80F6DB","b":"7F676B808000","o":"76DB","s":"start_thread","s+":"DB"},{"a":"7F676B53871F","b":"7F676B417000","o":"12171F","s":"clone","s+":"3F"}],"processInfo":{"mongodbVersion":"4.4.6","gitVersion":"72e66213c2c3eab37d9358d5e78ad7f5c1d0d0d7","compiledModules":[],"uname":{"sysname":"Linux","release":"4.19.0-16-cloud-amd64","version":"#1 SMP Debian 4.19.181-1 (2021-03-19)","machine":"x86_64"},"somap":[{"b":"5581F5F7A000","elfType":3,"buildId":"9E4C4D3B751D15533C310C2C0215E384501A5743"},{"b":"7F676B808000","path":"/lib/x86_64-linux-gnu/libpthread.so.0","elfType":3,"buildId":"68F36706EB2E6EEE4046C4FDCA2A19540B2F6113"},{"b":"7F676B417000","path":"/lib/x86_64-linux-gnu/libc.so.6","elfType":3,"buildId":"CE450EB01A5E5ACC7CE7B8C2633B02CC1093339E"}]}}}}
{"t":{"$date":"2021-08-24T13:19:36.446+00:00"},"s":"I",  "c":"CONTROL",  "id":31427,   "ctx":"conn6","msg":"  Frame: {frame}","attr":{"frame":{"a":"5581F8D06C1A","b":"5581F5F7A000","o":"2D8CC1A","s":"_ZN5mongo18stack_trace_detail12_GLOBAL__N_119printStackTraceImplERKNS1_7OptionsEPNS_14StackTraceSinkE.constprop.606","s+":"1EA"}}}
{"t":{"$date":"2021-08-24T13:19:36.447+00:00"},"s":"I",  "c":"CONTROL",  "id":31427,   "ctx":"conn6","msg":"  Frame: {frame}","attr":{"frame":{"a":"5581F8D08699","b":"5581F5F7A000","o":"2D8E699","s":"_ZN5mongo15printStackTraceEv","s+":"29"}}}
{"t":{"$date":"2021-08-24T13:19:36.447+00:00"},"s":"I",  "c":"CONTROL",  "id":31427,   "ctx":"conn6","msg":"  Frame: {frame}","attr":{"frame":{"a":"5581F8D05A46","b":"5581F5F7A000","o":"2D8BA46","s":"_ZN5mongo12_GLOBAL__N_116abruptQuitActionEiP9siginfo_tPv","s+":"66"}}}
{"t":{"$date":"2021-08-24T13:19:36.447+00:00"},"s":"I",  "c":"CONTROL",  "id":31427,   "ctx":"conn6","msg":"  Frame: {frame}","attr":{"frame":{"a":"7F676B81A980","b":"7F676B808000","o":"12980","s":"funlockfile","s+":"50"}}}
{"t":{"$date":"2021-08-24T13:19:36.447+00:00"},"s":"I",  "c":"CONTROL",  "id":31427,   "ctx":"conn6","msg":"  Frame: {frame}","attr":{"frame":{"a":"7F676B455FB7","b":"7F676B417000","o":"3EFB7","s":"gsignal","s+":"C7"}}}
{"t":{"$date":"2021-08-24T13:19:36.447+00:00"},"s":"I",  "c":"CONTROL",  "id":31427,   "ctx":"conn6","msg":"  Frame: {frame}","attr":{"frame":{"a":"7F676B457921","b":"7F676B417000","o":"40921","s":"abort","s+":"141"}}}
{"t":{"$date":"2021-08-24T13:19:36.447+00:00"},"s":"I",  "c":"CONTROL",  "id":31427,   "ctx":"conn6","msg":"  Frame: {frame}","attr":{"frame":{"a":"5581F6EA79F8","b":"5581F5F7A000","o":"F2D9F8","s":"_ZN5mongo25fassertFailedWithLocationEiPKcj","s+":"12B"}}}
{"t":{"$date":"2021-08-24T13:19:36.448+00:00"},"s":"I",  "c":"CONTROL",  "id":31427,   "ctx":"conn6","msg":"  Frame: {frame}","attr":{"frame":{"a":"5581F6B87D03","b":"5581F5F7A000","o":"C0DD03","s":"_ZN5mongo12_GLOBAL__N_141mdb_handle_error_with_startup_suppressionEP18__wt_event_handlerP12__wt_sessioniPKc.cold.1079","s+":"16"}}}
{"t":{"$date":"2021-08-24T13:19:36.448+00:00"},"s":"I",  "c":"CONTROL",  "id":31427,   "ctx":"conn6","msg":"  Frame: {frame}","attr":{"frame":{"a":"5581F707D0DB","b":"5581F5F7A000","o":"11030DB","s":"__eventv","s+":"3FB"}}}
{"t":{"$date":"2021-08-24T13:19:36.448+00:00"},"s":"I",  "c":"CONTROL",  "id":31427,   "ctx":"conn6","msg":"  Frame: {frame}","attr":{"frame":{"a":"5581F6B99B1D","b":"5581F5F7A000","o":"C1FB1D","s":"__wt_panic_func","s+":"10C"}}}
{"t":{"$date":"2021-08-24T13:19:36.448+00:00"},"s":"I",  "c":"CONTROL",  "id":31427,   "ctx":"conn6","msg":"  Frame: {frame}","attr":{"frame":{"a":"5581F6BA7109","b":"5581F5F7A000","o":"C2D109","s":"__wt_block_read_off.cold.5","s+":"85"}}}
{"t":{"$date":"2021-08-24T13:19:36.449+00:00"},"s":"I",  "c":"CONTROL",  "id":31427,   "ctx":"conn6","msg":"  Frame: {frame}","attr":{"frame":{"a":"5581F719BD1E","b":"5581F5F7A000","o":"1221D1E","s":"__wt_bm_read","s+":"16E"}}}
{"t":{"$date":"2021-08-24T13:19:36.449+00:00"},"s":"I",  "c":"CONTROL",  "id":31427,   "ctx":"conn6","msg":"  Frame: {frame}","attr":{"frame":{"a":"5581F70DB862","b":"5581F5F7A000","o":"1161862","s":"__wt_bt_read","s+":"92"}}}
{"t":{"$date":"2021-08-24T13:19:36.449+00:00"},"s":"I",  "c":"CONTROL",  "id":31427,   "ctx":"conn6","msg":"  Frame: {frame}","attr":{"frame":{"a":"5581F70E6525","b":"5581F5F7A000","o":"116C525","s":"__page_read","s+":"165"}}}
{"t":{"$date":"2021-08-24T13:19:36.449+00:00"},"s":"I",  "c":"CONTROL",  "id":31427,   "ctx":"conn6","msg":"  Frame: {frame}","attr":{"frame":{"a":"5581F70E7A1D","b":"5581F5F7A000","o":"116DA1D","s":"__wt_page_in_func","s+":"2ED"}}}
{"t":{"$date":"2021-08-24T13:19:36.449+00:00"},"s":"I",  "c":"CONTROL",  "id":31427,   "ctx":"conn6","msg":"  Frame: {frame}","attr":{"frame":{"a":"5581F712462D","b":"5581F5F7A000","o":"11AA62D","s":"__wt_row_search","s+":"90D"}}}
{"t":{"$date":"2021-08-24T13:19:36.449+00:00"},"s":"I",  "c":"CONTROL",  "id":31427,   "ctx":"conn6","msg":"  Frame: {frame}","attr":{"frame":{"a":"5581F70CC25F","b":"5581F5F7A000","o":"115225F","s":"__wt_btcur_search","s+":"94F"}}}
{"t":{"$date":"2021-08-24T13:19:36.449+00:00"},"s":"I",  "c":"CONTROL",  "id":31427,   "ctx":"conn6","msg":"  Frame: {frame}","attr":{"frame":{"a":"5581F7012D68","b":"5581F5F7A000","o":"1098D68","s":"__curfile_search","s+":"1A8"}}}
{"t":{"$date":"2021-08-24T13:19:36.449+00:00"},"s":"I",  "c":"CONTROL",  "id":31427,   "ctx":"conn6","msg":"  Frame: {frame}","attr":{"frame":{"a":"5581F6FC6B09","b":"5581F5F7A000","o":"104CB09","s":"_ZN5mongo30wiredTigerPrepareConflictRetryIZNS_31WiredTigerRecordStoreCursorBase9seekExactERKNS_8RecordIdEEUlvE_EEiPNS_16OperationContextEOT_","s+":"89"}}}
{"t":{"$date":"2021-08-24T13:19:36.449+00:00"},"s":"I",  "c":"CONTROL",  "id":31427,   "ctx":"conn6","msg":"  Frame: {frame}","attr":{"frame":{"a":"5581F6FC6E81","b":"5581F5F7A000","o":"104CE81","s":"_ZN5mongo31WiredTigerRecordStoreCursorBase9seekExactERKNS_8RecordIdE","s+":"B1"}}}
{"t":{"$date":"2021-08-24T13:19:36.449+00:00"},"s":"I",  "c":"CONTROL",  "id":31427,   "ctx":"conn6","msg":"  Frame: {frame}","attr":{"frame":{"a":"5581F79EA8CC","b":"5581F5F7A000","o":"1A708CC","s":"_ZN5mongo16WorkingSetCommon5fetchEPNS_16OperationContextEPNS_10WorkingSetEmNS_11unowned_ptrINS_20SeekableRecordCursorEEERKNS_15NamespaceStringE","s+":"6C"}}}
{"t":{"$date":"2021-08-24T13:19:36.449+00:00"},"s":"I",  "c":"CONTROL",  "id":31427,   "ctx":"conn6","msg":"  Frame: {frame}","attr":{"frame":{"a":"5581F79B3166","b":"5581F5F7A000","o":"1A39166","s":"_ZN5mongo10FetchStage6doWorkEPm","s+":"136"}}}
{"t":{"$date":"2021-08-24T13:19:36.449+00:00"},"s":"I",  "c":"CONTROL",  "id":31427,   "ctx":"conn6","msg":"  Frame: {frame}","attr":{"frame":{"a":"5581F79C9F14","b":"5581F5F7A000","o":"1A4FF14","s":"_ZN5mongo9PlanStage4workEPm","s+":"64"}}}
{"t":{"$date":"2021-08-24T13:19:36.449+00:00"},"s":"I",  "c":"CONTROL",  "id":31427,   "ctx":"conn6","msg":"  Frame: {frame}","attr":{"frame":{"a":"5581F79A5176","b":"5581F5F7A000","o":"1A2B176","s":"_ZN5mongo15CachedPlanStage12pickBestPlanEPNS_15PlanYieldPolicyE","s+":"166"}}}
{"t":{"$date":"2021-08-24T13:19:36.449+00:00"},"s":"I",  "c":"CONTROL",  "id":31427,   "ctx":"conn6","msg":"  Frame: {frame}","attr":{"frame":{"a":"5581F7A1132A","b":"5581F5F7A000","o":"1A9732A","s":"_ZN5mongo16PlanExecutorImpl13_pickBestPlanEv","s+":"BA"}}}
{"t":{"$date":"2021-08-24T13:19:36.450+00:00"},"s":"I",  "c":"CONTROL",  "id":31427,   "ctx":"conn6","msg":"  Frame: {frame}","attr":{"frame":{"a":"5581F7A1399A","b":"5581F5F7A000","o":"1A9999A","s":"_ZN5mongo16PlanExecutorImpl4makeEPNS_16OperationContextESt10unique_ptrINS_10WorkingSetESt14default_deleteIS4_EES3_INS_9PlanStageES5_IS8_EES3_INS_13QuerySolutionES5_ISB_EES3_INS_14CanonicalQueryES5_ISE_EERKN5boost13intrusive_ptrINS_17ExpressionContextEEEPKNS_10CollectionENS_15NamespaceStringENS_12PlanExecutor11YieldPolicyE","s+":"18A"}}}
{"t":{"$date":"2021-08-24T13:19:36.450+00:00"},"s":"I",  "c":"CONTROL",  "id":31427,   "ctx":"conn6","msg":"  Frame: {frame}","attr":{"frame":{"a":"5581F7A141BC","b":"5581F5F7A000","o":"1A9A1BC","s":"_ZN5mongo12PlanExecutor4makeESt10unique_ptrINS_14CanonicalQueryESt14default_deleteIS2_EES1_INS_10WorkingSetES3_IS6_EES1_INS_9PlanStageES3_IS9_EEPKNS_10CollectionENS0_11YieldPolicyENS_15NamespaceStringES1_INS_13QuerySolutionES3_ISH_EE","s+":"10C"}}}
{"t":{"$date":"2021-08-24T13:19:36.450+00:00"},"s":"I",  "c":"CONTROL",  "id":31427,   "ctx":"conn6","msg":"  Frame: {frame}","attr":{"frame":{"a":"5581F7A0AA6B","b":"5581F5F7A000","o":"1A90A6B","s":"_ZN5mongo17getExecutorUpdateEPNS_7OpDebugEPNS_10CollectionEPNS_12ParsedUpdateEN5boost8optionalINS_14ExplainOptions9VerbosityEEE","s+":"6DB"}}}
{"t":{"$date":"2021-08-24T13:19:36.450+00:00"},"s":"I",  "c":"CONTROL",  "id":31427,   "ctx":"conn6","msg":"  Frame: {frame}","attr":{"frame":{"a":"5581F7746B50","b":"5581F5F7A000","o":"17CCB50","s":"_ZN5mongo14performUpdatesEPNS_16OperationContextERKNS_9write_ops6UpdateE","s+":"CE0"}}}
{"t":{"$date":"2021-08-24T13:19:36.450+00:00"},"s":"I",  "c":"CONTROL",  "id":31427,   "ctx":"conn6","msg":"  Frame: {frame}","attr":{"frame":{"a":"5581F76A1956","b":"5581F5F7A000","o":"1727956","s":"_ZNK5mongo12_GLOBAL__N_19CmdUpdate10Invocation7runImplEPNS_16OperationContextERNS_14BSONObjBuilderE","s+":"46"}}}
{"t":{"$date":"2021-08-24T13:19:36.451+00:00"},"s":"I",  "c":"CONTROL",  "id":31427,   "ctx":"conn6","msg":"  Frame: {frame}","attr":{"frame":{"a":"5581F769F4DD","b":"5581F5F7A000","o":"17254DD","s":"_ZN5mongo12_GLOBAL__N_112WriteCommand14InvocationBase3runEPNS_16OperationContextEPNS_3rpc21ReplyBuilderInterfaceE","s+":"15D"}}}
{"t":{"$date":"2021-08-24T13:19:36.451+00:00"},"s":"I",  "c":"CONTROL",  "id":31427,   "ctx":"conn6","msg":"  Frame: {frame}","attr":{"frame":{"a":"5581F7C5C85F","b":"5581F5F7A000","o":"1CE285F","s":"_ZN5mongo14CommandHelpers20runCommandInvocationEPNS_16OperationContextERKNS_12OpMsgRequestEPNS_17CommandInvocationEPNS_3rpc21ReplyBuilderInterfaceE","s+":"7F"}}}
{"t":{"$date":"2021-08-24T13:19:36.451+00:00"},"s":"I",  "c":"CONTROL",  "id":31427,   "ctx":"conn6","msg":"  Frame: {frame}","attr":{"frame":{"a":"5581F73AEBEF","b":"5581F5F7A000","o":"1434BEF","s":"_ZN5mongo12_GLOBAL__N_114runCommandImplEPNS_16OperationContextEPNS_17CommandInvocationERKNS_12OpMsgRequestEPNS_3rpc21ReplyBuilderInterfaceENS_11LogicalTimeERKNS_23ServiceEntryPointCommon5HooksEPNS_14BSONObjBuilderERKNS_30OperationSessionInfoFromClientE","s+":"9FF"}}}
{"t":{"$date":"2021-08-24T13:19:36.451+00:00"},"s":"I",  "c":"CONTROL",  "id":31427,   "ctx":"conn6","msg":"  Frame: {frame}","attr":{"frame":{"a":"5581F73B1C3E","b":"5581F5F7A000","o":"1437C3E","s":"_ZZN5mongo12_GLOBAL__N_116receivedCommandsEPNS_16OperationContextERKNS_7MessageERKNS_23ServiceEntryPointCommon5HooksEENKUlvE_clEv","s+":"1C9E"}}}
{"t":{"$date":"2021-08-24T13:19:36.452+00:00"},"s":"I",  "c":"CONTROL",  "id":31427,   "ctx":"conn6","msg":"  Frame: {frame}","attr":{"frame":{"a":"5581F73B2E7D","b":"5581F5F7A000","o":"1438E7D","s":"_ZN5mongo23ServiceEntryPointCommon13handleRequestEPNS_16OperationContextERKNS_7MessageERKNS0_5HooksE","s+":"51D"}}}
{"t":{"$date":"2021-08-24T13:19:36.452+00:00"},"s":"I",  "c":"CONTROL",  "id":31427,   "ctx":"conn6","msg":"  Frame: {frame}","attr":{"frame":{"a":"5581F73A0ACC","b":"5581F5F7A000","o":"1426ACC","s":"_ZN5mongo23ServiceEntryPointMongod13handleRequestEPNS_16OperationContextERKNS_7MessageE","s+":"3C"}}}
{"t":{"$date":"2021-08-24T13:19:36.452+00:00"},"s":"I",  "c":"CONTROL",  "id":31427,   "ctx":"conn6","msg":"  Frame: {frame}","attr":{"frame":{"a":"5581F73ABA32","b":"5581F5F7A000","o":"1431A32","s":"_ZN5mongo19ServiceStateMachine15_processMessageENS0_11ThreadGuardE","s+":"F2"}}}
{"t":{"$date":"2021-08-24T13:19:36.452+00:00"},"s":"I",  "c":"CONTROL",  "id":31427,   "ctx":"conn6","msg":"  Frame: {frame}","attr":{"frame":{"a":"5581F73A9775","b":"5581F5F7A000","o":"142F775","s":"_ZN5mongo19ServiceStateMachine15_runNextInGuardENS0_11ThreadGuardE","s+":"125"}}}
{"t":{"$date":"2021-08-24T13:19:36.452+00:00"},"s":"I",  "c":"CONTROL",  "id":31427,   "ctx":"conn6","msg":"  Frame: {frame}","attr":{"frame":{"a":"5581F73AA606","b":"5581F5F7A000","o":"1430606","s":"_ZNSt17_Function_handlerIFvvEZN5mongo19ServiceStateMachine22_scheduleNextWithGuardENS2_11ThreadGuardENS1_9transport15ServiceExecutor13ScheduleFlagsENS4_23ServiceExecutorTaskNameENS2_9OwnershipEEUlvE_E9_M_invokeERKSt9_Any_data","s+":"56"}}}
{"t":{"$date":"2021-08-24T13:19:36.452+00:00"},"s":"I",  "c":"CONTROL",  "id":31427,   "ctx":"conn6","msg":"  Frame: {frame}","attr":{"frame":{"a":"5581F86C884A","b":"5581F5F7A000","o":"274E84A","s":"_ZN5mongo9transport26ServiceExecutorSynchronous8scheduleESt8functionIFvvEENS0_15ServiceExecutor13ScheduleFlagsENS0_23ServiceExecutorTaskNameE","s+":"18A"}}}
{"t":{"$date":"2021-08-24T13:19:36.452+00:00"},"s":"I",  "c":"CONTROL",  "id":31427,   "ctx":"conn6","msg":"  Frame: {frame}","attr":{"frame":{"a":"5581F73A8A7B","b":"5581F5F7A000","o":"142EA7B","s":"_ZN5mongo19ServiceStateMachine22_scheduleNextWithGuardENS0_11ThreadGuardENS_9transport15ServiceExecutor13ScheduleFlagsENS2_23ServiceExecutorTaskNameENS0_9OwnershipE","s+":"DB"}}}
{"t":{"$date":"2021-08-24T13:19:36.452+00:00"},"s":"I",  "c":"CONTROL",  "id":31427,   "ctx":"conn6","msg":"  Frame: {frame}","attr":{"frame":{"a":"5581F73A9D4D","b":"5581F5F7A000","o":"142FD4D","s":"_ZN5mongo19ServiceStateMachine15_sourceCallbackENS_6StatusE","s+":"50D"}}}
{"t":{"$date":"2021-08-24T13:19:36.452+00:00"},"s":"I",  "c":"CONTROL",  "id":31427,   "ctx":"conn6","msg":"  Frame: {frame}","attr":{"frame":{"a":"5581F73A9E30","b":"5581F5F7A000","o":"142FE30","s":"_ZN5mongo14future_details4callIRZNS_19ServiceStateMachine14_sourceMessageENS2_11ThreadGuardEEUlNS_10StatusWithINS_7MessageEEEE0_S6_EEDaOT_OT0_","s+":"60"}}}
{"t":{"$date":"2021-08-24T13:19:36.452+00:00"},"s":"I",  "c":"CONTROL",  "id":31427,   "ctx":"conn6","msg":"  Frame: {frame}","attr":{"frame":{"a":"5581F73AA0D5","b":"5581F5F7A000","o":"14300D5","s":"_ZN5mongo19ServiceStateMachine14_sourceMessageENS0_11ThreadGuardE","s+":"145"}}}
{"t":{"$date":"2021-08-24T13:19:36.452+00:00"},"s":"I",  "c":"CONTROL",  "id":31427,   "ctx":"conn6","msg":"  Frame: {frame}","attr":{"frame":{"a":"5581F73A97EA","b":"5581F5F7A000","o":"142F7EA","s":"_ZN5mongo19ServiceStateMachine15_runNextInGuardENS0_11ThreadGuardE","s+":"19A"}}}
{"t":{"$date":"2021-08-24T13:19:36.452+00:00"},"s":"I",  "c":"CONTROL",  "id":31427,   "ctx":"conn6","msg":"  Frame: {frame}","attr":{"frame":{"a":"5581F73AA606","b":"5581F5F7A000","o":"1430606","s":"_ZNSt17_Function_handlerIFvvEZN5mongo19ServiceStateMachine22_scheduleNextWithGuardENS2_11ThreadGuardENS1_9transport15ServiceExecutor13ScheduleFlagsENS4_23ServiceExecutorTaskNameENS2_9OwnershipEEUlvE_E9_M_invokeERKSt9_Any_data","s+":"56"}}}
{"t":{"$date":"2021-08-24T13:19:36.452+00:00"},"s":"I",  "c":"CONTROL",  "id":31427,   "ctx":"conn6","msg":"  Frame: {frame}","attr":{"frame":{"a":"5581F86C8EC4","b":"5581F5F7A000","o":"274EEC4","s":"_ZNSt17_Function_handlerIFvvEZN5mongo9transport26ServiceExecutorSynchronous8scheduleESt8functionIS0_ENS2_15ServiceExecutor13ScheduleFlagsENS2_23ServiceExecutorTaskNameEEUlvE0_E9_M_invokeERKSt9_Any_data","s+":"D4"}}}
{"t":{"$date":"2021-08-24T13:19:36.452+00:00"},"s":"I",  "c":"CONTROL",  "id":31427,   "ctx":"conn6","msg":"  Frame: {frame}","attr":{"frame":{"a":"5581F8A19F06","b":"5581F5F7A000","o":"2A9FF06","s":"_ZNSt17_Function_handlerIFvvEZN5mongo25launchServiceWorkerThreadESt8functionIS0_EEUlvE1_E9_M_invokeERKSt9_Any_data","s+":"56"}}}
{"t":{"$date":"2021-08-24T13:19:36.452+00:00"},"s":"I",  "c":"CONTROL",  "id":31427,   "ctx":"conn6","msg":"  Frame: {frame}","attr":{"frame":{"a":"5581F8A19F74","b":"5581F5F7A000","o":"2A9FF74","s":"_ZN5mongo12_GLOBAL__N_17runFuncEPv","s+":"14"}}}
{"t":{"$date":"2021-08-24T13:19:36.452+00:00"},"s":"I",  "c":"CONTROL",  "id":31427,   "ctx":"conn6","msg":"  Frame: {frame}","attr":{"frame":{"a":"7F676B80F6DB","b":"7F676B808000","o":"76DB","s":"start_thread","s+":"DB"}}}
{"t":{"$date":"2021-08-24T13:19:36.452+00:00"},"s":"I",  "c":"CONTROL",  "id":31427,   "ctx":"conn6","msg":"  Frame: {frame}","attr":{"frame":{"a":"7F676B53871F","b":"7F676B417000","o":"12171F","s":"clone","s+":"3F"}}}

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.