Network subsystem freezing fixes
- queues were too short - some error handling was missing - remove nonblocking repeats in receive data thread - singleCleaner shouldn't wait unnecessarily
This commit is contained in:
parent
4f70eaa01f
commit
ba130e03e5
|
@ -195,7 +195,7 @@ class outgoingSynSender(threading.Thread, StoppableThread):
|
|||
self.sock.close()
|
||||
return
|
||||
someObjectsOfWhichThisRemoteNodeIsAlreadyAware = {} # This is not necessairly a complete list; we clear it from time to time to save memory.
|
||||
sendDataThreadQueue = Queue.Queue(100) # Used to submit information to the send data thread for this connection.
|
||||
sendDataThreadQueue = Queue.Queue() # Used to submit information to the send data thread for this connection.
|
||||
|
||||
sd = sendDataThread(sendDataThreadQueue)
|
||||
sd.setup(self.sock, peer.host, peer.port, self.streamNumber,
|
||||
|
|
|
@ -82,7 +82,7 @@ class receiveDataThread(threading.Thread):
|
|||
def run(self):
|
||||
logger.debug('receiveDataThread starting. ID ' + str(id(self)) + '. The size of the shared.connectedHostsList is now ' + str(len(shared.connectedHostsList)))
|
||||
|
||||
while True:
|
||||
while state.shutdown == 0:
|
||||
dataLen = len(self.data)
|
||||
try:
|
||||
ssl = False
|
||||
|
@ -99,12 +99,13 @@ class receiveDataThread(threading.Thread):
|
|||
logger.error ('Timeout occurred waiting for data from ' + str(self.peer) + '. Closing receiveData thread. (ID: ' + str(id(self)) + ')')
|
||||
break
|
||||
except socket.error as err:
|
||||
if err.errno == 2 or (sys.platform == 'win32' and err.errno == 10035) or (sys.platform != 'win32' and err.errno == errno.EWOULDBLOCK):
|
||||
if ssl:
|
||||
select.select([self.sslSock], [], [])
|
||||
else:
|
||||
select.select([self.sock], [], [])
|
||||
continue
|
||||
# if err.errno == 2 or (sys.platform == 'win32' and err.errno == 10035) or (sys.platform != 'win32' and err.errno == errno.EWOULDBLOCK):
|
||||
# if ssl:
|
||||
# select.select([self.sslSock], [], [])
|
||||
# else:
|
||||
# select.select([self.sock], [], [])
|
||||
# logger.error('sock.recv retriable error')
|
||||
# continue
|
||||
logger.error('sock.recv error. Closing receiveData thread (' + str(self.peer) + ', Thread ID: ' + str(id(self)) + ').' + str(err.errno) + "/" + str(err))
|
||||
if self.initiatedConnection and not self.connectionIsOrWasFullyEstablished:
|
||||
shared.timeOffsetWrongCount += 1
|
||||
|
|
|
@ -111,7 +111,8 @@ class singleCleaner(threading.Thread, StoppableThread):
|
|||
os._exit(0)
|
||||
shared.knownNodesLock.release()
|
||||
shared.needToWriteKnownNodesToDisk = False
|
||||
self.stop.wait(300)
|
||||
if state.shutdown == 0:
|
||||
self.stop.wait(300)
|
||||
|
||||
|
||||
def resendPubkeyRequest(address):
|
||||
|
|
|
@ -134,7 +134,7 @@ class singleListener(threading.Thread, StoppableThread):
|
|||
break
|
||||
|
||||
someObjectsOfWhichThisRemoteNodeIsAlreadyAware = {} # This is not necessairly a complete list; we clear it from time to time to save memory.
|
||||
sendDataThreadQueue = Queue.Queue(100) # Used to submit information to the send data thread for this connection.
|
||||
sendDataThreadQueue = Queue.Queue() # Used to submit information to the send data thread for this connection.
|
||||
socketObject.settimeout(20)
|
||||
|
||||
sd = sendDataThread(sendDataThreadQueue)
|
||||
|
|
|
@ -171,7 +171,8 @@ class PendingDownload(object):
|
|||
pass
|
||||
for objectHash in unreachableObjects:
|
||||
with self.lock:
|
||||
del self.hashes[objectHash]
|
||||
if objectHash in self.hashes:
|
||||
del self.hashes[objectHash]
|
||||
# logger.debug("Pull took %.3f seconds", time.time() - start)
|
||||
return objectHashes
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user