Posts

Quick Update on Nexenta and Super Micro

Just a quick note regarding our Nexenta storage solution. Sunday afternoon a few weeks back (why do these things always happen on weekends) we had a truck knock over a utility pole just down the street from our office and we lost power to the building. Our server room contains one badly underpowered UPS with no generator backup so it wasn't long before everything in the room was shut down. I cancelled my plans, headed into the office and waited for power to get restored, then proceeded to power everything back up (This is always a nerve wracking time). All went well with one exception - Nexenta reported being unable to see any disks in my array and therefore failed to mount any shares. All our data drives are housed in our Super Micro 836E2-R800B JBOD Chassis. I headed into the server room and the system light was on but no lights on any of the drives. Rebooting the Nexenta head unit did not resolve the issue. After a 20 minutes of high anxiety I noticed the power supplies...

A big thumbs up for Nexenta Storage

Image
OK I'm stuck at work for a few more minutes waiting for a job to finish so I'll throw out a bit of info regarding my newly built Nexenta storage platform. Based in part from sticker shock looking at Dell or HP low end storage devices as well as on the advice from Mike from over at IPHouse.net, I bought some Super Micro parts and built the storage cluster myself. I started with a 836E2-R800B 3U chassis just for housing the disks. I wonder if there is some kind of cheat sheet for Super Micro products because it seems confusing as hell. I will clue you in that the E2 on the end signifies dual input/output SAS connections. The SAS connections plug into a Super Micro 6016T-NTRF4+ 1U Server. I'm sad to say that I have absolutely no idea what all those letters signify. I just picked the one Mike picked (although I've since ordered another server with a different config so I can start to compare). I stuck 2 Intel E5620 processors in it, 12GB of DDR3 RAM and a coupl...

Data Protection Manager 2010 - Connection to the DPM service has been lost

We are in the process of migrating our backup solution over to Microsoft Data Protection Manager 2010 and ran into an issue that other might find useful. Although it's early days, overall I'm very pleased with the product. We are a MS only shop so it's a good logical fit for us. We are using an IBM TS3200 tape library for our tape storage connected via FC. I installed DPM, configured the FC switch fabric and then I just went into Management/Libraries and hit Rescan. DPM found the library but just identified it as a single tape drive, not the library. Off to the IBM support website for their usual cryptic search led to proper drivers (IBMTape.x64_w08_6209.zip). Installed the drivers and hit Rescan in DMP and just like that DPM recognized the library. So far so good. The Inventory library option worked like a charm discovering all the tapes in the library, however when we tried to do any other option such as erase or identify unknown tape the entire DPM console wo...

Headphones, take me away

Image
I suppose at this point it is pretty well established among my friends that I love to travel. Well addicted might be a more accurate description. As a frequent traveler I do get to experience the joys of First/Business Class travel. While I'm no longer awestruck to find myself there, the richness of my memories still surprise me. This is most visible (or I guess audible) to me in the strange connection of certain songs to specific trips. As much as I struggle with remembering things, I'm always a little astonished at how strongly a specific song can place me in an exact point in time. The most vivid of all of these memories seem to take place in a first class cabin. Maybe it's because I can totally relax, while not actually able to 'go' anywhere, that allows my mind to fully absorb these memories. It's strange, because often these songs that end up holding such a special place in my heart are not songs I would normally include in my favorites. The most...

A taste of my road-trip mix tape

Image
Buttons by The Weeks Anna Begins by Counting Crows Everlong by Foo Fighters One new and 2 staples, although the staples tend to fluctuate between songs but the bands are pretty stable. The great thing about music and trips for me is to focus on an album for an entire trip. It has to be one that I am currently hooked on (so not an automatic for every trip). If I am able to have a single album for that trip then for years to come I have a teleporter to that trip. Pop the album in and and the trips feelings and emotions come right back to the surface.

Windows 7 take 1…. and Action!

My first post from within Win7 and I must say overall I have been very pleased.  My understanding is this version is more of an R2 of Vista than brand new everything and I think the early Beta stability represents that  (Disclaimer: I am a happy Vista user). The only issue I have had is the lack of a way to mount an iso except through third party plugins.  In this day and age where everything gets distributed via iso files it just seems crazy.  We are left to scrounge around in the free third party tools world to install apps that install device drivers deep in the heart of Windows.  All of this work to create a stable, secure, and reliable OS and the first thing I have to do before I can install Visual Studio is start loading unsupported device drivers which not surprisingly at all, suck.  So for 3 hours last night (until I could find and rip out the offending stuff) my explorer would not work, shutdown would not work and required a hard reset.  So ...

Linq to Objects (When orderby does not order by but OrderBy does)

I must admit that while I have really enjoyed getting to know linq , it is not without it's frustrations. Sometimes things that seem like they should work, compile giving you that warm fuzzy, then in execute mode they turn out not to work. I understand that what this really means is that I don't yet intuitively grasp the internals of what is happening in the plumbing but perhaps one day I will. With that being said, today's example is about my first use of orderby for a linq to object query. Consider this linq statement: var needed = from a in myFCs where a.Status == Status.Needed orderby a.Priority, a.WeeksIncluded, a.QtyPlan select a; Looks ok, compiles ok, runs ok with the small issue that as you step through the collection the objects are not ordered as requested. My first thought was that I might need to modify my object class maybe add an additional interface or two. However a few minutes with google got me to here . On...