আমি উইন্ডোজ মেশিনে থ্রেডিং এবং মাল্টিপ্রসেসিং ব্যবহার করে আমার প্রথম আনুষ্ঠানিক পাইথন প্রোগ্রামটি চেষ্টা করছি। পাইথনটি নিম্নলিখিত বার্তাটি দিয়ে আমি প্রক্রিয়াগুলি চালু করতে অক্ষম। বিষয়টি হ'ল, আমি আমার থ্রেডগুলি মূল মডিউলে চালু করছি না । থ্রেডগুলি একটি শ্রেণীর অভ্যন্তরে একটি পৃথক মডিউলে পরিচালনা করা হয়।
সম্পাদনা করুন : উবুন্টুতে এই কোডটি ঠিকঠাকভাবে চলে। উইন্ডোতে বেশ নয়
RuntimeError:
Attempt to start a new process before the current process
has finished its bootstrapping phase.
This probably means that you are on Windows and you have
forgotten to use the proper idiom in the main module:
if __name__ == '__main__':
freeze_support()
...
The "freeze_support()" line can be omitted if the program
is not going to be frozen to produce a Windows executable.
আমার মূল কোডটি বেশ দীর্ঘ, তবে আমি কোডটির একটি সংক্ষিপ্ত সংস্করণে ত্রুটিটি পুনরুত্পাদন করতে সক্ষম হয়েছি। এটি দুটি ফাইলে বিভক্ত, প্রথমটি মূল মডিউল এবং এটি মডিউলটি আমদানি করা ছাড়া খুব সামান্য কিছু করে যা প্রসেস / থ্রেড পরিচালনা করে এবং একটি পদ্ধতি কল করে। দ্বিতীয় মডিউলটি যেখানে কোডের মাংস।
testMain.py:
import parallelTestModule
extractor = parallelTestModule.ParallelExtractor()
extractor.runInParallel(numProcesses=2, numThreads=4)
parallelTestModule.py:
import multiprocessing
from multiprocessing import Process
import threading
class ThreadRunner(threading.Thread):
""" This class represents a single instance of a running thread"""
def __init__(self, name):
threading.Thread.__init__(self)
self.name = name
def run(self):
print self.name,'\n'
class ProcessRunner:
""" This class represents a single instance of a running process """
def runp(self, pid, numThreads):
mythreads = []
for tid in range(numThreads):
name = "Proc-"+str(pid)+"-Thread-"+str(tid)
th = ThreadRunner(name)
mythreads.append(th)
for i in mythreads:
i.start()
for i in mythreads:
i.join()
class ParallelExtractor:
def runInParallel(self, numProcesses, numThreads):
myprocs = []
prunner = ProcessRunner()
for pid in range(numProcesses):
pr = Process(target=prunner.runp, args=(pid, numThreads))
myprocs.append(pr)
# if __name__ == 'parallelTestModule': #This didnt work
# if __name__ == '__main__': #This obviously doesnt work
# multiprocessing.freeze_support() #added after seeing error to no avail
for i in myprocs:
i.start()
for i in myprocs:
i.join()