遇到错误...
MemoryError:无法分配形状为(15145488917,)和数据类型为int64的数组
...尝试以下合并时...
master = dd.merge(df1, df2)
先前的代码是...
df1.count().compute()
...具有输出...
den 312019
num 312019
dtype: int64
...和...
df2.count().compute()
...具有输出...
den 970531
num 970531
dtype: int64
相同的操作在熊猫中没有问题。