Python Forum
faster socket with multiprocessing.Pipe
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
faster socket with multiprocessing.Pipe
#1
I have a socket receiving a TCP stream that WAS getting bottle necked with some of the processing.  I fixed the problem by giving the socket it's own dedicated process with multiprocessing.Process and having it pass its received data to other processes via multiprocessing.Pipe.  It works but it's really ugly and just feels wrong.  Is there a better way to do this?  
from multiprocessing import Pipe, Process
from multiprocessing.manager import SyncManager
import socket, signal

def mySock(HOST,PORT,pipe_tx):
    sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
    sock.connect((HOST, PORT))
    try:
        while True:
            data_chunk = sock.recv(4096)
            pipe_tx.send(data_chunk)
    except KeyboardInterrupt:
        print "mySock received KeyboardInterrupt"
    finally:
         if not isinstance(sock,_sock, socket._closedsocket):
            sock.close()


def worker(pipe_rx):
    ''''this worker receives data from pipe_rx and processes it''''
    pass

def init_mgr():
    '''initialize the process manager'''
    signal.signal(signal.SIGINT, signal.SIG_IGN)

if __name__ == "__main__":
    HOST, PORT = "localhost", 12345
    processes = []

    manager = SyncManager()
    manager.start(init_mgr)

    # simplex pipe
    pipe_rx, pipe_tx = Pipe()

    try:
        # Socket process
        p  = Process(target=mySock, args=(HOST, PORT, pipe_tx))
        p.daemon = True
        p.start()
        processes.append(p)

        # worker process
        p = Process(target=worker, args=(pipe_rx,)
        p.daemon = True
        p.start()
        processes.append(p)
     
        try:
            for process in processes:
                process.join()
        except KeyboardInterrupt:
            print "keyboardInterrupt in __main__"

    finally manager.shutdown()
Reply
#2
I'd be interested in seeing the original code, before you resorted to multiprocessing. Unless it's a lot of data on the line, I don't think you should have needed to do that.
Reply
#3
(Dec-06-2016, 07:55 PM)nilamo Wrote: I'd be interested in seeing the original code, before you resorted to multiprocessing.  Unless it's a lot of data on the line, I don't think you should have needed to do that.
I have a lot of code.  Lets pretend my code is already about as efficient as can be and does require the 10 post-process processors.  Is there an ideal way to read variable length block data from a socket and get it to the post processors?
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Pipe traceback to a C program Alexandros 0 676 Oct-22-2024, 12:32 PM
Last Post: Alexandros
  BrokenPipeError: [Errno 32] Broken pipe throwaway34 6 17,624 May-06-2021, 05:39 AM
Last Post: throwaway34
  2 or more processes on the write end of the same pipe Skaperen 4 5,741 Sep-27-2020, 06:41 PM
Last Post: Skaperen
  multiprocessing Pipe.poll very slow seandepagnier 0 3,046 Mar-09-2020, 03:10 AM
Last Post: seandepagnier
  Filtering an interactive CLI command via pipe(s) Skaperen 2 4,995 Nov-23-2016, 09:17 AM
Last Post: Skaperen

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020