OSError: Timeout error on Windows from AzureMLCluster
See original GitHub issueI 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:
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:
- Created 3 years ago
- Comments:10 (10 by maintainers)
Top 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 >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
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
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.