运行无限过程,检查多处理队列以进行处理

时间:2019-06-07 05:22:01

标签: python python-3.x asynchronous parallel-processing threadpool

该程序分为三个部分:将数据添加到队列,处理队列中的数据以及检查队列是否为空。除Add()外,每个部分都有自己的过程。该程序应该像这样运行,当我们启动它时,

  • 它应该继续检查队列,如果其中有任何内容在运行该函数,或者不继续运行。

  • 同时,可以将异步数据添加到队列中,并且它应该像前面所述运行作业
  • 一次只能从队列中处理一件事情。

    我正在使用Windows,并且一直在获取

    TypeError: can't pickle _thread.lock objects
    

    这是代码

    from multiprocessing import Queue,Process
    from time import sleep
    import threading
    from multiprocessing.pool import ThreadPool
    from multiprocessing import dummy as multithreading
    import concurrent.futures
    
    # import queue
    class A(object):
        def __init__(self, *args, **kwargs):
            self.Q = Queue()
    
    #Add data to queue: should be accessable all time
        def Add(self, i):
            # q = Queue()
            self.Q.put(threading.Thread(target=self.printAns(i)))
    
    #Processes the data: runs only upon call
        def printAns(self,name):
            print("Name to print is: ",name)
            return 'completed'
    
    #This function call printANS as a process
        def jobRun(self):
            # job = self.Q.get()
            # ans = Queue()
            jobThread = self.Q.get()
            async_result = jRPool.apply_async(jobThread)
            print(async_result.get())
    
    #Checks if the queue has anything: checker functions needs to run constantly
        def checkQueue(self):
            while True:
                if self.Q.empty():
                    pass
                else:
                    return True
    
    #should initiate call to checker upon success calls jobRun() as a process and go back to checking
        def run(self):
            with concurrent.futures.ProcessPoolExecutor() as executor:
                checkfunc = executor.map(self.checkQueue)
                while True:
                    if checkfunc:
                        sleep(1)
                        executor.map(self.jobRun)
                        self.Q.close()  
    
    
    
    
    if __name__ == '__main__':
        a = A()
        a.Add("test1")
        a.Add("test2")
        a.run()
        # a.Add("this")
        while True:
            data = input("Enter a string: ")
            a.Add(data)
    

    任何帮助都深表感谢。我的预感与锁或信号灯有关。

    1 个答案:

    答案 0 :(得分:0)

    如果我正确理解了您的要求,这种事情可能对您有用。

    • compute是在远程进程中调用的函数。现在,它只是打印处理事物的工作人员的PID,并打印出字符串的每个字母。这样一来,您可以看到流程并行工作。
    • taskspoll_results线程应跟踪的任务对象的列表。
    • poll_results是在主要流程中运行的threading.Thread目标;它会忙于循环tasks中的任务,并在准备好后立即打印结果值。
    import os
    import time
    import threading
    from multiprocessing import Pool
    
    
    def compute(value):
        for ch in value:
            print(os.getpid(), ch)
            time.sleep(0.05)
        return (value, len(value))
    
    
    tasks = []
    
    
    def poll_results():
        while True:
            for task in tasks[:]:
                if task.ready():
                    print("Task finished:", task.get())
                    tasks.remove(task)
    
    
    def main():
        poller_thread = threading.Thread(target=poll_results)
        poller_thread.start()
    
        with Pool() as p:
            t1 = p.apply_async(compute, ("hello",))
            t2 = p.apply_async(compute, ("world",))
            # Wait for the first results before entering the loop
            t1.wait()
            t2.wait()
    
            while True:
                data = input("Enter a string: ")
                tasks.append(p.apply_async(compute, (data,)))
    
    
    if __name__ == "__main__":
        main()
    

    这里的输出类似于

    65755 h
    65756 w
    65755 e
    65756 o
    65755 l
    65756 r
    65755 l
    65756 l
    65755 o
    65756 d
    Enter a string: Hello, world!
    Enter a string: 65757 H
    65757 e
    65757 l
    65757 l
    65757 o
    65757 ,
    65757
    65757 w
    65757 o
    65757 r
    65757 l
    65757 d
    65757 !
    Task finished: ('Hello, world!', 13)
    

    请注意IO是如何交错的(即使在处理任务之前,您也会收到第二个“输入字符串”提示,并且两个工作人员会尽可能打印出hello和world的字母)。

    相关问题