Friday, March 12, 2010
Create a vector image from a JPEG
The group had long ago lost the original of their logo and only had a single copy in JPEG format (dimensions 360x390, or the size of a posted note). Needless to say, when they asked if it could be used to print a large banner I had to laugh :-)
I ran across a couple of articles providing instructions using the freely available Inkscape.
Increase Image Resolution: Convert Raster Images to Vector
How to Convert a JPEG to a Vector Image
I found the first link to be the most helpful, but both were informative.
In the end, I was able to create a vector version of the logo that is, in theory, infinitely scalable. Pretty darn cool. Thanks Inkscape and eHow / Makeuseof.com
Tuesday, March 2, 2010
Build and Install Latest Grid Engine Roll for Rocks 5.3
Why would you want to rebuild the roll? Possibilities include adding a later version of grid engine, or customizing the roll different from that provided by Rocks.
The latest version of Rocks at this time is 5.3 which includes Grid Engine 6.2u4.
The Grid Engine team released 6.2u5 in January. This version contains many new features and bug fixes over 6.2u4.
I built and tested this roll on a Rocks 5.3 x86_64 virtual machine prior to deploying it to the production cluster.
The overview:
- Download the Rocks source code
- Download the Grid Engine source code
- Build the Roll
- Add the Roll to the head node
- Update the RPM on the head node
- Rebuild the compute nodes
Obtain the Rocks Source Code
- Download the Rocks source code tree (http://www.rocksclusters.org/roll-documentation/base/5.3/source-access.html) and make a backup of the original sge roll source in case you need to restore or compare files
- Create a new sge roll build area by copying the existing sge roll directory
- Download the Grid Engine source code (all versions of source are available at the Documents and Files page http://gridengine.sunsource.net/servlets/ProjectDocumentList ). Extract the source so we can later copy the installer script
$ mkdir -p ~/software/rocks-cluster
$ cd ~/software/rocks-cluster
$ hg clone http://fyp.rocksclusters.org/hg/rocks-5.3
destination directory: rocks-5.3
real URL is http://fyp.rocksclusters.org/hg/rocks-5.3/
requesting all changes
adding changesets
adding manifests
adding file changes
added 1 changesets with 2815 changes to 2815 files
2815 files updated, 0 files merged, 0 files removed, 0 files unresolved
$ cd ~/software/rocks-cluster/rocks-5.3/src/roll
$ cp -a sge sge-v62u5
$ mkdir -p ~/software/ge6.2u5-source
$ cd ~/software/ge6.2u5-source
$ wget http://gridengine.sunsource.net/files/documents/7/215/ge-V62u5_TAG-src.tar.gz
$ tar -zxf ge-V62u5_TAG-src.tar.gz
Build the SGE Roll
- cd to the sge roll directory and copy the 6.2u5 source code to the roll src directory
- Edit the roll version info
- Edit the SGE version info
- Create a new patch-files directory for V62u5 and copy the aimk SGE installer script and then edit as follows
- Edit the aimk install script as follows
- Edit the sge-client.xml file if you want to do any customizations to the clients, leave alone to accept the Rocks customizations
- Edit the sge-server.xml file to if you want to customize the head node settings (create custom parallel environments, etc...)
- Build the Roll (note you have to be ROOT to run this command)
$ cd ~/software/rocks-cluster/rocks-5.3/src/roll/sge-v62u5/
$ cp ~/software/ge6.2u5-source/ge-V62u5_TAG-src.tar.gz ~/software/rocks-cluster/rocks-5.3/src/roll/sge-v62u5/src/sge/
vi ~/software/rocks-cluster/rocks-5.3/src/roll/sge-v62u5/version.mk
ROLLNAME = sge
RELEASE = 62u5
COLOR = plum
REDHAT.ROOT = $(PWD)
vi ~/software/rocks-cluster/rocks-5.3/src/roll/sge-v62u5/src/sge/version.mk
NAME = sge
VERSION = V62u5
RELEASE = 1
$ mkdir -p src/sge/patch-files/V62u5/gridengine/source
$ cp ~/software/ge6.2u5-source/gridengine/source/aimk src/sge/patch-files/V62u5/gridengine/source/
$ vim src/sge/patch-files/V62u5/gridengine/source/aimk
set KRBLIB = "-lkrb5 -lz"
# cd ~me/software/rocks-cluster/rocks-5.3/src/roll/sge-v62u5
# make roll > make-roll.log 2>&1
Once this command completes, you should have a new ISO file in the build directory named "sge-5.2-62u5.x86_64.disk1.iso".
If you are installing a new Rocks 5.3 cluster, simply burn this ISO to CD and use it when selecting the SGE roll.
If you are upgrading your existing Rocks 5.3 cluster from 6.2u4 to 6.2u5, proceed to the next section.
Update GE on Existing Rocks 5.3 Cluster
Rocks 5.3 ships with GE62u4, following the procedure above we have built a roll to install GE62u5 to a new cluster. This roll can also be used to upgrade GE on an existing 5.3 cluster. I haven't tested or even thought about the idea of using this roll on a Rocks 5.2 cluster, so I really do not know if it would work.
The downside to this approach is that it doesn't allow you to install the newer version 'side by side' with the previous version. So I would recommend testing this on a virtual machine Rocks 5.3 cluster before doing so on the production cluster.
- copy the new roll to the head node if it isn't already there
- Add the roll using the rocks command. This will add the updated files from the roll that differ from the already installed sge roll
- Make sure that all running jobs have drained from the system before proceeding by first disabling the queues.
- Verify via qstat that running jobs have finished
- Stop the SGE services on the compute nodes, again be sure that the jobs have stopped otherwise this process will terminate them (repeat for other compute appliance types)
- Stop the SGE master process on the head node
- Backup your /opt/gridengine directory
- Run the roll to generate an install script. Under normal "Adding a roll" circumstances, you would procede by running the script, since we are upgrading an existing roll, it isn't necesary to do so. In fact, running the script may potentially overwrite some customizations that have been made to the grid engine since install time.
We will simply examine the script to find out what is necessary to perform the upgrade. - DON'T run the script!
- Examination of the script reveals that the only RPM that we really need to upgrade is sge-V62u5-1.x86_64.rpm, the rest of the script was already performed when we installed the head node (creation of parallel environments, sge user account, etc...)
- Use the loop below to update the rpms, again the only one that will actually update is sge-V62u5-1.x86_64.rpm, but just in case try them all
- Start the SGE master process on the head node
- Rebuild the compute nodes
- Once all of the compute nodes are rebuilt (and finished rebooting multiple times, i.e. OFED install, lustre, etc...) and you are ready to release the jobs, enable the queues
# rocks add roll sge-5.3-1.x86_64.disk1.iso
# cd /export/rocks/install
# rocks create distro
$ qmod -d '*'
$ sudo rocks run host compute command="/sbin/service sgeexecd.$(hostname -s) stop"
$ sudo rocks run host verari-compute command="/sbin/service sgeexecd.$(hostname -s) stop"
$ sudo /sbin/service sgemaster.$(hostname -s) stop
$ cd /opt
$ sudo tar -cjf gridengine-backup-62u4.tar.bz2 gridengine
# rocks run roll sge > /tmp/install-sge-6.2u5.sh
# for n in $(grep ^rpm /tmp/install-sge-6.2u5.sh |awk '{print $5}'); do echo $n; rpm -Uvh $n; done
/export/rocks/install/rocks-dist/x86_64/RedHat/RPMS/db4-utils-4.3.29-10.el5.x86_64.rpm
Preparing... ########################################### [100%]
package db4-utils-4.3.29-10.el5.x86_64 is already installed
/export/rocks/install/rocks-dist/x86_64/RedHat/RPMS/javacc-4.0-3jpp.3.x86_64.rpm
Preparing... ########################################### [100%]
package javacc-4.0-3jpp.3.x86_64 is already installed
/export/rocks/install/rocks-dist/x86_64/RedHat/RPMS/junit-3.8.2-3jpp.1.x86_64.rpm
Preparing... ########################################### [100%]
package junit-3.8.2-3jpp.1.x86_64 is already installed
/export/rocks/install/rocks-dist/x86_64/RedHat/RPMS/libXp-devel-1.0.0-8.1.el5.x86_64.rpm
Preparing... ########################################### [100%]
package libXp-devel-1.0.0-8.1.el5.x86_64 is already installed
/export/rocks/install/rocks-dist/x86_64/RedHat/RPMS/openmotif-2.3.1-2.el5.i386.rpm
Preparing... ########################################### [100%]
package openmotif-2.3.1-2.el5.i386 is already installed
/export/rocks/install/rocks-dist/x86_64/RedHat/RPMS/openmotif-devel-2.3.1-2.el5.i386.rpm
Preparing... ########################################### [100%]
package openmotif-devel-2.3.1-2.el5.i386 is already installed
/export/rocks/install/rocks-dist/x86_64/RedHat/RPMS/pam-devel-0.99.6.2-6.el5.i386.rpm
Preparing... ########################################### [100%]
package pam-devel-0.99.6.2-6.el5.i386 is already installed
/export/rocks/install/rocks-dist/x86_64/RedHat/RPMS/rocks-command-sge-5.3-0.x86_64.rpm
Preparing... ########################################### [100%]
package rocks-command-sge-5.3-0.x86_64 is already installed
file /opt/rocks/lib/python2.4/site-packages/rocks/commands/remove/host/plugin_sge.pyc from install of rocks-command-sge-5.3-0.x86_64 conflicts with file from package rocks-command-sge-5.3-0.x86_64
file /opt/rocks/lib/python2.4/site-packages/rocks/commands/remove/host/plugin_sge.pyo from install of rocks-command-sge-5.3-0.x86_64 conflicts with file from package rocks-command-sge-5.3-0.x86_64
file /opt/rocks/lib/python2.4/site-packages/rocks/commands/report/sge/__init__.pyc from install of rocks-command-sge-5.3-0.x86_64 conflicts with file from package rocks-command-sge-5.3-0.x86_64
file /opt/rocks/lib/python2.4/site-packages/rocks/commands/report/sge/__init__.pyo from install of rocks-command-sge-5.3-0.x86_64 conflicts with file from package rocks-command-sge-5.3-0.x86_64
file /opt/rocks/lib/python2.4/site-packages/rocks/commands/report/sge/machines/__init__.pyc from install of rocks-command-sge-5.3-0.x86_64 conflicts with file from package rocks-command-sge-5.3-0.x86_64
file /opt/rocks/lib/python2.4/site-packages/rocks/commands/report/sge/machines/__init__.pyo from install of rocks-command-sge-5.3-0.x86_64 conflicts with file from package rocks-command-sge-5.3-0.x86_64
/export/rocks/install/rocks-dist/x86_64/RedHat/RPMS/rocks-sge-5.3-2.x86_64.rpm
Preparing... ########################################### [100%]
package rocks-sge-5.3-2.x86_64 is already installed
/export/rocks/install/rocks-dist/x86_64/RedHat/RPMS/rocks-sge-5.3-2.x86_64.rpm
Preparing... ########################################### [100%]
package roll-sge-usersguide-5.3-0.x86_64 is already installed
file /var/www/html/roll-documentation/sge/5.3/index.html from install of roll-sge-usersguide-5.3-0.x86_64 conflicts with file from package roll-sge-usersguide-5.3-0.x86_64
file /var/www/html/roll-documentation/sge/5.3/rocks-copyright.html from install of roll-sge-usersguide-5.3-0.x86_64 conflicts with file from package roll-sge-usersguide-5.3-0.x86_64
file /var/www/html/roll-documentation/sge/5.3/roll-sge-usersguide.pdf from install of roll-sge-usersguide-5.3-0.x86_64 conflicts with file from package roll-sge-usersguide-5.3-0.x86_64
/export/rocks/install/rocks-dist/x86_64/RedHat/RPMS/sge-V62u5-1.x86_64.rpm
Preparing... ########################################### [100%]
1:sge ########################################### [100%]
/export/rocks/install/rocks-dist/x86_64/RedHat/RPMS/sge-drmaa-5.3-0.noarch.rpm
Preparing... ########################################### [100%]
package sge-drmaa-5.3-0.noarch is already installed
/export/rocks/install/rocks-dist/x86_64/RedHat/RPMS/sge-ganglia-5.3-2.x86_64.rpm
Preparing... ########################################### [100%]
package sge-ganglia-5.3-2.x86_64 is already installed
file /opt/ganglia/lib64/ganglia/python_modules/sge.pyc from install of sge-ganglia-5.3-2.x86_64 conflicts with file from package sge-ganglia-5.3-2.x86_64
file /opt/ganglia/lib64/ganglia/python_modules/sge.pyo from install of sge-ganglia-5.3-2.x86_64 conflicts with file from package sge-ganglia-5.3-2.x86_64
/export/rocks/install/rocks-dist/x86_64/RedHat/RPMS/sge-ganglia-5.3-2.x86_64.rpm
Preparing... ########################################### [100%]
package sge-ganglia-5.3-2.x86_64 is already installed
file /opt/ganglia/lib64/ganglia/python_modules/sge.pyc from install of sge-ganglia-5.3-2.x86_64 conflicts with file from package sge-ganglia-5.3-2.x86_64
file /opt/ganglia/lib64/ganglia/python_modules/sge.pyo from install of sge-ganglia-5.3-2.x86_64 conflicts with file from package sge-ganglia-5.3-2.x86_64
/export/rocks/install/rocks-dist/x86_64/RedHat/RPMS/sge-insert-ethers-5.3-0.x86_64.rpm
Preparing... ########################################### [100%]
package sge-insert-ethers-5.3-0.x86_64 is already installed
file /opt/rocks/var/plugins/insertethers/sge.pyc from install of sge-insert-ethers-5.3-0.x86_64 conflicts with file from package sge-insert-ethers-5.3-0.x86_64
file /opt/rocks/var/plugins/insertethers/sge.pyo from install of sge-insert-ethers-5.3-0.x86_64 conflicts with file from package sge-insert-ethers-5.3-0.x86_64
$ sudo /sbin/service sgemaster.$(hostname -s) start
# rocks run host compute '/boot/kickstart/cluster-kickstart'
# rocks run host verari-compute '/boot/kickstart/cluster-kickstart'
$ qmod -e '*'