You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@tez.apache.org by "Ming Ma (JIRA)" <ji...@apache.org> on 2016/04/09 00:36:25 UTC

[jira] [Created] (TEZ-3207) Have the unordered ShuffleManager support fetching multiple partitions from the same source task

Ming Ma created TEZ-3207:
----------------------------

             Summary: Have the unordered ShuffleManager support fetching multiple partitions from the same source task
                 Key: TEZ-3207
                 URL: https://issues.apache.org/jira/browse/TEZ-3207
             Project: Apache Tez
          Issue Type: Bug
            Reporter: Ming Ma


The ordered grouped {{ShuffleScheduler}} can support fetching multiple partitions from the same source task. But for the unordered ShuffleManager, it only supports one partition per source task due to the following issue where {{identifier}} doesn't take partition id into account.

{noformat}
  public void addKnownInput(String hostName, int port,
      InputAttemptIdentifier srcAttemptIdentifier, int srcPhysicalIndex) {
    String identifier = InputHost.createIdentifier(hostName, port);
    InputHost host = knownSrcHosts.get(identifier);
    ....
  }
{noformat}





--
This message was sent by Atlassian JIRA
(v6.3.4#6332)