6 pages tagged with "hive-memory"

"Unrecognized option: -files" in hadoop streaming job

August 11, 2014 - 232 words - 2 mins
I was recently working on an Elastic MapReduce Streaming setup, that required copying a few required Python files to the nodes in addition to the mapper/reducer. After much trial & error, I ending up using the following .NET AWS SDK code to accomplish the file upload: var mapReduce = new Streami… read more

Testing a SignalR application using WebDriver in IE9

April 16, 2013 - 81 words - 1 mins
I was having problems testing a SignalR application in IE9 using the Selenium IEServerDriver - the WebDriver instance would block indefinitely after navigating to a page that starts a hub connection. SignalR Issue 293 seems to imply that the IE WebDriver is not compatible with foreverFrame - it neve… read more

Using NuGet packages in Visual Studio 2012 project templates

September 17, 2012 - 510 words - 3 mins
Anyone creating Visual Studio project templates these days should be using NuGet package references for project dependencies — it saves you having to update your templates every time a dependency changes, and follows a standard & generally accepted binary dependancy approach. If you're distribut… read more

Sorting an NSMutableArray using a block

November 09, 2010 - 60 words - 1 mins
Now we have blocks in Objective-C, we no longer need to define standalone methods to implement a custom array sort. However, I’m always forgetting the exact syntax, so, mostly as a reminder to myself: [alerts sortUsingComparator:(NSComparator)^(Alert *a1, Alert *a2) { if ([a1.severity compare:a2.se… read more

happstack-util build failure on OS X

October 22, 2010 - 99 words - 1 mins
Attempting to cabal install happstack on OS X resulted in numerous errors, including: ghc: could not execute: /Library/Frameworks/GHC.framework/Versions/612/usr/lib/ghc-6.12.3/ghc-asm There’s a bug with the Haskell platform installer for OS X — the shebang line in the file /Library/Frameworks/GHC.… read more

NuPack Antlr 3.1.3 version mismatch

October 19, 2010 - 104 words - 1 mins
I installed FluentNHibernate & NHibernate.Core 3.0 Beta through the excellent NuPack. Attempting to run a Linq query against the session resulted in: Could not load file or assembly 'Antlr3.Runtime, Version=3.1.3.42154, Culture=neutral, PublicKeyToken=3a9cab8f8d22bfb7' or one of its dependencie… read more