You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@samza.apache.org by vjagadish <gi...@git.apache.org> on 2018/05/04 21:00:23 UTC

[GitHub] samza pull request #504: Fix NPE in ClusterResourceManager

GitHub user vjagadish opened a pull request:

    https://github.com/apache/samza/pull/504

    Fix NPE in ClusterResourceManager

    When the ClusterResourcedManager receives a notification that a container is started, it moves the container from the "pending queue" to its "running queue".
    In the meanwhile, it's possible for another thread to remove the mapping for the key. Here's an example: 
    
    
    NMCallbackThread-1:```
    pendingYarnContainers.remove(key);```
    
    
    NMCallbackThread-2:
    ```
    for (String key : pendingYarnContainers.keySet()) {
      yarnContainer = pendingYarnContainers.get(key); <-- could be null depending on whether the removal happened before it.
    }```

You can merge this pull request into a Git repository by running:

    $ git pull https://github.com/vjagadish1989/samza npe-fix-async

Alternatively you can review and apply these changes as the patch at:

    https://github.com/apache/samza/pull/504.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

    This closes #504
    
----
commit bc11712ad090e93b8dc767659fff628e8b9ccd8f
Author: Jagadish <jv...@...>
Date:   2018-05-04T20:59:01Z

    Fix NPE in ClusterResourceManager

----


---

[GitHub] samza pull request #504: SAMZA-1699: Fix NPE in ClusterResourceManager

Posted by asfgit <gi...@git.apache.org>.
Github user asfgit closed the pull request at:

    https://github.com/apache/samza/pull/504


---