在数据分析python项目中,我需要同时使用类和多处理功能,而我在Google上找不到一个很好的例子。
我的基本想法 - 可能是错误的 - 是创建一个具有高大小变量的类(在我的情况下它是一个pandas数据帧),然后定义一个计算操作的方法(在这种情况下是一个总和)
import multiprocessing
import time
class C:
def __init__(self):
self.__data = list(range(0, 10**7))
def func(self, nums):
return sum(nums)
def start_multi(self):
for n_procs in range(1, 4):
print()
time_start = time.clock()
chunks = [self.__data[(i-1)*len(self.__data)// n_procs: (i)*len(self.__data)// n_procs] for i in range(1, n_procs+1)]
pool = multiprocessing.Pool(processes=n_procs)
results = pool.map_async(self.func, chunks )
results.wait()
pool.close()
results = results.get()
print(sum(results))
print("n_procs", n_procs, "total time: ", time.clock() - time_start)
print('sum(list(range(0, 10**7)))', sum(list(range(0, 10**7))))
c = C()
c.start_multi()
代码无法正常工作:我得到以下打印输出
sum(list(range(0, 10**7))) 49999995000000
49999995000000
n_procs 1 total time: 0.45133500000000026
49999995000000
n_procs 2 total time: 0.8055279999999954
49999995000000
n_procs 3 total time: 1.1330870000000033
即计算时间增加而不是减少。那么,这段代码中的错误是什么?
但是我也担心RAM的使用,因为当创建变量块时,自我.__数据RAM的使用率翻了一番。在处理多处理代码时,特别是在此代码中,是否有可能避免这种内存浪费? (我保证将来我会把所有东西放在Spark上:))
答案 0 :(得分:1)
看起来这里有一些事情可以发挥作用:
chunks
的生成占用了多个进程的案例的大约16%的时间。单个进程,非池,版本没有这种开销。chunks
数组是需要获取pickled
并发送到新进程的范围的所有原始数据。更容易,而不是发送所有原始数据,只发送开始和结束索引。func
中,您会发现大部分时间都没有在那里度过。这就是为什么你没有看到加速的原因。大部分时间都用在分块,酸洗,分叉和其他开销上。作为替代方案,您应该尝试将分块技术切换为仅计算开始和结束数字,并避免发送过多的数据。
接下来,我建议做一些计算比计算总和更难的东西。例如,您可以尝试计算素数。以下是我们使用here中的简单素数计算的示例,我们使用修改后的分块技术。否则,尝试保持代码相同。
import multiprocessing
import time
from math import sqrt; from itertools import count, islice
# credit to https://stackoverflow.com/a/27946768
def isPrime(n):
return n > 1 and all(n%i for i in islice(count(2), int(sqrt(n)-1)))
limit = 6
class C:
def __init__(self):
pass
def func(self, start_end_tuple):
start, end = start_end_tuple
primes = []
for x in range(start, end):
if isPrime(x):
primes.append(x)
return len(primes)
def get_chunks(self, total_size, n_procs):
# start and end value tuples
chunks = []
# Example: (10, 5) -> (2, 0) so 2 numbers per process
# (10, 3) -> (3, 1) or here the first process does 4 and the others do 3
quotient, remainder = divmod(total_size, n_procs)
current_start = 0
for i in range(0, n_procs):
my_amount = quotient
if i == 0:
# somebody needs to do extra
my_amount += remainder
chunks.append((current_start, current_start + my_amount))
current_start += my_amount
return chunks
def start_multi(self):
for n_procs in range(1, 4):
time_start = time.clock()
# chunk the start and end indices instead
chunks = self.get_chunks(10**limit, n_procs)
pool = multiprocessing.Pool(processes=n_procs)
results = pool.map_async(self.func, chunks)
results.wait()
results = results.get()
print(sum(results))
time_delta = time.clock() - time_start
print("n_procs {} time {}".format(n_procs, time_delta))
c = C()
time_start = time.clock()
print("serial func(...) = {}".format(c.func((1, 10**limit))))
print("total time {}".format(time.clock() - time_start))
c.start_multi()
这应该会导致多个进程的加速。假设你有核心。