You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Nomad Server - CentOS 7
Nomad Client - Windows Server 2016
Task Driver - Windows Docker container; sample job attached.
Nomad CLI was run on one of the Linux server nodes.
Issue
After running nomad logs -f «allocation id» example-task the allocation will eventually become unresponsive.
Reproduction steps
Start job
nomad run 4973-reproducer.nomad
Note allocation id, get ip:port via
nomad alloc-status «allocation id»
Tail logs with
nomad logs -f «allocation id» example-task
While tail is running, request the web page around 20 times at the IP and port noted in alloc-status. Should see access style logs returned via the nomad logs process. Stop the tail and wait.
Nomad agent on client will emit massive panic. One time it was too many threads, this time it was out of memory.
The text was updated successfully, but these errors were encountered:
angrycub
changed the title
The nomad logs -f command can make windows docker allocations unresponsive.
The nomad logs -f command can make windows clients unresponsive/crash.
Oct 9, 2017
Fixes#3342
Two bugs were fixed:
* Closing the StreamFramer's exitCh before setting the error means other
goroutines blocked on exitCh closing could see the error as nil. This
was *not* observered.
* parseFramerError on Windows would fall through and return an
improperly captured nil err variable. There's no need for
parseFramerError to be a closure which fixes the confusion.
I'm going to lock this issue because it has been closed for 120 days ⏳. This helps our maintainers find and focus on the active issues.
If you have found a problem that seems similar to this, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further.
Nomad version
Nomad v. 0.6.3
Operating system and Environment details
Nomad Server - CentOS 7
Nomad Client - Windows Server 2016
Task Driver - Windows Docker container; sample job attached.
Nomad CLI was run on one of the Linux server nodes.
Issue
After running
nomad logs -f «allocation id» example-task
the allocation will eventually become unresponsive.Reproduction steps
Start job
Note allocation id, get ip:port via
Tail logs with
While tail is running, request the web page around 20 times at the IP and port noted in alloc-status. Should see access style logs returned via the nomad logs process. Stop the tail and wait.
Nomad agent on client will emit massive panic. One time it was too many threads, this time it was out of memory.
Nomad Client logs (if appropriate)
output.log.zip
Job file (if appropriate)
4973-reproducer.nomad.zip
The text was updated successfully, but these errors were encountered: