Moving to a new home

15. August 2007 16:31 by Csaborio in General  //  Tags:   //   Comments (0)
I will be now blogging via wordpress.  This is just a matter of convenience for myself.  Please update your bookmarks / RSS feeds.

New blog address:  http://csaborio.wordpress.com/


How to Find Which Nodes are running your Tasks in the Compute Cluster Scheduler

15. August 2007 13:06 by Csaborio in General  //  Tags:   //   Comments (0)
When you submit a job to be run in a Compute Cluster Server, you will find some information about the running tasks at the bottom pane.  Information such as error output, task name, and so on is shown, but there is one vital piece of information that should be shown (IMHO) by default and it is not: what nodes are running the current task?

Luckily, this can easily be solved by right clicking on the column headers, selecting Add/Remove Columns and adding the Allocated Nodes column.  This will make it easier to know where to look for output.  The following clip shows how it is done (BTW, if you have not checked Jing, make sure you do, it's amazing):


Oops...nevermind, apparently our Community Server blog cannot embed objects correctly :(

Check out the video in this link:

Finding Nodes of your Job

How to Specify Boot Order when Using Parallels

13. August 2007 09:18 by Csaborio in General  //  Tags:   //   Comments (0)
Today while tryng to do a V2V migration form Parallels to VMWare, I had the need to boot my current VM into BartPE so I could create an image with Tru Image.  When the VM started up, I tried to press al sorts of F key combos to get to the BIOS screen.  In Virtual Server/Virtual PC, pressing F2 does the trick; but in Parallels it was not working.

After taking a trip to the VM preferences, I found that this is set within the VM properties, and is actually quite simple:


How to Debug MPI Applications in Visual Studio 2005 (Part 2)

9. August 2007 06:30 by Csaborio in General  //  Tags:   //   Comments (0)
To recap, on my last post we went through some of the steps that need to be taken when debugging an MPI application, namely:

-Install the x64 remote debugger
-Copy mpishim to an accessible loction
-Modify the registry to avoid UNC path problems in the future

Let's go ahead and finish the rest of the steps in order to debug an MPI application.

Step 4: Configure an Empty Job with the Job Scheduler

The job scheduler is a utility by which all jobs that are submitted to the cluster are managed.  If you want to have something done at the cluster for you, then you need to use the job scheduler.   Debugging is no exception, as you need to create an empty job that will host your debugging application.

To get started, open the job scheduler and from the File menu, select Submit Job:



Name your job "Debugging Job" and move over to the Processors tab.  Select the number of processors you would like to use for this job and then (this is actually quite important), check the box that says "Run Job until end of run time or until cancelled".   Failure to check this box will cause the empty job to run and finish - which is not what we want.   We want the job to continually run, so that Visual Studio will then attach the running processes to this specific job.  Don't forget to mark this!:



Next, you need to move to the Advanced tab and select which nodes will be part of your debugging scheme.  In this case, I will only use 2 nodes, namely Kim03a (the head node) and Kim02a:



Click on submit job, you should see your job running.  Make sure you write down the ID of the job (in this case, it is 3) as you will need this info later on!!



Step 5: Configure Visual Studio

Open Visual studio and the project you are working on.  Go to project properties and access the Debugging section.  From there, instead of the Local Debugger, select MPI Cluster Debugger:



The following screenshot shows my debugger properties window with all necessary values filled in:



Let's go ahead and talk about each of these values:

MPI Run Command: This needs to be mpiexec for MPI applications

MPIRun Arguments:
  The first argument "-job 3.0" is to specify which is the job in the scheduler to use.  In my case, it was 3 when I created the job, and the 0 is to specify the task, which every job has by default.   We then have "-np 2" which is used to specify that we will be using 2 nodes for this job.  Finally you see I have "-machinefile \\kim03a\bin\machines.txt".  The "-machinefile" is used to specfify the UNV location of a text file that contains the names of the machines that will be part of this job.  The text file should have the names of the machines on each line.

MPIRun Working Directory: Use this location to specify the path where any output will be written to.  Remember NOT to use absolute paths but rather UNC paths to make sure that this location is available to every node.

Application Command: This is the UNV path to the MPI application that you would like to debug.  This application HAS to be compiled to 64-bit and debugging symbols should be in that same directory as well.

MPIShim Location: In this location, specify the path to the mpishim.exe binary that you copied in step 2 of this tutorial.  Remember, mpishim should exist on each and every one of the machines at the specified local path.
MPI network security mode: I usually change it to Accept connections from any address to avoid problems

You probably also noted that there is an Application Arguments window.  In this row you would specify any additional commands you would like to send to the application.

Apply the settings, hit F5 and you should be ready to go and debug your processes.   While trying to get this to work, I experienced pretty much every error out there, so post in the comments if you any issues and I will help you resolve them.   Happy debugging!

How to download the Microsoft Compute Cluster Pack

8. August 2007 13:26 by Csaborio in General  //  Tags:   //   Comments (0)
The Compute Cluster Pack can be downloaded from Microsoft's site; however it is not as trivial as it sounds.  These steps will hopefully make it easier to obatin the bits:

  1. Go to http://www.microsoft.com/windowsserver2003/ccs/default.aspx
  2. Click on the Get the Trial Software link:


  3. Click on the big blue button that says Get Started Today
  4. Sign-in to microsoft
  5. Select your country from the list
  6. Fill out the information that is being requested
  7. Review your order total (whooping $0.00), agree to the terms and conditions and click Place Order
  8. You will get a receipt and can now click on link to go to the installation instructions
  9. You will then be presented with the option to download the Compute Cluster Pack:



Enjoy!

How to Debug MPI Applications in Visual Studio 2005 (Part 1)

8. August 2007 10:25 by Csaborio in General  //  Tags:   //   Comments (0)
While assisting some customers at a High Performance Computing Event, I had the need to remember how to debug an MPI application.  See, when you create  distributed applications that will run on various computers (nodes) you need to use special tools to debug them.  Think about it, you want have a centralized Visual Studio instance and be able to debug each process within the same IDE.  Even though the idea sounds demented, the implementation is actually quite simple given that you follow the steps carefully.  Let's get started.

This is lengthy tutorial, so it will most likely be split into various steps.  Edit: It is now a 2 part tutorial, Part 2 is found here.

Step 1 : Install the Remote Debugger

You need to install the Remote Debugguer on EACH of the nodes that will run the application you are trying to debug.  The remote debugger is included on the Visual Studio 2005 distribution media within the “\vs\Remote Debugger\x64” folder.
 
You need to install it on each of the compute nodes (and on the head node if it is going to be working as a compute node).  Once you install it, make sure you fire it up so that it will be awaiting connections.

You need to use the x64 remote debugguer.   Distributed applications on Windows Server 2003 Compute Cluster edition NEED to be 64-bit if you would like to debug them with mpishim.



Step 2: Make mpishim Easily Accesible

When you install the remote debugger, mpishim is installed.  Mpishim is the binary responsible for launching the processes on each of the nodes for debugging.   The default location for mpishim is "C:\Program Files\Microsoft Visual Studio 8\Common7\IDE\Remote Debugguer\x64".  The trick here is to copy all those binaries from that x64 folder to a place that is easier to specify (such as c:\windows\system32).  By doing so, you do not need to specify the whole path of mpishim when modifying the project properties debug info (which will be done later on).

Furthermore, you want to make sure that you copy mpishim to the same location on EACH compute node.   That is, if you coiped mpishim on c:\windows\system32 on Node 1, then you must copy it for the rest of the nodes as well in the exact same directory.



It is a good idea to copy all of the files within that directory in order to avoid missing on a dependency that mpishim may have.

Step 3: Modify the Registry

Cmd.exe has an issue with UNC paths.  MPI Debugging relies on these paths so just to be safe and make sure nothing breaks, carry out the following modification on each of the clusters.  Access the following registry key:

HKEY_CURRENT_USER\Software\Microsoft\Command Processor

Add a DWORD entry entitled “DisableUNCCheck” and set the value to 1:



That about covers the first half, on my next post I will cover the what needs to be done at the scheduler and visual studio level.   Read the second part in this link.

7z what?

4. August 2007 01:59 by Csaborio in General  //  Tags:   //   Comments (0)


Sending files can sometimes be a bit pesky.  Depending on the size limit set by your SMTP server, you will usually end up splitting the file in smaller chunks or following some other method.  There are various compression mechanisms out there that work OK, such as zip or rar.   Lately, I have found a new compression format called 7z.

I have been compressing archives and the level of compression of 7z (especially with word files that have embedded images) is amazing.  I was able to compress a 24 Mb word file to 4 MB in less than 5 seconds.  I really don't know if RAR offers the same (or better) compression ratio, but AFAIK, there is no RAR compression solution for OS X.

7z has various clients available for lots of platforms out there.  My personal for OS X is 7zX.  Download one of them and give them a try, you might save a byte or two.

VHDMount and TrueImage - Be Careful when formatting drives

26. July 2007 05:59 by Csaborio in General  //  Tags:   //   Comments (0)
Today I was helping a colleage to restore an image that was created with TrueImage to an empty VHD.  The process can be narrowed down to the following steps:

  1. Create the image using TrueImage
  2. Create two VHDs on the target VM (one to store the image, and the other to restote the image to)
  3. Mount the VHD that will hold the TrueImage image using vhdmount and format it
  4. Copy the Image from step 1 onto the VHD
  5. Unmmount the image and commit changes
  6. Boot into drive image and restore the image

Sounds easy?  Well, usually it is - but today I faced a problem with step 3 above.   When I mounted the VHD and formatted it, everything seemed fine, but when TrueImage tried to read the VHDs, it barfed and said that it was "unsupported".  This was very weird since I mounted the VHDs time and time again without problems and the contents were inside.   The VHDs were formatted as NTFS,  so there really was no reason for the "unsupported" file format.

We tested and decided to format the partitions from within TrueImage using the new hardware wizard.   After formatting them, I mounted the one that would hold the TrueImage image, copied the file and then tried to restore the image once again.

To my surprise, this time around TrueImage read both drives and the image contained on the VHD that I just copied.  After that, it was just a matter of specifying the source and target and the P2V migration was underway.

Bottom line, if you are planning on using empty VHDs with TrueImage (the bootable CD), make sure that you format the VHD with the utility itself and not within Windows using vhdmount.  Why?  Dunno, but if someone would like to shed some light on this issue, please be my guest!


Need to send large files? Use SendSpace!

16. July 2007 14:30 by Csaborio in General  //  Tags:   //   Comments (0)
There are many possibilities today when you would like to send a big file to a user.  IMHO, sending big files over e-mail is a big waste of bandwidth; think about it.  You send the file to the mail server, which sends it over to the recipients mail server, which is then transferred over to the recipients machine.  The file travels a lot!

It is best to send links to files you would like to download (unless you are sending small files).  For the last year I had been using streamload, but lately things have changed and it has just been awful.

I searched for a way to send big files and stumbled upon SendSpace, which lets you send files without any problems.  They offer a client for uploading files for Windows, Mac OS X, and Linux.   Furthermore, they offer some features such as notification when the file you have posted has been downloaded.  Here is snapshot of the client, make sure you check it out:


Virtual Server and VMWare Server

16. July 2007 12:35 by Csaborio in General  //  Tags:   //   Comments (0)
During the last month, due to some testing we had to carry out with a software project, I needed to work with 64-bit virtual machines.   Virtual Server does not support 64-bit virtual machines, so I downloaded a copy of VMWare's free server solution and decided to give it a try.  After playing around with VMWare Server, I've had my ups and downs which I will try to contrast with my previous experiences with Virtual Server. 

Price

Both are free, no contest there.  VMWare requires a registration process to obtain the product key for the server, which can be a bit of a hassle.  Virtual Server requires a registration process as well but no product key is needed.

64-bit Support

VMWare's server runs as a 32-bit process on 64-bit hosts and offers support for 64-bit VMs (read again, slowly and it will make sense).  Virtual Server runs as a 64-bit process on 64-bit hosts and does not offer support for 32-bit VMs.

Types of Virtual Hard Drives

VMWare offers virtual drives that expand as they become bigger or ones that are of fixed size.  It does not offer what is known as Difference Disks in Virtual Server.  These disks are amazing when working with lab environments or for multiple restore points, and is one feature I cannot believe is in some way or another on VMWare.

Undo Disks

VMware and Virtual Server both have this option.  The restore process under VMWare is easier to carry out than on Virtual Server.

Cross Compatibility


VMWare Virtual Server imports Virtual Servers vhds seamlessly.  It does, however, convert them to a big mess of chunks that is hard to maintain.  Although Virtual Server does not import any other type of virtual hard drive from another reseller, there are tools out there that will do the job for you.

GUI

Even though there are some clear advantages of having a web interface for Virtual Server, there should have been a binary to administer it.  There are some new alternatives out there that might work for Virtual Server, but the bottom line is that the 32-bit client for controlling VMWare's server blows any web application out of the water.

Overall, both are excellent products and the fact that they are free is amazing.  I have grown so used to Virtual Server that I will continue to use it unless I have the specific need for a 64-bit VM, and when that time comes, I will hopefully be able to use Longhorn Virtualization.