----------------------------------------------------------- This is an automatically generated e-mail. To reply, visit: https://reviews.apache.org/r/70508/#review214841 ----------------------------------------------------------- FAIL: Some of the unit tests failed. Please check the relevant logs. Reviews applied: `['70132', '70508']` Failed command: `Start-MesosCITesting` All the build artifacts available at: http://dcos-win.westus2.cloudapp.azure.com/artifacts/mesos-reviewbot-testing/3249/mesos-review-70508 Relevant logs: - [mesos-tests.log](http://dcos-win.westus2.cloudapp.azure.com/artifacts/mesos-reviewbot-testing/3249/mesos-review-70508/logs/mesos-tests.log): ``` I0424 03:38:21.542529 76672 master.cpp:3312] Disconnecting agent 068e9bd3-f8ea-42f4-9d40-5990ce26807e-S0 at slave(502)@192.10.1.4:60668 (windows-01.chtsmhjxogyevckjfayqqcnjda.xx.internal.cloudapp.net) I0424 03:38:21.543520 77260 hierarchical.cpp:392] Removed framework 068e9bd3-f8ea-42f4-9d40-5990ce26807e-0000 I0424 03:38:21.543520 76672 master.cpp:3331] Deactivating agent 068e9bd3-f8ea-42f4-9d40-5990ce26807e-S0 at slave(502)@192.10.1.4:60668 (windows-01.chtsmhjxogyevckjfayqqcnjda.xx.internal.cloudapp.net) I0424 03:38:21.543520 77260 hierarchical.cpp:829] Agent 068e9bd3-f8ea-42f4-9d40-5990ce26807e-S0 deactivated I0424 03:38:21.545583 76112 containerizer.cpp:2576] Destroying container 8cc5140d-8a8d-410e-b9e1-d5d6fc0a5b21 in RUNNING state I0424 03:38:21.545583 76112 containerizer.cpp:3278] Transitioning the state of container 8cc5140d-8a8d-410e-b9e1-d5d6fc0a5b21 from RUNNING to DESTROYING I0424 03:38:21.546515 76112 launcher.cpp:161] Asked to destroy container 8cc5140d-8a8d-410e-b9e1-d5d6fc0a5b21 W0424 03:38:21.547516 74940 process.cpp:1423] Failed to recv on socket WindowsFD::Type::SOCKET=11360 to peer '192.10.1.4:63080': IO failed with error code: The specified network name is no longer available. W0424 03:38:21.547516 74940 process.cpp:838] Failed to recv on socket WindowsFD::Type::SOCKET=11744 to peer '192.10.1.4:63081': IO failed with error code: The speci[ OK ] IsolationFlag/MemoryIsolatorTest.ROOT_MemUsage/0 (785 ms) [----------] 1 test from IsolationFlag/MemoryIsolatorTest (803 ms total) [----------] Global test environment tear-down [==========] 1164 tests from 109 test cases ran. (587040 ms total) [ PASSED ] 1161 tests. [ FAILED ] 3 tests, listed below: [ FAILED ] DockerFetcherPluginTest.INTERNET_CURL_FetchManifest [ FAILED ] DockerFetcherPluginTest.INTERNET_CURL_FetchImage [ FAILED ] DockerFetcherPluginTest.INTERNET_CURL_InvokeFetchByName 3 FAILED TESTS YOU HAVE 233 DISABLED TESTS fied network name is no longer available. I0424 03:38:21.599570 76992 containerizer.cpp:3117] Container 8cc5140d-8a8d-410e-b9e1-d5d6fc0a5b21 has exited I0424 03:38:21.630559 73944 master.cpp:1135] Master terminating I0424 03:38:21.632529 76672 hierarchical.cpp:680] Removed agent 068e9bd3-f8ea-42f4-9d40-5990ce26807e-S0 I0424 03:38:22.724555 74940 process.cpp:927] Stopped the socket accept loop ``` - Mesos Reviewbot Windows On April 22, 2019, 4:47 p.m., Benjamin Mahler wrote: > > ----------------------------------------------------------- > This is an automatically generated e-mail. To reply, visit: > https://reviews.apache.org/r/70508/ > ----------------------------------------------------------- > > (Updated April 22, 2019, 4:47 p.m.) > > > Review request for mesos, Chun-Hung Hsiao and Meng Zhu. > > > Bugs: MESOS-5804 > https://issues.apache.org/jira/browse/MESOS-5804 > > > Repository: mesos > > > Description > ------- > > The test failed in MESOS-5804 due to the following race: > > 1. Framework launches task T, moves from RESERVED to > TASK_RUNNING state. > 2. Allocation cycle triggers and will send the unreserved > resources to the framework. > 3. Before the offer gets to the framework, task T finishes and > framework moves from TASK_RUNNING to RESERVED. > 4. In the RESERVED state, the framework expects the reservation > in the offer. But, it's coming in a later offer, and the one > that arrives is for the unreserved resources since it was > generated while the task was still running. > > Tne fix applied here for this specific race is to use a 2 week > filter rather than a 0 second filter. That would ensure that the > unreserved resources do not get re-offered to the framework on > their own. However, this fix does not work until MESOS-9616 is > resolved. > > > Diffs > ----- > > src/examples/dynamic_reservation_framework.cpp f9c7dfe46a1e8dd1bc8eae45ed1b65b7a6d60dfc > > > Diff: https://reviews.apache.org/r/70508/diff/1/ > > > Testing > ------- > > Test passes with https://reviews.apache.org/r/70132/ applied. > > > Thanks, > > Benjamin Mahler > >