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

Curious Trino retry behaviour #22989

Open
dwolfeu opened this issue Aug 9, 2024 · 7 comments
Open

Curious Trino retry behaviour #22989

dwolfeu opened this issue Aug 9, 2024 · 7 comments

Comments

@dwolfeu
Copy link
Member

dwolfeu commented Aug 9, 2024

(This is a repost of a question on SO.)

Short version

After retrying, queries hang on status FINISHING for five minutes.

Long version

The following is an extract from the values.yaml that we are using for version 0.17.0 of the Trino chart (see fault-tolerant execution):

image:
  tag: 423
additionalConfigProperties:
  - retry-policy=QUERY
  - query.remote-task.max-error-duration=1s

As the value of tag indicates, we are using release 423 of Trino.

I start some queries and then manually delete some pods. After the amount of time set by query.remote-task.max-error-duration (in this case one second, but I have tried different values), the statuses of queries change to BLOCKED, a few seconds pass, the queries resume (status is RUNNING), some more time passes and then the statuses reach FINISHING. So far so good. But this is where it gets a little strange: The statuses stay on FINISHING until five minutes (300 seconds) after the statuses changed to BLOCKED. I've tried it several times with lots of different queries and it consistently follows this behaviour, so it must be a config setting, but I don't know which one. I have tried changing the value of query.client.timeout (see docs), since this is the only one I could find with a default value of 5 minutes, but it made no difference.

The time spent on status FINISHING just seems like wasted time to me and so I would like to get to the bottom of this issue.

@dwolfeu
Copy link
Member Author

dwolfeu commented Nov 21, 2024

Is this related? #16397

@hashhar
Copy link
Member

hashhar commented Nov 21, 2024

How large is the result set your query is pulling? FINISHING suggests that query is waiting for data transfer to client to complete.

Also what client are you using?

@dwolfeu
Copy link
Member Author

dwolfeu commented Nov 21, 2024

Thanks for your reply!

> How large is the result set your query is pulling?
Small: A lot of the result sets are in fact empty ("outputDataSize" : "0B"). The biggest are just a few MB. But regardless of output size, the status hangs on FINISHING for five minutes. I changed the value of query.client.timeout but it didn't make any difference.

> Also what client are you using?
SQLAlchemy, specifically ORM. Possibly relevant: The queries queries are of the form EXECUTE IMMEDIATE '...' USING ....

@hashhar
Copy link
Member

hashhar commented Nov 21, 2024

There used to be a bug in the python client in the past regarding this. See trinodb/trino-python-client#220. If you are using a version with that fix this behaviour is unexpected indeed.

Also if you can reliably reproduce this it'll be useful to collect some HTTP request logging from the Python client. We have trinodb/trino-python-client#463 which we've been unable to reproduce and track down.

You can do that by adding the below before importing the python client:

import requests
import logging
import http.client

http.client.HTTPConnection.debuglevel = 1

logging.basicConfig()
logging.getLogger().setLevel(logging.DEBUG)
requests_log = logging.getLogger("urllib3")
requests_log.setLevel(logging.DEBUG)

And AFTER importing python client add

logging.getLogger('trino').setLevel(logging.DEBUG)

@dwolfeu
Copy link
Member Author

dwolfeu commented Nov 22, 2024

Here's an example. First the times (I recorded them by hand, so there's +/- one or two seconds of error):

09:49:31 Query appears. Status PLANNING
09:49:32 Status changes to RUNNING
09:49:45 I terminated some of the Trino worker pods
09:49:50 Status changes to BLOCKED
09:49:57 Status changes to RUNNING
09:50:12 Status changes to BLOCKED again*
09:50:28 Status changes to RUNNING
09:50:45 Status changes to FINISHING
09:55:03 Status changes to FINISHED

*Changing to BLOCKED a second time doesn't usually happen.

Here are the logs. Two things I notice:

(1) The frequency of the entries increases at 09:50:37.
(2) The number at the end of the entry drops from 844 to 780 in the penultimate entry. (With some queries this is None in the antepenultimate entry.)

2024-11-22 09:49:31,242 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/queued/20241122_084931_01494_si7eg/yec920b3597b3f8ec7349e6baba4017aefb0b460e/1 HTTP/1.1" 200 320
2024-11-22 09:49:31,537 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/queued/20241122_084931_01494_si7eg/y022947d29d689b431f02dd14cba4c12cb74067c5/2 HTTP/1.1" 200 328
2024-11-22 09:49:32,579 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y7a025b3051ba3dda2005c75027c2437311db5400/0 HTTP/1.1" 200 329
2024-11-22 09:49:33,617 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y4a76f988621b88137d8616e37ad58d8555f66423/1 HTTP/1.1" 200 331
2024-11-22 09:49:34,655 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y8a56987ad6a1a0fa637baadc138e4856ba522049/2 HTTP/1.1" 200 331
2024-11-22 09:49:35,695 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y8b949d35b9310a7fa0c79a05f12992688602c88c/3 HTTP/1.1" 200 329
2024-11-22 09:49:36,733 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yd27cf73ad771973126da4e8569a756516a8c8750/4 HTTP/1.1" 200 328
2024-11-22 09:49:37,769 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/ycc1a744976ae50e328c2faac8947bb744bcb1ba2/5 HTTP/1.1" 200 328
2024-11-22 09:49:38,802 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yedf0041ed29733416149ef72fb703575c1e21619/6 HTTP/1.1" 200 328
2024-11-22 09:49:39,855 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y2e446dd49e8a3d2aa683a33eee409fe362c3aef2/7 HTTP/1.1" 200 330
2024-11-22 09:49:40,893 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y06ea1210bb8f58dfe0d0f162c36f8ece8bad2076/8 HTTP/1.1" 200 443
2024-11-22 09:49:41,142 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y4db39681195267b55201586444e40fe7aec55a91/9 HTTP/1.1" 200 650
2024-11-22 09:49:42,182 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y899ae2803a406f7da523f5465a781f71e2a652fb/10 HTTP/1.1" 200 824
2024-11-22 09:49:43,221 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y7217795684e4cbc6981218e77de9e75342daef55/11 HTTP/1.1" 200 826
2024-11-22 09:49:44,257 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yb7f886a6b7ddbb69d0dc78f63606afc54ed3d68c/12 HTTP/1.1" 200 827
2024-11-22 09:49:45,298 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yeba46fef58cb56613b4603ac358346ad8711de95/13 HTTP/1.1" 200 825
2024-11-22 09:49:46,343 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/ydddbfa43308efae1ce5f089eaa2880882e427392/14 HTTP/1.1" 200 833
2024-11-22 09:49:47,380 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yafc6e373e3e4cabe9c198580dd375a31f9d691b7/15 HTTP/1.1" 200 833
2024-11-22 09:49:48,419 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y6cb8f2e87a108f6a1cf3d9680e7ab3cce7506f80/16 HTTP/1.1" 200 833
2024-11-22 09:49:49,467 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y6b66dc6a31aa9b384efa43468a987c64fa9b144a/17 HTTP/1.1" 200 833
2024-11-22 09:49:50,505 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yb2a413ef0806d3a5d98a1c2d1daf8ae38bbe5cb9/18 HTTP/1.1" 200 832
2024-11-22 09:49:51,546 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y35a1893b45a080e716c717cde79fe0565158b542/19 HTTP/1.1" 200 834
2024-11-22 09:49:52,590 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yf5879c19c1c7744408672c8fe0cc57ceb43644f9/20 HTTP/1.1" 200 833
2024-11-22 09:49:53,628 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y999e7247b871931b345b0f2372221cf8b34d783c/21 HTTP/1.1" 200 835
2024-11-22 09:49:54,669 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y0f36af204cfbc0b098b67a4cb4d1aa8edf0ad4b3/22 HTTP/1.1" 200 833
2024-11-22 09:49:55,715 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y353b6b72de3e36525dac527bc1148d26288a8c26/23 HTTP/1.1" 200 835
2024-11-22 09:49:56,758 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/ye2963faf25744864a2bbd853aba19ab89fb7e8e6/24 HTTP/1.1" 200 839
2024-11-22 09:49:57,797 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/ycf3413c349a43aac876eb9d73bc3f6616bb29777/25 HTTP/1.1" 200 838
2024-11-22 09:49:58,833 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yef8004c36c6b3267c7b96a2d8c1f069c89681683/26 HTTP/1.1" 200 840
2024-11-22 09:49:59,881 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y5a8d57423197b38eb8c8e38db3497a9d487fef39/27 HTTP/1.1" 200 837
2024-11-22 09:50:00,926 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yf0a74a573cb25d233d209e635ba623ee903cf8bd/28 HTTP/1.1" 200 837
2024-11-22 09:50:01,970 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y3446e1e4596b7cc0cb957b1a70c3d39fa3b2c0c7/29 HTTP/1.1" 200 833
2024-11-22 09:50:03,023 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y9aa71e64b388173b325b517b90113f7662cf7d38/30 HTTP/1.1" 200 837
2024-11-22 09:50:04,118 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y4f5a06f4849eb51c0a2ab31d8d10d171dcb030e8/31 HTTP/1.1" 200 842
2024-11-22 09:50:05,170 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yf30786fb6258ca08b0efe4e35f289104f3e13770/32 HTTP/1.1" 200 846
2024-11-22 09:50:06,207 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y8ab53031baff6d257602de547f986be253c071f1/33 HTTP/1.1" 200 861
2024-11-22 09:50:07,253 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y3fab4c4bffc30deb64ee845b24509c9634142b46/34 HTTP/1.1" 200 860
2024-11-22 09:50:08,292 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y4787e5f0d416ed6802f789e2753a9aff6c87941e/35 HTTP/1.1" 200 859
2024-11-22 09:50:09,336 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y341ac28d88bae61f9afaa18d19c5d52d350ad965/36 HTTP/1.1" 200 860
2024-11-22 09:50:10,380 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yd756333938fa74882badfdb2d27e539a7c64d41e/37 HTTP/1.1" 200 860
2024-11-22 09:50:11,430 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y0a50a3815f79e80bdd35d582b6089e61197ab280/38 HTTP/1.1" 200 861
2024-11-22 09:50:12,470 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y87b43255222f8e7091162b592794021be808ba3d/39 HTTP/1.1" 200 860
2024-11-22 09:50:13,514 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/ya4a7a7bbcab2050a67c8a9ba9dd9ab26bc3b6a1d/40 HTTP/1.1" 200 858
2024-11-22 09:50:14,557 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y4793f4e67e8766f90844233da8014c774bdfe520/41 HTTP/1.1" 200 860
2024-11-22 09:50:15,595 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y5f273b8cea75706894d366ac6d36e0af8cbdc95c/42 HTTP/1.1" 200 860
2024-11-22 09:50:16,633 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y3513cbf5f935ba70321b3d8b328793594325a9f5/43 HTTP/1.1" 200 861
2024-11-22 09:50:17,678 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yf27f2080017b0cf47cefea9b9a21b82c59b53cbb/44 HTTP/1.1" 200 860
2024-11-22 09:50:18,721 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yae0cc1e1dc333062ead91b66b36a234e27569fe0/45 HTTP/1.1" 200 858
2024-11-22 09:50:19,765 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y0e8affdc6e4da5eca3d40025a290685622b29f73/46 HTTP/1.1" 200 862
2024-11-22 09:50:20,806 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yf792f9fc79ea51512c7528134c8272809ba85e18/47 HTTP/1.1" 200 859
2024-11-22 09:50:21,850 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y39e4b4cf7e4ec84e0ceabb07faf90908e5b780e7/48 HTTP/1.1" 200 861
2024-11-22 09:50:22,894 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y910cf1afe4e2f110765d841d97bed2e45b64f844/49 HTTP/1.1" 200 859
2024-11-22 09:50:23,935 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/ya083de1a06eccad76eef39a83b5d0f772a8a61ea/50 HTTP/1.1" 200 860
2024-11-22 09:50:24,981 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yf3d37cf8c80d0971e7effa872a35f33f3a8f8fd0/51 HTTP/1.1" 200 860
2024-11-22 09:50:26,024 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y96b1413d97026fc16482b3627eb32d4256814563/52 HTTP/1.1" 200 861
2024-11-22 09:50:27,071 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yc7eaebe06ae9c9306c0f2ef749d997c3a17b39e1/53 HTTP/1.1" 200 855
2024-11-22 09:50:28,118 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/ydc0afa4303e7cf0a272a3024b02db479ca2694cb/54 HTTP/1.1" 200 858
2024-11-22 09:50:29,161 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/ya4d06040395b337e6cf17815e1f6b404c83521be/55 HTTP/1.1" 200 858
2024-11-22 09:50:30,211 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y1535b4b78f434501df08af1cf3b6c6c578f3198d/56 HTTP/1.1" 200 860
2024-11-22 09:50:31,255 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y602a17408ae94eeffeae33a65070e37eb305fbc0/57 HTTP/1.1" 200 856
2024-11-22 09:50:32,298 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y1dc926d7d04fca52aa55f6bdfdae745974b78be8/58 HTTP/1.1" 200 860
2024-11-22 09:50:33,343 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y42f1539a1228479bba2dc5464c0acbba72a015f1/59 HTTP/1.1" 200 851
2024-11-22 09:50:34,391 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y74e7de6c76cd58e155dca11898bcdedc98a32b2a/60 HTTP/1.1" 200 854
2024-11-22 09:50:35,432 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y3fc12d2dce5824b22ee0c42f471dec2a4b61d864/61 HTTP/1.1" 200 859
2024-11-22 09:50:36,477 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y8ae3137435f29b6458c9fd4a5fb5956fa9215686/62 HTTP/1.1" 200 864
2024-11-22 09:50:37,529 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y24af747099e751c8917d95c64d0faaba789d030e/63 HTTP/1.1" 200 865
2024-11-22 09:50:37,842 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y499e39acc9f26b20325834f4dfe9ee5860a36a39/64 HTTP/1.1" 200 843
2024-11-22 09:50:37,883 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y3590ed6c6dd1c9dca5d2c012974e03210d41a31d/65 HTTP/1.1" 200 841
2024-11-22 09:50:37,921 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y363d757fa2c3d7a1735db65a2152f8a6eaae72f3/66 HTTP/1.1" 200 844
2024-11-22 09:50:37,963 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y947197db0fe04440e3de00ec2e8b563dd462fdf5/67 HTTP/1.1" 200 842
2024-11-22 09:50:38,007 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y5e2510370939bc8b1737077d6bdd746dc12c457f/68 HTTP/1.1" 200 843
2024-11-22 09:50:38,062 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yc5bde189732b3bae8e5cfbcd2c488bf03f441352/69 HTTP/1.1" 200 841
2024-11-22 09:50:38,101 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yc6172aa9a70562328128a19b263ea45afd86c45b/70 HTTP/1.1" 200 842
2024-11-22 09:50:38,139 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y861bf7055176a3c8a404b6f23bee9918db82b6a1/71 HTTP/1.1" 200 842
2024-11-22 09:50:38,172 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y8729f2f7f4504e99cb8136e40486f9596d667e7d/72 HTTP/1.1" 200 840
2024-11-22 09:50:38,209 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y2ec054b33fa7295892374d16f4abaff829a58309/73 HTTP/1.1" 200 841
2024-11-22 09:50:38,244 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y45cfcf329b0b48a9ad69c4faef6267f2e5f6c047/74 HTTP/1.1" 200 840
2024-11-22 09:50:38,278 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y82b770be184deed5096bc2cb755f8f66a626d552/75 HTTP/1.1" 200 839
2024-11-22 09:50:38,313 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yf0b9981a635038323995433c3e588d52cde647b2/76 HTTP/1.1" 200 841
2024-11-22 09:50:38,354 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y519b51442ce568fd9580f48276e0f19a32741ac2/77 HTTP/1.1" 200 839
2024-11-22 09:50:38,392 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y29ef2bda237dfe14a4491fe15839e896b7daa1fc/78 HTTP/1.1" 200 841
2024-11-22 09:50:38,456 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y400ca3575ad64c5a780140c090958fb8e0efd917/79 HTTP/1.1" 200 841
2024-11-22 09:50:38,492 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y72ec3f793f02f082436fa7b4a356a8abc6ee0d5c/80 HTTP/1.1" 200 844
2024-11-22 09:50:38,527 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yba79330f9a483a64de2baee05792cb3bd110f5c4/81 HTTP/1.1" 200 841
2024-11-22 09:50:38,561 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y2560c597ccbfadb76b1511c7261b9ef9945a62b7/82 HTTP/1.1" 200 841
2024-11-22 09:50:38,596 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y9d72c7e3d3402b340842966156385a051caf9766/83 HTTP/1.1" 200 840
2024-11-22 09:50:38,630 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y8af1a071953e3a04809ec86958b24599c9fa1141/84 HTTP/1.1" 200 840
2024-11-22 09:50:38,667 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yd0994d848179022093a09e28730c8237d11e234e/85 HTTP/1.1" 200 841
2024-11-22 09:50:38,703 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yab5730830a866405e7b6b254137d01e1fa6e03c2/86 HTTP/1.1" 200 840
2024-11-22 09:50:38,737 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y40e509221e9545ab3368a6de3f0829c6843ce522/87 HTTP/1.1" 200 845
2024-11-22 09:50:38,771 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y005654c450751c2f62dfb6cb82882433044cdc2f/88 HTTP/1.1" 200 842
2024-11-22 09:50:38,809 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y3d62d0bafcf6df1e8ef6ba1af1f0b12d0b37976b/89 HTTP/1.1" 200 841
2024-11-22 09:50:38,851 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y4be09a32e0139cf0edfa4f076620f99a5b33fa62/90 HTTP/1.1" 200 843
2024-11-22 09:50:38,888 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yfb20c472ac6ff7b8df765af6c9b1d0acb6387f8c/91 HTTP/1.1" 200 844
2024-11-22 09:50:38,926 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yde5c45a1dc7eb526a5bd28bf6de7ce0465654079/92 HTTP/1.1" 200 844
2024-11-22 09:50:38,965 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/ybb93721396dfd4397c33078942aebceeff71b71d/93 HTTP/1.1" 200 841
2024-11-22 09:50:39,011 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/ya24cf6bba931461778d7fa507f7a5005719fbe6e/94 HTTP/1.1" 200 842
2024-11-22 09:50:39,067 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y58ff165be1b0528b329d17e6774da14c49acae1d/95 HTTP/1.1" 200 840
2024-11-22 09:50:39,104 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/ya7575b7695476b60a091c441fd822b07960c426e/96 HTTP/1.1" 200 842
2024-11-22 09:50:39,140 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/ya3dba5bdcd56b03a124b93c7b2d685f6d53c3023/97 HTTP/1.1" 200 842
2024-11-22 09:50:39,174 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y0db9f51588b936a9786d12a2cb125ff3ad83f85a/98 HTTP/1.1" 200 839
2024-11-22 09:50:39,208 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y0c6a70914f40808a198dd2ea96c3314ea96c2d7e/99 HTTP/1.1" 200 843
2024-11-22 09:50:39,240 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y4cd2ab1d6dbda61d9dcac11b17b1043a1e070b73/100 HTTP/1.1" 200 844
2024-11-22 09:50:39,276 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yf39a9af1fd3ccebd19b8f38c7c510d1b1705efce/101 HTTP/1.1" 200 841
2024-11-22 09:50:39,316 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y77749d4836b1acc67bd3ecb9e0849e11cd52a07b/102 HTTP/1.1" 200 839
2024-11-22 09:50:39,361 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y427b165474e0b2b9c2717e177323ee74875464b2/103 HTTP/1.1" 200 841
2024-11-22 09:50:39,399 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/ya922b8499dc09aaa3e784e5becadcf853e58a106/104 HTTP/1.1" 200 842
2024-11-22 09:50:39,431 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y2b2a0d612b1387378ea04a794b18a9833c9b4add/105 HTTP/1.1" 200 845
2024-11-22 09:50:39,464 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y09db45e05e4bbabacab3ff1dcef8c6650afa8dd3/106 HTTP/1.1" 200 843
2024-11-22 09:50:39,501 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y8fe952962af93df801fd12e0a09c2bcb4db8c38a/107 HTTP/1.1" 200 843
2024-11-22 09:50:39,538 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y478f6cf8b24fe5be1e37477b080e25ae152b51c2/108 HTTP/1.1" 200 842
2024-11-22 09:50:39,571 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yb66499ec807b673a04500f0fe6bbec5f3a663113/109 HTTP/1.1" 200 842
2024-11-22 09:50:39,607 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y4ae82d5661981c7045ddb7e589089d9056d185d7/110 HTTP/1.1" 200 842
2024-11-22 09:50:39,647 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/ydf29ca8c9f90c1552fe0a6c34c17281147ac4cf6/111 HTTP/1.1" 200 843
2024-11-22 09:50:39,690 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y1167df8db026f621be8def5a313b51c274057f29/112 HTTP/1.1" 200 843
2024-11-22 09:50:39,729 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yf24be04d2e0ee05fb704f7ecede8f06c7839b312/113 HTTP/1.1" 200 841
2024-11-22 09:50:39,762 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y9f45d27f53a57be9e2a1b42d7c47d0ee65342da2/114 HTTP/1.1" 200 844
2024-11-22 09:50:39,796 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y37698136c89d3cf2beda4fcc1dd15de196b8b7f8/115 HTTP/1.1" 200 844
2024-11-22 09:50:39,834 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y56ec27d724844fb08afc94fcb162134487a48b2c/116 HTTP/1.1" 200 843
2024-11-22 09:50:39,868 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y98ed64954b0cceddb4f2943fbb04946c51f7ec5e/117 HTTP/1.1" 200 844
2024-11-22 09:50:39,907 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y62d0d5aeb9d3bdc3cd6c68fb3dbe44807dc74368/118 HTTP/1.1" 200 841
2024-11-22 09:50:39,942 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/ya1eb42cedec2811cfe1a56aba0477f2e5d06a8dd/119 HTTP/1.1" 200 842
2024-11-22 09:50:39,980 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yeadc0567f970d3ecf0e564e4bb0682c08cb8cd9c/120 HTTP/1.1" 200 843
2024-11-22 09:50:40,017 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y88cd678772eaa4fecc3e6615171e350cec0a98d1/121 HTTP/1.1" 200 842
2024-11-22 09:50:40,061 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/ycb250d37a3b5ded93d3e91e29b84d2cc7cdae420/122 HTTP/1.1" 200 841
2024-11-22 09:50:40,097 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y3dfe3fc22a084d9147ca79a3dc027e80b350bdf6/123 HTTP/1.1" 200 843
2024-11-22 09:50:40,133 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y8cf1631dbaf376d298fb8e1c10dcff1a8c0df5f4/124 HTTP/1.1" 200 843
2024-11-22 09:50:40,168 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y772c73cd4b4d8af872b78ee58d3d7305ba52e3d3/125 HTTP/1.1" 200 842
2024-11-22 09:50:40,203 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y72d35d40e149adda94c8cdf91fb88ab0e53e46d2/126 HTTP/1.1" 200 841
2024-11-22 09:50:40,239 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y27df2e35b7ed2d02c245b0a57c67981d28e5d93c/127 HTTP/1.1" 200 842
2024-11-22 09:50:40,276 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/ya1216aef06ca40155dee25d59a3df17e3757f4f7/128 HTTP/1.1" 200 845
2024-11-22 09:50:40,312 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yd14a7b1401048af486978be782ecdd9eb6cbb468/129 HTTP/1.1" 200 841
2024-11-22 09:50:40,347 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yd3db252b424682fa53c3491f8e01023cb15b944c/130 HTTP/1.1" 200 842
2024-11-22 09:50:40,389 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y98775c38573999c944986d69b39c8a8940f56f63/131 HTTP/1.1" 200 843
2024-11-22 09:50:40,423 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y619f92875fa042c3292d6d9f344800f03917836c/132 HTTP/1.1" 200 840
2024-11-22 09:50:40,457 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y1d3086e78685b43c6a89189770f40ca06caecb96/133 HTTP/1.1" 200 844
2024-11-22 09:50:40,492 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y8976558998cbd807bc1880b75b69a21294136f69/134 HTTP/1.1" 200 843
2024-11-22 09:50:40,527 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y3bc197c36ec51e81c28f652ab4b8e04132221dc0/135 HTTP/1.1" 200 844
2024-11-22 09:50:40,561 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yabd7033e8d12954750e4482e760a9f3e46e45697/136 HTTP/1.1" 200 842
2024-11-22 09:50:40,593 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y5dd5a2c1c7a18755936d5f89295ec7bdefc19fac/137 HTTP/1.1" 200 841
2024-11-22 09:50:40,628 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yc432bf973128d74f96145fd02fbfd0f3c82d95e2/138 HTTP/1.1" 200 841
2024-11-22 09:50:40,664 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y58ff711d3034ee3999dff74679c64cef22e811c2/139 HTTP/1.1" 200 841
2024-11-22 09:50:40,699 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yf74020c175b0ac51fbddeebaff2d87762e89da2c/140 HTTP/1.1" 200 843
2024-11-22 09:50:40,738 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/ye6e1a0a5adcb6e57892434c5a3bf4a158dbad70e/141 HTTP/1.1" 200 843
2024-11-22 09:50:40,770 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y1ad023396d87757403fda01b9aeb9bfca1519b46/142 HTTP/1.1" 200 843
2024-11-22 09:50:40,803 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y4fedb1051418968dc2c9d8a93987a014b5c9064d/143 HTTP/1.1" 200 841
2024-11-22 09:50:40,839 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y754ae9c70f36807bcfc2158cfd43a4947a922370/144 HTTP/1.1" 200 842
2024-11-22 09:50:40,875 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yc6e75eb7037451d133a5620059714844c0fe8eea/145 HTTP/1.1" 200 845
2024-11-22 09:50:40,911 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yeb67d5ca603578beb15aff17cd30b085395eed26/146 HTTP/1.1" 200 843
2024-11-22 09:50:40,948 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/ydf4b4989059f74857c4cb4cf7f8267db97aca30a/147 HTTP/1.1" 200 842
2024-11-22 09:50:40,985 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yb06d3568c69754fdce9aa12e99298bda102663e3/148 HTTP/1.1" 200 842
2024-11-22 09:50:41,022 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yf44f5b0626343961120a8f38b15846dc8a7fd7af/149 HTTP/1.1" 200 842
2024-11-22 09:50:41,062 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yabaee58ec6af1674b8aa54f8866a49f059008f6a/150 HTTP/1.1" 200 842
2024-11-22 09:50:41,097 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y7fbe5bf83f6673823eb0535077d4db0325f46445/151 HTTP/1.1" 200 844
2024-11-22 09:50:41,132 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y05d37ac181bcfdbe2b31cecd540cd3470f841805/152 HTTP/1.1" 200 843
2024-11-22 09:50:41,169 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y1a287dcbfd0f72235c24b6fab03762e588b8b96d/153 HTTP/1.1" 200 842
2024-11-22 09:50:41,205 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y85c5506d9fa159336d75f4a73a19225699d30bb9/154 HTTP/1.1" 200 841
2024-11-22 09:50:41,242 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y1a0aacda7a7dc249338b1826512eee55c30de829/155 HTTP/1.1" 200 843
2024-11-22 09:50:41,279 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y1867bca4023112dba61ac2dcf6f19c8b86dfe98a/156 HTTP/1.1" 200 845
2024-11-22 09:50:41,329 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y3b354ff0bf2a7a81c75f96742a5cc4e919a05e79/157 HTTP/1.1" 200 841
2024-11-22 09:50:41,361 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yea1313439bfe48cb68cfc1403fd3ca9203908a8d/158 HTTP/1.1" 200 842
2024-11-22 09:50:41,400 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y591fefae30026279676cf5157f36632cfac8acf1/159 HTTP/1.1" 200 844
2024-11-22 09:50:41,436 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/ye06f753a3dde7a8b8c61108d68a57fd1f348cc95/160 HTTP/1.1" 200 845
2024-11-22 09:50:41,471 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y8602abeae5d80a3f0ea207f413420dd61f26c6ca/161 HTTP/1.1" 200 844
2024-11-22 09:50:41,511 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yb97cc8bd4bc19193017b9fead5d0fa0477eed1e3/162 HTTP/1.1" 200 840
2024-11-22 09:50:41,544 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y138b2912ac304aee6f1e43998de436254c750b79/163 HTTP/1.1" 200 842
2024-11-22 09:50:41,583 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y4027aed8bf912117d3d06d70815e2475c07c4235/164 HTTP/1.1" 200 839
2024-11-22 09:50:41,617 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/ya3f8589613566355f79e0c45ebfdd5e2da3f607f/165 HTTP/1.1" 200 843
2024-11-22 09:50:41,652 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y0866568c2f91fa909d9c67fc35de75b55feb444f/166 HTTP/1.1" 200 843
2024-11-22 09:50:41,684 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/ye331c2aff2e948b691370663b6413c037ee464c0/167 HTTP/1.1" 200 843
2024-11-22 09:50:41,724 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y3834ab51764cc8c80260fc92a2628a90971158ca/168 HTTP/1.1" 200 842
2024-11-22 09:50:41,765 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yaae39aefed5901151e8fdd38c211a3a9297ad276/169 HTTP/1.1" 200 845
2024-11-22 09:50:41,802 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yf387f1e0cc45bc61137d40022c029d405daa2d7a/170 HTTP/1.1" 200 841
2024-11-22 09:50:41,835 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y2372e603451ffbdce287b71a15d61aa3ea44ec85/171 HTTP/1.1" 200 840
2024-11-22 09:50:41,870 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y493780da92aa0ca2d229f5d2ad695809659daa07/172 HTTP/1.1" 200 843
2024-11-22 09:50:41,907 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y2c69d7da9b80fab926fead315424f889ef6d3cb6/173 HTTP/1.1" 200 841
2024-11-22 09:50:41,942 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y8a12762d15f0b160ac0f19886a7f8319ccd496e7/174 HTTP/1.1" 200 841
2024-11-22 09:50:41,976 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/ya6fe02bcb8a42c8ff368c8e4df9d4cd760e877c1/175 HTTP/1.1" 200 844
2024-11-22 09:50:42,017 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y4b276a3df5de2d3e049908c7bcbe420401d1fc2f/176 HTTP/1.1" 200 841
2024-11-22 09:50:42,059 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y6630c9053c3be973e2d6b5e1c3b79b824af54bfc/177 HTTP/1.1" 200 842
2024-11-22 09:50:42,097 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y1438cdc57feec52a0ba6ba652a8384bbf03e5a08/178 HTTP/1.1" 200 846
2024-11-22 09:50:42,133 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y9fe92a31d67530b0b60cce66ff59c19c8575cd9d/179 HTTP/1.1" 200 841
2024-11-22 09:50:42,168 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/ya60d4b544a897f9a48f6a3225dff6ac9ee7c9090/180 HTTP/1.1" 200 841
2024-11-22 09:50:42,205 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y7204b5e04a0a74b9e4270634abe8b92841c28a36/181 HTTP/1.1" 200 843
2024-11-22 09:50:42,246 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/ye1de71946bfab842defed7995eaa9fdbc41065cc/182 HTTP/1.1" 200 839
2024-11-22 09:50:42,287 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y3e830dadca2540b9a0155ce0225049c2c57bad0a/183 HTTP/1.1" 200 842
2024-11-22 09:50:42,321 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y531f84b65e66fe1c49f874787d4d054d6169a467/184 HTTP/1.1" 200 845
2024-11-22 09:50:42,356 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yf7e3e6c87ba2ba3110aeb3d80064f67bf9efa511/185 HTTP/1.1" 200 841
2024-11-22 09:50:42,391 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yeea67f1187e3a780a704e37c9aec65e9af47a342/186 HTTP/1.1" 200 841
2024-11-22 09:50:42,443 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y086ddefe51192dc9e244c8e27ad65d9642b4dc16/187 HTTP/1.1" 200 844
2024-11-22 09:50:42,477 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y9432a1847489b3ba5da44c03407dd4ed945656c0/188 HTTP/1.1" 200 842
2024-11-22 09:50:42,511 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yb0876c63b207dd777c88c7a6d14d539f03b6ee91/189 HTTP/1.1" 200 844
2024-11-22 09:50:42,546 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y6bfbc0c00dcb1444ebdbb3501e90dbfedff388f3/190 HTTP/1.1" 200 843
2024-11-22 09:50:42,579 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y789e72d68bad28982e93c7def3ff79bcc7060552/191 HTTP/1.1" 200 841
2024-11-22 09:50:42,613 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y020d9209ced818d9aaf1539ca39585359ba1410e/192 HTTP/1.1" 200 840
2024-11-22 09:50:42,647 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y9d10ead55417e4f18de306558cfd11b134b1aac3/193 HTTP/1.1" 200 841
2024-11-22 09:50:42,689 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y3a744e759d426ead812bb84a2aebdb59747b7eba/194 HTTP/1.1" 200 843
2024-11-22 09:50:42,723 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y10ef107ec3c1cde1b9f611f1b30e42348fbd96ee/195 HTTP/1.1" 200 841
2024-11-22 09:50:42,757 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y3a3ac0cffd94613e425ae7ea99481f58328f7ca3/196 HTTP/1.1" 200 843
2024-11-22 09:50:42,792 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y482485aa9a94869668b122f786cacbefe646c16d/197 HTTP/1.1" 200 844
2024-11-22 09:50:42,825 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y04b5649fd91cf996fdd25d6553b6156c48969b9c/198 HTTP/1.1" 200 844
2024-11-22 09:50:42,861 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y9fb49a780006b5f4fc18ed55c365803edc29677d/199 HTTP/1.1" 200 839
2024-11-22 09:50:42,896 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yd8f888bef18ba62f816062e12a632d29f96148d9/200 HTTP/1.1" 200 842
2024-11-22 09:50:42,930 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y7aea24f0d4b06848a71eb81e47584bca8e5bbd2b/201 HTTP/1.1" 200 844
2024-11-22 09:50:42,963 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y223d92228c73bfd366f41b75fb87b373cf66e66a/202 HTTP/1.1" 200 836
2024-11-22 09:50:42,998 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y43519695158c4753cb525dc80adf7b36476d55c7/203 HTTP/1.1" 200 843
2024-11-22 09:50:43,040 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y1356a793366bdd6b2d62be7a77ad8a55167eac29/204 HTTP/1.1" 200 839
2024-11-22 09:50:43,073 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y2bd7b48882ec91c0c26b55d8338dc9465fa6395b/205 HTTP/1.1" 200 841
2024-11-22 09:50:43,107 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yf484f2cee5eb14ffd36fc4e49ea06c29f6d49007/206 HTTP/1.1" 200 842
2024-11-22 09:50:43,140 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yd74ac092cd7eae8c1f97f3825dee391ec198c58f/207 HTTP/1.1" 200 843
2024-11-22 09:50:43,176 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y1b693c13589b0e2abad7e0391509797cca975810/208 HTTP/1.1" 200 843
2024-11-22 09:50:43,209 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yecb484b49e802dac4dd7e3abc8dd4a899f7cdfa9/209 HTTP/1.1" 200 844
2024-11-22 09:50:43,246 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y9146bb5ef0cc1c9c911e9f40fc146b170594b08d/210 HTTP/1.1" 200 843
2024-11-22 09:50:43,280 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y7bf7447471b0163c0916d6a0d3ed4172d9133bd7/211 HTTP/1.1" 200 846
2024-11-22 09:50:43,315 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yd7d7114219f40f26a8f3c80596c792d53bbf260f/212 HTTP/1.1" 200 842
2024-11-22 09:50:43,347 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y2c0411fd3543a7557dd10b217d7844123c92ca40/213 HTTP/1.1" 200 842
2024-11-22 09:50:43,380 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y723070f1cbee9e61137960840196f76604593370/214 HTTP/1.1" 200 843
2024-11-22 09:50:43,414 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yfd0cec041e2ef718c1aea42e0eb63de42b969441/215 HTTP/1.1" 200 842
2024-11-22 09:50:43,447 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y509c1f311b2f0b362800ac2577f1bdc7308c69e8/216 HTTP/1.1" 200 844
2024-11-22 09:50:43,482 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yeb6a862769d46a296a025701d2f35c61d43bed8b/217 HTTP/1.1" 200 841
2024-11-22 09:50:43,516 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y2995fc0f9f665e315a2c53ad490e30db5f0494f5/218 HTTP/1.1" 200 845
2024-11-22 09:50:43,552 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y1b771bde91ee3885d22d2f88046c6499508505bb/219 HTTP/1.1" 200 842
2024-11-22 09:50:43,592 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y348b501f067a7f437074ba4dfcf030c4437388e5/220 HTTP/1.1" 200 843
2024-11-22 09:50:43,628 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yb08b3cbca905c83eaab9d9bb59d59f28118c5a0c/221 HTTP/1.1" 200 842
2024-11-22 09:50:43,664 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y51e58ccb1dcde1790599eff523c181be515c3401/222 HTTP/1.1" 200 840
2024-11-22 09:50:43,699 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y11a5f74b0267d9da168d19f31ab35f8011f2486f/223 HTTP/1.1" 200 842
2024-11-22 09:50:43,736 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yc7d891543b31b839e9ba06de39aeead51232c4af/224 HTTP/1.1" 200 845
2024-11-22 09:50:43,770 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y2cfcf30b9461526927a49b393e8a1e0d1f478af4/225 HTTP/1.1" 200 843
2024-11-22 09:50:43,805 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/ybf9b4ebcc81a5655367f541e200434db9558a106/226 HTTP/1.1" 200 841
2024-11-22 09:50:43,852 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y873a11a32d66cceb3b443ca94335e20ed4700b32/227 HTTP/1.1" 200 842
2024-11-22 09:50:43,887 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/ybab71f226e05b44a39fe15c4a26984989278f50f/228 HTTP/1.1" 200 842
2024-11-22 09:50:43,924 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/ye54bb77056d9a084544df9c08cbe5ca3ae4b98f1/229 HTTP/1.1" 200 844
2024-11-22 09:50:43,959 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y8fa5764c821cf9f545285f8146d2026a44d40933/230 HTTP/1.1" 200 841
2024-11-22 09:50:43,996 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yeb3efb08a97e466d57a7a8456016f908a6ff38f3/231 HTTP/1.1" 200 843
2024-11-22 09:50:44,035 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y660425b33114cecb02f959ff229af6673dd81bcb/232 HTTP/1.1" 200 841
2024-11-22 09:50:44,073 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/ybaeccdfc4d1ee32d00a74503f8f4ece9e9dfc61a/233 HTTP/1.1" 200 842
2024-11-22 09:50:44,108 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y227eec8420eacc29f6133ba8db636d4a600afb42/234 HTTP/1.1" 200 840
2024-11-22 09:50:44,145 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y22027f437537ee144d80c06c6449f2ccde38b164/235 HTTP/1.1" 200 841
2024-11-22 09:50:44,182 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yd27642de239846d6feace7866573d3d851335849/236 HTTP/1.1" 200 842
2024-11-22 09:50:44,216 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y49e03671857d11f097f6a14b82f33cbeb13e04ed/237 HTTP/1.1" 200 842
2024-11-22 09:50:44,251 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yb6ba02713aa9f43a7b81b115456225e65dfd7437/238 HTTP/1.1" 200 841
2024-11-22 09:50:44,290 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/ya92fedab4d00ca244eba0e914d7981913d9e604f/239 HTTP/1.1" 200 842
2024-11-22 09:50:44,332 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y7ee05da9255ab316de376954a923bea0bec32af7/240 HTTP/1.1" 200 843
2024-11-22 09:50:44,368 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y4535012123a4c1e06c1ce6f26bc6b2384c854956/241 HTTP/1.1" 200 842
2024-11-22 09:50:44,405 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y5905e6678b5277461710a851643081b344470c3c/242 HTTP/1.1" 200 844
2024-11-22 09:50:44,441 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y25659dccbffbe96bc8082d7c7d06f37927b83387/243 HTTP/1.1" 200 842
2024-11-22 09:50:44,480 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yfec8f386bff378f201a8882f58fa5388fd7340d4/244 HTTP/1.1" 200 842
2024-11-22 09:50:44,514 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y17b7227a388ba9eb8e07adb7d456d684171ea1be/245 HTTP/1.1" 200 843
2024-11-22 09:50:44,546 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/ya0ef199e0b2ef685367f42b63bf642439b513072/246 HTTP/1.1" 200 844
2024-11-22 09:50:44,588 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yba105be360dbc48e4ac3ebee394d8d1434cf096c/247 HTTP/1.1" 200 842
2024-11-22 09:50:44,629 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yed425ac6327c927d337c034f2d933d3ce599aa82/248 HTTP/1.1" 200 842
2024-11-22 09:50:44,664 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/ycf5f8589e789c53525677c712ff1caf7f33cdcec/249 HTTP/1.1" 200 842
2024-11-22 09:50:44,706 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/ycbed4de9bec0b780473bd9c9aacb008cbb6b0b4a/250 HTTP/1.1" 200 845
2024-11-22 09:50:44,742 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y02774674c4bc1d4b8592cc44d447f0956153cf58/251 HTTP/1.1" 200 843
2024-11-22 09:50:44,775 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y5c92db072fdddf5b517293314b588bdc4f669859/252 HTTP/1.1" 200 841
2024-11-22 09:50:44,812 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y7989e52a13f044ab2ab79177c8c122a7574dc246/253 HTTP/1.1" 200 839
2024-11-22 09:50:44,851 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y6912bf9e8874404b286f06cc7814e421e6193ea2/254 HTTP/1.1" 200 844
2024-11-22 09:50:44,888 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y1bef81f4b2eb16ca3c66d9e2d63958720134aced/255 HTTP/1.1" 200 843
2024-11-22 09:50:44,929 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y3cc8515af8b6a5c1a9a42a7e2741f626e2780d3f/256 HTTP/1.1" 200 842
2024-11-22 09:50:44,967 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yf369463d2641e88634e675ea52c7cca12d86b641/257 HTTP/1.1" 200 844
2024-11-22 09:50:45,014 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y7afdb5fb3dbb39646ea6413cbd54d16a4e0d6ed6/258 HTTP/1.1" 200 841
2024-11-22 09:50:45,050 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yb3fe55594bd4c0459dd4b80138a136027e26e954/259 HTTP/1.1" 200 842
2024-11-22 09:50:45,091 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y64ab26d707bbda142f3ab61c08c3332903d8fda4/260 HTTP/1.1" 200 842
2024-11-22 09:50:45,130 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yc78f629b91ac230c07711d75036eec79c83bce5c/261 HTTP/1.1" 200 840
2024-11-22 09:50:45,166 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/ye404ce74ea149bc34adf48519c03ee76d79af758/262 HTTP/1.1" 200 841
2024-11-22 09:50:45,201 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y900860fc1541cea2f9fadceaf2786a7cb15446de/263 HTTP/1.1" 200 842
2024-11-22 09:50:45,238 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y87da1a0672836b5e1f20044c7362b2e4461c72d1/264 HTTP/1.1" 200 843
2024-11-22 09:50:45,272 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y6d41249c53aca94f76a35d7e76e885bf22c5728f/265 HTTP/1.1" 200 844
2024-11-22 09:50:45,309 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y54f6f11bbe8e796b1191adfafb93da2d18d62c26/266 HTTP/1.1" 200 843
2024-11-22 09:50:45,347 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/ya3de0c9b7520a1511ea023b67e2fc3035f9776d6/267 HTTP/1.1" 200 842
2024-11-22 09:50:45,384 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yc2c3c371778a0b14c1183574cc74e5ab0b45d486/268 HTTP/1.1" 200 841
2024-11-22 09:50:45,421 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y4e0f8546eca02124224c18f1aadfaf4002a1111b/269 HTTP/1.1" 200 843
2024-11-22 09:50:45,466 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y04f6a8c32e9bb04cbb466b307dd0e535a4f815ed/270 HTTP/1.1" 200 844
2024-11-22 09:50:45,501 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y947b2ecc5e35897693475773cc3b22fab357b7ff/271 HTTP/1.1" 200 843
2024-11-22 09:50:45,535 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y08574298e5a7bcc19a58bc17a3b184d9ab3a5d79/272 HTTP/1.1" 200 842
2024-11-22 09:50:45,571 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y89878525cd8e825d4f8d27d31f1c5387780ea317/273 HTTP/1.1" 200 842
2024-11-22 09:50:45,609 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yb6a46089d59c04d8db13c581043332b22c864937/274 HTTP/1.1" 200 843
2024-11-22 09:50:45,641 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yae38a2412e016461ad92770c6c79df592072ec55/275 HTTP/1.1" 200 843
2024-11-22 09:50:45,674 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y5985615c5f895c560bce18a3bf3cb86aa0f760f7/276 HTTP/1.1" 200 843
2024-11-22 09:50:45,711 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y3b27968c678bf8cef812b77eeeaf7d701b0c61b2/277 HTTP/1.1" 200 843
2024-11-22 09:50:45,745 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y055fae17ee967f3af955f9be3fa85ec25f15d3ef/278 HTTP/1.1" 200 841
2024-11-22 09:50:45,777 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y0a12a79acc89d6e821d45c009af48b51fee02c86/279 HTTP/1.1" 200 843
2024-11-22 09:50:45,811 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y103e6ddeb5672e1392f664b41146b0a84c143bcb/280 HTTP/1.1" 200 843
2024-11-22 09:50:45,847 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y22e8b3a5eabefc9f2bf2f21e5bdd74acaf0d8f7d/281 HTTP/1.1" 200 842
2024-11-22 09:50:45,883 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/ybb00ad45c1da066dd1809bbe45d2716a4696c7cb/282 HTTP/1.1" 200 842
2024-11-22 09:50:45,923 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yd20a34d7bc4ea0929681b8dcc76e749a45f5d793/283 HTTP/1.1" 200 842
2024-11-22 09:50:45,959 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y594bacd2cbd3d31c2a3f9788e5e5a48ffcb25447/284 HTTP/1.1" 200 843
2024-11-22 09:50:45,995 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y2ebdab2c54028487555791171f566b513beb1737/285 HTTP/1.1" 200 842
2024-11-22 09:50:46,032 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y033dc7f0f3d04facfdfc7aaff0356672ea6b900b/286 HTTP/1.1" 200 842
2024-11-22 09:50:46,076 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y7024457ac0be808936d679c26e3b5b846d590b26/287 HTTP/1.1" 200 841
2024-11-22 09:50:46,116 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y6a93c606db6fa7b21a45e0fb8ba7124874c7baf4/288 HTTP/1.1" 200 843
2024-11-22 09:50:46,151 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y4e8dc965a027c080fc2ea0af86b73ad993bbbacc/289 HTTP/1.1" 200 842
2024-11-22 09:50:46,185 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yedcb51a74b1be2de43833e122a32667877a12600/290 HTTP/1.1" 200 843
2024-11-22 09:50:46,220 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y874915b0f4f88a6379a567dcc47dbfdeaebe8344/291 HTTP/1.1" 200 842
2024-11-22 09:50:46,258 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yc7c1c1ada5ca133898a6c8a100d24a42c763ddcc/292 HTTP/1.1" 200 842
2024-11-22 09:50:46,305 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yb3b8ee542c36c187f11325f40e4cc35e2ebc1313/293 HTTP/1.1" 200 845
2024-11-22 09:50:46,341 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y1e2f7fc69826134be19b2942542b6b268a3f657e/294 HTTP/1.1" 200 842
2024-11-22 09:50:46,378 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/ye3f88fb27219626456b1951828845e21c0b9a19e/295 HTTP/1.1" 200 842
2024-11-22 09:50:46,413 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y525c9dc87897ab895493bc718dc8c96566cb0d61/296 HTTP/1.1" 200 843
2024-11-22 09:50:46,446 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yed4ed49c395f6a1229cb123f7557c1faf17dd7fc/297 HTTP/1.1" 200 843
2024-11-22 09:50:46,479 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y0bb5e64205bc8b9c0fb4d044a85a80bb9dbb298b/298 HTTP/1.1" 200 842
2024-11-22 09:50:46,519 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y9447889644fe2ab5820eaf481f7bab26549ee24a/299 HTTP/1.1" 200 841
2024-11-22 09:50:46,552 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y5fcdc4ec13f9ce75889ae7ecbb66a5e38390c526/300 HTTP/1.1" 200 841
2024-11-22 09:50:46,596 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y353b4d5e4d0b132acfd107545fce07b33c9b3aa5/301 HTTP/1.1" 200 842
2024-11-22 09:50:46,630 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y8de2d8a7d7dba40e7eae2b99f6fba2b604ea71e8/302 HTTP/1.1" 200 843
2024-11-22 09:50:46,678 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y570dc191e318990de18792dc23d616da0a73603b/303 HTTP/1.1" 200 845
2024-11-22 09:50:46,714 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/ye9dd73db867ef5c502fc8f51c0fd8b3bc29aedbb/304 HTTP/1.1" 200 843
2024-11-22 09:50:46,747 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y69509802c3522ec40bee01c18697d26c77481bd8/305 HTTP/1.1" 200 842
2024-11-22 09:50:46,780 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/ye05455f854e56781eb9d96501de6326a40d0135f/306 HTTP/1.1" 200 843
2024-11-22 09:50:46,811 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yb08e203a20caa3194deae7074b8ca6717e0007e4/307 HTTP/1.1" 200 843
2024-11-22 09:50:46,845 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yfd54f60d29adac06f2895bf1c2533762c4305862/308 HTTP/1.1" 200 844
2024-11-22 09:50:46,878 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yf0d5da0db14284ad3db31c655b01291f85924b88/309 HTTP/1.1" 200 842
2024-11-22 09:50:46,911 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yc2c2ed43ea89020e9fca3f381fddccf16ebdf631/310 HTTP/1.1" 200 841
2024-11-22 09:50:46,947 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yd73ab7f426b530d7c10f26a22e3d73abdbe9717c/311 HTTP/1.1" 200 842
2024-11-22 09:50:46,984 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y96b278cee3f395a2ec949c41e66a6ad7f5dccd8d/312 HTTP/1.1" 200 842
2024-11-22 09:50:47,017 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/ybbf500163197ffd20533c60a41d9fc948352b074/313 HTTP/1.1" 200 843
2024-11-22 09:50:47,049 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y2b59ef37b9aff2ee0b3b3282d0ffe8a4a1c1aa28/314 HTTP/1.1" 200 846
2024-11-22 09:50:47,089 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y8c090735ba4582e6970586d012c8d06b61f391da/315 HTTP/1.1" 200 842
2024-11-22 09:50:47,121 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y95ae53344c5768e02b7b644fdaf257f298c2136b/316 HTTP/1.1" 200 842
2024-11-22 09:50:47,152 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y3b3cf47c59ca490524bb03fc6a76e7f0d328a41a/317 HTTP/1.1" 200 842
2024-11-22 09:50:47,185 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/ydaecc2676564643e88b4087d9697f8b3d5ba0581/318 HTTP/1.1" 200 843
2024-11-22 09:50:47,225 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y4dfddce424669d534fbc3e54c0a97e73514b62b0/319 HTTP/1.1" 200 843
2024-11-22 09:50:47,259 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yae3b5430ba1bcd263671fc37d80df6e56a6ebf37/320 HTTP/1.1" 200 842
2024-11-22 09:50:47,299 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yae7b2a36a0d06163f973d261fa62fa4ee4d1372d/321 HTTP/1.1" 200 842
2024-11-22 09:50:47,333 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y7f87a7a046d2d3a9d54c07add8b9f2ee86dd91af/322 HTTP/1.1" 200 842
2024-11-22 09:50:47,367 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y6827c6a72ba5ef6bc07932b3115798e885b6e5d1/323 HTTP/1.1" 200 845
2024-11-22 09:50:47,401 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y182eb7ad5c1b7df5b98a31330504f0781ff6ee9e/324 HTTP/1.1" 200 842
2024-11-22 09:50:47,435 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yddca4ff3a729036246795f90f3e756c47363378c/325 HTTP/1.1" 200 842
2024-11-22 09:50:47,475 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y24e25485fd39e930ac139ab6259fc6d93bb85f51/326 HTTP/1.1" 200 843
2024-11-22 09:50:47,509 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y4171a11928324527180bc1c5ebe8973423f278b8/327 HTTP/1.1" 200 842
2024-11-22 09:50:47,544 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y3f0ac88db0bc8650c1cda56efec366df281230a3/328 HTTP/1.1" 200 843
2024-11-22 09:50:47,578 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y73b0f9f2bd02c37cc0191bf8586d186af4e88489/329 HTTP/1.1" 200 844
2024-11-22 09:50:47,614 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/ydd7c6a814336e81501719a3770162e6cfe18e3cf/330 HTTP/1.1" 200 843
2024-11-22 09:50:47,648 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/ya8da3278800ad686718811c979673b82e91b1732/331 HTTP/1.1" 200 841
2024-11-22 09:50:47,680 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yd11ab2c03bf673b3d9e36e13681e4a9a089911a4/332 HTTP/1.1" 200 843
2024-11-22 09:50:47,716 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yfea14724f70804f1391a1d083d60a2f882564858/333 HTTP/1.1" 200 840
2024-11-22 09:50:47,753 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y4a6ae78cdd69168d0fa48c8e8fbe4ede27de882c/334 HTTP/1.1" 200 841
2024-11-22 09:50:47,788 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yf1442ff6591fdc02d3972ea03035602b6f4fdf89/335 HTTP/1.1" 200 841
2024-11-22 09:50:47,822 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y77020afc4c9212a014a1ec8c20ad1c84a01e6f1d/336 HTTP/1.1" 200 842
2024-11-22 09:50:47,855 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yb01d738768af3c8fb14ac0b5175296abb3e56fac/337 HTTP/1.1" 200 840
2024-11-22 09:50:47,887 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y840344ff3486579a049ea08d34868ec1bb206286/338 HTTP/1.1" 200 845
2024-11-22 09:50:47,923 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y4fa40ca8989361c8bbfdfe26c3d9fd748d2b185b/339 HTTP/1.1" 200 842
2024-11-22 09:50:47,968 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y6296828722adf0ad22e1d54a2c75552a64584cb5/340 HTTP/1.1" 200 841
2024-11-22 09:50:48,004 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y7bb074945c1d20883f33761fc3987b46a2490749/341 HTTP/1.1" 200 843
2024-11-22 09:50:48,046 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y34665beea2b93b7476fd7f533582cf351acdfd27/342 HTTP/1.1" 200 844
2024-11-22 09:50:48,088 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y1b07cdf1470f2eb3c5157197e700cc538489cc43/343 HTTP/1.1" 200 842
2024-11-22 09:50:48,124 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y1dee23a3dfe35deb2ee5fccc6442e21590dd1f1f/344 HTTP/1.1" 200 841
2024-11-22 09:50:48,158 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y5e2a93317a87b0644901b9b13aad222b9da09098/345 HTTP/1.1" 200 842
2024-11-22 09:50:48,192 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y6d35873855bdc845d8207d2d16058a0fad19c667/346 HTTP/1.1" 200 842
2024-11-22 09:50:48,229 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yd85620c885929c69f8dd908a16b5feacebd33b22/347 HTTP/1.1" 200 843
2024-11-22 09:50:48,268 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yfadd019a9dcd7301b5ac7286aff762b10815a49f/348 HTTP/1.1" 200 841
2024-11-22 09:50:48,305 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y5cd07d0c2c8d098324d426d0e308ec2ddcbca8f6/349 HTTP/1.1" 200 843
2024-11-22 09:50:48,339 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/ya22185b3df98ff3e42c58cb3b575823d7278a9f6/350 HTTP/1.1" 200 841
2024-11-22 09:50:48,375 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y9b2b3e1f47d031278d74cb02d8444ef947a0c796/351 HTTP/1.1" 200 843
2024-11-22 09:50:48,412 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y792abf427edb4981e2139a80fb23675448e31590/352 HTTP/1.1" 200 841
2024-11-22 09:50:48,447 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yff8af09c2614824f147c6de5d02e7553b901a034/353 HTTP/1.1" 200 840
2024-11-22 09:50:48,485 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y8d39e2fe66e831a82894a22a3e18116aab78433c/354 HTTP/1.1" 200 842
2024-11-22 09:50:48,518 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y4dd823087b01d614d2d5079be25c998a2af8a650/355 HTTP/1.1" 200 844
2024-11-22 09:50:48,554 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yfd4f6fe84e18db9bbddf3dfeec6c7e40691f427e/356 HTTP/1.1" 200 842
2024-11-22 09:50:48,592 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yc48624df0e91dc904c6f8a18b8f283764a1f9736/357 HTTP/1.1" 200 842
2024-11-22 09:50:48,626 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y17f9fe9b13d8633cbbb6ebc1d205a9e53a38e754/358 HTTP/1.1" 200 841
2024-11-22 09:50:48,661 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y27991569f64a8e7239a025125d500545cbb69d76/359 HTTP/1.1" 200 842
2024-11-22 09:50:48,700 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y94c6992d873d6bf7c1c990dee649df9ea9aabd1d/360 HTTP/1.1" 200 842
2024-11-22 09:50:48,739 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y92871ea63f741774219ae13bcf3367eb8d5c13d6/361 HTTP/1.1" 200 843
2024-11-22 09:50:48,773 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yceed2ea881d50919beeb879a05b9ba0fd8014f2b/362 HTTP/1.1" 200 841
2024-11-22 09:50:48,808 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/ycd0b4ed7bb3d5f1cc7f367fc9a802702ef8bf5de/363 HTTP/1.1" 200 842
2024-11-22 09:50:48,842 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yc08be49b6ca43b78bb2614c03490d932c194ca39/364 HTTP/1.1" 200 842
2024-11-22 09:50:48,876 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y3ee1f58aefa1425f39bc1a6bcd8fe07446f46320/365 HTTP/1.1" 200 843
2024-11-22 09:50:48,911 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yfa6a22dd7b199865e6094d598d729908bd741805/366 HTTP/1.1" 200 842
2024-11-22 09:50:48,945 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/ycea7e428fb72fac50c50674165b602ee6e4e17c6/367 HTTP/1.1" 200 841
2024-11-22 09:50:48,984 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y714f1e8549693e7aa09d7b81aa283c377dbced54/368 HTTP/1.1" 200 841
2024-11-22 09:50:49,022 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yf66069359573b96e59839e80fd194ee3dddd292f/369 HTTP/1.1" 200 844
2024-11-22 09:50:49,073 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yc70aca9b41abdf88b11bf8bf93805c8e46031518/370 HTTP/1.1" 200 842
2024-11-22 09:50:49,113 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y4826dc4ef7fc9b89c3b5a90cbd47894959cc1124/371 HTTP/1.1" 200 841
2024-11-22 09:50:49,149 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y57776f70043487923fe2a31cb9eaad843f08d966/372 HTTP/1.1" 200 843
2024-11-22 09:50:49,187 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y16c4add530bfdbc36807a8c8c20cb324311fb664/373 HTTP/1.1" 200 841
2024-11-22 09:50:49,220 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/ybb64a9b5167954099cdae6a27ad907ac876b602f/374 HTTP/1.1" 200 843
2024-11-22 09:50:49,255 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y833d5f0fdf405f79b78f6bed0e9fb1e62dd33476/375 HTTP/1.1" 200 842
2024-11-22 09:50:49,289 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y4b6c9f6a644043e83b77ca8ea8f4966b93075bb8/376 HTTP/1.1" 200 842
2024-11-22 09:50:49,326 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y65695fe7a2088fa97f913519320da510cd0650f3/377 HTTP/1.1" 200 845
2024-11-22 09:50:49,365 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y1cd68b214155d2946b293e1a8a19b78cbe200192/378 HTTP/1.1" 200 841
2024-11-22 09:50:49,402 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y700e3762b2859eb607d2f2379a81643fd4add022/379 HTTP/1.1" 200 841
2024-11-22 09:50:49,439 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y79e175897a9fed03403b9d3f88879df32fee57ee/380 HTTP/1.1" 200 840
2024-11-22 09:50:49,474 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y65c5044e4a291be6c4e99e0b62e4b873e5e9e9d4/381 HTTP/1.1" 200 842
2024-11-22 09:50:49,513 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y0ad13df95c4d5531a59208fefc0997d5a0c96f89/382 HTTP/1.1" 200 840
2024-11-22 09:50:49,547 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y82c0316ce790dc312b3418f4aa6ad57caf351c00/383 HTTP/1.1" 200 842
2024-11-22 09:50:49,582 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y9a7ab3c411577ff5595beea56c51f2ffc97c2a19/384 HTTP/1.1" 200 844
2024-11-22 09:50:49,618 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y4cf20a62bac41f3e2c7abbe0b9ed8416a9df4670/385 HTTP/1.1" 200 843
2024-11-22 09:50:49,657 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yc0890ea17dfe1abf188dd2f24b921632de4b3768/386 HTTP/1.1" 200 844
2024-11-22 09:50:49,696 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y1748427e75558860878a90e4dbdc4aa563f9614c/387 HTTP/1.1" 200 843
2024-11-22 09:50:49,735 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yf3417bcb1d08075a0757ee45781d1bc4398c2763/388 HTTP/1.1" 200 841
2024-11-22 09:50:49,769 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y71d1e58daa816671754872aa1343b1844930c253/389 HTTP/1.1" 200 845
2024-11-22 09:50:49,806 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y0f7d8f6bffecfbe19b939eba85d65d1cf29b3018/390 HTTP/1.1" 200 844
2024-11-22 09:50:49,842 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y27fb7dd31681fb4f376ca15caa9bf45fae9486b9/391 HTTP/1.1" 200 842
2024-11-22 09:50:49,877 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yb57a3e7026dda7529deba275cf3710fa3ee04c95/392 HTTP/1.1" 200 842
2024-11-22 09:50:49,914 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y716c7ddd2821db5cbb2339959537f6c0f70a286c/393 HTTP/1.1" 200 840
2024-11-22 09:50:49,948 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y20984edcd981b80a327f0f451e6c99e3aa08ca41/394 HTTP/1.1" 200 843
2024-11-22 09:50:50,028 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yfdf3e7c9fb51bd197d820f0ec2521a0292ad3df9/395 HTTP/1.1" 200 844
2024-11-22 09:50:50,071 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y64fe2ca24063b1962fc674d594fe125daf71d559/396 HTTP/1.1" 200 844
2024-11-22 09:50:50,109 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yc4213aec2a64ac423906844bb8dcd87294bdbd8f/397 HTTP/1.1" 200 844
2024-11-22 09:50:50,155 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/ya3b2622bc41462922dc17499216c69c5f7ca4d71/398 HTTP/1.1" 200 843
2024-11-22 09:50:50,188 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y2401790532d9d31f66b1f78099d5cac76699bd47/399 HTTP/1.1" 200 842
2024-11-22 09:50:50,220 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y1428b3958f94456f7a683728720cff732a8dfd83/400 HTTP/1.1" 200 841
2024-11-22 09:50:50,256 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y91ff0ce08cc241d68de9bc2ee50defca3fa62b58/401 HTTP/1.1" 200 842
2024-11-22 09:50:50,287 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y6822eaa75c6db351defb8c7428b8474e3193d091/402 HTTP/1.1" 200 845
2024-11-22 09:50:50,323 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yc761dfeefdcbc1102ac6f2a669c31a0a62d28ccd/403 HTTP/1.1" 200 843
2024-11-22 09:50:50,371 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y297be4f0a145b3b70e2f50303fd4c65bc9d7e723/404 HTTP/1.1" 200 844
2024-11-22 09:50:50,425 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yb1c13192d8b46744688d82eb4bfa2872ef73c520/405 HTTP/1.1" 200 842
2024-11-22 09:50:50,465 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y496e57cc2929fa1ed551502dfb01dc996ce2c3a2/406 HTTP/1.1" 200 843
2024-11-22 09:50:50,497 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y3d7d1e2cbbaf0f751568481eec654e355aa6e273/407 HTTP/1.1" 200 843
2024-11-22 09:50:50,531 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yaad6df809c3d43b605d09c7db575434462ecc41d/408 HTTP/1.1" 200 842
2024-11-22 09:50:50,564 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y453a85b41c522a1fe94a572f0f2d67783787cabb/409 HTTP/1.1" 200 842
2024-11-22 09:50:50,597 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yc10a08e8313958ce5e51403e95f568fe1fcf4157/410 HTTP/1.1" 200 840
2024-11-22 09:50:50,631 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y02574fb2e1a0aa74018fe2764aa7b41fc10ec28f/411 HTTP/1.1" 200 842
2024-11-22 09:50:50,665 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y246119249ef46964dda12b0e942b4d2141dc05cf/412 HTTP/1.1" 200 843
2024-11-22 09:50:50,698 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yb76e4c6697148cb76794b00de181bbd97a882d67/413 HTTP/1.1" 200 842
2024-11-22 09:50:50,735 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yd2d84981bdfff34ae6c3185786b06dc310ffa6a8/414 HTTP/1.1" 200 843
2024-11-22 09:50:50,771 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y4b4083bd12f9f4b1455ef3da7f34ba68208e1e96/415 HTTP/1.1" 200 841
2024-11-22 09:50:50,806 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y38d7d45b5220b5ef0f3f9b6416fe7482fc17bf83/416 HTTP/1.1" 200 842
2024-11-22 09:50:50,841 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yc2740f6e82e4cb31c97362bedf29681ce52d38f7/417 HTTP/1.1" 200 843
2024-11-22 09:50:50,875 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y43da66e1dfd8ccf3baa1a8043ee5b9fc20cb627d/418 HTTP/1.1" 200 840
2024-11-22 09:50:50,910 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yf7f06383370e0c99e2f2e2309e16366926bfa349/419 HTTP/1.1" 200 844
2024-11-22 09:50:50,946 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yd07d3f61ab75dfb7a2167e3596eefe7331a28f86/420 HTTP/1.1" 200 843
2024-11-22 09:50:50,981 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y6fb43d4b01fd17c8957df35972320556055e5fc6/421 HTTP/1.1" 200 843
2024-11-22 09:50:51,021 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y3546c70a24bc08afb85e20f8974e769da76923d7/422 HTTP/1.1" 200 844
2024-11-22 09:50:51,072 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y673629458bd893eca1e068ebebb56f8bdb7d1df7/423 HTTP/1.1" 200 843
2024-11-22 09:50:51,113 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y2116f025ccb8d25358769ff20c0b6e5668b35601/424 HTTP/1.1" 200 842
2024-11-22 09:50:51,147 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y008d1a388389a9f8d2329d78e0f0945b03cf7ddf/425 HTTP/1.1" 200 843
2024-11-22 09:50:51,182 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yc24d21bef6161ee3f633987e6c22f80df8565af6/426 HTTP/1.1" 200 843
2024-11-22 09:50:51,213 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y98a5b114f72f785c84bde6e583d1fcb1e28f476f/427 HTTP/1.1" 200 840
2024-11-22 09:50:51,246 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yc3ca032e65b79f801122aed4aaa1824401dc97e8/428 HTTP/1.1" 200 842

The entries are then stable for a few minutes. Here's an extract:

2024-11-22 09:52:37,806 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yb78f8a6d0edd90316787811e9886346cd28cf8d9/3280 HTTP/1.1" 200 842
2024-11-22 09:52:37,843 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y61ec40447aaf9405e55bdcae8644485054782939/3281 HTTP/1.1" 200 842
2024-11-22 09:52:37,878 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yac197f370d44c52a48db9937fa62d8708738dfb8/3282 HTTP/1.1" 200 842
2024-11-22 09:52:37,921 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y364853c5f9e48d2937d33f2c16d19e99035cc2a0/3283 HTTP/1.1" 200 843
2024-11-22 09:52:37,966 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y839d0578a41cafb40a4fb457588ce6f20447d939/3284 HTTP/1.1" 200 841
2024-11-22 09:52:37,998 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y27e36713514a1559cb6ac2c87cc2985adf2c16a8/3285 HTTP/1.1" 200 842
2024-11-22 09:52:38,033 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/ya93929e46e48429179b15de3a5696f5cb9486221/3286 HTTP/1.1" 200 841
2024-11-22 09:52:38,070 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y2a0585d4f95a44dd1ee6bc3e900a8d0a55914784/3287 HTTP/1.1" 200 841
2024-11-22 09:52:38,106 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y1e3b669493390cdd36e6a3ce34c49694539c3945/3288 HTTP/1.1" 200 844
2024-11-22 09:52:38,143 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yc83f5c4b7464c325dd8eaaeb267232f21792e258/3289 HTTP/1.1" 200 840
2024-11-22 09:52:38,178 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y793e6dd0339470761a70fe4aa219797846bbee83/3290 HTTP/1.1" 200 842
2024-11-22 09:52:38,214 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/ybc46455be66a0d93192e91b0e200de069b3ed493/3291 HTTP/1.1" 200 842
2024-11-22 09:52:38,251 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y54a36697af0398a82c4ffe04c49e54864e8e651f/3292 HTTP/1.1" 200 843
2024-11-22 09:52:38,288 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y4ecceb832e3b9862f496ca09354f7a4a27d4d36e/3293 HTTP/1.1" 200 840
2024-11-22 09:52:38,326 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yea56b72f837242dab5bc8cdac7c94956afd876b4/3294 HTTP/1.1" 200 843
2024-11-22 09:52:38,365 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y225e66f8330650123168e69cb8585ae80f80a946/3295 HTTP/1.1" 200 842

These are the final log entries:

2024-11-22 09:55:03,025 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yd6c1d8a8afb1c9dabb3332e55a535a5ba54a5483/7199 HTTP/1.1" 200 845
2024-11-22 09:55:03,070 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/yde3895b1df79ea565c5bae12bd549e22c586e57a/7200 HTTP/1.1" 200 843
2024-11-22 09:55:03,106 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y2258a7f375e5cfe605c0822a5d9b350b49533456/7201 HTTP/1.1" 200 844
2024-11-22 09:55:03,147 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "GET /v1/statement/executing/20241122_084931_01494_si7eg/y1c82ee83c8f176da6467d59534f5297bf0416dc3/7202 HTTP/1.1" 200 780
2024-11-22 09:55:03,285 - urllib3.connectionpool - DEBUG - https://foo.bar:443 "POST /v1/statement HTTP/1.1" 200 319

@dwolfeu
Copy link
Member Author

dwolfeu commented Nov 22, 2024

Here are some extracts from the logs of the Trino coordinator pod (notice that these times are in UTC):

2024-11-22T08:47:30.717Z	WARN	http-client-node-manager-scheduler-1	io.trino.metadata.RemoteNodeState	Error fetching node state from http://100.115.7.7:8080/v1/info/state: Failed communicating with server: http://100.115.7.7:8080/v1/info/state
2024-11-22T08:47:30.719Z	INFO	node-state-poller-0	io.trino.metadata.DiscoveryNodeManager	Previously active node is missing: foobar-worker-5b9f9d99d7-krng2 (last seen at 100.115.7.7)
2024-11-22T08:47:31.279Z	WARN	http-client-memoryManager-scheduler-1	io.trino.memory.RemoteNodeMemory	Error fetching memory info from http://100.115.7.7:8080/v1/memory: Failed communicating with server: http://100.115.7.7:8080/v1/memory


2024-11-22T08:49:44.336Z	WARN	ContinuousTaskStatusFetcher-20241122_084931_01494_si7eg.1.1.0-3238	io.trino.server.remotetask.RequestErrorTracker	Error getting task status 20241122_084931_01494_si7eg.1.1.0: Failed communicating with server: http://100.115.4.4:8080/v1/task/20241122_084931_01494_si7eg.1.1.0/status: http://100.115.4.4:8080/v1/task/20241122_084931_01494_si7eg.1.1.0
2024-11-22T08:49:44.340Z	WARN	ContinuousTaskStatusFetcher-20241122_084931_01494_si7eg.1.1.0-3394	io.trino.server.remotetask.RequestErrorTracker	Error getting task status 20241122_084931_01494_si7eg.1.1.0: Failed communicating with server: http://100.115.4.4:8080/v1/task/20241122_084931_01494_si7eg.1.1.0/status: http://100.115.4.4:8080/v1/task/20241122_084931_01494_si7eg.1.1.0
2024-11-22T08:49:44.341Z	WARN	ContinuousTaskStatusFetcher-20241122_084931_01494_si7eg.0.1.0-3238	io.trino.server.remotetask.RequestErrorTracker	Error getting task status 20241122_084931_01494_si7eg.0.1.0: Failed communicating with server: http://100.115.4.4:8080/v1/task/20241122_084931_01494_si7eg.0.1.0/status: http://100.115.4.4:8080/v1/task/20241122_084931_01494_si7eg.0.1.0
2024-11-22T08:49:44.342Z	WARN	ContinuousTaskStatusFetcher-20241122_084931_01494_si7eg.2.1.0-3238	io.trino.server.remotetask.RequestErrorTracker	Error getting task status 20241122_084931_01494_si7eg.2.1.0: Failed communicating with server: http://100.115.4.4:8080/v1/task/20241122_084931_01494_si7eg.2.1.0/status: http://100.115.4.4:8080/v1/task/20241122_084931_01494_si7eg.2.1.0
2024-11-22T08:49:44.342Z	WARN	ContinuousTaskStatusFetcher-20241122_084931_01494_si7eg.0.1.0-3394	io.trino.server.remotetask.RequestErrorTracker	Error getting task status 20241122_084931_01494_si7eg.0.1.0: Server refused connection: http://100.115.4.4:8080/v1/task/20241122_084931_01494_si7eg.0.1.0/status: http://100.115.4.4:8080/v1/task/20241122_084931_01494_si7eg.0.1.0
2024-11-22T08:49:44.343Z	WARN	ContinuousTaskStatusFetcher-20241122_084931_01494_si7eg.2.1.0-3394	io.trino.server.remotetask.RequestErrorTracker	Error getting task status 20241122_084931_01494_si7eg.2.1.0: Server refused connection: http://100.115.4.4:8080/v1/task/20241122_084931_01494_si7eg.2.1.0/status: http://100.115.4.4:8080/v1/task/20241122_084931_01494_si7eg.2.1.0
2024-11-22T08:49:44.344Z	WARN	ContinuousTaskStatusFetcher-20241122_084931_01494_si7eg.3.1.0-3394	io.trino.server.remotetask.RequestErrorTracker	Error getting task status 20241122_084931_01494_si7eg.3.1.0: Failed communicating with server: http://100.115.4.4:8080/v1/task/20241122_084931_01494_si7eg.3.1.0/status: http://100.115.4.4:8080/v1/task/20241122_084931_01494_si7eg.3.1.0
2024-11-22T08:49:44.346Z	WARN	ContinuousTaskStatusFetcher-20241122_084931_01494_si7eg.3.1.0-3394	io.trino.server.remotetask.RequestErrorTracker	Error getting task status 20241122_084931_01494_si7eg.3.1.0: Server refused connection: http://100.115.4.4:8080/v1/task/20241122_084931_01494_si7eg.3.1.0/status: http://100.115.4.4:8080/v1/task/20241122_084931_01494_si7eg.3.1.0
2024-11-22T08:49:44.375Z	WARN	ContinuousTaskStatusFetcher-20241122_084931_01494_si7eg.0.2.0-3238	io.trino.server.remotetask.RequestErrorTracker	Error getting task status 20241122_084931_01494_si7eg.0.2.0: Failed communicating with server: http://100.115.8.2:8080/v1/task/20241122_084931_01494_si7eg.0.2.0/status: http://100.115.8.2:8080/v1/task/20241122_084931_01494_si7eg.0.2.0
2024-11-22T08:49:44.376Z	WARN	ContinuousTaskStatusFetcher-20241122_084931_01494_si7eg.3.8.0-3394	io.trino.server.remotetask.RequestErrorTracker	Error getting task status 20241122_084931_01494_si7eg.3.8.0: Failed communicating with server: http://100.115.6.2:8080/v1/task/20241122_084931_01494_si7eg.3.8.0/status: http://100.115.6.2:8080/v1/task/20241122_084931_01494_si7eg.3.8.0
2024-11-22T08:49:44.376Z	WARN	ContinuousTaskStatusFetcher-20241122_084931_01494_si7eg.0.10.0-3394	io.trino.server.remotetask.RequestErrorTracker	Error getting task status 20241122_084931_01494_si7eg.0.10.0: Failed communicating with server: http://100.115.6.2:8080/v1/task/20241122_084931_01494_si7eg.0.10.0/status: http://100.115.6.2:8080/v1/task/20241122_084931_01494_si7eg.0.10.0

2024-11-22T08:49:44.441Z	WARN	ContinuousTaskStatusFetcher-20241122_084931_01494_si7eg.2.7.0-3238	io.trino.server.remotetask.RequestErrorTracker	Error getting task status 20241122_084931_01494_si7eg.2.7.0: Server refused connection: http://100.115.5.2:8080/v1/task/20241122_084931_01494_si7eg.2.7.0/status: http://100.115.5.2:8080/v1/task/20241122_084931_01494_si7eg.2.7.0
2024-11-22T08:49:44.446Z	WARN	TaskInfoFetcher-20241122_084931_01494_si7eg.3.1.0-3238	io.trino.server.remotetask.RequestErrorTracker	Error getting info for task 20241122_084931_01494_si7eg.3.1.0: Server refused connection: http://100.115.4.4:8080/v1/task/20241122_084931_01494_si7eg.3.1.0?summarize: http://100.115.4.4:8080/v1/task/20241122_084931_01494_si7eg.3.1.0
2024-11-22T08:49:44.462Z	WARN	ContinuousTaskStatusFetcher-20241122_084931_01494_si7eg.0.0.0-3238	io.trino.server.remotetask.RequestErrorTracker	Error getting task status 20241122_084931_01494_si7eg.0.0.0: Failed communicating with server: http://100.115.13.2:8080/v1/task/20241122_084931_01494_si7eg.0.0.0/status: http://100.115.13.2:8080/v1/task/20241122_084931_01494_si7eg.0.0.0

2024-11-22T08:49:44.515Z	WARN	ContinuousTaskStatusFetcher-20241122_084931_01494_si7eg.0.0.0-3441	io.trino.server.remotetask.RequestErrorTracker	Error getting task status 20241122_084931_01494_si7eg.0.0.0: Server refused connection: http://100.115.13.2:8080/v1/task/20241122_084931_01494_si7eg.0.0.0/status: http://100.115.13.2:8080/v1/task/20241122_084931_01494_si7eg.0.0.0
2024-11-22T08:49:44.515Z	WARN	ContinuousTaskStatusFetcher-20241122_084931_01494_si7eg.3.13.0-3238	io.trino.server.remotetask.RequestErrorTracker	Error getting task status 20241122_084931_01494_si7eg.3.13.0: Server refused connection: http://100.115.13.2:8080/v1/task/20241122_084931_01494_si7eg.3.13.0/status: http://100.115.13.2:8080/v1/task/20241122_084931_01494_si7eg.3.13.0
2024-11-22T08:49:44.516Z	WARN	ContinuousTaskStatusFetcher-20241122_084931_01494_si7eg.1.12.0-3238	io.trino.server.remotetask.RequestErrorTracker	Error getting task status 20241122_084931_01494_si7eg.1.12.0: Server refused connection: http://100.115.13.2:8080/v1/task/20241122_084931_01494_si7eg.1.12.0/status: http://100.115.13.2:8080/v1/task/20241122_084931_01494_si7eg.1.12.0
2024-11-22T08:49:44.526Z	WARN	TaskInfoFetcher-20241122_084931_01494_si7eg.3.7.0-3238	io.trino.server.remotetask.RequestErrorTracker	Error getting info for task 20241122_084931_01494_si7eg.3.7.0: Server refused connection: http://100.115.5.2:8080/v1/task/20241122_084931_01494_si7eg.3.7.0?summarize: http://100.115.5.2:8080/v1/task/20241122_084931_01494_si7eg.3.7.0
2024-11-22T08:49:44.527Z	WARN	TaskInfoFetcher-20241122_084931_01494_si7eg.3.8.0-2871	io.trino.server.remotetask.RequestErrorTracker	Error getting info for task 20241122_084931_01494_si7eg.3.8.0: Server refused connection: http://100.115.6.2:8080/v1/task/20241122_084931_01494_si7eg.3.8.0?summarize: http://100.115.6.2:8080/v1/task/20241122_084931_01494_si7eg.3.8.0
2024-11-22T08:49:44.528Z	WARN	TaskInfoFetcher-20241122_084931_01494_si7eg.3.11.0-3238	io.trino.server.remotetask.RequestErrorTracker	Error getting info for task 20241122_084931_01494_si7eg.3.11.0: Server refused connection: http://100.115.3.2:8080/v1/task/20241122_084931_01494_si7eg.3.11.0?summarize: http://100.115.3.2:8080/v1/task/20241122_084931_01494_si7eg.3.11.0
2024-11-22T08:49:44.530Z	WARN	TaskInfoFetcher-20241122_084931_01494_si7eg.3.12.0-3238	io.trino.server.remotetask.RequestErrorTracker	Error getting info for task 20241122_084931_01494_si7eg.3.12.0: Server refused connection: http://100.115.8.2:8080/v1/task/20241122_084931_01494_si7eg.3.12.0?summarize: http://100.115.8.2:8080/v1/task/20241122_084931_01494_si7eg.3.12.0
2024-11-22T08:49:44.532Z	WARN	ContinuousTaskStatusFetcher-20241122_084931_01494_si7eg.0.10.0-3238	io.trino.server.remotetask.RequestErrorTracker	Error getting task status 20241122_084931_01494_si7eg.0.10.0: Server refused connection: http://100.115.6.2:8080/v1/task/20241122_084931_01494_si7eg.0.10.0/status: http://100.115.6.2:8080/v1/task/20241122_084931_01494_si7eg.0.10.0

		at io.airlift.http.client.jetty.BufferingResponseListener.onComplete(BufferingResponseListener.java:84)
		at org.eclipse.jetty.client.ResponseNotifier.notifyComplete(ResponseNotifier.java:213)
		at org.eclipse.jetty.client.ResponseNotifier.notifyComplete(ResponseNotifier.java:205)
		at org.eclipse.jetty.client.HttpReceiver.terminateResponse(HttpReceiver.java:477)
		at org.eclipse.jetty.client.HttpReceiver.terminateResponse(HttpReceiver.java:457)
		at org.eclipse.jetty.client.HttpReceiver.abort(HttpReceiver.java:553)
		at org.eclipse.jetty.client.HttpReceiver.responseFailure(HttpReceiver.java:449)
		at org.eclipse.jetty.client.http.HttpReceiverOverHTTP.failAndClose(HttpReceiverOverHTTP.java:428)
		at org.eclipse.jetty.client.http.HttpReceiverOverHTTP.earlyEOF(HttpReceiverOverHTTP.java:400)
		at org.eclipse.jetty.http.HttpParser.parseNext(HttpParser.java:1625)
		at org.eclipse.jetty.client.http.HttpReceiverOverHTTP.shutdown(HttpReceiverOverHTTP.java:285)
		at org.eclipse.jetty.client.http.HttpReceiverOverHTTP.process(HttpReceiverOverHTTP.java:198)
		at org.eclipse.jetty.client.http.HttpReceiverOverHTTP.receive(HttpReceiverOverHTTP.java:91)
		at org.eclipse.jetty.client.http.HttpChannelOverHTTP.receive(HttpChannelOverHTTP.java:90)
		at org.eclipse.jetty.client.http.HttpConnectionOverHTTP.onFillable(HttpConnectionOverHTTP.java:194)
		at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(AbstractConnection.java:314)
		at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:100)
		at org.eclipse.jetty.io.SelectableChannelEndPoint$1.run(SelectableChannelEndPoint.java:53)
		at org.eclipse.jetty.util.thread.strategy.AdaptiveExecutionStrategy.runTask(AdaptiveExecutionStrategy.java:416)
		at org.eclipse.jetty.util.thread.strategy.AdaptiveExecutionStrategy.consumeTask(AdaptiveExecutionStrategy.java:385)
		at org.eclipse.jetty.util.thread.strategy.AdaptiveExecutionStrategy.tryProduce(AdaptiveExecutionStrategy.java:272)
		at org.eclipse.jetty.util.thread.strategy.AdaptiveExecutionStrategy.lambda$new$0(AdaptiveExecutionStrategy.java:140)
		at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(ReservedThreadExecutor.java:411)
		at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:969)
		at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.doRunJob(QueuedThreadPool.java:1194)
		at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(QueuedThreadPool.java:1149)
		... 1 more
	Caused by: java.io.EOFException: HttpConnectionOverHTTP@72281b3f::SocketChannelEndPoint@113a50a5[{l=/100.115.1.4:51448,r=/100.115.4.4:8080,ISHUT,fill=-,flush=-,to=320/30000}{io=0/0,kio=0,kro=1}]->[HttpConnectionOverHTTP@72281b3f(l:/100.115.1.4:51448 <-> r:/100.115.4.4:8080,closed=false)=>HttpChannelOverHTTP@110fbbdd(exchange=HttpExchange@b353441{req=HttpRequest[GET /v1/task/20241122_084931_01494_si7eg.1.1.0/status HTTP/1.1]@397627fb[TERMINATED/null] res=HttpResponse[null 0 null]@7a8af708[PENDING/null]})[send=HttpSenderOverHTTP@16b76ad7(req=QUEUED,failure=null)[HttpGenerator@3482c37c{s=START}],recv=HttpReceiverOverHTTP@3cc363e8(rsp=IDLE,failure=null)[HttpParser{s=CLOSED,0 of -1}]]]
		... 19 more
	Suppressed: java.io.UncheckedIOException: Failed communicating with server: http://100.115.4.4:8080/v1/task/20241122_084931_01494_si7eg.1.1.0/status
		at io.airlift.http.client.ResponseHandlerUtils.propagate(ResponseHandlerUtils.java:22)

2024-11-22T08:49:45.705Z	WARN	ContinuousTaskStatusFetcher-20241122_084931_01494_si7eg.3.1.0-3520	io.trino.server.remotetask.RequestErrorTracker	Error getting task status 20241122_084931_01494_si7eg.3.1.0: Server refused connection: http://100.115.4.4:8080/v1/task/20241122_084931_01494_si7eg.3.1.0/status: http://100.115.4.4:8080/v1/task/20241122_084931_01494_si7eg.3.1.0
2024-11-22T08:49:45.704Z	WARN	ContinuousTaskStatusFetcher-20241122_084931_01494_si7eg.2.1.0-3445	io.trino.server.remotetask.RequestErrorTracker	Error getting task status 20241122_084931_01494_si7eg.2.1.0: Server refused connection: http://100.115.4.4:8080/v1/task/20241122_084931_01494_si7eg.2.1.0/status: http://100.115.4.4:8080/v1/task/20241122_084931_01494_si7eg.2.1.0
2024-11-22T08:49:45.704Z	WARN	ContinuousTaskStatusFetcher-20241122_084931_01494_si7eg.0.1.0-3502	io.trino.server.remotetask.RequestErrorTracker	Error getting task status 20241122_084931_01494_si7eg.0.1.0: Server refused connection: http://100.115.4.4:8080/v1/task/20241122_084931_01494_si7eg.0.1.0/status: http://100.115.4.4:8080/v1/task/20241122_084931_01494_si7eg.0.1.0
2024-11-22T08:49:45.716Z	ERROR	remote-task-callback-554	io.trino.execution.scheduler.PipelinedStageExecution	Pipelined stage execution for stage 20241122_084931_01494_si7eg.3 failed
io.trino.spi.TrinoTransportException: Encountered too many errors talking to a worker node. The node may have crashed or be under too much load. This is probably a transient issue, so please retry your query in a few minutes. (getting task status http://100.115.4.4:8080/v1/task/20241122_084931_01494_si7eg.3.1.0 - 7 failures, failure duration 1.37s, total failed request time 0.13s)
	at io.trino.server.remotetask.RequestErrorTracker.requestFailed(RequestErrorTracker.java:127)
	at io.trino.server.remotetask.ContinuousTaskStatusFetcher$TaskStatusResponseCallback.failed(ContinuousTaskStatusFetcher.java:195)
	at io.trino.server.remotetask.SimpleHttpResponseHandler.onFailure(SimpleHttpResponseHandler.java:85)
	at com.google.common.util.concurrent.Futures$CallbackListener.run(Futures.java:1127)
	at io.airlift.concurrent.BoundedExecutor.drainQueue(BoundedExecutor.java:79)
	at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
	at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
	at java.base/java.lang.Thread.run(Thread.java:833)
	Suppressed: java.io.UncheckedIOException: Failed communicating with server: http://100.115.4.4:8080/v1/task/20241122_084931_01494_si7eg.3.1.0/status
		at io.airlift.http.client.ResponseHandlerUtils.propagate(ResponseHandlerUtils.java:22)

		at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)
		at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946)
		at org.eclipse.jetty.io.SelectorManager.doFinishConnect(SelectorManager.java:341)
		at org.eclipse.jetty.io.ManagedSelector.processConnect(ManagedSelector.java:344)
		... 10 more


2024-11-22T08:49:45.736Z	WARN	ContinuousTaskStatusFetcher-20241122_084931_01494_si7eg.0.10.0-3445	io.trino.server.remotetask.RequestErrorTracker	Error getting task status 20241122_084931_01494_si7eg.0.10.0: Server refused connection: http://100.115.6.2:8080/v1/task/20241122_084931_01494_si7eg.0.10.0/status: http://100.115.6.2:8080/v1/task/20241122_084931_01494_si7eg.0.10.0
2024-11-22T08:49:45.742Z	WARN	ContinuousTaskStatusFetcher-20241122_084931_01494_si7eg.2.8.0-3445	io.trino.server.remotetask.RequestErrorTracker	Error getting task status 20241122_084931_01494_si7eg.2.8.0: Server refused connection: http://100.115.6.2:8080/v1/task/20241122_084931_01494_si7eg.2.8.0/status: http://100.115.6.2:8080/v1/task/20241122_084931_01494_si7eg.2.8.0
2024-11-22T08:49:45.744Z	WARN	ContinuousTaskStatusFetcher-20241122_084931_01494_si7eg.3.7.0-3509	io.trino.server.remotetask.RequestErrorTracker	Error getting task status 20241122_084931_01494_si7eg.3.7.0: Server refused connection: http://100.115.5.2:8080/v1/task/20241122_084931_01494_si7eg.3.7.0/status: http://100.115.5.2:8080/v1/task/20241122_084931_01494_si7eg.3.7.0
2024-11-22T08:49:45.744Z	WARN	ContinuousTaskStatusFetcher-20241122_084931_01494_si7eg.0.4.0-3497	io.trino.server.remotetask.RequestErrorTracker	Error getting task status 20241122_084931_01494_si7eg.0.4.0: Server refused connection: http://100.115.5.2:8080/v1/task/20241122_084931_01494_si7eg.0.4.0/status: http://100.115.5.2:8080/v1/task/20241122_084931_01494_si7eg.0.4.0
2024-11-22T08:49:45.745Z	WARN	ContinuousTaskStatusFetcher-20241122_084931_01494_si7eg.3.8.0-3520	io.trino.server.remotetask.RequestErrorTracker	Error getting task status 20241122_084931_01494_si7eg.3.8.0: Server refused connection: http://100.115.6.2:8080/v1/task/20241122_084931_01494_si7eg.3.8.0/status: http://100.115.6.2:8080/v1/task/20241122_084931_01494_si7eg.3.8.0
2024-11-22T08:49:45.747Z	WARN	ContinuousTaskStatusFetcher-20241122_084931_01494_si7eg.1.7.0-3394	io.trino.server.remotetask.RequestErrorTracker	Error getting task status 20241122_084931_01494_si7eg.1.7.0: Server refused connection: http://100.115.5.2:8080/v1/task/20241122_084931_01494_si7eg.1.7.0/status: http://100.115.5.2:8080/v1/task/20241122_084931_01494_si7eg.1.7.0
2024-11-22T08:49:45.747Z	WARN	ContinuousTaskStatusFetcher-20241122_084931_01494_si7eg.2.7.0-3502	io.trino.server.remotetask.RequestErrorTracker	Error getting task status 20241122_084931_01494_si7eg.2.7.0: Server refused connection: http://100.115.5.2:8080/v1/task/20241122_084931_01494_si7eg.2.7.0/status: http://100.115.5.2:8080/v1/task/20241122_084931_01494_si7eg.2.7.0
2024-11-22T08:49:45.750Z	WARN	ContinuousTaskStatusFetcher-20241122_084931_01494_si7eg.1.8.0-3445	io.trino.server.remotetask.RequestErrorTracker	Error getting task status 20241122_084931_01494_si7eg.1.8.0: Server refused connection: http://100.115.6.2:8080/v1/task/20241122_084931_01494_si7eg.1.8.0/status: http://100.115.6.2:8080/v1/task/20241122_084931_01494_si7eg.1.8.0
2024-11-22T08:49:45.765Z	WARN	http-client-node-manager-49	io.trino.metadata.RemoteNodeState	Error fetching node state from http://100.115.4.4:8080/v1/info/state: Server refused connection: http://100.115.4.4:8080/v1/info/state
2024-11-22T08:49:45.765Z	WARN	http-client-node-manager-2684	io.trino.metadata.RemoteNodeState	Error fetching node state from http://100.115.6.2:8080/v1/info/state: Server refused connection: http://100.115.6.2:8080/v1/info/state
2024-11-22T08:49:45.766Z	WARN	http-client-node-manager-2684	io.trino.metadata.RemoteNodeState	Error fetching node state from http://100.115.8.2:8080/v1/info/state: Server refused connection: http://100.115.8.2:8080/v1/info/state
2024-11-22T08:49:45.766Z	WARN	http-client-node-manager-2636	io.trino.metadata.RemoteNodeState	Error fetching node state from http://100.115.5.2:8080/v1/info/state: Server refused connection: http://100.115.5.2:8080/v1/info/state
2024-11-22T08:49:45.766Z	WARN	http-client-node-manager-2636	io.trino.metadata.RemoteNodeState	Error fetching node state from http://100.115.3.2:8080/v1/info/state: Server refused connection: http://100.115.3.2:8080/v1/info/state
2024-11-22T08:49:45.766Z	WARN	http-client-node-manager-2636	io.trino.metadata.RemoteNodeState	Error fetching node state from http://100.115.13.2:8080/v1/info/state: Server refused connection: http://100.115.13.2:8080/v1/info/state
2024-11-22T08:49:45.769Z	WARN	ContinuousTaskStatusFetcher-20241122_084931_01494_si7eg.2.12.0-3238	io.trino.server.remotetask.RequestErrorTracker	Error getting task status 20241122_084931_01494_si7eg.2.12.0: Server refused connection: http://100.115.3.2:8080/v1/task/20241122_084931_01494_si7eg.2.12.0/status: http://100.115.3.2:8080/v1/task/20241122_084931_01494_si7eg.2.12.0
2024-11-22T08:49:45.774Z	WARN	ContinuousTaskStatusFetcher-20241122_084931_01494_si7eg.1.13.0-3441	io.trino.server.remotetask.RequestErrorTracker	Error getting task status 20241122_084931_01494_si7eg.1.13.0: Server refused connection: http://100.115.3.2:8080/v1/task/20241122_084931_01494_si7eg.1.13.0/status: http://100.115.3.2:8080/v1/task/20241122_084931_01494_si7eg.1.13.0

2024-11-22T08:50:00.840Z	WARN	ContinuousTaskStatusFetcher-20241122_084931_01494_si7eg.0.5.1-3508	io.trino.server.remotetask.RequestErrorTracker	Error getting task status 20241122_084931_01494_si7eg.0.5.1: Failed communicating with server: http://100.115.13.2:8080/v1/task/20241122_084931_01494_si7eg.0.5.1/status: http://100.115.13.2:8080/v1/task/20241122_084931_01494_si7eg.0.5.1
2024-11-22T08:50:00.840Z	WARN	ContinuousTaskStatusFetcher-20241122_084931_01494_si7eg.0.12.1-3612	io.trino.server.remotetask.RequestErrorTracker	Error getting task status 20241122_084931_01494_si7eg.0.12.1: Failed communicating with server: http://100.115.4.4:8080/v1/task/20241122_084931_01494_si7eg.0.12.1/status: http://100.115.4.4:8080/v1/task/20241122_084931_01494_si7eg.0.12.1
2024-11-22T08:50:00.840Z	WARN	TaskInfoFetcher-20241122_084931_01494_si7eg.0.12.1-2777	io.trino.server.remotetask.RequestErrorTracker	Error getting info for task 20241122_084931_01494_si7eg.0.12.1: Failed communicating with server: http://100.115.4.4:8080/v1/task/20241122_084931_01494_si7eg.0.12.1?summarize: http://100.115.4.4:8080/v1/task/20241122_084931_01494_si7eg.0.12.1
2024-11-22T08:50:00.840Z	WARN	ContinuousTaskStatusFetcher-20241122_084931_01494_si7eg.0.4.1-3609	io.trino.server.remotetask.RequestErrorTracker	Error getting task status 20241122_084931_01494_si7eg.0.4.1: Failed communicating with server: http://100.115.8.2:8080/v1/task/20241122_084931_01494_si7eg.0.4.1/status: http://100.115.8.2:8080/v1/task/20241122_084931_01494_si7eg.0.4.1
2024-11-22T08:50:00.840Z	WARN	UpdateResponseHandler-20241122_084931_01494_si7eg.0.12.1-3508	io.trino.server.remotetask.RequestErrorTracker	Error updating task 20241122_084931_01494_si7eg.0.12.1: Failed communicating with server: http://100.115.4.4:8080/v1/task/20241122_084931_01494_si7eg.0.12.1?summarize: http://100.115.4.4:8080/v1/task/20241122_084931_01494_si7eg.0.12.1
2024-11-22T08:50:00.841Z	WARN	UpdateResponseHandler-20241122_084931_01494_si7eg.0.7.1-3609	io.trino.server.remotetask.RequestErrorTracker	Error updating task 20241122_084931_01494_si7eg.0.7.1: Failed communicating with server: http://100.115.6.2:8080/v1/task/20241122_084931_01494_si7eg.0.7.1?summarize: http://100.115.6.2:8080/v1/task/20241122_084931_01494_si7eg.0.7.1
2024-11-22T08:50:00.841Z	WARN	ContinuousTaskStatusFetcher-20241122_084931_01494_si7eg.0.13.1-3508	io.trino.server.remotetask.RequestErrorTracker	Error getting task status 20241122_084931_01494_si7eg.0.13.1: Failed communicating with server: http://100.115.5.2:8080/v1/task/20241122_084931_01494_si7eg.0.13.1/status: http://100.115.5.2:8080/v1/task/20241122_084931_01494_si7eg.0.13.1
2024-11-22T08:50:00.841Z	WARN	UpdateResponseHandler-20241122_084931_01494_si7eg.0.13.1-2777	io.trino.server.remotetask.RequestErrorTracker	Error updating task 20241122_084931_01494_si7eg.0.13.1: Failed communicating with server: http://100.115.5.2:8080/v1/task/20241122_084931_01494_si7eg.0.13.1?summarize: http://100.115.5.2:8080/v1/task/20241122_084931_01494_si7eg.0.13.1
2024-11-22T08:50:00.841Z	WARN	TaskInfoFetcher-20241122_084931_01494_si7eg.0.13.1-3609	io.trino.server.remotetask.RequestErrorTracker	Error getting info for task 20241122_084931_01494_si7eg.0.13.1: Failed communicating with server: http://100.115.5.2:8080/v1/task/20241122_084931_01494_si7eg.0.13.1?summarize: http://100.115.5.2:8080/v1/task/20241122_084931_01494_si7eg.0.13.1
2024-11-22T08:50:00.841Z	WARN	ContinuousTaskStatusFetcher-20241122_084931_01494_si7eg.0.13.1-3609	io.trino.server.remotetask.RequestErrorTracker	Error getting task status 20241122_084931_01494_si7eg.0.13.1: Failed communicating with server: http://100.115.5.2:8080/v1/task/20241122_084931_01494_si7eg.0.13.1/status: http://100.115.5.2:8080/v1/task/20241122_084931_01494_si7eg.0.13.1
2024-11-22T08:50:00.842Z	WARN	UpdateResponseHandler-20241122_084931_01494_si7eg.0.5.1-2709	io.trino.server.remotetask.RequestErrorTracker	Error updating task 20241122_084931_01494_si7eg.0.5.1: Failed communicating with server: http://100.115.13.2:8080/v1/task/20241122_084931_01494_si7eg.0.5.1?summarize: http://100.115.13.2:8080/v1/task/20241122_084931_01494_si7eg.0.5.1
2024-11-22T08:50:00.842Z	WARN	UpdateResponseHandler-20241122_084931_01494_si7eg.0.13.1-3508	io.trino.server.remotetask.RequestErrorTracker	Error updating task 20241122_084931_01494_si7eg.0.13.1: Failed communicating with server: http://100.115.5.2:8080/v1/task/20241122_084931_01494_si7eg.0.13.1?summarize: http://100.115.5.2:8080/v1/task/20241122_084931_01494_si7eg.0.13.1
2024-11-22T08:50:05.835Z	WARN	UpdateResponseHandler-20241122_084931_01494_si7eg.0.2.1-2709	io.trino.server.remotetask.RequestErrorTracker	Error updating task 20241122_084931_01494_si7eg.0.2.1: Failed communicating with server: http://100.115.3.2:8080/v1/task/20241122_084931_01494_si7eg.0.2.1?summarize: http://100.115.3.2:8080/v1/task/20241122_084931_01494_si7eg.0.2.1
2024-11-22T08:50:05.835Z	WARN	TaskInfoFetcher-20241122_084931_01494_si7eg.0.2.1-3520	io.trino.server.remotetask.RequestErrorTracker	Error getting info for task 20241122_084931_01494_si7eg.0.2.1: Failed communicating with server: http://100.115.3.2:8080/v1/task/20241122_084931_01494_si7eg.0.2.1?summarize: http://100.115.3.2:8080/v1/task/20241122_084931_01494_si7eg.0.2.1
2024-11-22T08:50:05.836Z	ERROR	remote-task-callback-465	io.trino.execution.scheduler.PipelinedStageExecution	Pipelined stage execution for stage 20241122_084931_01494_si7eg.0 failed
io.trino.spi.TrinoTransportException: Encountered too many errors talking to a worker node. The node may have crashed or be under too much load. This is probably a transient issue, so please retry your query in a few minutes. (updating task http://100.115.3.2:8080/v1/task/20241122_084931_01494_si7eg.0.2.1 - 3 failures, failure duration 5.00s, total failed request time 9.95s)
	at io.trino.server.remotetask.RequestErrorTracker.requestFailed(RequestErrorTracker.java:127)
	at io.trino.server.remotetask.HttpRemoteTask$UpdateResponseHandler.failed(HttpRemoteTask.java:1178)
	at io.trino.server.remotetask.SimpleHttpResponseHandler.onFailure(SimpleHttpResponseHandler.java:85)
	at com.google.common.util.concurrent.Futures$CallbackListener.run(Futures.java:1127)
	at io.airlift.concurrent.BoundedExecutor.drainQueue(BoundedExecutor.java:79)
	at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
	at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
	at java.base/java.lang.Thread.run(Thread.java:833)
	Suppressed: java.io.UncheckedIOException: Failed communicating with server: http://100.115.3.2:8080/v1/task/20241122_084931_01494_si7eg.0.2.1?summarize
		at io.airlift.http.client.ResponseHandlerUtils.propagate(ResponseHandlerUtils.java:22)

	at org.eclipse.jetty.util.thread.strategy.AdaptiveExecutionStrategy.lambda$new$0(AdaptiveExecutionStrategy.java:140)
	at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(ReservedThreadExecutor.java:411)
	at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:969)
	at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.doRunJob(QueuedThreadPool.java:1194)
	at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(QueuedThreadPool.java:1149)
	... 1 more
Caused by: java.net.NoRouteToHostException: No route to host
	at java.base/sun.nio.ch.Net.pollConnect(Native Method)
	at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)
	at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946)
	at org.eclipse.jetty.io.SelectorManager.doFinishConnect(SelectorManager.java:341)
	at org.eclipse.jetty.io.ManagedSelector.processConnect(ManagedSelector.java:344)
	... 10 more


2024-11-22T08:54:48.532Z	ERROR	page-buffer-client-callback-7	io.trino.operator.HttpPageBufferClient	Request to delete http://100.115.3.2:8080/v1/task/20241122_084931_01494_si7eg.0.14.0/results/0 failed java.io.UncheckedIOException: Failed communicating with server: http://100.115.3.2:8080/v1/task/20241122_084931_01494_si7eg.0.14.0/results/0
2024-11-22T08:54:48.947Z	ERROR	page-buffer-client-callback-12	io.trino.operator.HttpPageBufferClient	Request to delete http://100.115.13.2:8080/v1/task/20241122_084931_01494_si7eg.0.0.0/results/0 failed java.io.UncheckedIOException: Failed communicating with server: http://100.115.13.2:8080/v1/task/20241122_084931_01494_si7eg.0.0.0/results/0
2024-11-22T08:54:49.603Z	ERROR	page-buffer-client-callback-9	io.trino.operator.HttpPageBufferClient	Request to delete http://100.115.4.4:8080/v1/task/20241122_084931_01494_si7eg.0.1.0/results/0 failed java.io.UncheckedIOException: Failed communicating with server: http://100.115.4.4:8080/v1/task/20241122_084931_01494_si7eg.0.1.0/results/0
2024-11-22T08:54:49.912Z	ERROR	page-buffer-client-callback-4	io.trino.operator.HttpPageBufferClient	Request to delete http://100.115.5.2:8080/v1/task/20241122_084931_01494_si7eg.0.4.0/results/0 failed java.io.UncheckedIOException: Failed communicating with server: http://100.115.5.2:8080/v1/task/20241122_084931_01494_si7eg.0.4.0/results/0
2024-11-22T08:54:50.228Z	ERROR	page-buffer-client-callback-3	io.trino.operator.HttpPageBufferClient	Request to delete http://100.115.6.2:8080/v1/task/20241122_084931_01494_si7eg.0.10.0/results/0 failed java.io.UncheckedIOException: Failed communicating with server: http://100.115.6.2:8080/v1/task/20241122_084931_01494_si7eg.0.10.0/results/0
2024-11-22T08:54:50.725Z	ERROR	page-buffer-client-callback-15	io.trino.operator.HttpPageBufferClient	Request to delete http://100.115.8.2:8080/v1/task/20241122_084931_01494_si7eg.0.2.0/results/0 failed java.io.UncheckedIOException: Failed communicating with server: http://100.115.8.2:8080/v1/task/20241122_084931_01494_si7eg.0.2.0/results/0
2024-11-22T08:55:00.263Z	WARN	dispatcher-query-135	io.trino.execution.scheduler.PipelinedQueryScheduler	Reported task failure: 20241122_084931_01494_si7eg.0.12.1
io.trino.operator.PageTransportTimeoutException: Encountered too many errors talking to a worker node. The node may have crashed or be under too much load. This is probably a transient issue, so please retry your query in a few minutes. (http://100.115.4.4:8080/v1/task/20241122_084931_01494_si7eg.0.12.1/results/0/0 - 89 failures, failure duration 300.54s, total failed request time 304.42s)
	at io.trino.operator.HttpPageBufferClient$1.onFailure(HttpPageBufferClient.java:504)
	at com.google.common.util.concurrent.Futures$CallbackListener.run(Futures.java:1127)
	at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
	at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
	at java.base/java.lang.Thread.run(Thread.java:833)
Caused by: java.io.UncheckedIOException: Failed communicating with server: http://100.115.4.4:8080/v1/task/20241122_084931_01494_si7eg.0.12.1/results/0/0
	at io.airlift.http.client.ResponseHandlerUtils.propagate(ResponseHandlerUtils.java:22)

2024-11-22T08:55:03.181Z	ERROR	page-buffer-client-callback-4	io.trino.operator.HttpPageBufferClient	Request to delete http://100.115.6.2:8080/v1/task/20241122_084931_01494_si7eg.0.7.1/results/0 failed java.util.concurrent.CancellationException: Task was cancelled.
2024-11-22T08:55:03.181Z	ERROR	page-buffer-client-callback-2	io.trino.operator.HttpPageBufferClient	Request to delete http://100.115.8.2:8080/v1/task/20241122_084931_01494_si7eg.0.4.1/results/0 failed java.util.concurrent.CancellationException: Task was cancelled.
2024-11-22T08:55:03.181Z	ERROR	page-buffer-client-callback-15	io.trino.operator.HttpPageBufferClient	Request to delete http://100.115.13.2:8080/v1/task/20241122_084931_01494_si7eg.0.5.1/results/0 failed java.util.concurrent.CancellationException: Task was cancelled.
2024-11-22T08:55:03.181Z	ERROR	page-buffer-client-callback-1	io.trino.operator.HttpPageBufferClient	Request to delete http://100.115.4.4:8080/v1/task/20241122_084931_01494_si7eg.0.12.1/results/0 failed java.util.concurrent.CancellationException: Task was cancelled.
2024-11-22T08:55:03.181Z	ERROR	page-buffer-client-callback-6	io.trino.operator.HttpPageBufferClient	Request to delete http://100.115.5.2:8080/v1/task/20241122_084931_01494_si7eg.0.13.1/results/0 failed java.util.concurrent.CancellationException: Task was cancelled.
2024-11-22T08:55:03.181Z	ERROR	page-buffer-client-callback-3	io.trino.operator.HttpPageBufferClient	Request to delete http://100.115.3.2:8080/v1/task/20241122_084931_01494_si7eg.0.2.1/results/0 failed java.util.concurrent.CancellationException: Task was cancelled.
2024-11-22T08:55:03.182Z	INFO	dispatcher-query-136	io.trino.event.QueryMonitor	TIMELINE: Query 20241122_084931_01494_si7eg :: FINISHED :: elapsed 331901ms :: planning 9123ms :: waiting 291ms :: scheduling 727ms :: running 56712ms :: finishing 265339ms :: begin 2024-11-22T08:49:31.279Z :: end 2024-11-22T08:55:03.180Z
2024-11-22T08:55:25.361Z	INFO	dispatcher-query-139	io.trino.event.QueryMonitor	TIMELINE: Query 20241122_085503_01495_si7eg :: FINISHED :: elapsed 21978ms :: planning 8002ms :: waiting 419ms :: scheduling 724ms :: running 13218ms :: finishing 34ms :: begin 2024-11-22T08:55:03.369Z :: end 2024-11-22T08:55:25.347Z
2024-11-22T08:55:49.493Z	INFO	dispatcher-query-141	io.trino.event.QueryMonitor	TIMELINE: Query 20241122_085525_01496_si7eg :: FINISHED :: elapsed 23919ms :: planning 8487ms :: waiting 315ms :: scheduling 646ms :: running 14698ms :: finishing 88ms :: begin 2024-11-22T08:55:25.572Z :: end 2024-11-22T08:55:49.491Z
2024-11-22T08:56:17.153Z	INFO	dispatcher-query-140	io.trino.event.QueryMonitor	TIMELINE: Query 20241122_085549_01497_si7eg :: FINISHED :: elapsed 27435ms :: planning 11391ms :: waiting 426ms :: scheduling 728ms :: running 15246ms :: finishing 70ms :: begin 2024-11-22T08:55:49.710Z :: end 2024-11-22T08:56:17.145Z
2024-11-22T08:56:43.832Z	INFO	dispatcher-query-142	io.trino.event.QueryMonitor	TIMELINE: Query 20241122_085617_01498_si7eg :: FINISHED :: elapsed 26477ms :: planning 11245ms :: waiting 433ms :: scheduling 741ms :: running 14469ms :: finishing 22ms :: begin 2024-11-22T08:56:17.351Z :: end 2024-11-22T08:56:43.828Z

@dwolfeu
Copy link
Member Author

dwolfeu commented Nov 26, 2024

Also related? #18467

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

No branches or pull requests

2 participants