3

我用twisted 做了一个服务。在我搬到新服务器之前,一切都很好。现在,当收到新数据时,我的服务会断开大部分连接。旧服务器安装了 32 位 Windows XP,而新服务器是 Intel 服务器上的 VMWare VM,安装了 Windows Server 2008 64 位。两台服务器上的 Python 和扭曲版本是相同的。

在这里您可以看到问题的一个片段:

ConnectionLost reason is: Connection to the other side was lost in a non-clean fashion.

Python 版本为 2.7.5,Twisted 12.3

这是示例代码:

# -*- coding: utf-8 -*-
from twisted.internet import protocol, reactor
from twisted.python import log

class GreenProtocol(protocol.Protocol):

def __init__(self):
    self.ip = ''
    self.port = 0

def connectionMade(self):
    self.ip = self.transport.getPeer().host
    self.port = self.transport.getPeer().port
    log.msg("[{0}:{1}] NEW CONNECTION".format(self.ip, self.port))  

def dataReceived(self, data):
    log.msg("[{0}:{1}] DATA".format(self.ip,         self.port))                                    

def connectionLost(self, reason):
    log.msg("[{0}:{1}] CONNECTION LOST".format(self.ip, self.port)) 

class GreenFactory(protocol.ServerFactory):
    protocol = GreenProtocol

if __name__ == '__main__':
    factory = GreenFactory()
    reactor.listenTCP(5678, factory)
    log.startLogging(DailyLogFile('log.txt', 'logs'), setStdout=False)
    reactor.run()

建立连接后,每个客户端都会发送一条消息。但仅记录 5-10 条消息中的 1 条。大多数客户端在发送消息后失去连接并且服务器没有收到消息。

显然,原因是:

Connection to the other side was lost in a non-clean fashion: read error -- unknown (64)

PS:我认为这不是扭曲的错,因为当我用嗅探器听时,我会得到相同的结果。

PPS:大约有 700 个客户端,其中只有 70-100 个可以发送数据,所有其他连接都被丢弃。

4

1 回答 1

1

I found the solution. The problem was that, provider changed tariff plan without any notice. New tariff plan limited the maximum number of connections.

于 2013-09-21T08:18:29.740 回答