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.
当我们同时触发多个查询并且 2 个查询需要访问相同的数据时。Map Reduce 会发生什么?
假设一个节点中只有 1 个数据副本,并且 2 个查询需要访问来自同一数据节点的数据。怎么了?其中一个查询会在队列中等待还是同时处理?
查询将同时处理,当一个队列到来时将启动一个新线程来处理它,您可以在此处查看源代码。