You are viewing a plain text version of this content. The canonical link for it is here.
Posted to common-issues@hadoop.apache.org by "ASF GitHub Bot (Jira)" <ji...@apache.org> on 2020/12/12 02:09:00 UTC

[jira] [Work logged] (HADOOP-17430) There is no way to clear Text bytes now

     [ https://issues.apache.org/jira/browse/HADOOP-17430?focusedWorklogId=523361&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-523361 ]

ASF GitHub Bot logged work on HADOOP-17430:
-------------------------------------------

                Author: ASF GitHub Bot
            Created on: 12/Dec/20 02:08
            Start Date: 12/Dec/20 02:08
    Worklog Time Spent: 10m 
      Work Description: dgzdot opened a new pull request #2544:
URL: https://github.com/apache/hadoop/pull/2544


   https://issues.apache.org/jira/browse/HADOOP-17430
   


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


Issue Time Tracking
-------------------

            Worklog Id:     (was: 523361)
    Remaining Estimate: 0h
            Time Spent: 10m

> There is no way to clear Text bytes now
> ---------------------------------------
>
>                 Key: HADOOP-17430
>                 URL: https://issues.apache.org/jira/browse/HADOOP-17430
>             Project: Hadoop Common
>          Issue Type: Wish
>          Components: common
>            Reporter: gaozhan ding
>            Priority: Minor
>          Time Spent: 10m
>  Remaining Estimate: 0h
>
> In org.apache.hadoop.io.Text:clear() method, the comments show that we can free the bytes by call set(new byte[0]), but it's not going to work now. Maybe we can follow this comments.
>  
>  
> {code:java}
> // org.apache.hadoop.io.Text 
> /**
>  * Clear the string to empty.
>  *
>  * <em>Note</em>: For performance reasons, this call does not clear the
>  * underlying byte array that is retrievable via {@link #getBytes()}.
>  * In order to free the byte-array memory, call {@link #set(byte[])}
>  * with an empty byte array (For example, <code>new byte[0]</code>).
>  */
> public void clear() {
>   length = 0;
>   textLength = -1;
> }
> {code}
>  
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

---------------------------------------------------------------------
To unsubscribe, e-mail: common-issues-unsubscribe@hadoop.apache.org
For additional commands, e-mail: common-issues-help@hadoop.apache.org