Github user cloud-fan commented on a diff in the pull request:

    https://github.com/apache/spark/pull/19222#discussion_r175580545
  
    --- Diff: 
common/unsafe/src/main/java/org/apache/spark/unsafe/array/LongArray.java ---
    @@ -80,7 +76,7 @@ public void zeroOut() {
       public void set(int index, long value) {
         assert index >= 0 : "index (" + index + ") should >= 0";
         assert index < length : "index (" + index + ") should < length (" + 
length + ")";
    -    Platform.putLong(baseObj, baseOffset + index * WIDTH, value);
    +    memory.putLong(memory.getBaseOffset() + index * WIDTH, value);
    --- End diff --
    
    Thanks for your data! I think it proves that we should make the API clearer 
and hide these offsets stuff in the implementation. If we could fix this in 
this patch, I think we can encourage more people to use the new way to operate 
memory. What do you think?


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org

Reply via email to