Delete old nodes
- cleanup will delete nodes that are older than 3 days
This commit is contained in:
parent
65211703c0
commit
ca297cafed
|
@ -21,6 +21,7 @@ inventorySets (clears then reloads data out of sql database)
|
||||||
It cleans these tables on the disk:
|
It cleans these tables on the disk:
|
||||||
inventory (clears expired objects)
|
inventory (clears expired objects)
|
||||||
pubkeys (clears pubkeys older than 4 weeks old which we have not used personally)
|
pubkeys (clears pubkeys older than 4 weeks old which we have not used personally)
|
||||||
|
knownNodes (clears addresses which have not been online for over 3 days)
|
||||||
|
|
||||||
It resends messages when there has been no response:
|
It resends messages when there has been no response:
|
||||||
resends getpubkey messages in 5 days (then 10 days, then 20 days, etc...)
|
resends getpubkey messages in 5 days (then 10 days, then 20 days, etc...)
|
||||||
|
@ -80,6 +81,17 @@ class singleCleaner(threading.Thread, StoppableThread):
|
||||||
elif status == 'msgsent':
|
elif status == 'msgsent':
|
||||||
resendMsg(ackData)
|
resendMsg(ackData)
|
||||||
|
|
||||||
|
# cleanup old nodes
|
||||||
|
now = int(time.time())
|
||||||
|
toDelete = []
|
||||||
|
shared.knownNodesLock.acquire()
|
||||||
|
for stream in shared.knownNodes:
|
||||||
|
for node in shared.knownNodes[stream].keys():
|
||||||
|
if now - shared.knownNodes[stream][node] > 259200: # 3 days
|
||||||
|
shared.needToWriteKownNodesToDisk = True
|
||||||
|
del shared.knownNodes[stream][node]
|
||||||
|
shared.knownNodesLock.release()
|
||||||
|
|
||||||
# Let us write out the knowNodes to disk if there is anything new to write out.
|
# Let us write out the knowNodes to disk if there is anything new to write out.
|
||||||
if shared.needToWriteKnownNodesToDisk:
|
if shared.needToWriteKnownNodesToDisk:
|
||||||
shared.knownNodesLock.acquire()
|
shared.knownNodesLock.acquire()
|
||||||
|
|
Loading…
Reference in New Issue
Block a user