You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hama.apache.org by "MaoYuan Xian (JIRA)" <ji...@apache.org> on 2013/07/05 15:35:48 UTC

[jira] [Created] (HAMA-776) localQueue is set as Send queue in init function of AbstractMessageManager

MaoYuan Xian created HAMA-776:
---------------------------------

             Summary: localQueue is set as Send queue in init function of AbstractMessageManager
                 Key: HAMA-776
                 URL: https://issues.apache.org/jira/browse/HAMA-776
             Project: Hama
          Issue Type: Bug
          Components: bsp core
    Affects Versions: 0.6.2
            Reporter: MaoYuan Xian


In init method of AbstractMessageManager, the following codes found:

{code}
  public void init(TaskAttemptID attemptId, BSPPeer<?, ?, ?, ?, M> peer,
      Configuration conf, InetSocketAddress peerAddress) {
    ...
    this.peerAddress = peerAddress;
    this.localQueue = getSenderQueue();
    this.localQueueForNextIteration = getSynchronizedReceiverQueue();
    this.maxCachedConnections = conf.getInt(MAX_CACHED_CONNECTIONS_KEY, 100);
  }
{code}

The localQueue should be a receiveQueue but it is assigned here, should it be changed as following?:
{code}
 this.localQueue = getSynchronizedReceiverQueue();
{code}

Is there any special purpose here when set it as senderQueue?

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira