question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

OSError: Timeout error on Windows from AzureMLCluster

See original GitHub issue

I was trying to introduce students to dask-cloudprovider today, and hit a few issues (e.g. #145). One was that most (maybe all) my window users got this timeout:

image

when running this code:

amlcluster = AzureMLCluster(
    ws,
    vm_size="Standard_DS11_v2",  # Azure VM size for the Compute Target. This VM has only 2 CPUs.
    datastores=ws.datastores.values(),  # Azure ML Datastores to mount on the headnode
    environment_definition=ws.environments[
        "AzureML-Dask-CPU"
    ],  # Azure ML Environment to run on the cluster
    jupyter=True,  # Flag to start JupyterLab session on the headnode
    scheduler_idle_timeout=7200,  # scheduler idle timeout in seconds
    initial_node_count=3,  # Number of cores to start with.
    # We only use 3 to stay below 6 CPUs quota of student accounts
)

Again, windows only… any thoughts?

Issue Analytics

  • State:open
  • Created 3 years ago
  • Comments:10 (10 by maintainers)

github_iconTop GitHub Comments

1reaction
lostmygithubaccountcommented, Nov 11, 2020

so clearly a bug in getting/parsing the hostname on Windows machine - as a workaround I think WSL might work. but the longer term solution with more stability will be #154 which hopefully we can get something for in the next few weeks

0reactions
nickeubankcommented, Nov 11, 2020

If this is helpful in any way, when I try and replicate this problem using Windows 10 running on VMWare on my mac, I don’t have any problems (grrr…).

Gonna see if I have any students with time to play with things on their regular windows machines.

Read more comments on GitHub >

github_iconTop Results From Across the Web

NewConnectionError/TimeOutError when locally submitting ...
Hello everyone, I'm having a problems running the Auto ML Forecasting Energy Demand Notebook locally using the Python SDK.
Read more >
Troubleshoot the VMExtensionProvisioningTimeout error code
The custom script extension that provisions the VMs reached a timeout while running the apt-get update. Solution. Follow these steps: If egress ...
Read more >
Troubleshooting client response timeouts and errors with API ...
Troubleshoot intermittent connection errors and related latency issues in API ... Intermittent HTTP 500 errors; Timeout error messages.
Read more >
I am getting Timeout error while connecting to Cyclecloud
Microsoft Q&A is the best place to get answers to all your technical questions on Microsoft products and services. Community. Forum.
Read more >
Timeout error when getting the status of a pipeline
Microsoft Q&A is the best place to get answers to all your technical questions on Microsoft products and services. Community. Forum.
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found