Hi there,
On 23-Apr-10, at 12:41 AM, miccloud wrote:
> 1) Does Cloud Scheduler configure automatically the Ami Condor Worker
> node, for joining the pool? (Amazon EC2)
Yep, that's how your jobs get run when you submit them. The AMI for
the machine that's configured to do this is ami-fdee0094, which you
can try booting on its own if you want to examine it.
> Or I have to write particular script to do at execution node
> startup for configure it with central manager?
No, it's configured to do this automatically.
> 2) Should I install other software as well as condors in Execution
> node that are launched by Cloud Scheduler?
Well, to do any useful work you will probably have to. What type of
job do you want to run?
> 3) I have launched test.job in the AMI and I have read it.
> What is the meaning for +VMAMI = "ami-fdee0094"? Is it a
> specification for Cloud Scheduler or Condor?
> In Condor manual I haven't read anyting about +VMAMI.
It's a cloud scheduler specific attribute, that is used to determine
which AMI should be booted to run the job you submit. The equivalent
for Nimbus clusters is VMLoc, which corresponds to the URL of the VM
image to be booted.
> I think that it tell Cloud Scheduler to launch an AMI. But, if
> there are already execution node, is this AMI launched anyway?
If there is no idle node to run the job, then yes, it will start the
AMI. Cloud Scheduler will try to start as many VMs as there are jobs.
You can limit this by modifying the cloud_resources.conf file in /etc/
cloudscheduler/ .
--patrick