Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is Outside JVM in Task manager UI in flink web ui?

Tags:

apache-flink

enter image description here

While monitoring a streaming job on flink ui I encountered outside JVM .

What exactly it is and what is count column ?

like image 856
Sohi Avatar asked Nov 08 '22 23:11

Sohi


1 Answers

Outsize JVM refers to native memory used by flink TM. MemoryManager in flink TM will acquire native memory through ByteBuffer.allocateDirect() based on the congfiuration.

Count Column refers to number of buffers in the pool, decided by the number of calls to ByteBuffer.allocateDirect().

like image 175
BrightFlow Avatar answered Dec 28 '22 14:12

BrightFlow