Re: Review Request 55327: Windows: Fixed hanging symlink bug in `os::rmdir`.

2017-01-09 Thread Lior Zeno

---
This is an automatically generated e-mail. To reply, visit:
https://reviews.apache.org/r/55327/#review160930
---




3rdparty/stout/include/stout/os/windows/rmdir.hpp (line 97)
<https://reviews.apache.org/r/55327/#comment232165>

s/best-effor/best-effort


- Lior Zeno


On Jan. 8, 2017, 11:52 p.m., Alex Clemmer wrote:
> 
> ---
> This is an automatically generated e-mail. To reply, visit:
> https://reviews.apache.org/r/55327/
> ---
> 
> (Updated Jan. 8, 2017, 11:52 p.m.)
> 
> 
> Review request for mesos, Andrew Schwartzmeyer, Daniel Pravat, and Joseph Wu.
> 
> 
> Repository: mesos
> 
> 
> Description
> ---
> 
> The Windows implementation of `os::rmdir` will fail to delete "hanging"
> symlinks (i.e., symlinks whose targets do not exist). Note that on
> Windows this bug is specific to symlinks whose targets are _deleted_,
> since it is impossible to create a symlink whose target does not exist.
> 
> The primary issue that causes this problem is that it is very difficult
> to tell whether a symlink points at a directory or a file unless you
> resolve the symlink and determine whether the target is a directory or a
> file. In situations where the target does not exist, we can't use this
> information, and so `os::rmdir` occasionally mis-routes a symlink to
> (what was) a directory to a `::remove` call, which will fail with a
> cryptic error.
> 
> To fix this behavior, this commit will introduce code that simply tries
> to remove the reparse point with both `RemoveDirectory` and
> `DeleteFile`, and if either succeeds, we report success for the
> operation. This represents a "best effort"; in the case that the reparse
> point represents something more exotic than a symlink, we will still
> fail, but by choosing not to verify whether the target is a directory or
> a file, we simplify the code and still obtain the outcome of having
> deleted the directory.
> 
> This commit is the primary blocker for MESOS-6707, as deleting the Agent
> sandbox will sometimes cause us to delete the latest run directory for
> the executor before the symlinked `latest` directory itself. This causes
> the delete to fail, and then the GC tests to fail, since they tend to
> assert the directory does not exist.
> 
> 
> Diffs
> -
> 
>   3rdparty/stout/include/stout/os/windows/rmdir.hpp 
> 4437484c068e9ef046e0be14683c97db447f2da1 
>   3rdparty/stout/tests/os/rmdir_tests.cpp 
> 988d41b7fdd11cc96ce005671a7c62d1b5a3615d 
> 
> Diff: https://reviews.apache.org/r/55327/diff/
> 
> 
> Testing
> ---
> 
> 
> Thanks,
> 
> Alex Clemmer
> 
>



Re: Review Request 53124: Add documentation on Windows support

2016-10-31 Thread Lior Zeno

---
This is an automatically generated e-mail. To reply, visit:
https://reviews.apache.org/r/53124/
---

(Updated Oct. 31, 2016, 9:49 p.m.)


Review request for mesos, Daniel Pravat, Alex Clemmer, and Joseph Wu.


Repository: mesos


Description (updated)
---

This patch adds documentation on Windows support in Mesos.


Diffs (updated)
-

  docs/getting-started.md 69e8da5 
  docs/home.md f47f7f9 
  docs/windows.md PRE-CREATION 

Diff: https://reviews.apache.org/r/53124/diff/


Testing
---


Thanks,

Lior Zeno



Re: Review Request 53124: Add documentation on Windows support

2016-10-29 Thread Lior Zeno

---
This is an automatically generated e-mail. To reply, visit:
https://reviews.apache.org/r/53124/
---

(Updated Oct. 29, 2016, 11:35 a.m.)


Review request for mesos, Daniel Pravat, Alex Clemmer, and Joseph Wu.


Repository: mesos


Description
---

This patch adds documentation on Windows support in Mesos.
Currently considered a WIP, published in order to receive inital feedback.


Diffs (updated)
-

  docs/getting-started.md 69e8da5 
  docs/home.md f47f7f9 
  docs/windows.md PRE-CREATION 

Diff: https://reviews.apache.org/r/53124/diff/


Testing
---


Thanks,

Lior Zeno



Re: Review Request 53124: Add documentation on Windows support

2016-10-23 Thread Lior Zeno

---
This is an automatically generated e-mail. To reply, visit:
https://reviews.apache.org/r/53124/
---

(Updated Oct. 23, 2016, 10:09 p.m.)


Review request for mesos, Daniel Pravat, Alex Clemmer, and Joseph Wu.


Summary (updated)
-

Add documentation on Windows support


Repository: mesos


Description
---

This patch adds documentation on Windows support in Mesos.
Currently considered a WIP, published in order to receive inital feedback.


Diffs
-

  docs/home.md f47f7f9 
  docs/windows.md PRE-CREATION 

Diff: https://reviews.apache.org/r/53124/diff/


Testing
---


Thanks,

Lior Zeno



Review Request 53124: Add Windows support to Mesos documentation

2016-10-23 Thread Lior Zeno

---
This is an automatically generated e-mail. To reply, visit:
https://reviews.apache.org/r/53124/
---

Review request for mesos, Daniel Pravat, Alex Clemmer, and Joseph Wu.


Repository: mesos


Description
---

This patch adds documentation on Windows support in Mesos.
Currently considered a WIP, published in order to receive inital feedback.


Diffs
-

  docs/home.md f47f7f9 
  docs/windows.md PRE-CREATION 

Diff: https://reviews.apache.org/r/53124/diff/


Testing
---


Thanks,

Lior Zeno