Guest User

mesos-comments-jaggedness

a guest
Nov 6th, 2015
243
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.09 KB | None | 0 0
  1.   // Set the status update state and uuid for the task. Note that
  2.   // master-generated updates are terminal and do not have a uuid
  3.   // (in which case the master also calls removeTask()).
  4.  
  5.   // Set the status update state and uuid for the task. Note that master-
  6.   // generated updates are terminal and do not have a uuid (in which case the
  7.   // master also calls removeTask()).
  8.  
  9.  
  10.   // Delete data (maybe very large since it's stored by on-top
  11.   // framework) we are not interested in to avoid OOM.
  12.   // For example: mesos-master is running on a machine with 4GB free
  13.   // memory, if every task stores 10MB data into TaskStatus, then
  14.   // mesos-master will be killed by OOM killer after have 400 tasks
  15.   // finished.
  16.   // MESOS-1746.
  17.  
  18.   // Delete data (maybe very large since it's stored by on-top framework) we
  19.   // are not interested in to avoid OOM.
  20.   // For example: mesos-master is running on a machine with 4GB free memory,
  21.   // if every task stores 10MB data into TaskStatus, then mesos-master will be
  22.   // killed by OOM killer after have 400 tasks finished.
  23.   // MESOS-1746.
Advertisement
Add Comment
Please, Sign In to add comment