Skip to content

fix(pubsub): Event queue becoming too long #886

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

Merged
merged 1 commit into from
Dec 14, 2023
Merged

Conversation

msbrogli
Copy link
Member

@msbrogli msbrogli commented Dec 2, 2023

Motivation

In the sync-v1 process, there's a bottleneck occurring due to the differing speeds of data processing and data arrival. Firstly, the sync_v1_agent.send_data_queue.priority_queue is unable to process transactions as quickly as they arrive. This discrepancy results in the queue continuously expanding throughout the synchronization process, keeping references to BaseTransaction objects.

In addition, each set of blocks received by sync-v1 triggers approximately 200 events in the pubsub system. However, similar to the first issue, the event queue processes these transactions at a slower rate than their arrival rate. Consequently, this queue also grows continually during synchronization, maintaining references to BaseTransaction objects.

Both of these issues contribute to a critical memory management problem. Since these queues hold onto references to vertices, the garbage collector is unable to free up the memory space that these objects occupy.

For context, when operating a full node on my local computer (a MacBook), it initially consumed 3.19 GB of memory while processing 450,000 vertices. After this fix, the memory usage significantly decreased to just 0.62 GB. I also checked the number of blocks in memory every 25,000 blocks and this number was always between 800 and 2,000.

Useful commands:

import gc
from hathor.transaction import Block
from sys import getrefcount

gcl = gc.get_objects()
gcl_blocks = [x for x in gcl if isinstance(x, Block)]
print('blocks', len(gcl_blocks))

blk = gcl_blocks[10]
print('height', blk.get_height())
print('refs', getrefcount(blk))

refs = gc.get_referrers(blk)
refs[0]
from IPython import start_ipython
start_ipython(argv=[], user_ns={
    'manager': self,
})

Acceptance Criteria

  • Include here all things that this PR should solve

Checklist

  • If you are requesting a merge into master, confirm this code is production-ready and can be included in future releases as soon as it gets merged

@msbrogli msbrogli self-assigned this Dec 2, 2023
@msbrogli msbrogli requested a review from jansegre as a code owner December 2, 2023 05:53
@jansegre jansegre changed the base branch from master to release-candidate December 5, 2023 13:58
Copy link
Member

@jansegre jansegre left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

PR looks good to me but some tests in tests/event/test_event_manager.py seem to break

@jansegre
Copy link
Member

jansegre commented Dec 6, 2023

It ran much better and the node got further with less memory use, it got to about 1.9M blocks, with ~10GB of memory use, it didn't die, but it's stuck trying to download some transactions, this is what the log looks like:

2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=000003f7c0755f5a5170ca82e540c8b01fb3972619410b9da2b214e1e49899b6
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=000003f7c0755f5a5170ca82e540c8b01fb3972619410b9da2b214e1e49899b6
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=0000000000000000061dfccee33ca1545b6d9a50687029fe5d8e4c5bd2648001
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=0000000000000000061dfccee33ca1545b6d9a50687029fe5d8e4c5bd2648001
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=0000000000000000061dfccee33ca1545b6d9a50687029fe5d8e4c5bd2648001
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=0000000000000000061dfccee33ca1545b6d9a50687029fe5d8e4c5bd2648001
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=000000002cc0634e0d7c54e44d7f641b9fe322a820b76a9a62ccc0917e65807c
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=000000002cc0634e0d7c54e44d7f641b9fe322a820b76a9a62ccc0917e65807c
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=000000002cc0634e0d7c54e44d7f641b9fe322a820b76a9a62ccc0917e65807c
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=000000002cc0634e0d7c54e44d7f641b9fe322a820b76a9a62ccc0917e65807c
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=00000000000000000566ebaf69f1ec46b19b69b27ef71a95db474745e5cd3c5e
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=00000000000000000566ebaf69f1ec46b19b69b27ef71a95db474745e5cd3c5e
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=00000000000000000566ebaf69f1ec46b19b69b27ef71a95db474745e5cd3c5e
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=00000000000000000566ebaf69f1ec46b19b69b27ef71a95db474745e5cd3c5e
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=000000000000000008c30fb11ab2fabae64b303b001c331fae759f74d176d31f
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=000000000000000008c30fb11ab2fabae64b303b001c331fae759f74d176d31f
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=000000000000000008c30fb11ab2fabae64b303b001c331fae759f74d176d31f
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=000000000000000008c30fb11ab2fabae64b303b001c331fae759f74d176d31f
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=00000000000000000aa71cc72ce9e7d0ee1ea61954b7bb0c28a20c3445e2e9e5
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=00000000000000000aa71cc72ce9e7d0ee1ea61954b7bb0c28a20c3445e2e9e5
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=00000000000000000aa71cc72ce9e7d0ee1ea61954b7bb0c28a20c3445e2e9e5
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=00000000000000000aa71cc72ce9e7d0ee1ea61954b7bb0c28a20c3445e2e9e5
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=00002ab006dc583dfd5367a9f57cf4883bc688ad2f57ebba7df927816b6f16da
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=00002ab006dc583dfd5367a9f57cf4883bc688ad2f57ebba7df927816b6f16da
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=00002ab006dc583dfd5367a9f57cf4883bc688ad2f57ebba7df927816b6f16da
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=00002ab006dc583dfd5367a9f57cf4883bc688ad2f57ebba7df927816b6f16da
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=00000000000000000721ff858844bcf360144dc990e338da59032b65101f6ff8
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=00000000000000000721ff858844bcf360144dc990e338da59032b65101f6ff8
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=00000000000000000721ff858844bcf360144dc990e338da59032b65101f6ff8
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=00000000000000000721ff858844bcf360144dc990e338da59032b65101f6ff8
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=000000000000000002f2efde447451d06c80cf36643df67403e32c0fd856f77e
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=000000000000000002f2efde447451d06c80cf36643df67403e32c0fd856f77e
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=000000000000000002f2efde447451d06c80cf36643df67403e32c0fd856f77e
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=000000000000000002f2efde447451d06c80cf36643df67403e32c0fd856f77e
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=0000000000000000097af85b1d04f3e285be6bbb0a0bfaf5459185517c641cfa
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=0000000000000000097af85b1d04f3e285be6bbb0a0bfaf5459185517c641cfa
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=0000000000000000097af85b1d04f3e285be6bbb0a0bfaf5459185517c641cfa
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=0000000000000000097af85b1d04f3e285be6bbb0a0bfaf5459185517c641cfa
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=00000000000000000b4c339771aff4a9fb08dbb4fcea23e5eb5c47a9f97dc776
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=00000000000000000b4c339771aff4a9fb08dbb4fcea23e5eb5c47a9f97dc776
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=00000000000000000b4c339771aff4a9fb08dbb4fcea23e5eb5c47a9f97dc776
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=00000000000000000b4c339771aff4a9fb08dbb4fcea23e5eb5c47a9f97dc776
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=000000000000000003327900b2b9de8a6cce4786853c68ff79f6198d897f40e2
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=000000000000000003327900b2b9de8a6cce4786853c68ff79f6198d897f40e2
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=000000000000000003327900b2b9de8a6cce4786853c68ff79f6198d897f40e2
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=000000000000000003327900b2b9de8a6cce4786853c68ff79f6198d897f40e2
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=00000000000000000481fbe4ed620d9eaed96c4ee6cfd1448e63085340a66c2a
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=00000000000000000481fbe4ed620d9eaed96c4ee6cfd1448e63085340a66c2a
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=00000000000000000481fbe4ed620d9eaed96c4ee6cfd1448e63085340a66c2a
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=00000000000000000481fbe4ed620d9eaed96c4ee6cfd1448e63085340a66c2a
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=000000193453575a7d1b9fa14a3d416e8e741c47827b5b8dc47ede7d2b61749e
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=000000193453575a7d1b9fa14a3d416e8e741c47827b5b8dc47ede7d2b61749e
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=000000193453575a7d1b9fa14a3d416e8e741c47827b5b8dc47ede7d2b61749e
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=000000193453575a7d1b9fa14a3d416e8e741c47827b5b8dc47ede7d2b61749e
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=000000000000000006365779072308284dc6c6d73d6e4ceadd4ac1dc1901882e
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=000000000000000006365779072308284dc6c6d73d6e4ceadd4ac1dc1901882e
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=000000000000000006365779072308284dc6c6d73d6e4ceadd4ac1dc1901882e
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=000000000000000006365779072308284dc6c6d73d6e4ceadd4ac1dc1901882e
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=0000000000000000074118fba463e3592e5abe37c8b0739a66fcaab666ce5337
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=0000000000000000074118fba463e3592e5abe37c8b0739a66fcaab666ce5337
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=0000000000000000074118fba463e3592e5abe37c8b0739a66fcaab666ce5337
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=0000000000000000074118fba463e3592e5abe37c8b0739a66fcaab666ce5337
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=000000f87523e6bb35badec294138eda1d70aacb0ce18f7cb8254e77d9b3ab80
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=000000f87523e6bb35badec294138eda1d70aacb0ce18f7cb8254e77d9b3ab80
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=000000f87523e6bb35badec294138eda1d70aacb0ce18f7cb8254e77d9b3ab80
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=000000f87523e6bb35badec294138eda1d70aacb0ce18f7cb8254e77d9b3ab80
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=00000000000000000307327b457cddb597ebcee9d51756b88d915e96817ff0c0
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=00000000000000000307327b457cddb597ebcee9d51756b88d915e96817ff0c0
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=00000000000000000307327b457cddb597ebcee9d51756b88d915e96817ff0c0
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=00000000000000000307327b457cddb597ebcee9d51756b88d915e96817ff0c0
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=0000000000000000060f1ca113cc21060c05fff0cafc41a6da2d988fec697722
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=0000000000000000060f1ca113cc21060c05fff0cafc41a6da2d988fec697722
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=0000000000000000060f1ca113cc21060c05fff0cafc41a6da2d988fec697722
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=0000000000000000060f1ca113cc21060c05fff0cafc41a6da2d988fec697722
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=000000009161d442da9065e072a54cbd44bfa3706138d252d850c9c32e27e79d
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=000000009161d442da9065e072a54cbd44bfa3706138d252d850c9c32e27e79d
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=000000009161d442da9065e072a54cbd44bfa3706138d252d850c9c32e27e79d
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=000000009161d442da9065e072a54cbd44bfa3706138d252d850c9c32e27e79d
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=00000000fdc830f81a3609eebd2bbf1797a71ad5a1c7a9d345e6a9a8caa6cbfa
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=00000000fdc830f81a3609eebd2bbf1797a71ad5a1c7a9d345e6a9a8caa6cbfa
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=00000000fdc830f81a3609eebd2bbf1797a71ad5a1c7a9d345e6a9a8caa6cbfa
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=00000000fdc830f81a3609eebd2bbf1797a71ad5a1c7a9d345e6a9a8caa6cbfa
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=0000000000000000034af765b5b6e651a4ade2464a9d2443ee4f9961080a0548
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=0000000000000000034af765b5b6e651a4ade2464a9d2443ee4f9961080a0548
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=0000000000000000034af765b5b6e651a4ade2464a9d2443ee4f9961080a0548
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=0000000000000000034af765b5b6e651a4ade2464a9d2443ee4f9961080a0548
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=000000000000000004b5089a106bab6e9f05bc2112bd8b8b89a7edfdd95619f8
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=000000000000000004b5089a106bab6e9f05bc2112bd8b8b89a7edfdd95619f8
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=000000000000000004b5089a106bab6e9f05bc2112bd8b8b89a7edfdd95619f8
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=000000000000000004b5089a106bab6e9f05bc2112bd8b8b89a7edfdd95619f8
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=000000004cca53be925fb5201a36782f65cce199043339f78bf2c476b18ed1a0
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=000000004cca53be925fb5201a36782f65cce199043339f78bf2c476b18ed1a0
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=000000004cca53be925fb5201a36782f65cce199043339f78bf2c476b18ed1a0
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=000000004cca53be925fb5201a36782f65cce199043339f78bf2c476b18ed1a0
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=00000e864a8c6b7a87ac38009ea9894ef3856a00143f62fabe7224492100d1b3
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=00000e864a8c6b7a87ac38009ea9894ef3856a00143f62fabe7224492100d1b3
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=00000e864a8c6b7a87ac38009ea9894ef3856a00143f62fabe7224492100d1b3
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=00000e864a8c6b7a87ac38009ea9894ef3856a00143f62fabe7224492100d1b3
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=000000000000000007a2cfa88e075ff1dda88c8cdb03e22720c32ecf001b9390
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=000000000000000007a2cfa88e075ff1dda88c8cdb03e22720c32ecf001b9390
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=000000000000000007a2cfa88e075ff1dda88c8cdb03e22720c32ecf001b9390
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=000000000000000007a2cfa88e075ff1dda88c8cdb03e22720c32ecf001b9390
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=000000000000000004b562b914b70ffc3bc931bbb60db504be29a6503c88e1e8
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=000000000000000004b562b914b70ffc3bc931bbb60db504be29a6503c88e1e8
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=000000000000000004b562b914b70ffc3bc931bbb60db504be29a6503c88e1e8
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=000000000000000004b562b914b70ffc3bc931bbb60db504be29a6503c88e1e8
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=000000003b4d8cd944f2e47bc9074efe862d7cb7e92c465e9fa4d97b271802ad
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=000000003b4d8cd944f2e47bc9074efe862d7cb7e92c465e9fa4d97b271802ad
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=000000003b4d8cd944f2e47bc9074efe862d7cb7e92c465e9fa4d97b271802ad
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=000000003b4d8cd944f2e47bc9074efe862d7cb7e92c465e9fa4d97b271802ad
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=00000000b27989a68911720b6d8d5a070061f95f9b5cb67264f39facdf23fa7b
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=00000000b27989a68911720b6d8d5a070061f95f9b5cb67264f39facdf23fa7b
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=00000000b27989a68911720b6d8d5a070061f95f9b5cb67264f39facdf23fa7b
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=00000000b27989a68911720b6d8d5a070061f95f9b5cb67264f39facdf23fa7b
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=000043fd83edcf7ba3d4a6a1354831af2b19f77db932d6416589bc9899f74ccb
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=000043fd83edcf7ba3d4a6a1354831af2b19f77db932d6416589bc9899f74ccb
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=000043fd83edcf7ba3d4a6a1354831af2b19f77db932d6416589bc9899f74ccb
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=000043fd83edcf7ba3d4a6a1354831af2b19f77db932d6416589bc9899f74ccb
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=000000000000000001918c12a429a1291c0b1fd5bb2c4ac07a0a43e15ca88fa5
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=000000000000000001918c12a429a1291c0b1fd5bb2c4ac07a0a43e15ca88fa5
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=000000000000000001918c12a429a1291c0b1fd5bb2c4ac07a0a43e15ca88fa5
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=000000000000000001918c12a429a1291c0b1fd5bb2c4ac07a0a43e15ca88fa5
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=0000727ab4322c6abeab93b520458beffa464d4d82e629aa32fc1d135ceb3f6c
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=0000727ab4322c6abeab93b520458beffa464d4d82e629aa32fc1d135ceb3f6c
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=0000727ab4322c6abeab93b520458beffa464d4d82e629aa32fc1d135ceb3f6c
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=0000727ab4322c6abeab93b520458beffa464d4d82e629aa32fc1d135ceb3f6c
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=000000007121e5ebf5e0a892ccca7a5925c04be4e3fee5897592524dc121353d
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=000000007121e5ebf5e0a892ccca7a5925c04be4e3fee5897592524dc121353d
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=000000007121e5ebf5e0a892ccca7a5925c04be4e3fee5897592524dc121353d
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=000000007121e5ebf5e0a892ccca7a5925c04be4e3fee5897592524dc121353d
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=00000000000000000993f36994e9c6e1353f3d8277ce21059b3d85c6f46f6b78
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=00000000000000000993f36994e9c6e1353f3d8277ce21059b3d85c6f46f6b78
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=00000000000000000993f36994e9c6e1353f3d8277ce21059b3d85c6f46f6b78
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=00000000000000000993f36994e9c6e1353f3d8277ce21059b3d85c6f46f6b78
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=00000000c9a81eed956ab5ba47ad48720263750f6ff9dab0e7bdebc1ba3a67e6
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=00000000c9a81eed956ab5ba47ad48720263750f6ff9dab0e7bdebc1ba3a67e6
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=00000000c9a81eed956ab5ba47ad48720263750f6ff9dab0e7bdebc1ba3a67e6
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=00000000c9a81eed956ab5ba47ad48720263750f6ff9dab0e7bdebc1ba3a67e6
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=0000000028900e6020325759ab901d89def3ece5d0e3da5e6e34a5d44645148b
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=0000000028900e6020325759ab901d89def3ece5d0e3da5e6e34a5d44645148b
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=0000000028900e6020325759ab901d89def3ece5d0e3da5e6e34a5d44645148b
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=0000000028900e6020325759ab901d89def3ece5d0e3da5e6e34a5d44645148b
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=0000000017af936b4be612c9f47657d8522f614d70248bf98988eac7865cc7e3
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=0000000017af936b4be612c9f47657d8522f614d70248bf98988eac7865cc7e3
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=0000000017af936b4be612c9f47657d8522f614d70248bf98988eac7865cc7e3
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=0000000017af936b4be612c9f47657d8522f614d70248bf98988eac7865cc7e3
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=00000000000000000ec26691a1a266de530a85011f5f28415d0a8451e23e1511
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=00000000000000000ec26691a1a266de530a85011f5f28415d0a8451e23e1511
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=00000000000000000ec26691a1a266de530a85011f5f28415d0a8451e23e1511
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=00000000000000000ec26691a1a266de530a85011f5f28415d0a8451e23e1511
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=000000000000000003e47c9f58fe08181b12b3cff8389cb3e08af642acc96e58
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=000000000000000003e47c9f58fe08181b12b3cff8389cb3e08af642acc96e58
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=000000000000000003e47c9f58fe08181b12b3cff8389cb3e08af642acc96e58
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=000000000000000003e47c9f58fe08181b12b3cff8389cb3e08af642acc96e58
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=0000000000000000020f158a58adcca8878079d6c1ba8f3b184d21ce1fa358ca
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=0000000000000000020f158a58adcca8878079d6c1ba8f3b184d21ce1fa358ca
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=0000000000000000020f158a58adcca8878079d6c1ba8f3b184d21ce1fa358ca
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=0000000000000000020f158a58adcca8878079d6c1ba8f3b184d21ce1fa358ca
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=00000000000000000582ffc128f642b87c29d033b9114a66ac7592581a2fed4d
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=00000000000000000582ffc128f642b87c29d033b9114a66ac7592581a2fed4d
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=00000000000000000582ffc128f642b87c29d033b9114a66ac7592581a2fed4d
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=00000000000000000582ffc128f642b87c29d033b9114a66ac7592581a2fed4d
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=0000000000000000058bf9de5b6b5970ed3494678e3702cf966c87b09e1bef04
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=0000000000000000058bf9de5b6b5970ed3494678e3702cf966c87b09e1bef04
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=0000000000000000058bf9de5b6b5970ed3494678e3702cf966c87b09e1bef04
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=0000000000000000058bf9de5b6b5970ed3494678e3702cf966c87b09e1bef04
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=00000000602a2b4492fff4b5326108cd4db92b2ceff86ff3bd42312d650498e0
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=00000000602a2b4492fff4b5326108cd4db92b2ceff86ff3bd42312d650498e0
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=00000000602a2b4492fff4b5326108cd4db92b2ceff86ff3bd42312d650498e0
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=00000000602a2b4492fff4b5326108cd4db92b2ceff86ff3bd42312d650498e0
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=0000036226e6adc7ec38ef01bf1412fdfcd4a76e99baff934bd718d10d274612
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=0000036226e6adc7ec38ef01bf1412fdfcd4a76e99baff934bd718d10d274612
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=0000036226e6adc7ec38ef01bf1412fdfcd4a76e99baff934bd718d10d274612
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=0000036226e6adc7ec38ef01bf1412fdfcd4a76e99baff934bd718d10d274612
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=00000000935c6234bf2617039a4dac2df1e038381db3d790002ea0e555f132e2
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=00000000935c6234bf2617039a4dac2df1e038381db3d790002ea0e555f132e2
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=00000000935c6234bf2617039a4dac2df1e038381db3d790002ea0e555f132e2
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=00000000935c6234bf2617039a4dac2df1e038381db3d790002ea0e555f132e2
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=000000000000000004c38e229ca36522e3d819707f1ac4fceaaa71c747bd34da
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=000000000000000004c38e229ca36522e3d819707f1ac4fceaaa71c747bd34da
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=000000000000000004c38e229ca36522e3d819707f1ac4fceaaa71c747bd34da
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=000000000000000004c38e229ca36522e3d819707f1ac4fceaaa71c747bd34da
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=00000000df870f0471995f01173fcae5cad8b747d5d289ae509f7cb829428b25
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=00000000df870f0471995f01173fcae5cad8b747d5d289ae509f7cb829428b25
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=00000000df870f0471995f01173fcae5cad8b747d5d289ae509f7cb829428b25
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=00000000df870f0471995f01173fcae5cad8b747d5d289ae509f7cb829428b25
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=000000005dc04fe5ee619debe7971a98b5cb888603870986c54d634502547351
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=000000005dc04fe5ee619debe7971a98b5cb888603870986c54d634502547351
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=000000005dc04fe5ee619debe7971a98b5cb888603870986c54d634502547351
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=000000005dc04fe5ee619debe7971a98b5cb888603870986c54d634502547351
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=00000000000000000688c94642a8f18cf0b5c0e9b21155f5054443b71255c91c
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=00000000000000000688c94642a8f18cf0b5c0e9b21155f5054443b71255c91c
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=00000000000000000688c94642a8f18cf0b5c0e9b21155f5054443b71255c91c
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=00000000000000000688c94642a8f18cf0b5c0e9b21155f5054443b71255c91c
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=00006858a9ab7deb6abb647f02e08342ba0f091800fcdfea481ec1b79b02b2ea
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=00006858a9ab7deb6abb647f02e08342ba0f091800fcdfea481ec1b79b02b2ea
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=00006858a9ab7deb6abb647f02e08342ba0f091800fcdfea481ec1b79b02b2ea
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=00006858a9ab7deb6abb647f02e08342ba0f091800fcdfea481ec1b79b02b2ea
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=00000000bc2d86d3c783e33f9160fc76fc7ef75274b077419ed99644ebd7e723
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=00000000bc2d86d3c783e33f9160fc76fc7ef75274b077419ed99644ebd7e723
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=00000000bc2d86d3c783e33f9160fc76fc7ef75274b077419ed99644ebd7e723
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=00000000bc2d86d3c783e33f9160fc76fc7ef75274b077419ed99644ebd7e723
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=0000000068860a4086897135fc6a448a5d1f4f3bd20c241581bd6dff4d4bc042
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=0000000068860a4086897135fc6a448a5d1f4f3bd20c241581bd6dff4d4bc042
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=0000000068860a4086897135fc6a448a5d1f4f3bd20c241581bd6dff4d4bc042
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=0000000068860a4086897135fc6a448a5d1f4f3bd20c241581bd6dff4d4bc042
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=0000000000000000038aaba78ac649180a0fdaee16e540c089653f693c19fcef
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=0000000000000000038aaba78ac649180a0fdaee16e540c089653f693c19fcef
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=0000000000000000038aaba78ac649180a0fdaee16e540c089653f693c19fcef
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=0000000000000000038aaba78ac649180a0fdaee16e540c089653f693c19fcef
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=000000000000000005647b8524c38234dd6c3bb6448d616939ced386857fd737
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=000000000000000005647b8524c38234dd6c3bb6448d616939ced386857fd737
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=000000000000000005647b8524c38234dd6c3bb6448d616939ced386857fd737
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=000000000000000005647b8524c38234dd6c3bb6448d616939ced386857fd737
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=000002f4771e404551166768ea634abc68d1e80357656895a42ea40c77d7c229
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=000002f4771e404551166768ea634abc68d1e80357656895a42ea40c77d7c229
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=000002f4771e404551166768ea634abc68d1e80357656895a42ea40c77d7c229
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=000002f4771e404551166768ea634abc68d1e80357656895a42ea40c77d7c229
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=0000000000000000065cc0693a84a585e050bd5b9c7cfc09688a430b5e92f80c
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=0000000000000000065cc0693a84a585e050bd5b9c7cfc09688a430b5e92f80c
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=0000000000000000065cc0693a84a585e050bd5b9c7cfc09688a430b5e92f80c
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=0000000000000000065cc0693a84a585e050bd5b9c7cfc09688a430b5e92f80c
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=0000000000000000000b7198baf9e61620e28e30c3eccd35bb0f98f649a71738
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=0000000000000000000b7198baf9e61620e28e30c3eccd35bb0f98f649a71738
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=0000000000000000000b7198baf9e61620e28e30c3eccd35bb0f98f649a71738
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=0000000000000000000b7198baf9e61620e28e30c3eccd35bb0f98f649a71738
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=0000000000000000067c4c3fdbf34748d0745f55771ddbb1c72ad5f0d870e0df
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=0000000000000000067c4c3fdbf34748d0745f55771ddbb1c72ad5f0d870e0df
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=0000000000000000067c4c3fdbf34748d0745f55771ddbb1c72ad5f0d870e0df
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=0000000000000000067c4c3fdbf34748d0745f55771ddbb1c72ad5f0d870e0df
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=0000000000000000025ee42f12769386dd261016a35cc380f47caac284275715
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=0000000000000000025ee42f12769386dd261016a35cc380f47caac284275715
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=0000000000000000025ee42f12769386dd261016a35cc380f47caac284275715
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=0000000000000000025ee42f12769386dd261016a35cc380f47caac284275715
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=000000000000000001f772c0984fabc4907709fee2f7f61aeca5e89326dc567b
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=000000000000000001f772c0984fabc4907709fee2f7f61aeca5e89326dc567b
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=000000000000000001f772c0984fabc4907709fee2f7f61aeca5e89326dc567b
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=000000000000000001f772c0984fabc4907709fee2f7f61aeca5e89326dc567b
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=000000000000000000a7dd63e56d8514cb0390632812bc3eef296b544ad0fa1b
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=000000000000000000a7dd63e56d8514cb0390632812bc3eef296b544ad0fa1b
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=000000000000000000a7dd63e56d8514cb0390632812bc3eef296b544ad0fa1b
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=000000000000000000a7dd63e56d8514cb0390632812bc3eef296b544ad0fa1b
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=000000000000000000482a0ea4b6d4e9a70de259bf675bd44060e1ae5fb26377
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=000000000000000000482a0ea4b6d4e9a70de259bf675bd44060e1ae5fb26377
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=000000000000000000482a0ea4b6d4e9a70de259bf675bd44060e1ae5fb26377
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=000000000000000000482a0ea4b6d4e9a70de259bf675bd44060e1ae5fb26377
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=00000000000000000308eaa9496a81776f3ebcd191f37f4058180fd4bf8f6855
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=00000000000000000308eaa9496a81776f3ebcd191f37f4058180fd4bf8f6855
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=00000000000000000308eaa9496a81776f3ebcd191f37f4058180fd4bf8f6855
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=00000000000000000308eaa9496a81776f3ebcd191f37f4058180fd4bf8f6855
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=0000000000000000019d9fd16aa14701396230d4dcd9e6c5bcae58a498d67cd6
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=0000000000000000019d9fd16aa14701396230d4dcd9e6c5bcae58a498d67cd6
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=0000000000000000019d9fd16aa14701396230d4dcd9e6c5bcae58a498d67cd6
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=0000000000000000019d9fd16aa14701396230d4dcd9e6c5bcae58a498d67cd6
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=00000000000000000267d156a08cd93b2afa9c968624c6b5066a95438dee97d0
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=00000000000000000267d156a08cd93b2afa9c968624c6b5066a95438dee97d0
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=00000000000000000267d156a08cd93b2afa9c968624c6b5066a95438dee97d0
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=00000000000000000267d156a08cd93b2afa9c968624c6b5066a95438dee97d0
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=00000000d97be9707f4d9f8a39d044229d9b3db75eb702e8794ee512b7311625
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=00000000d97be9707f4d9f8a39d044229d9b3db75eb702e8794ee512b7311625
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=00000000d97be9707f4d9f8a39d044229d9b3db75eb702e8794ee512b7311625
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=00000000d97be9707f4d9f8a39d044229d9b3db75eb702e8794ee512b7311625
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=000010c89a7894b79a272c9ede6d46cc33a755172f759d504676a85ca1225b68
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=000010c89a7894b79a272c9ede6d46cc33a755172f759d504676a85ca1225b68
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=000010c89a7894b79a272c9ede6d46cc33a755172f759d504676a85ca1225b68
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=000010c89a7894b79a272c9ede6d46cc33a755172f759d504676a85ca1225b68
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=00000000000000000afef6d916515deea951785fa81c676f1c97e89df1e209ff
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=00000000000000000afef6d916515deea951785fa81c676f1c97e89df1e209ff
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=00000000000000000afef6d916515deea951785fa81c676f1c97e89df1e209ff
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=00000000000000000afef6d916515deea951785fa81c676f1c97e89df1e209ff
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=000000000000000005ba392536f573907187c31dd08f106397383d95e8e0a690
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=000000000000000005ba392536f573907187c31dd08f106397383d95e8e0a690
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=000000000000000005ba392536f573907187c31dd08f106397383d95e8e0a690
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=000000000000000005ba392536f573907187c31dd08f106397383d95e8e0a690
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=000000000000000006704b8bcb66e9f625e3dfdec5b7fb1d180ef6809bbccf39
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=000000000000000006704b8bcb66e9f625e3dfdec5b7fb1d180ef6809bbccf39
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=000000000000000006704b8bcb66e9f625e3dfdec5b7fb1d180ef6809bbccf39
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=000000000000000006704b8bcb66e9f625e3dfdec5b7fb1d180ef6809bbccf39
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=00000000000000000103365bdb6219d5e7e4df3710e57e965ab1d48139b95152
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=00000000000000000103365bdb6219d5e7e4df3710e57e965ab1d48139b95152
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=00000000000000000103365bdb6219d5e7e4df3710e57e965ab1d48139b95152
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=00000000000000000103365bdb6219d5e7e4df3710e57e965ab1d48139b95152
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=00000000250572e5392c9720915d13ecc6ffbe492616ff4be217ed6722af79d3
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=00000000250572e5392c9720915d13ecc6ffbe492616ff4be217ed6722af79d3
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=00000000250572e5392c9720915d13ecc6ffbe492616ff4be217ed6722af79d3
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=00000000250572e5392c9720915d13ecc6ffbe492616ff4be217ed6722af79d3
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=00000000000000000342337364cdc520251d5ec0226d37610c1de705a040f4af
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=00000000000000000342337364cdc520251d5ec0226d37610c1de705a040f4af
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=00000000000000000342337364cdc520251d5ec0226d37610c1de705a040f4af
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=00000000000000000342337364cdc520251d5ec0226d37610c1de705a040f4af
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=000000000000000003a4255e442d00317ee01a9e50a8b40460457429bedb4263
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=000000000000000003a4255e442d00317ee01a9e50a8b40460457429bedb4263
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=000000000000000003a4255e442d00317ee01a9e50a8b40460457429bedb4263
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=000000000000000003a4255e442d00317ee01a9e50a8b40460457429bedb4263
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=00000000000000000202b53825c0db29d2d12882b84fb388ed4ab619215c9cf2
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=00000000000000000202b53825c0db29d2d12882b84fb388ed4ab619215c9cf2
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=00000000000000000202b53825c0db29d2d12882b84fb388ed4ab619215c9cf2
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=00000000000000000202b53825c0db29d2d12882b84fb388ed4ab619215c9cf2
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=00000398de3d81eb199bc0e2b71bd72091831d6588ea0d3526280e1da320423d
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=00000398de3d81eb199bc0e2b71bd72091831d6588ea0d3526280e1da320423d
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=00000398de3d81eb199bc0e2b71bd72091831d6588ea0d3526280e1da320423d
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=00000398de3d81eb199bc0e2b71bd72091831d6588ea0d3526280e1da320423d
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=00000000000000000ab7627783eb67ad334e9b068e1b825fda4c48141032ce19
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=00000000000000000ab7627783eb67ad334e9b068e1b825fda4c48141032ce19
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=00000000000000000ab7627783eb67ad334e9b068e1b825fda4c48141032ce19
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=00000000000000000ab7627783eb67ad334e9b068e1b825fda4c48141032ce19
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=000000000000000004e33521a1618a938ed5fa1b03195bf1cda4d1178c691442
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=000000000000000004e33521a1618a938ed5fa1b03195bf1cda4d1178c691442
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=000000000000000004e33521a1618a938ed5fa1b03195bf1cda4d1178c691442
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=000000000000000004e33521a1618a938ed5fa1b03195bf1cda4d1178c691442
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=00000000000000000c2471daba2ed12a0796c3321e61d1ce562c8ec66e7790b6
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=00000000000000000c2471daba2ed12a0796c3321e61d1ce562c8ec66e7790b6
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=00000000000000000c2471daba2ed12a0796c3321e61d1ce562c8ec66e7790b6
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=00000000000000000c2471daba2ed12a0796c3321e61d1ce562c8ec66e7790b6
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=000000000000000004bb8a4fefcfe790ac05f4c079353065a0e1dc28f188cf8e
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=000000000000000004bb8a4fefcfe790ac05f4c079353065a0e1dc28f188cf8e
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=000000000000000004bb8a4fefcfe790ac05f4c079353065a0e1dc28f188cf8e
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=000000000000000004bb8a4fefcfe790ac05f4c079353065a0e1dc28f188cf8e
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=00000000000000000a31d90889002e2f84ed6e080edcb2b5c05e4b688ad3ab65
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=00000000000000000a31d90889002e2f84ed6e080edcb2b5c05e4b688ad3ab65
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=00000000000000000a31d90889002e2f84ed6e080edcb2b5c05e4b688ad3ab65
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=00000000000000000a31d90889002e2f84ed6e080edcb2b5c05e4b688ad3ab65
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=000000007bc6920914747c36640c4ec2d827d85c2642af7c32435fb3e2a708fa
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=000000007bc6920914747c36640c4ec2d827d85c2642af7c32435fb3e2a708fa
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=000000007bc6920914747c36640c4ec2d827d85c2642af7c32435fb3e2a708fa
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=000000007bc6920914747c36640c4ec2d827d85c2642af7c32435fb3e2a708fa
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=000000000000000002aea705c002926c494f6687a6699d332378c2bfc59fb03e
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=000000000000000002aea705c002926c494f6687a6699d332378c2bfc59fb03e
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=000000000000000002aea705c002926c494f6687a6699d332378c2bfc59fb03e
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=000000000000000002aea705c002926c494f6687a6699d332378c2bfc59fb03e
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=0000000000000000070b052f5b6af1790a62f63c1e8238e3fc89a5b8fddc7d45
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=0000000000000000070b052f5b6af1790a62f63c1e8238e3fc89a5b8fddc7d45
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=0000000000000000070b052f5b6af1790a62f63c1e8238e3fc89a5b8fddc7d45
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=0000000000000000070b052f5b6af1790a62f63c1e8238e3fc89a5b8fddc7d45
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=00000000000000000ae134b2ffed7314e7e687be518d2afb43e30451314f6909
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=00000000000000000ae134b2ffed7314e7e687be518d2afb43e30451314f6909
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=00000000000000000ae134b2ffed7314e7e687be518d2afb43e30451314f6909
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=00000000000000000ae134b2ffed7314e7e687be518d2afb43e30451314f6909
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=000000000000000002f25c38b23aad927d17e1e71d8f359fcce7d896c100d281
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=000000000000000002f25c38b23aad927d17e1e71d8f359fcce7d896c100d281
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=000000000000000002f25c38b23aad927d17e1e71d8f359fcce7d896c100d281
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=000000000000000002f25c38b23aad927d17e1e71d8f359fcce7d896c100d281
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=000000005bca8c01c38b7f67566efb9c63f0976b00df9731cff087e86441908e
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=000000005bca8c01c38b7f67566efb9c63f0976b00df9731cff087e86441908e
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=000000005bca8c01c38b7f67566efb9c63f0976b00df9731cff087e86441908e
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=000000005bca8c01c38b7f67566efb9c63f0976b00df9731cff087e86441908e
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=000000000000000002950689ccf6c48e1c54faeedb90ba4cf71e37d95db2b1df
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=000000000000000002950689ccf6c48e1c54faeedb90ba4cf71e37d95db2b1df
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=000000000000000002950689ccf6c48e1c54faeedb90ba4cf71e37d95db2b1df
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=000000000000000002950689ccf6c48e1c54faeedb90ba4cf71e37d95db2b1df
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=00000000000000000063a7b52a35651e5b452a24cda6d9787bc66a76f6886419
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=00000000000000000063a7b52a35651e5b452a24cda6d9787bc66a76f6886419
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=00000000000000000063a7b52a35651e5b452a24cda6d9787bc66a76f6886419
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=00000000000000000063a7b52a35651e5b452a24cda6d9787bc66a76f6886419
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=00000003b82efa931ba7a577e6047de30902f9006054e44239d31e23420a6615
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=00000003b82efa931ba7a577e6047de30902f9006054e44239d31e23420a6615
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=00000003b82efa931ba7a577e6047de30902f9006054e44239d31e23420a6615
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=00000003b82efa931ba7a577e6047de30902f9006054e44239d31e23420a6615
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=0000000000000000045c2abedcbdc1acfd832a2a1f3ac8d0726b88ea15da2902
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=0000000000000000045c2abedcbdc1acfd832a2a1f3ac8d0726b88ea15da2902
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=0000000000000000045c2abedcbdc1acfd832a2a1f3ac8d0726b88ea15da2902
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=0000000000000000045c2abedcbdc1acfd832a2a1f3ac8d0726b88ea15da2902
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=0000000000000000006e5a62e178ffb6d86cf00832f72bd1b535e1f601b05dae
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=0000000000000000006e5a62e178ffb6d86cf00832f72bd1b535e1f601b05dae
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=0000000000000000006e5a62e178ffb6d86cf00832f72bd1b535e1f601b05dae
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.agent] failed to download tx          peer_id=c141032 reason=<twisted.python.failure.Failure twisted.internet.defer.CancelledError: > remote=3.123.153.34:40403 tx=0000000000000000006e5a62e178ffb6d86cf00832f72bd1b535e1f601b05dae
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=000000008ed41bdc80cd70495df7e342c7a6d10474271e733c6f117fdd07c3a4
2023-12-06 14:18:56 [warning  ] [hathor.p2p.sync_v1.downloader] no new connections available to download the tx from tx=000000008ed41bdc80cd70495df7e342c7a6d10474271e733c6f117fdd07c3a4

@jansegre
Copy link
Member

jansegre commented Dec 6, 2023

This is also another relevant exception that happened, not sure if it's related to the changes in this PR though:

{"tx": "0000000000000000075374164d3b5ce932f3d60d8c415a85224541e88c80f1b8", "event": "no new connections available to download the tx from", "logger": "hathor.p2p.sync_v1.downloader", "level": "warning", "timestamp": "2023-12-06 14:17:56"}
{"tx": "0000000000000000075374164d3b5ce932f3d60d8c415a85224541e88c80f1b8", "event": "no new connections available to download the tx from", "logger": "hathor.p2p.sync_v1.downloader", "level": "warning", "timestamp": "2023-12-06 14:17:56"}
return callWithContext({"system": lp}, func, *args, **kw)
File "/usr/local/lib/python3.10/site-packages/twisted/python/log.py", line 80, in callWithContext
return context.call({ILogContext: newCtx}, func, *args, **kw)
File "/usr/local/lib/python3.10/site-packages/twisted/python/context.py", line 117, in callWithContext
return self.currentContext().callWithContext(ctx, func, *args, **kw)
File "/usr/local/lib/python3.10/site-packages/twisted/python/context.py", line 82, in callWithContext
return func(*args, **kw)
File "/usr/local/lib/python3.10/site-packages/twisted/internet/posixbase.py", line 500, in _doReadOrWrite
self._disconnectSelectable(selectable, why, inRead)
File "/usr/local/lib/python3.10/site-packages/twisted/internet/posixbase.py", line 104, in _disconnectSelectable
selectable.connectionLost(f)
File "/usr/local/lib/python3.10/site-packages/twisted/internet/tcp.py", line 508, in connectionLost
self._commonConnection.connectionLost(self, reason)
File "/usr/local/lib/python3.10/site-packages/twisted/internet/tcp.py", line 326, in connectionLost
protocol.connectionLost(reason)
File "/usr/local/lib/python3.10/site-packages/twisted/internet/endpoints.py", line 161, in connectionLost
return self._wrappedProtocol.connectionLost(reason)
File "/usr/local/lib/python3.10/site-packages/twisted/protocols/tls.py", line 399, in connectionLost
ProtocolWrapper.connectionLost(self, reason)
File "/usr/local/lib/python3.10/site-packages/twisted/protocols/policies.py", line 114, in connectionLost
self.wrappedProtocol.connectionLost(reason)
File "/usr/local/lib/python3.10/site-packages/hathor/p2p/protocol.py", line 402, in connectionLost
self.on_disconnect(reason)
File "/usr/local/lib/python3.10/site-packages/hathor/p2p/protocol.py", line 278, in on_disconnect
self.state.on_exit()
File "/usr/local/lib/python3.10/site-packages/hathor/p2p/states/ready.py", line 138, in on_exit
self.sync_agent.stop()
File "/usr/local/lib/python3.10/site-packages/hathor/p2p/sync_v1/agent.py", line 295, in stop
self.downloader.drop_connection(self)
File "/usr/local/lib/python3.10/site-packages/hathor/p2p/sync_v1/downloader.py", line 165, in drop_connection
self._remove_pending_tx(tx_id)
File "/usr/local/lib/python3.10/site-packages/hathor/p2p/sync_v1/downloader.py", line 334, in _remove_pending_tx
self.waiting_deque.remove(tx_id)
File "/usr/local/lib/python3.10/site-packages/hathor/cli/run_node.py", line 232, in signal_usr1_handler
self.manager.connections.disconnect_all_peers(force=True)
File "/usr/local/lib/python3.10/site-packages/hathor/p2p/manager.py", line 350, in disconnect_all_peers
conn.disconnect(force=force)
File "/usr/local/lib/python3.10/site-packages/hathor/p2p/protocol.py", line 354, in disconnect
self.state.prepare_to_disconnect()
File "/usr/local/lib/python3.10/site-packages/hathor/p2p/states/ready.py", line 142, in prepare_to_disconnect
self.sync_agent.stop()
File "/usr/local/lib/python3.10/site-packages/hathor/p2p/sync_v1/agent.py", line 295, in stop
self.downloader.drop_connection(self)
File "/usr/local/lib/python3.10/site-packages/hathor/p2p/sync_v1/downloader.py", line 165, in drop_connection
self._remove_pending_tx(tx_id)
File "/usr/local/lib/python3.10/site-packages/hathor/p2p/sync_v1/downloader.py", line 323, in _remove_pending_tx
self.log.warn('no new connections available to download the tx from', tx=tx_id.hex())
File "/usr/local/lib/python3.10/site-packages/structlog/stdlib.py", line 192, in warning
return self._proxy_to_logger("warning", event, *args, **kw)
File "/usr/local/lib/python3.10/site-packages/structlog/stdlib.py", line 247, in _proxy_to_logger
return super()._proxy_to_logger(method_name, event=event, **event_kw)
File "/usr/local/lib/python3.10/site-packages/structlog/_base.py", line 206, in _proxy_to_logger
return getattr(self._logger, method_name)(*args, **kw)
File "/usr/local/lib/python3.10/logging/__init__.py", line 1489, in warning
self._log(WARNING, msg, args, **kwargs)
File "/usr/local/lib/python3.10/logging/__init__.py", line 1624, in _log
self.handle(record)
File "/usr/local/lib/python3.10/logging/__init__.py", line 1634, in handle
self.callHandlers(record)
File "/usr/local/lib/python3.10/site-packages/sentry_sdk/integrations/logging.py", line 96, in sentry_patched_callhandlers
return old_callhandlers(self, record)
Message: OrderedDict([('tx', '00000000000000000ebba2e3029857dd3d5eb7c5731fb0903baf6372bf6aeced'), ('event', 'no new connections available to download the tx from'), ('logger', 'hathor.p2p.sync_v1.downloader'), ('level', 'warning'), ('timestamp', '2023-12-06 14:17:56')])
Arguments: ()
{"tx": "00000000000000000ebba2e3029857dd3d5eb7c5731fb0903baf6372bf6aeced", "event": "no new connections available to download the tx from", "logger": "hathor.p2p.sync_v1.downloader", "level": "warning", "timestamp": "2023-12-06 14:17:56"}
File "/usr/local/lib/python3.10/runpy.py", line 196, in _run_module_as_main
return _run_code(code, main_globals, None,
File "/usr/local/lib/python3.10/runpy.py", line 86, in _run_code
exec(code, run_globals)
File "/usr/local/lib/python3.10/site-packages/hathor/__main__.py", line 17, in <module>
main.main()
File "/usr/local/lib/python3.10/site-packages/hathor/cli/main.py", line 164, in main
sys.exit(CliManager().execute_from_command_line())
File "/usr/local/lib/python3.10/site-packages/hathor/cli/main.py", line 159, in execute_from_command_line
module.main()
File "/usr/local/lib/python3.10/site-packages/hathor/cli/run_node.py", line 416, in main
RunNode().run()
File "/usr/local/lib/python3.10/site-packages/hathor/cli/run_node.py", line 412, in run
self.reactor.run()
File "/usr/local/lib/python3.10/site-packages/twisted/internet/base.py", line 1318, in run
self.mainLoop()
File "/usr/local/lib/python3.10/site-packages/twisted/internet/base.py", line 1331, in mainLoop
reactorBaseSelf.doIteration(t)
File "/usr/local/lib/python3.10/site-packages/twisted/internet/epollreactor.py", line 244, in doPoll
log.callWithLogger(selectable, _drdw, selectable, fd, event)
Call stack:
Traceback (most recent call last):
File "/usr/local/lib/python3.10/logging/__init__.py", line 1103, in emit
stream.write(msg + self.terminator)
RuntimeError: reentrant call inside <_io.BufferedWriter name='<stderr>'>
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/local/lib/python3.10/logging/__init__.py", line 1103, in emit
stream.write(msg + self.terminator)
File "/usr/local/lib/python3.10/site-packages/hathor/cli/run_node.py", line 230, in signal_usr1_handler
self.log.warn('USR1 received. Killing all connections...')
File "/usr/local/lib/python3.10/site-packages/structlog/stdlib.py", line 192, in warning
return self._proxy_to_logger("warning", event, *args, **kw)
File "/usr/local/lib/python3.10/site-packages/structlog/stdlib.py", line 247, in _proxy_to_logger
return super()._proxy_to_logger(method_name, event=event, **event_kw)
File "/usr/local/lib/python3.10/site-packages/structlog/_base.py", line 206, in _proxy_to_logger
return getattr(self._logger, method_name)(*args, **kw)
File "/usr/local/lib/python3.10/logging/__init__.py", line 1489, in warning
self._log(WARNING, msg, args, **kwargs)
File "/usr/local/lib/python3.10/logging/__init__.py", line 1624, in _log
self.handle(record)
File "/usr/local/lib/python3.10/logging/__init__.py", line 1634, in handle
self.callHandlers(record)
File "/usr/local/lib/python3.10/site-packages/sentry_sdk/integrations/logging.py", line 96, in sentry_patched_callhandlers
return old_callhandlers(self, record)
File "/usr/local/lib/python3.10/logging/__init__.py", line 1696, in callHandlers
hdlr.handle(record)
File "/usr/local/lib/python3.10/logging/__init__.py", line 968, in handle
self.emit(record)
File "/usr/local/lib/python3.10/logging/__init__.py", line 1108, in emit
self.handleError(record)
File "/usr/local/lib/python3.10/logging/__init__.py", line 1021, in handleError
sys.stderr.write('--- Logging error ---\n')
RuntimeError: reentrant call inside <_io.BufferedWriter name='<stderr>'>
--- Logging error ---
{"tx": "00000000000000000ebba2e3029857dd3d5eb7c5731fb0903baf6372bf6aeced", "event": "no new connections available to download the tx from", "logger": "hathor.p2p.sync_v1.downloader", "level": "warning", "timestamp": "2023-12-06 14:17:56"}
{"remote": "3.73.119.138:40403", "peer_id": "62d5484", "tx": "000000000000000008a2069fb97d88145cd89563718da9d0dfe04826bfd1d00d", "reason": "<twisted.python.failure.Failure twisted.internet.defer.CancelledError: >", "event": "failed to download tx", "logger": "hathor.p2p.sync_v1.agent", "level": "warning", "timestamp": "2023-12-06 14:17:56"}
{"remote": "3.73.119.138:40403", "peer_id": "62d5484", "tx": "000000000000000008a2069fb97d88145cd89563718da9d0dfe04826bfd1d00d", "reason": "<twisted.python.failure.Failure twisted.internet.defer.CancelledError: >", "event": "failed to download tx", "logger": "hathor.p2p.sync_v1.agent", "level": "warning", "timestamp": "2023-12-06 14:17:56"}

I think it happened because I forced a p2p reconnect with a USR1 signal. But it shouldn't cause any exceptions.

Copy link

codecov bot commented Dec 8, 2023

Codecov Report

Attention: 2 lines in your changes are missing coverage. Please review.

Comparison is base (5526455) 85.42% compared to head (fc97e7b) 85.29%.

❗ Current head fc97e7b differs from pull request most recent head c4bd15a. Consider uploading reports for the commit c4bd15a to get more accurate results

Files Patch % Lines
hathor/pubsub.py 90.90% 1 Missing and 1 partial ⚠️
Additional details and impacted files
@@            Coverage Diff             @@
##           master     #886      +/-   ##
==========================================
- Coverage   85.42%   85.29%   -0.13%     
==========================================
  Files         282      283       +1     
  Lines       22269    22343      +74     
  Branches     3365     3382      +17     
==========================================
+ Hits        19023    19058      +35     
- Misses       2580     2605      +25     
- Partials      666      680      +14     

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@jansegre jansegre force-pushed the fix/long-queues branch 2 times, most recently from 996132a to 8f7c55b Compare December 8, 2023 22:53
@jansegre jansegre changed the base branch from release-candidate to master December 8, 2023 23:08
@msbrogli msbrogli force-pushed the fix/long-queues branch 5 times, most recently from c119d99 to 068201b Compare December 8, 2023 23:22
@msbrogli msbrogli changed the title fix: Queues becoming too long fix: Event queue becoming too long Dec 8, 2023
jansegre
jansegre previously approved these changes Dec 8, 2023
@msbrogli msbrogli changed the title fix: Event queue becoming too long fix(pubsub): Event queue becoming too long Dec 8, 2023
@msbrogli msbrogli force-pushed the fix/long-queues branch 2 times, most recently from 2d7d58f to 519d92c Compare December 8, 2023 23:25
@jansegre jansegre mentioned this pull request Dec 11, 2023
2 tasks
@jansegre jansegre merged commit 7dded42 into master Dec 14, 2023
@jansegre jansegre deleted the fix/long-queues branch December 14, 2023 21:55
This was referenced Dec 20, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
Archived in project
Development

Successfully merging this pull request may close these issues.

3 participants