Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

Unexplainable timeout error when using uwsgi behind nginx #1623

Open
bow opened this issue Aug 31, 2017 · 82 comments
Open

Unexplainable timeout error when using uwsgi behind nginx #1623

bow opened this issue Aug 31, 2017 · 82 comments

Comments

@bow
Copy link

bow commented Aug 31, 2017

Hi everyone,

I'm using uwsgi (version 2.0.13.1) behind nginx (version 1.10.3) to run a Flask application on Python 3 on Ubuntu 14.04.03. The connection to nginx is done via https, but nginx connects to uwsgi via an IPC socket (config below).

I've been getting some timeout errors from nginx that I can't explain. Here are some examples:

2017/08/17 17:38:02 [error] 22887#22887: *613 upstream timed out (110: Connection timed out) while reading response header from upstream, client: <CLIENT_IP>, server: _, request: "POST <URL> HTTP/1.1
2017/08/31 10:39:22 [error] 5904#5904: *464 upstream timed out (110: Connection timed out) while reading response header from upstream, client: <CLIENT_IP>, server: _, request: "POST <URL> HTTP/1.1

Here's my uwsgi config file:

[uwsgi]
module = wsgi:create_app()

master = true
processes = 5

socket = /tmp/app.sock
chown-socket = app_user:www-data
chmod-socket = 660
socket-timeout = 60
harakiri = 60
vacuum = true

enable-threads = true
die-on-term = true
single-interpreter = true
harakiri-verbose = true

logger = rsyslog:localhost:514,app-uwsgi,14
stats = 127.0.0.1:9090

And here's my uwsgi_params settings in nginx:

        include                         uwsgi_params;
        uwsgi_param                     X-Real-IP $remote_addr;
        uwsgi_param                     X-Forwarded-For $proxy_add_x_forwarded_for;
        uwsgi_param                     X-Forwarded-Proto $http_x_forwarded_proto;
        uwsgi_pass                      unix:/tmp/app.sock;
        uwsgi_read_timeout              60;
        uwsgi_send_timeout              60;

The error occurs randomly. With the exact same payload, the first request could result in an error, but sending it again it could work fine. So I'm not exactly sure if increasing the timeout would help.

What I also don't understand are also these parts of the log messages:

22887#22887: *613 upstream timed out 

What does 22887#22887 mean? Why does it say *613 upstream ..? These numbers are always different per error message.

And ultimately, is there a way to reproduce this reliably and then fix it?

@funkybob
Copy link
Contributor

funkybob commented Oct 4, 2017

Does the problem still happen when using the current release?

@dsully
Copy link

dsully commented Oct 10, 2017

I'm seeing the same thing with uWSGI 2.0.15, with the same setup. nginx in front of uWSGI vending a Python 3 Flask app.

@funkybob
Copy link
Contributor

For the requests that don't get a timeout, how long are they typically taking? Are they close to the timeout?

Also, are there any logs on the uwsgi side?

As to the meaning of those numbers in the nginx logs, you'd probably need to ask the nginx folks :)

@dsully
Copy link

dsully commented Oct 10, 2017

Not close at all - timeout is 60 seconds. Most requests are serviced in under 1 second.

I see uwsgi_response_writev_headers_and_body_do(): Broken pipe [core/writer.c line 296] in the uWSGI logs.

@bow
Copy link
Author

bow commented Oct 11, 2017

@funkybob , I haven't switched to a new version. I did eventually increase my socket-timeout and harakiri config values both to 120. I can't say whether this fixed the problem per-se, since I already noticed the problem occuring fewer times even before I did the update. I can say that I'm not seeing the errors anymore (though I am still not 100% sure given that I don't exactly know what the cause was).

This particular error is only ever triggered when one of my POST endpoints is hit (from another, upstream service). This endpoint is hit relatively few times compared to others. I'm not sure if I have response time data from that service unfortunately. I can say that the payload from that upstream service was received completely as I see this application's database updated ~ which makes the reason for erroring out more puzzling to me.

On the uwsgi side, I'm seeing a lot of this:

SIGPIPE: writing to a closed pipe/socket/fd (probably the client disconnected) on request [POST endpoint]

around the time the error occured.

I also see @dsully's uwsgi error message, but on a different endpoint.

@funkybob
Copy link
Contributor

The "uwsgi_response_writev_headers_and_body_do" message comes when uWSGI is trying to send the headers and body of the response in one go.

It is not, it seems, a timeout - that's caught later in the same function.

So, yes, your app has handled the request, and returned a response for uWSGI to pass on, but something went wrong.

Would be interesting to know exactly how long uWSGI is taking processing that request. I wrote a patch for someone recently that would log request details as it was parsed coming in...

@funkybob
Copy link
Contributor

@bow that looks like a regular "the browser went away" message... most common cause is the user hit refresh, but can also be from XHR cancelling the request. There are ways to tell nginx to signal uwsgi about this, but to have your app notice and handle it well is a little tricky.

@kylemacfarlane
Copy link

This seems very similar to the timeouts I get in #1602.

@DiegoGallegos4
Copy link

Any advancements on this?

@kmadac
Copy link

kmadac commented Jan 21, 2018

I have the same issue. So far I didn't solve it properly, but I found that when I set processes to 1, problem is gone.

My stack:

python 2.7.13
debian 9
nginx 1.10.3
uwsgi 2.0.14-debian

@DiegoGallegos4
Copy link

Well, in my case I discover uwgsi is very cpu hungry so I had to increase the vcpus of my instance.

@kmadac
Copy link

kmadac commented Jan 21, 2018

Well, I haven't set number of vcpus, but number of uwsgi workers to 1 in app uwsgi .ini file. You have 5 in your configuration. I know it is not wanted configuration if you have more cpus, but could you please try it to check whether it fixes 'broken pipe' issue.

@dbelieves
Copy link

I am facing the same issue. Has anyone found a solution?

@KoleS46
Copy link

KoleS46 commented Feb 26, 2018

Hi guys I think we had the same problem that uwsgi closed the connection but continued processing and setting/extending the http-timeout fixed it for us (http://uwsgi-docs.readthedocs.io/en/latest/Options.html#http-timeout).

@ace-han
Copy link

ace-han commented Feb 27, 2018

I am facing the same issue after I upgraded my app from py2 to py3, with the same nginx and ini files.

OS: CentOS release 6.6 (Final)
Python: 2.7.13 to 3.6.4
uWSGI: 2.0.14 and above
Tue Feb 27 16:56:18 2018 - SIGPIPE: writing to a closed pipe/socket/fd (probably the client disconnected) on request /api/some-api/ (ip xxx) !!!
Tue Feb 27 16:56:20 2018 - SIGPIPE: writing to a closed pipe/socket/fd (probably the client disconnected) on request /api/some-api/ (ip xxx) !!!
Tue Feb 27 16:56:26 2018 - SIGPIPE: writing to a closed pipe/socket/fd (probably the client disconnected) on request /api/some-api/ (ip xxx) !!!
Tue Feb 27 16:56:26 2018 - SIGPIPE: writing to a closed pipe/socket/fd (probably the client disconnected) on request /api/some-api/ (ip xxx) !!!
...
# ini file
[uwsgi]
master = true
chdir = /home/yyy/xx
module = xx.wsgi:application
processes = 20
socket = 0.0.0.0:8001
stats = 0.0.0.0:8002
# clear environment on exit
vacuum = true
max-requests = 500
#chmod-socket = 666
daemonize=/home/logs/uwsgi.log
pidfile=/home/uwsgi.pid
# Otherwise there'll be lots of requests logs.
disable-logging=true
# enlarge request query size
buffer-size = 655350
socket-timeout = 300
http-timeout = 300
harakiri = 300

I've tried socket-timeout, http-timeout and harakiri, but no luck...

# nginx.conf
server {
        listen       80;
        server_name  x.y.z.com;
        #access_log  logs/host.access.log  main;

        # for larger client request header
        large_client_header_buffers 4 1096k;

        # for modifier, plz refer to 
        # https://www.digitalocean.com/community/tutorials/understanding-nginx-server-and-location-block-selection-algorithms
        location ^~ /static/ {
                alias /home/ucmt/dv/static/;
        }
        location ~ /(.*)$ {
                include uwsgi_params;
                uwsgi_read_timeout 600s;
                uwsgi_pass ll_uwsgi_backend;
        }
}
....

Please kindly help me out, thx

@mvdpanne
Copy link

mvdpanne commented Mar 2, 2018

Like the other people above me, I too was pulling my hair out as to why my requests were timing out.

My symptoms are as follows. At first, everything would work as expected. But as soon as I hit my endpoints a couple of times a second, it just locks up, and Nginx serves me 502 Bad Gateway errors. Only after restarting the uwsgi workers, I can accept requests again. Like the others, I see the following errors:

SIGPIPE: writing to a closed pipe/socket/fd (probably the client disconnected)
uwsgi_response_writev_headers_and_body_do(): Broken pipe [core/writer.c line 296]

The suggestion by @kmadac does wonders, however! Setting processes = 1 in my uWSGI configuration file resolved the problem of my endpoints locking up/timing out. Interestingly enough, the errors keep occurring. So I'm not sure to what extend the error messages are part of the problem. It is furthermore good to note that for me, the problem occurred regardless of whether a GET or POST request was being executed.

I understand that this certainly won't be an appropriate fix for everyone, but it might be a good workaround for others until the underlying issue is found and fixed.

My setup:

  • Ubuntu 16.04
  • Python 3.6.4
  • uWSGI 2.0.15
  • Nginx 1.10.3

@mvdpanne
Copy link

mvdpanne commented Mar 5, 2018

Unfortunately, after testing the 'workaround' some more, the problem started appearing again. So it does not go away; it happens less frequently. To my perception it occurs randomly.

@redwud
Copy link

redwud commented Mar 9, 2018

The following worked for me as work around, as I am temporarily downloading a huge file, might be the case for others.

  • uwsgi ini:
    http-timeout = 3600000
  • nginx conf:
    uwsgi_max_temp_file_size 20480m;

@hoondongkim
Copy link

hoondongkim commented Mar 21, 2018

I met the same problem.
But, Some python code works well. and Only One python code occur that problem.
that code use gensim , keras, tensorlfow library for deep learning serving.
and , word2vec file size is almost 500mb. and deep learning model size is almost 600mb.
that huge file is loaded only one time at first app initial time.

but, same code works well in case of sigle statnd alone Flask mode.
same code occur that error at the case of Nginx + uwsgi + flask.

@adibalcan
Copy link

For me the issue was from Redis, just on pages when Redis was called.

@canivel
Copy link

canivel commented Apr 24, 2018

same for me, keras uwsgi flask = 504

@tannart
Copy link

tannart commented Jun 15, 2018

I'm seeing the same issue with an nginx -> uwsgi -> django configuration, all hooked up in a docker-compose network.

Here's the trio of messages I'm seeing in the logs:

  1. SIGPIPE: writing to a closed pipe/socket/fd (probably the client disconnected) on request /my/transaction/hook/ (ip remote-ip) !!!
  2. uwsgi_response_writev_headers_and_body_do(): Broken pipe [core/writer.c line 287] during POST [/my/transaction/hook/] (remote-ip)
  3. IOError: write error

I then also see my nginx container returning a 499 (Client closed the connection) response code.

And my config:

  • Ubuntu 16.04.2
  • Python 2.7.9
  • uWSGI 2.0.7
  • Nginx 1.9.15
  • docker 17.05.0
  • docker-compose 1.9.0
  • Postgres 9.4.15

It's probably also worth noting that I saw an uptick in these exceptions after moving my database from the EC2 it shared with my application on to an external RDS.

@funkybob
Copy link
Contributor

@MacFarlaneBro does anything improve if you update to a current release of uWSGI?

@tannart
Copy link

tannart commented Jun 15, 2018

@funkybob I'll try that out and report back

@faxioman
Copy link

Exactly the same problem using uwsgi with unix socket:

python 3.5.5 / python 3.6.3
uWSGI 2.0.17 (also tested with uWSGI 2.0.13.1)
nginx 1.12.2
django 2.0.6

Our projects are deployed on a k8s cluster. I have the same problem in all the deployed python 3 projects.
No problem verified in others web projects using:

python 2.7.14
uWSGI 2.0.17
nginx 1.12.2
django 1.x

@tannart
Copy link

tannart commented Jun 19, 2018

@funkybob So I upgraded to uWSGI 2.0.17 a couple of days ago and I'm still seeing the issue.

@alexvy86
Copy link

alexvy86 commented Jun 20, 2018

I'm experiencing something similar with uwsgi 2.0.17 behind nginx 1.10.3 (communicating with a socket file, uwsgi protocol), running in a Debian 9 Docker container, with Python 3.6.5. In my case the first requests sometimes work. After some random amount of time (or a condition that I haven't been able to identify; has even happened that no requests ever work), all further requests hang. Nginx times out after the configured uwsgi_read_timeout and logs this:

