Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Various Windows fixes to support the runtime v2 shim workflow #2519

Merged
merged 3 commits into from
Aug 1, 2018

Conversation

jterry75
Copy link
Contributor

@jterry75 jterry75 commented Aug 1, 2018

  • Removes an unused and unneeded wait group.
  • Reorders the code so that it doesnt overwrite the previous allocation
    when creating a NewTask via ctr.exe
  • Adds retry support to AnonDialer if the pipe does not exist. This will
    retry up to the timeout for the pipe to exist and connect. This solves
    the race between the containerd-shim-* start command and the
    reinvocation.

FYI - @crosbymichael @jhowardmsft

Removes an unused and unneeded wait group.

Signed-off-by: Justin Terry (VM) <[email protected]>
@codecov-io
Copy link

codecov-io commented Aug 1, 2018

Codecov Report

Merging #2519 into master will not change coverage.
The diff coverage is n/a.

Impacted file tree graph

@@           Coverage Diff           @@
##           master    #2519   +/-   ##
=======================================
  Coverage   45.07%   45.07%           
=======================================
  Files          93       93           
  Lines        9780     9780           
=======================================
  Hits         4408     4408           
  Misses       4654     4654           
  Partials      718      718
Flag Coverage Δ
#linux 49.1% <ø> (ø) ⬆️
#windows 41.58% <ø> (ø) ⬆️

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update 123de20...dcb9057. Read the comment docs.

lastError = errors.Errorf("timed out waiting for npipe %s", address)
break
}
c, lastError = winio.DialPipe(address, &remaining)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

if it does not exist, does it return immediately or does it use the timeout?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

winio returns immediately with a file not found error because the \\.\pipe\whatever does not yet exist.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@crosbymichael - Hang on this is the wrong commit. I dont quite know what happened but this doesnt have the right exit logic it it connects successfully.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I mean if you are still working on it, you could maybe use a:

select {
case <-time.After(timeout):
case <-pipe:
...
}

as a way to synchronize

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ok this is now right.

I can do it that way if you prefer. Doesn't bother me either way. Since winio returns immediately for file not found it would still require the same looping logic and starting a new select query so it seems the same code in the end.

@jterry75 jterry75 force-pushed the various_win_fixes branch from a42a5f6 to 6a7f4ae Compare August 1, 2018 19:56
if tty {
ioCreator = cio.NewCreator(append([]cio.Opt{cio.WithStdio, cio.WithTerminal}, ioOpts...)...)
}
if nullIO {
} else if nullIO {
if tty {
return nil, errors.New("tty and null-io cannot be used together")
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is now unreachable

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That's a great point. Missed that case will submit a fix.

@dmcgowan
Copy link
Member

dmcgowan commented Aug 1, 2018

LGTM

Reorders the code so that it doesnt overwrite the previous allocation
when creating a NewTask via ctr.exe

Signed-off-by: Justin Terry (VM) <[email protected]>
Adds retry support to AnonDialer if the pipe does not exist. This will
retry up to the timeout for the pipe to exist and connect. This solves
the race between the containerd-shim-* start command and the
reinvocation.

Signed-off-by: Justin Terry (VM) <[email protected]>
@jterry75 jterry75 force-pushed the various_win_fixes branch from 6a7f4ae to dcb9057 Compare August 1, 2018 20:22
@crosbymichael
Copy link
Member

LGTM

@crosbymichael crosbymichael merged commit d3887f6 into containerd:master Aug 1, 2018
@jterry75 jterry75 deleted the various_win_fixes branch August 1, 2018 21:12
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants