-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
https://reviews.apache.org/r/66004/
-----------------------------------------------------------
Review request for mesos, Meng Zhu and Jiang Yan Xu.
Bugs: MESOS-8628
https://issues.apache.org/jira/browse/MESOS-8628
Repository: mesos
Description
-------
This enforces the pattern of v0 messages converting to a v1
message and passing through the v1 logic.
>From a performance perspective, the v1 path no longer copies into
a `vector<TaskStatus>` which should offer improved performance.
In the v0 path, we now move into a `Reconcile` message rather than
moving into a `vector<TaskStatus>`. Therefore, this improves v1
performance while keeping v0 performance roughly the same in terms
of copying.
Diffs
-----
src/master/http.cpp cf03d8bf7df583c849a3b2a326d3772820181b0f
src/master/master.hpp 8bf2c763dafdb7df55c46a56f2ff66f2a951d947
src/master/master.cpp f0f6e5b91b4eae99dec52725f5efc203695c41e8
Diff: https://reviews.apache.org/r/66004/diff/1/
Testing
-------
make check
Thanks,
Benjamin Mahler