Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我遇到了一个算法,其中相同的文件被加载到每个映射器的主内存中。
我假设,对于每个映射器,我们必须使用分布式缓存来获取文件,读取文件并将其加载到内存中。当我实现这个时,我发现地图需要很长时间才能完成。我假设,这是因为每次从本地磁盘读取每个映射器值的文件。
我在实施它时正确吗?
还有其他建议吗?
请帮忙!提前致谢!
您想在 Mapper setup() 方法中从本地磁盘读取。使用实例变量来保持引用。