Basic question on running hailctl first command #3746
Replies: 1 comment
-
Note The following post was exported from discuss.hail.is, a forum for asking questions about Hail which has since been deprecated. (Dec 21, 2023 at 15:27) danking said:Hey David_Mai ! I think you’re the first person besides myself to attempt to use hdinsight with Hail. Unfortunately, in version 0.2.119 we changed the command line parser and that introduced a bug where the number of workers is an We don’t run the HDInsight tests regularly due to the need to spin up and spin down clusters, so you may run into some bitrot. Please do post any issues and we’ll get them fixed! pushd /home/davidmai/.local/lib/python3.10/site-packages/hailtop/hailctl/hdinsight
cp start.py start.py.bak; sed 's/num_workers,$/str(num_workers),/' start.py.bak > start.py
popd This will create this change: modified hail/python/hailtop/hailctl/hdinsight/start.py
@@ -69,7 +69,7 @@ def start(
'--location',
location,
'--workernode-count',
- num_workers,
+ str(num_workers),
'--ssh-password',
sshuser_password,
'--ssh-user', |
Beta Was this translation helpful? Give feedback.
-
Note
The following post was exported from discuss.hail.is, a forum for asking questions about Hail which has since been deprecated.
(Dec 21, 2023 at 04:24) David_Mai said:
Hi everyone, I’m new to hail and I want to learn how to run it. I’ve set up a HD insight cluster on Azure, and in the same resouce group, with the storage account. (example, my_cluster, my_sa, my_rg).
Then I run my first hailctl command: hailctl hdinsight start mycluster my_sa my_rg, and I see the following error:
Any suggestions to trouble shoot and fix thei issue?
Also, I’m curious how hailctl authenticate into my azure instance to find these resouces, is there any behind the scene documentation on the workflow pls?
Thx
David
Beta Was this translation helpful? Give feedback.
All reactions