2018/06/20 00:38:05 [error] 7#7: *218 upstream timed out (110: Connection timed out) while reading response header from upstream, client: <REDACTED_IP>, server: , request: "POST /tokenize HTTP/1.1", upstream: "uwsgi://unix:/tmp/uwsgi.sock", host: "<REDACTED_URL>:5000"

But uwsgi is not logging anything at all for those requests (the initialization messages do come up).

@kylemacfarlane
Copy link

@adibalcan might be on to something when they mention Redis. The two possibly related bugs I opened (#1602 and #1716) both use Redis. In fact the OSError in #1716 is coming from Redis.

@MacFarlaneBro says that the problem became worse when switching to remote RDS but I find the opposite. When I develop locally with Redis/Postgres I constantly get timeouts even as a single user but it's pretty rare in production with Elasticache/RDS until the server comes under heavier load.

@adibalcan
Copy link

@kylemacfarlane I solved the problem, my Redis connexion lasts just 5 minutes, after my app tries to connect at Redis but takes a very long time(maybe infinite) and the server responds with timeout.

@gg4u
Copy link

gg4u commented Jan 3, 2020

Also experiencing similar issue of 504 at random.

my error on uwsgi log shows different line number:

 uwsgi_response_write_body_do(): Broken pipe [core/writer.c line 331] during GET [...]

error on nginx log:

[...] [error] 16250#16250: *275 upstream timed out (110: Connection timed out) while reading response header from upstream, [...]

Maybe I started to get troubles when using certbot, so using a certificate,
but not sure and don't know how to test or check for more insightful logs..

@minyoungjun
Copy link

I added this line in my ini file.

lazy-apps = true

It works for me!

@jdugh
Copy link

jdugh commented Apr 2, 2020

The following worked for me as work around, as I am temporarily downloading a huge file, might be the case for others.

  • uwsgi ini:
    http-timeout = 3600000
  • nginx conf:
    uwsgi_max_temp_file_size 20480m;

For me, juste uwsgi_max_temp_file_size 20480m; in my nginx site conf solved the problem.
I just adapted the value for my context.
Thank you @redwud

@successgilli
Copy link

successgilli commented Apr 24, 2020

For me, the problem of upstream timed out (110: Connection timed out) while reading response header from upstream was solved by setting the processes to 1 in the uwsgi.ini file and taking out master = true
image
Also, if directory permission for writing and reading the socket was an issue, the error message would show permission denied. then you will have to ensure that the user set in your system service unit or Startup file has appropriate privileges with the required group which is usually www-data.

@bekab95
Copy link

bekab95 commented Apr 28, 2020

So what is best config for Behind Nginx when getting too much users online ?

@zoltan-fedor
Copy link

zoltan-fedor commented Apr 29, 2020

In my case (Nginx + UWSGI + Flask) the error was:

uwsgi_response_writev_headers_and_body_do(): Broken pipe [core/writer.c line 306]

This happens when the client makes a request and then closes it (either because server took too long to respond or client has been disrupted) but uwsgi is still processing that request.
If the server takes too long to respond, then changing timeouts might help or identifying why it takes too long to respond.

In my case it did not take too long to respond (< 2 seconds), so in my case the issue was the client going away before the response was ready.

To remove these errors from the uwsgi log I have added the following to the NGinx config (for uwsgi routes):

uwsgi_ignore_client_abort on

Alternatively you could just disable the logging of write errors:

ignore-write-errors = true

agentmorris pushed a commit to microsoft/CameraTraps that referenced this issue Sep 12, 2020
@davidmontoyago
Copy link

I've experienced the same issue when proxying to uwsgi with envoy instead of nginx, causing envoy to fail requests with 503 UC - upgrading to versions below solved it for me:

uwsgi==2.0.18
werkzeug==0.16.1

@shahram4m
Copy link

it worked for me by comment
#master = true
and put this,
lazy-apps = true

in uwsgi.ini file

@funkybob
Copy link
Contributor

Does lazy-apps even mean anything without master?

My undestanding was it would delay initialising python / the app from the master process into the workers.

@shahram4m
Copy link

explain for lazy-apps: load apps in each worker instead of the master

@est
Copy link

est commented Aug 9, 2021

is it possible to log how much time uwsgi took in uwsgi_response_writev_headers_and_body_do() ?

It's helpful to debug which part was responsible for the timeout.

@ibalintha
Copy link

I am very lucky!

it worked for me by comment

#master = true
and put this,
lazy-apps = true

in uwsgi.ini file

@ionelmc
Copy link

ionelmc commented Feb 17, 2022

I would like to note that none of yall are using thunder-lock = true - an very important option if you're using master mode.

If you're trying to maximize throughput and you're responses are always very fast you can get some extra perf by not using it, but then you get into strange situations where a single process gets to serve all the requests - I guess that's a scenario where a timeout could occur if you have few responses that are very slow?

https://uwsgi-docs.readthedocs.io/en/latest/articles/SerializingAccept.html

@Slepy1
Copy link

Slepy1 commented Mar 9, 2022

I have a similar problem but nothing has helped. I'm running a Ubuntu 20.04 (LTS) x64 machine on a Digital oceans droplet. My Flask app opens a socket and sends some information to the external server and waits for a response (it takes around 8 minutes to respond), I tried everything suggested here and more like pinking the server every 50 seconds, running the socket in async task etc. After some time I always get error 504 Gateway Time-out. The app worked great until I installed Nginx and removed the test port. The weird thing is that even when I change the timeout options in nginx.conf and flaskapp.ini there is no difference in time before the timeout (I'm doing a full reboot to make sure new options are used).

Edit- Fixed it my adding
"proxy_read_timeout 7000000s;
proxy_connect_timeout 7000000s;
proxy_send_timeout 7000000s;
fastcgi_read_timeout 7000000s;
uwsgi_read_timeout 7000000s;"
into nginx/sites-available/flaskapp file

@killershotpy
Copy link

killershotpy commented Apr 1, 2022

Hello. (I apologize in advance for the places - the translation is crooked, I use google translator ...)
In advance, I want to sympathize with everyone who has encountered this problem and is used to using their favorite uWSGI.

hardware and software configuration:

uWSGI 2.0.20
machine: x86_64
os: Linux-4.15.0-162-generic
Python version: 3.6.9
nginx 1.14.0

I ran into a problem (I don’t even know what to call it, I’ll try to describe it).

Thu Mar 31 16:48:14 2022 - SIGPIPE: writing to a closed pipe/socket/fd (probably the client disconnected) on request /api/v1/params?param_name=bla-bla-bla (ip __.__.__ .__) !!!
Thu Mar 31 16:48:14 2022 - uwsgi_response_writev_headers_and_body_do(): Broken pipe [core/writer.c line 306] during GET /api/v1/params?param_name=bla-bla-bla (__.__.__.__)
OSError: write error

in general, I wrote an API on flask, a regular route, where make_response({'key': 'value'}) is returned.

there is a form on the page where it makes a JS request by apishka.
since a lot of information is collected there, the answer takes (taking into account sending over the network) about 0.3-2 seconds.
if the user does not wait and goes to another page, then uWSGI tries to return data to a closed socket, as indicated in the logs.

only at the same time everything seems to be fine, but at this moment the process (if you look through the "top" goes into Sl status and starts eating 2x operatives from the entire application.

main_process has Ssl status, the rest S.
after a bug (incorrect operation of uWSGI), some processes that were engaged in processing the request go into Sl status.

Reference:
according to the information about "ps -aux" (between small and large letters, there is a difference):
l - is multi-threaded (using CLONE_THREAD, like NPTL pthreads do)
S - interruptible sleep (waiting for an event to complete)
s - is a session leader

I sinned that in the application I use a search using threading to streamline multi-level for loops and speed up, but that's not the point.

I also checked is_alive() of threads and wrote a whole module for processing threads, but again this is not the case (threads do not hang, and if they hang, then everyone is killed)

I checked the operation of such parameters on the uWSGI itself in .ini, such as:
socketed-timeout
chunked-input-timeout

but these options do not solve the problem

this problem does not occur on windows, however, on windows I run the server in debug mode.

Now let's talk about the specifics and causes of this bug.
(I think my answer will greatly help the developers to fix this error as soon as possible).

my configuration, which worked flawlessly, before adding python threads:

[uwsgi]
module = wsgi:app
master=true
processes = 10
socket = name_socket.sock
chmod-socket=666
vacuum=true
die-on-term = true
#location of log files
logto = /etc/nginx/log/%n.log

The most important!
as you can see from the settings of the uWSGI server, I use the transfer of requests through a socket file: "socket = name_socket.sock".
The server is started using a service written manually (there are no problems with this).

I tried different configuration options, both nginx and uWSGI, below is a list of them (ps. none of the options helped to solve the problem):

  1. I seriously thought about the problem - if the socket is closed by the user who hit the API without waiting for a response, nginx tries to "knock" on the closed socket, gets an error 499 and returns it to uWSGI.
    nginx has 2 options to prevent this:
    proxy_ignore_client_abort on;
    uwsgi_ignore_client_abort on;

    Naturally, these options did not work. nginx does not send back a 499 uWSGI error, so the problem is not with nginx and its response due to a closed socket.

  2. since I have a small online store, it is absolutely convenient and safe to keep price lists in RAM right away. therefore settings like "shared cursor = memory areas" for all processes (in my configuration there are 10 of them) is an extremely useful option. by default, it is enabled, which is clearly seen in the "top" utility (memory is divided between processes and approximately the same amount is occupied, except for locally cached requests).
    in this case:
    lazy-apps=true
    is contraindicated, as it separates each instance of the application into a separate memory area and the python reference system stops working correctly.

  3. found tips for using the following options:
    ignore-sigpipe = true
    ignore-write-errors = true
    disable-write-exception=true

    I want to say right away - these options just turn off messages in the logs, but DO NOT ELIMINATE the problem.

  4. I carefully re-read all the messages above, and decided to check in different ways the timeout between receiving a request from nginx and the uWSGI response in the error log file.
    to do this, I set several options with a sequential step-step of 10 seconds:
    socketed-timeout = 10
    chunked-input-timeout = 20
    http-timeout = 30

    when looking at the nginx & uWSGI log files, I saw a difference of 6-8 seconds, which is about ~10 seconds, which means this is closest to the "socked-timeout = 10" setting, which means that the problem is really in the socket connection.

  5. I went further, I decided to check how much the problem is strongly related to python threads. to do this, I wrote the option "enable-threads = true" in the .ini settings of the uWSGI server, but this did not work.
    also, I tried to use it with my self-written module for working with streams, to no avail.
    I have tried using this setup with the famous "uwsgidecorators" library, to no avail. (I was not able to install the library correctly on windows, and since I write code on both "windows + linux" machines, this option did not work for me.

  6. and then I thought, when the process "bugs" and starts consuming 2x RAM, perhaps an exception occurs that is not described by the developers of the uWSGI server themselves, I decided to check it with:
    rb-gc-freq = true
    this is something like a "wrong memory utilizer" (as far as I understood from the documentation).
    this setup didn't work either.

  7. I tried to change the answers in the application itself (further text for pythonists):
    make_response() - Possibly emits incorrect headers, causing incorrect processing on a closed socket connection. no.
    I tried options with:

flask.response_class()
app.make_response()
render_template()

also to no avail.

  1. I doubted already in the front-end, JS sends a request with the .fetch () method, which is an asynchronous request.
    fixed it to XMLHttpsrequest and set "send requests synchronously = true". it didn't solve the problem.

  2. I tried to reduce the number of worker processes from 10 to 1, this greatly reduced the performance of the application, since I planned to expand from 10 RPS (requests per second) to 5000. this did not completely suit my application, however, and did not fix problem.
    I tracked in real-time changes in RAM consumption through the same "top" and was amazed when I saw that !!!main_process itself began to consume 2x RAM.

  3. I set the number of master processes to 10 (that is, equal to the total number of processes = 10), it did not work.
    First, there was an error with the RAM.

after all the work done, I still did not give up and went even further.

I decided to check how exactly the consumption of RAM changes and was very surprised at how unsafe and most likely erroneous the exception handling was written by the developers themselves.

at the expense of specific figures for the consumption of RAM, BEFORE THE BUG:

root 22981 7.2 13.8 693664 545868 ? Ssl 00:45 0:31 path_to_env_bin_dir --ini my_conf.ini
root 22987 0.0 13.6 693664 537312 ? S 00:46 0:00 path_to_env_bin_dir --ini my_conf.ini
root 22988 0.0 13.6 693664 537312 ? S 00:46 0:00 path_to_env_bin_dir --ini my_conf.ini
root 22989 0.0 13.6 693664 537312 ? S 00:46 0:00 path_to_env_bin_dir --ini my_conf.ini
root 22990 0.0 13.6 693664 537312 ? S 00:46 0:00 path_to_env_bin_dir --ini my_conf.ini
root 22991 0.0 13.6 693664 537312 ? S 00:46 0:00 path_to_env_bin_dir --ini my_conf.ini
root 22992 0.0 13.6 693664 537312 ? S 00:46 0:00 path_to_env_bin_dir --ini my_conf.ini
root 22993 0.0 13.6 693664 537312 ? S 00:46 0:00 path_to_env_bin_dir --ini my_conf.ini
root 22994 0.0 13.6 693664 537312 ? S 00:46 0:00 path_to_env_bin_dir --ini my_conf.ini
root 22995 0.0 13.6 693664 537312 ? S 00:46 0:00 path_to_env_bin_dir --ini my_conf.ini
root 22996 0.0 13.6 693664 537312 ? S 00:46 0:00 path_to_env_bin_dir --ini my_conf.ini

AFTER THE Bug:

root 19270 1.1 13.6 757344 537956 ? Ssl Mar 30 8:17 path_to_env_bin_dir --ini my_conf.ini
root 19275 0.2 13.7 1632952 543712 ? S Mar 30 2:06 path_to_env_bin_dir --ini my_conf.ini
root 19276 2.2 13.7 1652592 541104 ? Sl Mar 30 16:40 path_to_env_bin_dir --ini my_conf.ini
root 19277 0.2 13.8 1632952 545804 ? S Mar 30 2:09 AM path_to_env_bin_dir --ini my_conf.ini
root 19278 0.5 13.8 1632968 546672 ? S Mar 30 4:19 AM path_to_env_bin_dir --ini my_conf.ini
root 19279 0.9 13.8 1641184 546756 ? Sl Mar30 7:10 am path_to_env_bin_dir --ini my_conf.ini
root 20764 0.0 13.6 757344 536688 ? S Mar 30 0:00 AM path_to_env_bin_dir --ini my_conf.ini
root 20997 0.0 13.6 757344 536688 ? S Mar 30 0:00 AM path_to_env_bin_dir --ini my_conf.ini
root 21113 0.0 13.6 757344 536688 ? S Mar 30 0:00 AM path_to_env_bin_dir --ini my_conf.ini
root 21400 0.0 13.6 757344 536688 ? S Mar 30 0:00 AM path_to_env_bin_dir --ini my_conf.ini
root 22255 0.0 13.6 757344 538260 ? S Mar 30 0:00 AM path_to_env_bin_dir --ini my_conf.ini

as we can see, after some process takes over the processing of the response and subsequently bugs, the consumption of RAM increases strictly by 2 times (excluding caching errors).

my final verdict is that the problem is the socket connection and incorrect exception handling when threads fail.

although, I want to note that during detailed logging of the work of subthreads, there were no errors of incorrect termination of their work (I mean processing and logging during the operation of the application itself, where I use multithreading).

I hope my more detailed comment will significantly speed up the correction of this error.

Sincerely,

02.04.2022
I continued to dig into this bug and found additional information that should (imho) help as well.

I decided to see which files are used by "bugged processes" in comparison with normal ones, and I saw the differences.
the bugged process uses:
ls -l /proc/7544/fd

total 0
lr-x------ 1 root www-data Apr 64 04:15 0 -> /dev/null
lrwx------ 1 root www-data Apr 64 04:15 1 -> /etc/nginx/log/my_project.log
lrwx------ 1 root www-data Apr 64 04:15 2 -> /etc/nginx/log/my_project.log
lrwx------ 1 root www-data Apr 64 04:15 21 -> 'socket:[45616]'
lrwx------ 1 root www-data Apr 64 04:15 25 -> 'socket:[45628]'
lrwx------ 1 root www-data Apr 64 04:15 3 -> 'socket:[45530]'
lrwx------ 1 root www-data Apr 64 04:15 4 -> 'anon_inode:[eventpoll]'
lr-x------ 1 root www-data 64 Apr 2 04:15 7 -> /dev/urandom
lr-x------ 1 root www-data 64 Apr 2 04:15 8 -> /dev/random

the normal process uses:

total 0
lr-x------ 1 root www-data Apr 64 04:14 0 -> /dev/null
lrwx------ 1 root www-data Apr 64 04:14 1 -> /etc/nginx/log/my_project.log
lrwx------ 1 root www-data Apr 64 04:14 2 -> /etc/nginx/log/my_project.log
lrwx------ 1 root www-data Apr 64 04:14 25 -> 'socket:[45628]'
lrwx------ 1 root www-data Apr 64 04:14 3 -> 'socket:[45530]'
lrwx------ 1 root www-data Apr 64 04:14 4 -> 'anon_inode:[eventpoll]'
lrwx------ 1 root www-data Apr 64 04:14 7 -> 'socket:[45602]'

as we can see, the difference is in "socket" and "urandom"|"random".

also, I double-checked the correctness of the responses of flask itself, for errors in the "headers": "Accept", "Content-Type" headers.
at the moment I form the answer as follows (which does not cause problems in the windows operating system):

import json

from flask import Flask


def create_json_response(data: dict):
    if not isinstance(data, dict):
        raise TypeError(f'data must have [dict] structure, but not {type(data).__name__}.')
    return Flask.response_class(response=json.dumps(data, ensure_ascii=False), status=200, mimetype='application/json', headers={'Accept': 'application/json'})

ps
ensure_ascii=False - for correct display of Cyrillic characters.

### strace -tt -T -p 7851

strace: Process 7851 attached
04:43:36.852931 epoll_wait(4, [{EPOLLIN, {u32=3, u64=3}}], 1, -1) = 1 <5.887888>
04:43:42.741288 accept4(3, {sa_family=AF_UNIX}, [110->2], SOCK_NONBLOCK) = 6 <0.000093>
04:43:42.741960 read(6, "\0\r\4\0\f\0QUERY_STRING\22\0search_name="..., 4100) = 1041 <0.000101>
04:43:42.754567 clone(child_stack=0x7f70cfffefb0, flags=CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD|CLONE_SYSVSEM|CLONE_SETTLS|CLONE_PARENT_SETTID|CLONE_CHILD_CLEARTID, parent_tidptr=0x7f70cffff9d0, tls=0x7f70cffff700, child_tidptr=0x7f70cffff9d0) = 7875 <0.000132>
04:43:42.754933 futex(0x55f2ffb7a600, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, NULL, 0xffffffff) = 0 <0.000182>
04:43:42.755278 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874622, tv_nsec=760189000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.005004>
04:43:42.760452 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000082>
04:43:42.760642 futex(0x7f70d913f42c, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000051>
04:43:42.760793 futex(0x7f70d913f3c0, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000048>
04:43:42.760943 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000053>
04:43:42.761216 clone(child_stack=0x7f70d4d7efb0, flags=CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD|CLONE_SYSVSEM|CLONE_SETTLS|CLONE_PARENT_SETTID|CLONE_CHILD_CLEARTID, parent_tidptr=0x7f70d4d7f9d0, tls=0x7f70d4d7f700, child_tidptr=0x7f70d4d7f9d0) = 7876 <0.000060>
04:43:42.761375 futex(0x7f70d913f4ac, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000056>
04:43:42.761535 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000056>
04:43:42.761696 futex(0x55f2ffb67650, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, NULL, 0xffffffff) = 0 <0.005678>
04:43:42.767488 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874622, tv_nsec=772435000}, 0xffffffff) = 0 <0.004911>
04:43:42.772608 futex(0x7f70d913f42c, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000072>
04:43:42.772783 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000060>
04:43:42.773025 mmap(NULL, 8392704, PROT_NONE, MAP_PRIVATE|MAP_ANONYMOUS|MAP_STACK, -1, 0) = 0x7f70b63fd000 <0.000062>
04:43:42.773203 mprotect(0x7f70b63fe000, 8388608, PROT_READ|PROT_WRITE) = 0 <0.000071>
04:43:42.773404 clone(child_stack=0x7f70b6bfcfb0, flags=CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD|CLONE_SYSVSEM|CLONE_SETTLS|CLONE_PARENT_SETTID|CLONE_CHILD_CLEARTID, parent_tidptr=0x7f70b6bfd9d0, tls=0x7f70b6bfd700, child_tidptr=0x7f70b6bfd9d0) = 7877 <0.000071>
04:43:42.773619 futex(0x7f70d913f4ac, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000085>
04:43:42.773856 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000080>
04:43:42.774039 futex(0x55f2fffe8c60, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, NULL, 0xffffffff) = 0 <0.011680>
04:43:42.785871 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874622, tv_nsec=790788000}, 0xffffffff) = 0 <0.004856>
04:43:42.790858 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874622, tv_nsec=790788000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.000071>
04:43:42.791045 futex(0x7f70d913f42c, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000059>
04:43:42.791193 futex(0x7f70d913f3c0, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000059>
04:43:42.791338 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000057>
04:43:42.791901 clone(child_stack=0x7f70cfffefb0, flags=CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD|CLONE_SYSVSEM|CLONE_SETTLS|CLONE_PARENT_SETTID|CLONE_CHILD_CLEARTID, parent_tidptr=0x7f70cffff9d0, tls=0x7f70cffff700, child_tidptr=0x7f70cffff9d0) = 7878 <0.000084>
04:43:42.792117 futex(0x7f70d913f4ac, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000084>
04:43:42.792301 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000058>
04:43:42.796319 futex(0x55f2ffe9d510, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, NULL, 0xffffffff) = 0 <0.015935>
04:43:42.812471 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874622, tv_nsec=817452000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.005031>
04:43:42.817732 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000096>
04:43:42.818035 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874622, tv_nsec=822712000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004737>
04:43:42.823001 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000110>
04:43:42.823272 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874622, tv_nsec=827982000}, 0xffffffff) = 0 <0.005429>
04:43:42.828956 futex(0x7f70d913f440, FUTEX_WAIT_PRIVATE, 2, NULL) = 0 <0.000247>
04:43:42.829380 futex(0x7f70d913f42c, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000102>
04:43:42.829628 futex(0x7f70d913f3c0, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000073>
04:43:42.829797 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000067>
04:43:42.830135 mmap(NULL, 8392704, PROT_NONE, MAP_PRIVATE|MAP_ANONYMOUS|MAP_STACK, -1, 0) = 0x7f70b5bfc000 <0.000074>
04:43:42.830348 mprotect(0x7f70b5bfd000, 8388608, PROT_READ|PROT_WRITE) = 0 <0.000067>
04:43:42.830566 clone(child_stack=0x7f70b63fbfb0, flags=CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD|CLONE_SYSVSEM|CLONE_SETTLS|CLONE_PARENT_SETTID|CLONE_CHILD_CLEARTID, parent_tidptr=0x7f70b63fc9d0, tls=0x7f70b63fc700, child_tidptr=0x7f70b63fc9d0) = 7879 <0.000104>
04:43:42.830805 futex(0x7f70d913f4a8, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000062>
04:43:42.830959 futex(0x55f3000818b0, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, NULL, 0xffffffff) = 0 <0.029303>
04:43:42.860486 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874622, tv_nsec=865463000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.006559>
04:43:42.867308 futex(0x7f70d913f440, FUTEX_WAIT_PRIVATE, 2, NULL) = 0 <0.000169>
04:43:42.867938 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000061>
04:43:42.868090 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874622, tv_nsec=872603000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004626>
04:43:42.872914 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000108>
04:43:42.873163 futex(0x7f70d913f428, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000096>
04:43:42.873391 futex(0x7f70d913f3c0, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000098>
04:43:42.873974 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000085>
04:43:42.874302 mmap(NULL, 8392704, PROT_NONE, MAP_PRIVATE|MAP_ANONYMOUS|MAP_STACK, -1, 0) = 0x7f70b53fb000 <0.000102>
04:43:42.874529 mprotect(0x7f70b53fc000, 8388608, PROT_READ|PROT_WRITE) = 0 <0.000077>
04:43:42.874765 clone(child_stack=0x7f70b5bfafb0, flags=CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD|CLONE_SYSVSEM|CLONE_SETTLS|CLONE_PARENT_SETTID|CLONE_CHILD_CLEARTID, parent_tidptr=0x7f70b5bfb9d0, tls=0x7f70b5bfb700, child_tidptr=0x7f70b5bfb9d0) = 7880 <0.000064>
04:43:42.874933 futex(0x7f70d913f4a8, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000058>
04:43:42.875107 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000039>
04:43:42.875598 futex(0x55f300081880, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, NULL, 0xffffffff) = 0 <0.005323>
04:43:42.881223 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874622, tv_nsec=886204000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.006550>
04:43:42.888065 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000151>
04:43:42.888376 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874622, tv_nsec=892980000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004664>
04:43:42.893228 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000095>
04:43:42.893455 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874622, tv_nsec=898141000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004801>
04:43:42.898492 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000157>
04:43:42.898796 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874622, tv_nsec=903344000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.005285>
04:43:42.904271 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000091>
04:43:42.904503 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874622, tv_nsec=909152000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.002893>
04:43:42.909687 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000048>
04:43:42.910099 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874622, tv_nsec=914665000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004577>
04:43:42.914984 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000093>
04:43:42.915199 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874622, tv_nsec=919864000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004736>
04:43:42.920079 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000135>
04:43:42.920379 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874622, tv_nsec=925018000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.006475>
04:43:42.926964 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000055>
04:43:42.927116 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874622, tv_nsec=931931000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004899>
04:43:42.932179 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000083>
04:43:42.932443 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874622, tv_nsec=937125000}, 0xffffffff) = 0 <0.004715>
04:43:42.937386 futex(0x7f70d913f428, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000097>
04:43:42.937714 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000107>
04:43:42.938284 clone(child_stack=0x7f70d4d7efb0, flags=CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD|CLONE_SYSVSEM|CLONE_SETTLS|CLONE_PARENT_SETTID|CLONE_CHILD_CLEARTID, parent_tidptr=0x7f70d4d7f9d0, tls=0x7f70d4d7f700, child_tidptr=0x7f70d4d7f9d0) = 7881 <0.000112>
04:43:42.938531 futex(0x7f70d913f4a8, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000086>
04:43:42.938791 futex(0x55f2fffa40d0, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, NULL, 0xffffffff) = 0 <0.027567>
04:43:42.966616 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874622, tv_nsec=971436000}, 0xffffffff) = 0 <0.004660>
04:43:42.971482 futex(0x7f70d913f42c, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000128>
04:43:42.971741 futex(0x7f70d913f3c0, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000089>
04:43:42.971948 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000085>
04:43:42.972294 mmap(NULL, 8392704, PROT_NONE, MAP_PRIVATE|MAP_ANONYMOUS|MAP_STACK, -1, 0) = 0x7f70b4bfa000 <0.000088>
04:43:42.972507 mprotect(0x7f70b4bfb000, 8388608, PROT_READ|PROT_WRITE) = 0 <0.000088>
04:43:42.972809 clone(child_stack=0x7f70b53f9fb0, flags=CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD|CLONE_SYSVSEM|CLONE_SETTLS|CLONE_PARENT_SETTID|CLONE_CHILD_CLEARTID, parent_tidptr=0x7f70b53fa9d0, tls=0x7f70b53fa700, child_tidptr=0x7f70b53fa9d0) = 7882 <0.000181>
04:43:42.973160 futex(0x7f70d913f4a8, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000086>
04:43:42.973365 futex(0x55f300018930, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, NULL, 0xffffffff) = 0 <0.046947>
04:43:43.020742 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874623, tv_nsec=25716000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.006634>
04:43:43.027670 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000137>
04:43:43.027998 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874623, tv_nsec=32648000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004716>
04:43:43.032934 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000127>
04:43:43.033250 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874623, tv_nsec=37915000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004724>
04:43:43.038187 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000195>
04:43:43.038711 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874623, tv_nsec=43167000}, 0xffffffff) = 0 <0.002152>
04:43:43.041087 futex(0x7f70d913f42c, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000063>
04:43:43.041620 futex(0x7f70d913f3c0, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000029>
04:43:43.041934 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000028>
04:43:43.042566 clone(child_stack=0x7f70b6bfcfb0, flags=CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD|CLONE_SYSVSEM|CLONE_SETTLS|CLONE_PARENT_SETTID|CLONE_CHILD_CLEARTID, parent_tidptr=0x7f70b6bfd9d0, tls=0x7f70b6bfd700, child_tidptr=0x7f70b6bfd9d0) = 7883 <0.000073>
04:43:43.043012 futex(0x7f70d913f4a8, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000020>
04:43:43.043281 futex(0x55f2ffd42140, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, NULL, 0xffffffff) = 0 <0.057113>
04:43:43.100749 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874623, tv_nsec=105589000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.006028>
04:43:43.107148 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000112>
04:43:43.107419 futex(0x7f70d913f42c, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000136>
04:43:43.107713 futex(0x7f70d913f3c0, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000112>
04:43:43.107899 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000108>
04:43:43.108342 mmap(NULL, 8392704, PROT_NONE, MAP_PRIVATE|MAP_ANONYMOUS|MAP_STACK, -1, 0) = 0x7f70b43f9000 <0.000117>
04:43:43.108659 mprotect(0x7f70b43fa000, 8388608, PROT_READ|PROT_WRITE) = 0 <0.000110>
04:43:43.108933 clone(child_stack=0x7f70b4bf8fb0, flags=CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD|CLONE_SYSVSEM|CLONE_SETTLS|CLONE_PARENT_SETTID|CLONE_CHILD_CLEARTID, parent_tidptr=0x7f70b4bf99d0, tls=0x7f70b4bf9700, child_tidptr=0x7f70b4bf99d0) = 7884 <0.000117>
04:43:43.109359 futex(0x7f70d913f4ac, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000057>
04:43:43.110059 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000055>
04:43:43.110422 futex(0x55f300110ed0, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, NULL, 0xffffffff) = 0 <0.000151>
04:43:43.110968 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874623, tv_nsec=115918000}, 0xffffffff) = 0 <0.004420>
04:43:43.118427 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874623, tv_nsec=115918000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.000167>
04:43:43.118803 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000129>
04:43:43.119122 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874623, tv_nsec=123781000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004689>
04:43:43.123974 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000087>
04:43:43.124180 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874623, tv_nsec=128959000}, 0xffffffff) = 0 <0.004315>
04:43:43.129318 futex(0x7f70d913f440, FUTEX_WAIT_PRIVATE, 2, NULL) = 0 <0.000126>
04:43:43.129636 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000100>
04:43:43.130038 clone(child_stack=0x7f70b53f9fb0, flags=CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD|CLONE_SYSVSEM|CLONE_SETTLS|CLONE_PARENT_SETTID|CLONE_CHILD_CLEARTID, parent_tidptr=0x7f70b53fa9d0, tls=0x7f70b53fa700, child_tidptr=0x7f70b53fa9d0) = 7885 <0.000134>
04:43:43.130436 futex(0x7f70d913f4ac, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000103>
04:43:43.130722 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000090>
04:43:43.132354 futex(0x55f300143780, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, NULL, 0xffffffff) = 0 <0.055925>
04:43:43.188979 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874623, tv_nsec=193487000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004592>
04:43:43.193812 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000022>
04:43:43.193989 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874623, tv_nsec=198704000}, 0xffffffff) = 0 <0.001749>
04:43:43.195891 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000118>
04:43:43.196512 clone(child_stack=0x7f70b4bf8fb0, flags=CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD|CLONE_SYSVSEM|CLONE_SETTLS|CLONE_PARENT_SETTID|CLONE_CHILD_CLEARTID, parent_tidptr=0x7f70b4bf99d0, tls=0x7f70b4bf9700, child_tidptr=0x7f70b4bf99d0) = 7886 <0.000143>
04:43:43.197237 futex(0x7f70d913f4ac, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000094>
04:43:43.197461 futex(0x55f2ffb21660, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, NULL, 0xffffffff) = 0 <0.024222>
04:43:43.221936 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874623, tv_nsec=226915000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.005014>
04:43:43.227184 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000100>
04:43:43.227428 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874623, tv_nsec=232154000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004825>
04:43:43.232470 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000118>
04:43:43.232738 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874623, tv_nsec=237417000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.009113>
04:43:43.242050 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000098>
04:43:43.242289 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874623, tv_nsec=247033000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004801>
04:43:43.247285 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000102>
04:43:43.247573 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874623, tv_nsec=252268000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004828>
04:43:43.252672 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000142>
04:43:43.252960 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874623, tv_nsec=257651000}, 0xffffffff) = 0 <0.001437>
04:43:43.254625 futex(0x7f70d913f440, FUTEX_WAIT_PRIVATE, 2, NULL) = 0 <0.000141>
04:43:43.254960 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000128>
04:43:43.255485 clone(child_stack=0x7f70b63fbfb0, flags=CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD|CLONE_SYSVSEM|CLONE_SETTLS|CLONE_PARENT_SETTID|CLONE_CHILD_CLEARTID, parent_tidptr=0x7f70b63fc9d0, tls=0x7f70b63fc700, child_tidptr=0x7f70b63fc9d0) = 7887 <0.000226>
04:43:43.255908 futex(0x7f70d913f4a8, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000103>
04:43:43.256190 futex(0x55f2ffc504c0, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, NULL, 0xffffffff) = 0 <0.007411>
04:43:43.263868 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874623, tv_nsec=268847000}, 0xffffffff) = 0 <0.004749>
04:43:43.268805 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874623, tv_nsec=268847000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.000125>
04:43:43.269109 futex(0x7f70d913f428, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000106>
04:43:43.269357 futex(0x7f70d913f3c0, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000104>
04:43:43.269635 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000140>
04:43:43.270079 clone(child_stack=0x7f70cfffefb0, flags=CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD|CLONE_SYSVSEM|CLONE_SETTLS|CLONE_PARENT_SETTID|CLONE_CHILD_CLEARTID, parent_tidptr=0x7f70cffff9d0, tls=0x7f70cffff700, child_tidptr=0x7f70cffff9d0) = 7888 <0.000189>
04:43:43.270556 futex(0x7f70d913f4a8, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000112>
04:43:43.270836 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000114>
04:43:43.271089 futex(0x55f30010ad80, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, NULL, 0xffffffff) = 0 <0.017992>
04:43:43.289379 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874623, tv_nsec=294219000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004884>
04:43:43.294515 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000103>
04:43:43.294779 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874623, tv_nsec=299382000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004771>
04:43:43.299784 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000105>
04:43:43.300056 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874623, tv_nsec=304697000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.006357>
04:43:43.307031 futex(0x7f70d913f4ac, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000163>
04:43:43.308287 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.001183>
04:43:43.309825 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874623, tv_nsec=313252000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.003370>
04:43:43.313526 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000108>
04:43:43.313799 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874623, tv_nsec=318421000}, 0xffffffff) = 0 <0.004155>
04:43:43.318133 futex(0x7f70d913f428, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000106>
04:43:43.318380 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000099>
04:43:43.318891 clone(child_stack=0x7f70b5bfafb0, flags=CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD|CLONE_SYSVSEM|CLONE_SETTLS|CLONE_PARENT_SETTID|CLONE_CHILD_CLEARTID, parent_tidptr=0x7f70b5bfb9d0, tls=0x7f70b5bfb700, child_tidptr=0x7f70b5bfb9d0) = 7889 <0.000108>
04:43:43.319154 futex(0x7f70d913f4ac, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000094>
04:43:43.319382 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000117>
04:43:43.321632 futex(0x55f2ffc3a5a0, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, NULL, 0xffffffff) = 0 <0.070353>
04:43:43.392354 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874623, tv_nsec=397325000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004943>
04:43:43.397629 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000104>
04:43:43.397908 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874623, tv_nsec=402610000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004777>
04:43:43.402939 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000170>
04:43:43.403264 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874623, tv_nsec=407914000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004720>
04:43:43.408171 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000102>
04:43:43.408444 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874623, tv_nsec=413155000}, 0xffffffff) = 0 <0.001194>
04:43:43.409845 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874623, tv_nsec=413155000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.003413>
04:43:43.413471 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000125>
04:43:43.413751 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874623, tv_nsec=418358000}, 0xffffffff) = 0 <0.001430>
04:43:43.415347 futex(0x7f70d913f42c, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000164>
04:43:43.415753 futex(0x7f70d913f3c0, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000151>
04:43:43.416162 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000160>
04:43:43.416676 mmap(NULL, 8392704, PROT_NONE, MAP_PRIVATE|MAP_ANONYMOUS|MAP_STACK, -1, 0) = 0x7f70af7ff000 <0.000157>
04:43:43.417071 mprotect(0x7f70af800000, 8388608, PROT_READ|PROT_WRITE) = 0 <0.000137>
04:43:43.417444 clone(child_stack=0x7f70afffefb0, flags=CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD|CLONE_SYSVSEM|CLONE_SETTLS|CLONE_PARENT_SETTID|CLONE_CHILD_CLEARTID, parent_tidptr=0x7f70affff9d0, tls=0x7f70affff700, child_tidptr=0x7f70affff9d0) = 7890 <0.000163>
04:43:43.417883 futex(0x7f70d913f4ac, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000097>
04:43:43.418131 futex(0x55f3001317e0, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, NULL, 0xffffffff) = 0 <0.017482>
04:43:43.435814 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874623, tv_nsec=440707000}, 0xffffffff) = 0 <0.004804>
04:43:43.440797 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874623, tv_nsec=440707000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.000102>
04:43:43.441053 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000025>
04:43:43.441162 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874623, tv_nsec=445971000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.005086>
04:43:43.446434 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000477>
04:43:43.447236 clone(child_stack=0x7f70b53f9fb0, flags=CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD|CLONE_SYSVSEM|CLONE_SETTLS|CLONE_PARENT_SETTID|CLONE_CHILD_CLEARTID, parent_tidptr=0x7f70b53fa9d0, tls=0x7f70b53fa700, child_tidptr=0x7f70b53fa9d0) = 7891 <0.000104>
04:43:43.447495 futex(0x7f70d913f4ac, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000134>
04:43:43.447768 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000146>
04:43:43.452374 futex(0x55f3000bcb00, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, NULL, 0xffffffff) = 0 <0.010209>
04:43:43.462808 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874623, tv_nsec=467791000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.005017>
04:43:43.468024 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000098>
04:43:43.468295 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874623, tv_nsec=472996000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004750>
04:43:43.473251 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000127>
04:43:43.473598 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874623, tv_nsec=478225000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004672>
04:43:43.478432 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000106>
04:43:43.478684 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874623, tv_nsec=483416000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004856>
04:43:43.483733 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000095>
04:43:43.483981 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874623, tv_nsec=488714000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004777>
04:43:43.488976 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000179>
04:43:43.489366 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874623, tv_nsec=493952000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004623>
04:43:43.494170 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000114>
04:43:43.494420 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874623, tv_nsec=499154000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004782>
04:43:43.499390 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000097>
04:43:43.499967 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874623, tv_nsec=504376000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.008271>
04:43:43.508434 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000427>
04:43:43.508991 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874623, tv_nsec=513398000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004468>
04:43:43.513577 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000020>
04:43:43.513675 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874623, tv_nsec=518561000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004932>
04:43:43.518710 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000035>
04:43:43.518804 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874623, tv_nsec=523697000}, 0xffffffff) = 0 <0.004742>
04:43:43.523671 futex(0x7f70d913f428, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000029>
04:43:43.523765 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000028>
04:43:43.524044 clone(child_stack=0x7f70b63fbfb0, flags=CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD|CLONE_SYSVSEM|CLONE_SETTLS|CLONE_PARENT_SETTID|CLONE_CHILD_CLEARTID, parent_tidptr=0x7f70b63fc9d0, tls=0x7f70b63fc700, child_tidptr=0x7f70b63fc9d0) = 7892 <0.000239>
04:43:43.524472 futex(0x7f70d913f4ac, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000033>
04:43:43.526175 futex(0x55f2ffe87d10, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, NULL, 0xffffffff) = 0 <0.030504>
04:43:43.556815 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874623, tv_nsec=561792000}, 0xffffffff) = 0 <0.004759>
04:43:43.561769 futex(0x7f70d913f42c, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000034>
04:43:43.561872 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000041>
04:43:43.562142 mmap(NULL, 8392704, PROT_NONE, MAP_PRIVATE|MAP_ANONYMOUS|MAP_STACK, -1, 0) = 0x7f70aeffe000 <0.000048>
04:43:43.562279 mprotect(0x7f70aefff000, 8388608, PROT_READ|PROT_WRITE) = 0 <0.000053>
04:43:43.562475 clone(child_stack=0x7f70af7fdfb0, flags=CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD|CLONE_SYSVSEM|CLONE_SETTLS|CLONE_PARENT_SETTID|CLONE_CHILD_CLEARTID, parent_tidptr=0x7f70af7fe9d0, tls=0x7f70af7fe700, child_tidptr=0x7f70af7fe9d0) = 7893 <0.000095>
04:43:43.562709 futex(0x7f70d913f4a8, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000035>
04:43:43.562816 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000040>
04:43:43.563124 futex(0x55f2ffb17100, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, NULL, 0xffffffff) = 0 <0.030621>
04:43:43.593897 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874623, tv_nsec=598875000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.005003>
04:43:43.599128 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000034>
04:43:43.599280 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874623, tv_nsec=604105000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004894>
04:43:43.604330 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.006530>
04:43:43.612279 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874623, tv_nsec=609305000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.000060>
04:43:43.612466 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000063>
04:43:43.612627 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874623, tv_nsec=617449000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004899>
04:43:43.617658 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000032>
04:43:43.617774 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874623, tv_nsec=622640000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004886>
04:43:43.622819 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000051>
04:43:43.623091 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874623, tv_nsec=627801000}, 0xffffffff) = -1 EAGAIN (Resource temporarily unavailable) <0.000064>
04:43:43.623335 futex(0x7f70d913f42c, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000048>
04:43:43.623497 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000057>
04:43:43.623881 mmap(NULL, 8392704, PROT_NONE, MAP_PRIVATE|MAP_ANONYMOUS|MAP_STACK, -1, 0) = 0x7f70ae7fd000 <0.000053>
04:43:43.624014 mprotect(0x7f70ae7fe000, 8388608, PROT_READ|PROT_WRITE) = 0 <0.000055>
04:43:43.624230 clone(child_stack=0x7f70aeffcfb0, flags=CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD|CLONE_SYSVSEM|CLONE_SETTLS|CLONE_PARENT_SETTID|CLONE_CHILD_CLEARTID, parent_tidptr=0x7f70aeffd9d0, tls=0x7f70aeffd700, child_tidptr=0x7f70aeffd9d0) = 7894 <0.000117>
04:43:43.624485 futex(0x7f70d913f4a8, FUTEX_WAKE_PRIVATE, 1) = 1 <0.002134>
04:43:43.626713 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000200>
04:43:43.627016 futex(0x55f2ffb18690, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, NULL, 0xffffffff) = 0 <0.007393>
04:43:43.634572 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874623, tv_nsec=639513000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004961>
04:43:43.639801 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000130>
04:43:43.640162 futex(0x7f70d913f42c, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000202>
04:43:43.640648 futex(0x7f70d913f3c0, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000167>
04:43:43.640983 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000123>
04:43:43.641353 clone(child_stack=0x7f70cfffefb0, flags=CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD|CLONE_SYSVSEM|CLONE_SETTLS|CLONE_PARENT_SETTID|CLONE_CHILD_CLEARTID, parent_tidptr=0x7f70cffff9d0, tls=0x7f70cffff700, child_tidptr=0x7f70cffff9d0) = 7895 <0.000129>
04:43:43.641694 futex(0x7f70d913f4a8, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000154>
04:43:43.642040 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000130>
04:43:43.644296 futex(0x55f3000409a0, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, NULL, 0xffffffff) = 0 <0.003303>
04:43:43.647804 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874623, tv_nsec=652706000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.005051>
04:43:43.652990 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000068>
04:43:43.653140 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874623, tv_nsec=657970000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004897>
04:43:43.658141 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000122>
04:43:43.658590 futex(0x7f70d913f42c, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000125>
04:43:43.658903 futex(0x7f70d913f3c0, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000205>
04:43:43.659403 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000145>
04:43:43.659811 mmap(NULL, 8392704, PROT_NONE, MAP_PRIVATE|MAP_ANONYMOUS|MAP_STACK, -1, 0) = 0x7f70adffc000 <0.000191>
04:43:43.660342 mprotect(0x7f70adffd000, 8388608, PROT_READ|PROT_WRITE) = 0 <0.000129>
04:43:43.660717 clone(child_stack=0x7f70ae7fbfb0, flags=CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD|CLONE_SYSVSEM|CLONE_SETTLS|CLONE_PARENT_SETTID|CLONE_CHILD_CLEARTID, parent_tidptr=0x7f70ae7fc9d0, tls=0x7f70ae7fc700, child_tidptr=0x7f70ae7fc9d0) = 7896 <0.000243>
04:43:43.661336 futex(0x7f70d913f4ac, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000177>
04:43:43.661737 futex(0x55f30010ad80, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, NULL, 0xffffffff) = 0 <0.013808>
04:43:43.675650 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874623, tv_nsec=680626000}, 0xffffffff) = 0 <0.004968>
04:43:43.680754 futex(0x7f70d913f428, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000055>
04:43:43.680896 futex(0x7f70d913f3c0, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000088>
04:43:43.681067 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000042>
04:43:43.681366 mmap(NULL, 8392704, PROT_NONE, MAP_PRIVATE|MAP_ANONYMOUS|MAP_STACK, -1, 0) = 0x7f70ad7fb000 <0.000062>
04:43:43.681520 mprotect(0x7f70ad7fc000, 8388608, PROT_READ|PROT_WRITE) = 0 <0.000048>
04:43:43.681752 clone(child_stack=0x7f70adffafb0, flags=CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD|CLONE_SYSVSEM|CLONE_SETTLS|CLONE_PARENT_SETTID|CLONE_CHILD_CLEARTID, parent_tidptr=0x7f70adffb9d0, tls=0x7f70adffb700, child_tidptr=0x7f70adffb9d0) = 7897 <0.000099>
04:43:43.681988 futex(0x7f70d913f4ac, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000111>
04:43:43.682184 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000135>
04:43:43.682599 futex(0x55f2fffa40d0, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, NULL, 0xffffffff) = 0 <0.039977>
04:43:43.722749 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874623, tv_nsec=727717000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.005411>
04:43:43.728325 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000051>
04:43:43.728469 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874623, tv_nsec=733301000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004253>
04:43:43.733678 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000129>
04:43:43.733995 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874623, tv_nsec=738529000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004609>
04:43:43.738823 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000031>
04:43:43.738981 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874623, tv_nsec=743693000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004820>
04:43:43.744113 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000128>
04:43:43.744491 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874623, tv_nsec=748944000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.006841>
04:43:43.752790 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000047>
04:43:43.753448 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874623, tv_nsec=757766000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004190>
04:43:43.758387 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000067>
04:43:43.762524 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874623, tv_nsec=763338000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.000371>
04:43:43.763851 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000091>
04:43:43.764499 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874623, tv_nsec=768777000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.005106>
04:43:43.772318 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000024>
04:43:43.772417 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874623, tv_nsec=777302000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004945>
04:43:43.777498 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000038>
04:43:43.777721 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874623, tv_nsec=782476000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004827>
04:43:43.782683 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000038>
04:43:43.782848 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874623, tv_nsec=787667000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004824>
04:43:43.787868 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000039>
04:43:43.788059 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874623, tv_nsec=792844000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004788>
04:43:43.792980 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000023>
04:43:43.793088 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874623, tv_nsec=797966000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004949>
04:43:43.798176 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000025>
04:43:43.798278 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874623, tv_nsec=803159000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004957>
04:43:43.803398 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000115>
04:43:43.803653 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874623, tv_nsec=808372000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004803>
04:43:43.808665 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000025>
04:43:43.808773 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874623, tv_nsec=813648000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.007490>
04:43:43.816402 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000022>
04:43:43.816529 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874623, tv_nsec=821379000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004855>
04:43:43.821512 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000023>
04:43:43.821669 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874623, tv_nsec=826498000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004904>
04:43:43.826689 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000023>
04:43:43.826789 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874623, tv_nsec=831675000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004944>
04:43:43.831892 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000052>
04:43:43.832092 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874623, tv_nsec=836869000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.008178>
04:43:43.840403 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000038>
04:43:43.840896 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874623, tv_nsec=845378000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.006229>
04:43:43.847245 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000027>
04:43:43.847353 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874623, tv_nsec=852229000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004935>
04:43:43.852446 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000092>
04:43:43.852666 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874623, tv_nsec=857421000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004788>
04:43:43.857601 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000042>
04:43:43.857734 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874623, tv_nsec=862584000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.010251>
04:43:43.868104 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000051>
04:43:43.868288 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874623, tv_nsec=873088000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004863>
04:43:43.873401 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000247>
04:43:43.873861 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874623, tv_nsec=878375000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004548>
04:43:43.878608 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000143>
04:43:43.878896 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874623, tv_nsec=883584000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004762>
04:43:43.883950 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000159>
04:43:43.884349 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874623, tv_nsec=888931000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.006629>
04:43:43.891224 futex(0x7f70d913f42c, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000184>
04:43:43.891648 futex(0x7f70d913f3c0, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000111>
04:43:43.891920 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000110>
04:43:43.892415 mmap(NULL, 8392704, PROT_NONE, MAP_PRIVATE|MAP_ANONYMOUS|MAP_STACK, -1, 0) = 0x7f70acffa000 <0.000124>
04:43:43.892686 mprotect(0x7f70acffb000, 8388608, PROT_READ|PROT_WRITE) = 0 <0.000107>
04:43:43.892987 clone(child_stack=0x7f70ad7f9fb0, flags=CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD|CLONE_SYSVSEM|CLONE_SETTLS|CLONE_PARENT_SETTID|CLONE_CHILD_CLEARTID, parent_tidptr=0x7f70ad7fa9d0, tls=0x7f70ad7fa700, child_tidptr=0x7f70ad7fa9d0) = 7898 <0.000146>
04:43:43.893339 futex(0x7f70d913f4ac, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000099>
04:43:43.893617 futex(0x55f2fffcf570, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, NULL, 0xffffffff) = 0 <0.014704>
04:43:43.908570 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874623, tv_nsec=913529000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.005005>
04:43:43.913829 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000132>
04:43:43.914110 futex(0x7f70d913f428, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000112>
04:43:43.914375 futex(0x7f70d913f3c0, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000238>
04:43:43.914779 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000111>
04:43:43.915186 mmap(NULL, 8392704, PROT_NONE, MAP_PRIVATE|MAP_ANONYMOUS|MAP_STACK, -1, 0) = 0x7f70ac7f9000 <0.000111>
04:43:43.915442 mprotect(0x7f70ac7fa000, 8388608, PROT_READ|PROT_WRITE) = 0 <0.000125>
04:43:43.915744 clone(child_stack=0x7f70acff8fb0, flags=CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD|CLONE_SYSVSEM|CLONE_SETTLS|CLONE_PARENT_SETTID|CLONE_CHILD_CLEARTID, parent_tidptr=0x7f70acff99d0, tls=0x7f70acff9700, child_tidptr=0x7f70acff99d0) = 7899 <0.000177>
04:43:43.916129 futex(0x7f70d913f4ac, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000161>
04:43:43.916437 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000106>
04:43:43.923273 futex(0x55f300001eb0, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, NULL, 0xffffffff) = 0 <0.116997>
04:43:44.040559 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874624, tv_nsec=45520000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.006818>
04:43:44.048300 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000098>
04:43:44.048560 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874624, tv_nsec=53284000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004801>
04:43:44.053597 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000149>
04:43:44.053953 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874624, tv_nsec=58577000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.007759>
04:43:44.061935 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000153>
04:43:44.062324 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874624, tv_nsec=66897000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004798>
04:43:44.067322 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000100>
04:43:44.067879 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874624, tv_nsec=72298000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004478>
04:43:44.072622 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000148>
04:43:44.073006 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874624, tv_nsec=77595000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004644>
04:43:44.077897 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000224>
04:43:44.078389 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874624, tv_nsec=82859000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.008695>
04:43:44.087639 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000096>
04:43:44.087890 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874624, tv_nsec=92622000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004811>
04:43:44.092929 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000141>
04:43:44.093312 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874624, tv_nsec=97907000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004680>
04:43:44.098310 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000254>
04:43:44.098814 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874624, tv_nsec=103255000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004506>
04:43:44.103621 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000162>
04:43:44.103980 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874624, tv_nsec=108598000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.008224>
04:43:44.112428 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000126>
04:43:44.112711 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874624, tv_nsec=117402000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004731>
04:43:44.117631 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000120>
04:43:44.117904 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874624, tv_nsec=122603000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004767>
04:43:44.122890 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000203>
04:43:44.123430 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874624, tv_nsec=127869000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004524>
04:43:44.128243 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000181>
04:43:44.129095 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874624, tv_nsec=133189000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004116>
04:43:44.133400 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000097>
04:43:44.133655 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874624, tv_nsec=138382000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004769>
04:43:44.138595 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000091>
04:43:44.138828 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874624, tv_nsec=143580000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004808>
04:43:44.143799 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000092>
04:43:44.144030 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874624, tv_nsec=148781000}, 0xffffffff) = 0 <0.004363>
04:43:44.148557 futex(0x7f70d913f428, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000124>
04:43:44.148826 futex(0x7f70d913f3c0, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000095>
04:43:44.149053 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000095>
04:43:44.149482 clone(child_stack=0x7f70ae7fbfb0, flags=CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD|CLONE_SYSVSEM|CLONE_SETTLS|CLONE_PARENT_SETTID|CLONE_CHILD_CLEARTID, parent_tidptr=0x7f70ae7fc9d0, tls=0x7f70ae7fc700, child_tidptr=0x7f70ae7fc9d0) = 7900 <0.000157>
04:43:44.149807 futex(0x7f70d913f4a8, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000088>
04:43:44.150028 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000087>
04:43:44.152251 futex(0x55f300165c30, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, NULL, 0xffffffff) = 0 <0.119962>
04:43:44.272618 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874624, tv_nsec=277600000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004983>
04:43:44.277812 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000109>
04:43:44.278079 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874624, tv_nsec=282797000}, 0xffffffff) = 0 <0.004304>
04:43:44.282573 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874624, tv_nsec=282797000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.000286>
04:43:44.283099 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000123>
04:43:44.283429 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874624, tv_nsec=288061000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.005295>
04:43:44.288967 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000112>
04:43:44.289251 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874624, tv_nsec=293947000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.007023>
04:43:44.296524 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000127>
04:43:44.296975 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874624, tv_nsec=301498000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.007243>
04:43:44.304474 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.003244>
04:43:44.307864 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874624, tv_nsec=309436000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.001614>
04:43:44.309631 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000034>
04:43:44.309749 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874624, tv_nsec=314614000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004939>
04:43:44.314787 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000036>
04:43:44.314882 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874624, tv_nsec=319770000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004961>
04:43:44.319990 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000076>
04:43:44.320157 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874624, tv_nsec=324953000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.007623>
04:43:44.327889 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000044>
04:43:44.328036 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874624, tv_nsec=332867000}, 0xffffffff) = 0 <0.003837>
04:43:44.331971 futex(0x7f70d913f42c, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000033>
04:43:44.332068 futex(0x7f70d913f3c0, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000031>
04:43:44.332143 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000020>
04:43:44.332467 clone(child_stack=0x7f70aeffcfb0, flags=CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD|CLONE_SYSVSEM|CLONE_SETTLS|CLONE_PARENT_SETTID|CLONE_CHILD_CLEARTID, parent_tidptr=0x7f70aeffd9d0, tls=0x7f70aeffd700, child_tidptr=0x7f70aeffd9d0) = 7901 <0.000139>
04:43:44.332722 futex(0x7f70d913f4a8, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000022>
04:43:44.332794 futex(0x55f2ffe39da0, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, NULL, 0xffffffff) = 0 <0.014879>
04:43:44.347761 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874624, tv_nsec=352742000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.005065>
04:43:44.352972 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000047>
04:43:44.353100 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874624, tv_nsec=357947000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004996>
04:43:44.358224 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000052>
04:43:44.358377 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874624, tv_nsec=363200000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004915>
04:43:44.363414 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000063>
04:43:44.363574 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874624, tv_nsec=368397000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004623>
04:43:44.368641 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000053>
04:43:44.368758 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874624, tv_nsec=373618000}, 0xffffffff) = 0 <0.004636>
04:43:44.373522 futex(0x7f70d913f42c, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000132>
04:43:44.373827 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000050>
04:43:44.374288 clone(child_stack=0x7f70af7fdfb0, flags=CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD|CLONE_SYSVSEM|CLONE_SETTLS|CLONE_PARENT_SETTID|CLONE_CHILD_CLEARTID, parent_tidptr=0x7f70af7fe9d0, tls=0x7f70af7fe700, child_tidptr=0x7f70af7fe9d0) = 7902 <0.000091>
04:43:44.374510 futex(0x7f70d913f4ac, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000037>
04:43:44.374610 futex(0x55f2fff3b960, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, NULL, 0xffffffff) = 0 <0.013460>
04:43:44.388144 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874624, tv_nsec=393124000}, 0xffffffff) = 0 <0.004928>
04:43:44.393202 futex(0x7f70d913f428, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000043>
04:43:44.393316 futex(0x7f70d913f3c0, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000036>
04:43:44.393403 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000021>
04:43:44.393679 clone(child_stack=0x7f70d4d7efb0, flags=CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD|CLONE_SYSVSEM|CLONE_SETTLS|CLONE_PARENT_SETTID|CLONE_CHILD_CLEARTID, parent_tidptr=0x7f70d4d7f9d0, tls=0x7f70d4d7f700, child_tidptr=0x7f70d4d7f9d0) = 7903 <0.000100>
04:43:44.393938 futex(0x7f70d913f4ac, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000024>
04:43:44.394023 futex(0x55f300023da0, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, NULL, 0xffffffff) = 0 <0.024441>
04:43:44.418573 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874624, tv_nsec=423552000}, 0xffffffff) = 0 <0.004974>
04:43:44.423694 futex(0x7f70d913f428, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000035>
04:43:44.423812 futex(0x7f70d913f3c0, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000046>
04:43:44.423946 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000047>
04:43:44.424387 clone(child_stack=0x7f70b5bfafb0, flags=CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD|CLONE_SYSVSEM|CLONE_SETTLS|CLONE_PARENT_SETTID|CLONE_CHILD_CLEARTID, parent_tidptr=0x7f70b5bfb9d0, tls=0x7f70b5bfb700, child_tidptr=0x7f70b5bfb9d0) = 7904 <0.000097>
04:43:44.425956 futex(0x7f70d913f4a8, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000035>
04:43:44.426071 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000021>
04:43:44.428338 futex(0x55f30007ac90, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, NULL, 0xffffffff) = 0 <0.003103>
04:43:44.431683 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874624, tv_nsec=436667000}, 0xffffffff) = 0 <0.004837>
04:43:44.436749 futex(0x7f70d913f428, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000136>
04:43:44.437156 futex(0x7f70d913f3c0, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000098>
04:43:44.437475 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000110>
04:43:44.437868 mmap(NULL, 8392704, PROT_NONE, MAP_PRIVATE|MAP_ANONYMOUS|MAP_STACK, -1, 0) = 0x7f70a4c64000 <0.000110>
04:43:44.438134 mprotect(0x7f70a4c65000, 8388608, PROT_READ|PROT_WRITE) = 0 <0.000094>
04:43:44.438411 clone(child_stack=0x7f70a5463fb0, flags=CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD|CLONE_SYSVSEM|CLONE_SETTLS|CLONE_PARENT_SETTID|CLONE_CHILD_CLEARTID, parent_tidptr=0x7f70a54649d0, tls=0x7f70a5464700, child_tidptr=0x7f70a54649d0) = 7905 <0.000181>
04:43:44.438842 futex(0x7f70d913f4a8, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000089>
04:43:44.439078 futex(0x55f3000fd5a0, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, NULL, 0xffffffff) = 0 <0.018598>
04:43:44.457925 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874624, tv_nsec=462905000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.005012>
04:43:44.463153 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.004818>
04:43:44.468127 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874624, tv_nsec=468134000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.000135>
04:43:44.468414 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000089>
04:43:44.468665 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874624, tv_nsec=473400000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004786>
04:43:44.473672 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000093>
04:43:44.473915 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874624, tv_nsec=478656000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004838>
04:43:44.478966 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000109>
04:43:44.479212 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874624, tv_nsec=483939000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004824>
04:43:44.484394 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.001849>
04:43:44.486570 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874624, tv_nsec=489364000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.005634>
04:43:44.492433 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000146>
04:43:44.492715 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874624, tv_nsec=497414000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004762>
04:43:44.497725 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000142>
04:43:44.498020 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874624, tv_nsec=502704000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004745>
04:43:44.502929 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000105>
04:43:44.503175 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874624, tv_nsec=507914000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004807>
04:43:44.508194 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000117>
04:43:44.508504 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874624, tv_nsec=513175000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.005890>
04:43:44.514539 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000039>
04:43:44.514655 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874624, tv_nsec=519520000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.005611>
04:43:44.520363 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000030>
04:43:44.520474 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874624, tv_nsec=525339000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.006278>
04:43:44.526865 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000035>
04:43:44.526968 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874624, tv_nsec=531846000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.005027>
04:43:44.532108 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000090>
04:43:44.532286 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874624, tv_nsec=537084000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004920>
04:43:44.537322 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000036>
04:43:44.537438 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874624, tv_nsec=542299000}, 0xffffffff) = 0 <0.004594>
04:43:44.542148 futex(0x7f70d913f42c, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000037>
04:43:44.542247 futex(0x7f70d913f3c0, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000062>
04:43:44.542364 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000040>
04:43:44.542741 mmap(NULL, 8392704, PROT_NONE, MAP_PRIVATE|MAP_ANONYMOUS|MAP_STACK, -1, 0) = 0x7f70a4463000 <0.000054>
04:43:44.542898 mprotect(0x7f70a4464000, 8388608, PROT_READ|PROT_WRITE) = 0 <0.000033>
04:43:44.543038 clone(child_stack=0x7f70a4c62fb0, flags=CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD|CLONE_SYSVSEM|CLONE_SETTLS|CLONE_PARENT_SETTID|CLONE_CHILD_CLEARTID, parent_tidptr=0x7f70a4c639d0, tls=0x7f70a4c63700, child_tidptr=0x7f70a4c639d0) = 7906 <0.000117>
04:43:44.543274 futex(0x7f70d913f4ac, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000025>
04:43:44.543351 futex(0x55f30015dca0, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, NULL, 0xffffffff) = 0 <0.019308>
04:43:44.562813 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874624, tv_nsec=567770000}, 0xffffffff) = 0 <0.004826>
04:43:44.567830 futex(0x7f70d913f42c, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000060>
04:43:44.567958 futex(0x7f70d913f3c0, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000041>
04:43:44.568073 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000022>
04:43:44.568309 mmap(NULL, 8392704, PROT_NONE, MAP_PRIVATE|MAP_ANONYMOUS|MAP_STACK, -1, 0) = 0x7f70777ff000 <0.000037>
04:43:44.568420 mprotect(0x7f7077800000, 8388608, PROT_READ|PROT_WRITE) = 0 <0.000027>
04:43:44.568531 clone(child_stack=0x7f7077ffefb0, flags=CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD|CLONE_SYSVSEM|CLONE_SETTLS|CLONE_PARENT_SETTID|CLONE_CHILD_CLEARTID, parent_tidptr=0x7f7077fff9d0, tls=0x7f7077fff700, child_tidptr=0x7f7077fff9d0) = 7907 <0.000095>
04:43:44.568734 futex(0x7f70d913f4ac, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000026>
04:43:44.568811 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000021>
04:43:44.571381 futex(0x55f300173dc0, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, NULL, 0xffffffff) = 0 <0.002770>
04:43:44.574241 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874624, tv_nsec=579223000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.005099>
04:43:44.579434 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000023>
04:43:44.579517 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874624, tv_nsec=584416000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.007188>
04:43:44.586817 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000049>
04:43:44.586935 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874624, tv_nsec=591800000}, 0xffffffff) = 0 <0.004898>
04:43:44.591939 futex(0x7f70d913f428, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000036>
04:43:44.592036 futex(0x7f70d913f3c0, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000033>
04:43:44.592116 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000022>
04:43:44.592382 mmap(NULL, 8392704, PROT_NONE, MAP_PRIVATE|MAP_ANONYMOUS|MAP_STACK, -1, 0) = 0x7f7076ffe000 <0.000067>
04:43:44.592916 mprotect(0x7f7076fff000, 8388608, PROT_READ|PROT_WRITE) = 0 <0.000038>
04:43:44.593061 clone(child_stack=0x7f70777fdfb0, flags=CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD|CLONE_SYSVSEM|CLONE_SETTLS|CLONE_PARENT_SETTID|CLONE_CHILD_CLEARTID, parent_tidptr=0x7f70777fe9d0, tls=0x7f70777fe700, child_tidptr=0x7f70777fe9d0) = 7908 <0.000080>
04:43:44.593232 futex(0x7f70d913f4ac, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000022>
04:43:44.593307 futex(0x55f2ffcaddd0, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, NULL, 0xffffffff) = 0 <0.013495>
04:43:44.606894 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874624, tv_nsec=611869000}, 0xffffffff) = 0 <0.004935>
04:43:44.612028 futex(0x7f70d913f42c, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000055>
04:43:44.612176 futex(0x7f70d913f3c0, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000033>
04:43:44.612312 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000033>
04:43:44.612927 mmap(NULL, 8392704, PROT_NONE, MAP_PRIVATE|MAP_ANONYMOUS|MAP_STACK, -1, 0) = 0x7f70767fd000 <0.000038>
04:43:44.613030 mprotect(0x7f70767fe000, 8388608, PROT_READ|PROT_WRITE) = 0 <0.000028>
04:43:44.613155 clone(child_stack=0x7f7076ffcfb0, flags=CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD|CLONE_SYSVSEM|CLONE_SETTLS|CLONE_PARENT_SETTID|CLONE_CHILD_CLEARTID, parent_tidptr=0x7f7076ffd9d0, tls=0x7f7076ffd700, child_tidptr=0x7f7076ffd9d0) = 7909 <0.000076>
04:43:44.613319 futex(0x7f70d913f4ac, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000023>
04:43:44.613396 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000022>
04:43:44.616393 futex(0x55f2ffd12400, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, NULL, 0xffffffff) = 0 <0.127234>
04:43:44.743777 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874624, tv_nsec=748757000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004956>
04:43:44.748950 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000042>
04:43:44.749092 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874624, tv_nsec=753924000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004797>
04:43:44.754048 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000060>
04:43:44.754203 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874624, tv_nsec=759029000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004806>
04:43:44.759171 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000050>
04:43:44.759328 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874624, tv_nsec=764150000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004861>
04:43:44.764292 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000049>
04:43:44.764418 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874624, tv_nsec=769274000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004912>
04:43:44.769471 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000084>
04:43:44.769693 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874624, tv_nsec=774442000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004830>
04:43:44.774651 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000040>
04:43:44.774754 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874624, tv_nsec=779630000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004951>
04:43:44.779798 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000069>
04:43:44.779955 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874624, tv_nsec=784780000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.007483>
04:43:44.787537 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000027>
04:43:44.787655 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874624, tv_nsec=792517000}, 0xffffffff) = 0 <0.004564>
04:43:44.792322 futex(0x7f70d913f428, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000045>
04:43:44.792450 futex(0x7f70d913f3c0, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000146>
04:43:44.792670 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000024>
04:43:44.794409 clone(child_stack=0x7f70b4bf8fb0, flags=CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD|CLONE_SYSVSEM|CLONE_SETTLS|CLONE_PARENT_SETTID|CLONE_CHILD_CLEARTID, parent_tidptr=0x7f70b4bf99d0, tls=0x7f70b4bf9700, child_tidptr=0x7f70b4bf99d0) = 7910 <0.000067>
04:43:44.794639 futex(0x7f70d913f4a8, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000034>
04:43:44.794742 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000038>
04:43:44.797837 futex(0x55f2ffe39da0, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, NULL, 0xffffffff) = 0 <0.090573>
04:43:44.888614 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874624, tv_nsec=893580000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004968>
04:43:44.893759 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000040>
04:43:44.893864 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874624, tv_nsec=898742000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004989>
04:43:44.898962 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000039>
04:43:44.899088 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874624, tv_nsec=903941000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004941>
04:43:44.904125 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000033>
04:43:44.904237 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874624, tv_nsec=909106000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.008040>
04:43:44.912371 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000030>
04:43:44.912466 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874624, tv_nsec=917350000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.005010>
04:43:44.917637 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000048>
04:43:44.917772 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874624, tv_nsec=922611000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004935>
04:43:44.922817 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000036>
04:43:44.922912 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874624, tv_nsec=927797000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004971>
04:43:44.927980 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000035>
04:43:44.928073 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874624, tv_nsec=932960000}, 0xffffffff) = 0 <0.004021>
04:43:44.932177 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000024>
04:43:44.932284 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874624, tv_nsec=937160000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004945>
04:43:44.937343 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000050>
04:43:44.937464 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874624, tv_nsec=942322000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004961>
04:43:44.942514 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000024>
04:43:44.942614 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874624, tv_nsec=947495000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.008024>
04:43:44.950808 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000043>
04:43:44.950946 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874624, tv_nsec=955783000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004933>
04:43:44.956050 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000051>
04:43:44.956282 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874624, tv_nsec=961018000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004823>
04:43:44.961281 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000019>
04:43:44.961439 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874624, tv_nsec=966269000}, 0xffffffff) = 0 <0.004851>
04:43:44.966475 futex(0x7f70d913f42c, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000445>
04:43:44.967062 futex(0x7f70d913f3c0, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000037>
04:43:44.967204 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000026>
04:43:44.967498 clone(child_stack=0x7f70adffafb0, flags=CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD|CLONE_SYSVSEM|CLONE_SETTLS|CLONE_PARENT_SETTID|CLONE_CHILD_CLEARTID, parent_tidptr=0x7f70adffb9d0, tls=0x7f70adffb700, child_tidptr=0x7f70adffb9d0) = 7911 <0.000143>
04:43:44.967790 futex(0x7f70d913f4ac, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000032>
04:43:44.967900 futex(0x55f2fff3b960, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, NULL, 0xffffffff) = 0 <0.095661>
04:43:45.063928 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874625, tv_nsec=68909000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004959>
04:43:45.069058 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000143>
04:43:45.069283 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874625, tv_nsec=74047000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004836>
04:43:45.074222 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000142>
04:43:45.074453 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874625, tv_nsec=79210000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004775>
04:43:45.079347 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000104>
04:43:45.079534 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874625, tv_nsec=84336000}, 0xffffffff) = 0 <0.004348>
04:43:45.084035 futex(0x7f70d913f440, FUTEX_WAIT_PRIVATE, 2, NULL) = 0 <0.000106>
04:43:45.084250 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000093>
04:43:45.086628 clone(child_stack=0x7f7076ffcfb0, flags=CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD|CLONE_SYSVSEM|CLONE_SETTLS|CLONE_PARENT_SETTID|CLONE_CHILD_CLEARTID, parent_tidptr=0x7f7076ffd9d0, tls=0x7f7076ffd700, child_tidptr=0x7f7076ffd9d0) = 7912 <0.000168>
04:43:45.086972 futex(0x7f70d913f4ac, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000098>
04:43:45.087194 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000092>
04:43:45.087408 futex(0x55f30007ac90, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, NULL, 0xffffffff) = 0 <0.005381>
04:43:45.092956 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874625, tv_nsec=97941000}, 0xffffffff) = 0 <0.004956>
04:43:45.098205 futex(0x7f70d913f440, FUTEX_WAIT_PRIVATE, 2, NULL) = 0 <0.000178>
04:43:45.098624 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000146>
04:43:45.099340 clone(child_stack=0x7f70ad7f9fb0, flags=CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD|CLONE_SYSVSEM|CLONE_SETTLS|CLONE_PARENT_SETTID|CLONE_CHILD_CLEARTID, parent_tidptr=0x7f70ad7fa9d0, tls=0x7f70ad7fa700, child_tidptr=0x7f70ad7fa9d0) = 7913 <0.000374>
04:43:45.099904 futex(0x7f70d913f4ac, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000088>
04:43:45.100457 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000098>
04:43:45.104266 futex(0x55f30015dca0, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, NULL, 0xffffffff) = 0 <0.087568>
04:43:45.192187 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874625, tv_nsec=197166000}, 0xffffffff) = 0 <0.004468>
04:43:45.196991 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874625, tv_nsec=197166000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.000183>
04:43:45.197357 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000085>
04:43:45.197648 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874625, tv_nsec=202343000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.010409>
04:43:45.208377 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000088>
04:43:45.208658 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874625, tv_nsec=213361000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004726>
04:43:45.213607 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000103>
04:43:45.213855 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874625, tv_nsec=218592000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004794>
04:43:45.218845 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000100>
04:43:45.219089 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874625, tv_nsec=223827000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.008977>
04:43:45.228255 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000068>
04:43:45.228506 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874625, tv_nsec=233195000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004822>
04:43:45.233450 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000033>
04:43:45.233626 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874625, tv_nsec=238428000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004931>
04:43:45.238681 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000130>
04:43:45.238900 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874625, tv_nsec=243659000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004879>
04:43:45.244002 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000059>
04:43:45.244148 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874625, tv_nsec=248972000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004896>
04:43:45.249153 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000043>
04:43:45.249267 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874625, tv_nsec=254132000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004960>
04:43:45.254335 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000034>
04:43:45.254464 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874625, tv_nsec=259313000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004981>
04:43:45.259590 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000044>
04:43:45.259709 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874625, tv_nsec=264537000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.005241>
04:43:45.265046 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000037>
04:43:45.265148 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874625, tv_nsec=270024000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.005015>
04:43:45.270250 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000029>
04:43:45.270343 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874625, tv_nsec=275229000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.009347>
04:43:45.279843 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000028>
04:43:45.280040 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874625, tv_nsec=284815000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.005224>
04:43:45.285430 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000067>
04:43:45.286278 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874625, tv_nsec=290409000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004199>
04:43:45.290593 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000037>
04:43:45.290693 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874625, tv_nsec=295574000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.005288>
04:43:45.296071 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000028>
04:43:45.296179 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874625, tv_nsec=301051000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004924>
04:43:45.301225 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000036>
04:43:45.301325 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874625, tv_nsec=306207000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.005050>
04:43:45.306628 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000099>
04:43:45.306911 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874625, tv_nsec=311607000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004978>
04:43:45.312123 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000180>
04:43:45.312531 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874625, tv_nsec=317107000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.007675>
04:43:45.320417 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000118>
04:43:45.320770 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874625, tv_nsec=325401000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.005511>
04:43:45.326609 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000118>
04:43:45.326880 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874625, tv_nsec=331591000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004761>
04:43:45.331836 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000109>
04:43:45.332141 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874625, tv_nsec=336808000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004717>
04:43:45.337048 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000105>
04:43:45.337299 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874625, tv_nsec=342022000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.006915>
04:43:45.344405 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000107>
04:43:45.345320 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874625, tv_nsec=349390000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004111>
04:43:45.349675 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000104>
04:43:45.349925 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874625, tv_nsec=354659000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004751>
04:43:45.354870 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000149>
04:43:45.355202 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874625, tv_nsec=359844000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004697>
04:43:45.360092 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000129>
04:43:45.360372 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874625, tv_nsec=365062000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004886>
04:43:45.365450 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000439>
04:43:45.366045 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874625, tv_nsec=370433000}, 0xffffffff) = 0 <0.004355>
04:43:45.370595 futex(0x7f70d913f440, FUTEX_WAIT_PRIVATE, 2, NULL) = 0 <0.000132>
04:43:45.370892 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000103>
04:43:45.371294 clone(child_stack=0x7f70777fdfb0, flags=CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD|CLONE_SYSVSEM|CLONE_SETTLS|CLONE_PARENT_SETTID|CLONE_CHILD_CLEARTID, parent_tidptr=0x7f70777fe9d0, tls=0x7f70777fe700, child_tidptr=0x7f70777fe9d0) = 7914 <0.000231>
04:43:45.371731 futex(0x7f70d913f4ac, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000113>
04:43:45.371999 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000102>
04:43:45.375480 futex(0x55f2ffe39da0, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, NULL, 0xffffffff) = 0 <0.012977>
04:43:45.388686 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874625, tv_nsec=393655000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.005022>
04:43:45.393922 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.002441>
04:43:45.396707 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874625, tv_nsec=398888000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.002218>
04:43:45.399175 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000166>
04:43:45.399526 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874625, tv_nsec=404153000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004656>
04:43:45.404372 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000107>
04:43:45.407014 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874625, tv_nsec=409356000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.002397>
04:43:45.409624 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000101>
04:43:45.409887 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874625, tv_nsec=414595000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004788>
04:43:45.414950 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000140>
04:43:45.415315 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874625, tv_nsec=419930000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004669>
04:43:45.420238 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.003975>
04:43:45.424441 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874625, tv_nsec=425191000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.002403>
04:43:45.427054 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000103>
04:43:45.427342 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874625, tv_nsec=432029000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004769>
04:43:45.432417 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000143>
04:43:45.432828 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874625, tv_nsec=437385000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004648>
04:43:45.437749 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000179>
04:43:45.438113 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874625, tv_nsec=442727000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004709>
04:43:45.443075 futex(0x7f70d913f4a8, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000102>
04:43:45.443357 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000095>
04:43:45.443632 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874625, tv_nsec=448341000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004756>
04:43:45.448790 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000293>
04:43:45.449427 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874625, tv_nsec=453760000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004389>
04:43:45.454120 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.002144>
04:43:45.456478 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874625, tv_nsec=459078000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.002624>
04:43:45.459341 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000106>
04:43:45.459597 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874625, tv_nsec=464311000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004770>
04:43:45.464477 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.001942>
04:43:45.467778 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874625, tv_nsec=469458000}, 0xffffffff) = -1 EAGAIN (Resource temporarily unavailable) <0.000048>
04:43:45.468023 futex(0x7f70d913f428, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000056>
04:43:45.468199 futex(0x7f70d913f3c0, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000066>
04:43:45.468394 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000153>
04:43:45.469154 futex(0x7f70d913f4a8, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000090>
04:43:45.469443 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 1 <0.000115>
04:43:45.472897 futex(0x7f709c000b20, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, NULL, 0xffffffff) = 0 <0.542302>
04:43:46.016294 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874626, tv_nsec=20363000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004023>
04:43:46.020639 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000107>
04:43:46.020910 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874626, tv_nsec=25620000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.005223>
04:43:46.026315 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000114>
04:43:46.026639 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874626, tv_nsec=31297000}, 0xffffffff) = -1 ETIMEDOUT (Connection timed out) <0.004718>
04:43:46.031562 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000150>
04:43:46.032503 futex(0x7f70d913f4ac, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874626, tv_nsec=36530000}, 0xffffffff) = 0 <0.000423>
04:43:46.033093 futex(0x7f70d913f440, FUTEX_WAIT_PRIVATE, 2, NULL) = 0 <0.000109>
04:43:46.033350 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000123>
04:43:46.033672 futex(0x7f70b0001240, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, NULL, 0xffffffff) = 0 <0.649109>
04:43:46.683233 futex(0x7f70d913f4a8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1648874626, tv_nsec=688206000}, 0xffffffff) = 0 <0.000173>
04:43:46.683737 futex(0x7f70d913f440, FUTEX_WAIT_PRIVATE, 2, NULL) = 0 <0.000147>
04:43:46.684091 futex(0x7f70d913f440, FUTEX_WAKE_PRIVATE, 1) = 0 <0.000189>
04:43:46.695249 writev(6, [{iov_base="HTTP/1.1 200 OK\r\nAccept: applica"..., iov_len=97}, {iov_base="{\"data\": [\"\320\235\320\270\321\207\320\265\320\263\320\276 \320\275\320\265 \320\275\320"..., iov_len=49}], 2) = 146 <0.000287>
04:43:46.695954 close(6)                = 0 <0.000234>
04:43:46.696454 writev(2, [{iov_base="[pid: 7851|app: 0|req: 20/20] 17"..., iov_len=233}], 1) = 233 <0.001406>
04:43:46.698060 epoll_wait(4, [{EPOLLIN, {u32=3, u64=3}}], 1, -1) = 1 <1.313900>
04:43:48.012358 accept4(3, {sa_family=AF_UNIX}, [110->2], SOCK_NONBLOCK) = 6 <0.000323>

I hope my addition helps.
Good luck!

@misli
Copy link

misli commented Sep 27, 2022

I started facing this problem when I introduced Sentry SDK to my Django project. Fortunately the SDK itself suggested to enable-threads in the logs. Hope this helps.

@andronick83
Copy link

andronick83 commented Apr 26, 2023

I played with nginx+uwsgi+flask configuration for a long time. Then I find a problem in a python script with concurrent.futures.ProcessPoolExecutor which ran in ~100ms but sometimes stuck with ~30 concurrent requests.

@shahram4m
Copy link

did you using schedule tools in your project ?

@andronick83
Copy link

andronick83 commented Apr 30, 2023

No. The script in multiprocessor mode reads text files line by line and calculates the Levenshtein distance with the given string. From the CLI, the script works flawlessly. But uwsgi, with dozens of simultaneous requests, sometimes did not return the result.
Removed multiprocessing and everything works fine.

@LAzz1
Copy link

LAzz1 commented Jun 25, 2023

Hey guys, I discovered the source of this problem in MY CASE. For some reason saving info in session:
django.session['value1'] = 'value2'
This's causing the error, I removed the django.session to test and everything has works great. I dont discover the solution yet, but as soon as I solve this problem I'll update in here.

@shahram4m
Copy link

According to my experience, APScheduler package (v3+) also causes this error

@killershotpy
Copy link

Judging by the fact that the problem has been pending since 2017, the developers are not even bothered to fix it.
In my case, over the last 2 years of working with uwsgi, this error has been bleeding a lot of blood!

@LAzz1
Copy link

LAzz1 commented Jun 26, 2023

updating: In my case the sessionid was not being setting because the Postgress was working in localhost but wasnt in AWS. So i just recreate the database and kow everything is working great

@Vidiskiu
Copy link

Vidiskiu commented Sep 8, 2023

My setup is

  • AWS
  • Nginx
  • uWSGI
  • Flask

In my case, I finally figured out that opening a port from UWSGI directly and exposing it in AWS security group allows request that unfortunately requires more than 60 seconds. I don't think this should be a solution, just a work around.\

Edit: Based on this observation, something between uWSGI and NGINX must be the problem (?)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests