-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
(Torrent) Downloader connections after sync is complete? #6876
Comments
No free cheese. You can download data only because other members of network (synced) seeding it for you. And you will seed for others. Snapshots storing real useful data (old blocks) - so, seeding them means same as “seeding old blocks” by p2p protocol. |
Thanks for clarification! 🙏 Maybe a thing to improve is documentation? I was really wondering about the excessive DNS queries for torrent trackers. I can make a proposal and open a PR if you like. |
There is ~7 hostnames of trackers - don’t know why need much dns requests |
Seems not looks as coincidence: 30K / 8h / 60m / 60sec = 1 |
That is concerning! I think Go doesn't do any DNS caching of its own, it's normal to provide this at the system level. What OS are you running on? I did break this precedent for anacrolix/dht in https://github.com/anacrolix/dht/blob/master/dns.go. I think it would be okay to use a similar strategy in anacrolix/torrent for trackers. I'm curious if anyone has more insight into how this is normally handled (like system level should be fine). |
This issue is stale because it has been open for 40 days with no activity. Remove stale label or comment, or this will be closed in 7 days. |
This issue was closed because it has been stalled for 7 days with no activity. |
I'd like to be able to limit these requests. My ISP doesn't like it and my modem gets bogged down after a few days of seeding. I've tried reducing with Any way to reduce the network impact? So far for me the only solution to restore my network is to completely power down my modem and reset it. When can we have I'd love to keep seeding cause it's important for Erigon users. But I may simply have to resort to |
Please open or reference an issue at anacrolix/torrent for this! |
@luncht1me do you see same problem if re-compile erigon with For more info see: golang/go#30310 |
This issue is stale because it has been open for 40 days with no activity. Remove stale label or comment, or this will be closed in 7 days. |
This issue was closed because it has been stalled for 7 days with no activity. |
i have the same problem, more as 20 Queries per second and 460,000 queries per day #9330 |
duplicate of #5145 |
I would have used the Discord option as stated in the template for "Ask a question" but the link is not working. Therefore I ask the question here:
Is the downloader after the inital staged sync still required?
If not, and that would be my guess, why are there so many DNS queries for torrent trackers (see this post #5145)? For me it would only make sense to have the downloader active and query the trackers if it is still in use. Is this really the case? If not maybe this could result in an improvement to disable the downloader after sync?
The text was updated successfully, but these errors were encountered: