I am starting off using the eventlet concurrent networking module for Python and i am currently having some issues regarding my code. I am trying to fetch data from multiple servers in parallel. Before, i was using the standard python socket module but soon blew it off because it would take about 5 minutes to fetch data from 1000 servers. The server/client communication is based on the UDP protocol. To be exact, i am trying to send my packets to every server(about 1000 servers) and all the while listen for a response from all of them in parallel for amazing speeds. Like i said, i am trying to improve the speed of my code by utilizing eventlet. Thank you for taking your time to help me with my struggles. Much is appreciated! Here is my current code. For the record, aIW3 is a python module that allows you to interact with Quake3Protocol servers. It is available here: http://code.google.com/p/aiw3/

from eventlet.green import socket
import eventlet
import aIW3
import time

eventlet.monkey_patch(socket=True, select=True)


class aIWClient(aIW3.aiw):

def __init__(self, SOCK):
    aIW3.aiw.__init__(self)
    self.conn = SOCK
    self.counter = 0
    self.responses = {}

def recv(self, timeout):
    self.conn.settimeout(timeout)
    try:
        return self.conn.recv(4096)
    except:
        return False

def parse_packet(self, data):
    if data != None:
        self.responses[str(self.counter)] = repr(data)
        self.counter += 1
        print len(self.responses)

def execute(self, retries=100, timeout=1):
    while retries:
        try:
            data = self.recv(timeout)
        except:
            data = None
        if data:
            return self.parse_packet(data)
        retries -= 1
    #raise Exception('Server response timed out')



class Connection(object):
def __init__(self, serverlist):
    self.s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
    self.servers = serverlist
    self.pile = eventlet.GreenPile()
    self.__load__()

@classmethod
def Reflection(cls, SOCK):
    client = aIWClient(SOCK)
    client.execute()

def __load__(self):
    self.packet_prefix = "\xff" * 4

def run(self):
    for item in self.servers:
        host, port = item.split(":")
        port = int(port)
        self.send_packet("getstatus", (host, port))
        self.pile.spawn(Connection.Reflection, self.s)
    #for server, result in zip(self.servers, self.pile):
     #   print "%s: %s" % (server, repr(result))

def send_packet(self, data, host):
    """self-explanatory."""
    self.s.sendto('%s%s\n' % (self.packet_prefix, data), host)



handle = aIW3.aiw()
_list = handle.grab_server_list()[:300]
print len(_list)
o = Connection(_list)
o.run()

As a side note, for some reason the class method parse_packet is not storing the returned data in the dictionary like its supposed to. Any ideas to why this might be happening?

link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.