Page History

Turn Off History

In Progress NOT complete

Introduction

This wiki page contains information about how to allow an administrator to schedule and manage services using HTCondor (IaaS).

Configuration Options

1.) Local Resources

Virtual Machine

The most obvious solution to this problem now-a-days is to configure a virtual machine, or "appliance", whose sole purpose is to provide a service to a IT infrastructure. This virtual machine can then be accessed and spun on demand

For these types of application it is relatively easy to configure a virtual machine with a hypervisor of your choosing and configure your appliance. There are a couple of extra settings you may wish to add to your submission which will help in managing your appliances.

#############################
# Submission additions for services
#############################
# For resilient services where they can not go down
# logs should be routinely investigated for activity
on_exit_remove=false
periodic_release=true

# Any attributes which will be useful in administration
+HTTPD_IP=TARGET.MachineIP

Chroot jobs

Another way to achieve this is through the use of chroot jail. By using your package management system you can install just the desired dependencies to a location which is idea for infrastructure.

This solution has a couple of trade offs the administrator should take into account. It does come with the added performance boost of being native but there are several configuration issues which need to be taken into account:

Once your chroot image is created you will need to configure

##########################################
# Could be shared via NFS, or transferred
NAMED_CHROOT= httpd=/your/chroot/loc

Once your startd's have been configured you can run jobs.

executable=your_scriptwrapper_to_kick_httpd_in_chroot.sh
log=$(cluster).$(process).log.txt
output=$(cluster).$(process).out.txt
error=$(cluster).$(process).err.txt

should_transfer_files = YES
when_to_transfer_output = ON_EXIT

RequestMemory = 256M
+RequestedChroot="httpd"

queue 1

2.) Remote Resources

Grid/EC2 Jobs

TODO: Update 7.7 series docs with ec2 refs.

References

Other refs: