You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@flink.apache.org by GitBox <gi...@apache.org> on 2018/08/27 13:59:36 UTC

[GitHub] NicoK commented on issue #6417: [FLINK-9913][runtime] Improve output serialization only once in RecordWriter

NicoK commented on issue #6417: [FLINK-9913][runtime] Improve output serialization only once in RecordWriter
URL: https://github.com/apache/flink/pull/6417#issuecomment-416236083
 
 
   I don't quite get the argument with the `pruneBuffer()` call having this much overhead...at least for small records since its implementation only prunes if the buffer is larger than 5MiB:
   ```
   	public void pruneBuffer() {
   		if (this.buffer.length > PRUNE_BUFFER_THRESHOLD) {
   ...
   ```

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on 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


With regards,
Apache Git Services