[ 
https://issues.apache.org/jira/browse/PARQUET-186?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14321103#comment-14321103
 ] 

Ryan Blue commented on PARQUET-186:
-----------------------------------

What about updating Preconditions to take an {{Object...}} argument and use 
{{String.format}}? That way we don't have to wrap all preconditions in an if 
for the same expression they check. See 
[{{ValidationException.check}}|https://github.com/kite-sdk/kite/blob/master/kite-data/kite-data-core/src/main/java/org/kitesdk/data/ValidationException.java#L49]
 for an example.

> Poor performance in SnappyCodec because of string concat in tight loop
> ----------------------------------------------------------------------
>
>                 Key: PARQUET-186
>                 URL: https://issues.apache.org/jira/browse/PARQUET-186
>             Project: Parquet
>          Issue Type: Bug
>          Components: parquet-mr
>    Affects Versions: parquet-mr_1.6.0
>            Reporter: Cristian Opris
>
> String concatenation for SnappyUtil.validateBuffer which is called in a tight 
> loop from both compress/decompress.
> This shows up as taking 60% of time in the profiler 
> {code}
>   public static void validateBuffer(byte[] buffer, int off, int len) {
>     Preconditions.checkNotNull(buffer, "buffer");
>     Preconditions.checkArgument(off >= 0 && len >= 0 && off <= buffer.length 
> - len,
>         "Invalid offset or length. Out of buffer bounds. buffer.length=" + 
> buffer.length
>         + " off=" + off + " len=" + len);
>   }
> {code}



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

Reply via email to