Hadoop Streaming using C - c

I have to write a Hadoop Streaming program using just C. I have been trying to find a WordCount program online but without any success. I would be grateful if someone would share any C Hadoop Streaming program
Thanks

Just googled and found this page and this with different examples.

Related

Netsnmp library usage

I am trying to write a C program using the netsnmp library for system observation over a network. I'd like to know more details on this. Can someone help me with this?
I suggest you read the netsnmp tutorials. This one shows you how to query a device once you know the ip address. Start simple and work up to multiple devices.

LabView communication with WM_Copydata

I am attempting to use LabView in order to perform data acquisition for my system while still keeping the existing C program functioning as usual. I hope to achieve this by using the wm_copdata command and communicating over dll.
Unfortunately, most of the examples I have found for doing this are from a much earlier version of LabView or only support Windows 32-bit. The C portion of the system is completely implemented and I think I understand what is going on fairly well. Any assistance with the LabView portion would be appreciated.
I believe the answer you seek is here:
http://forums.ni.com/t5/LabVIEW/WM-copydata/td-p/2416948
The user EWiebe posted the code for a small utility DLL that is then invoked from LabVIEW.

implementing open/write function for FAT file system

I have to implement open/write function in the Broadcomd(firmware code) availabel at http://www.broadcom.com/support/communications_processors/downloads.php, I am going through http://elm-chan.org/fsw/ff/00index_e.html to develop an understanding of FAT file system. I have developed some understanding of the code too from the above link. But still not able to write the full fledge code...missing some design part....Could u guys plz help me to develop an implementation level understanding.
After going through the FAT32 data structures, and viewing the raw sectors with the help of NTdiskviewer utility...I have developed better understanding. Currently I have implemented it partially and open/create functions are working very fine.

Good C library to parse apache log file

I would like to parse a lot of apache log files with a C library.
Who knows a good C library which is optimized for good performance?
Thank you for advice!
Did you give a try to MergeLog ? You can use the parser that comes with it.

FastCGI on Windows and Lighttpd

I'm looking to make my CGI forum software FastCGI compatible.
The forum software consists of a few dlls and .exe (.cgi) files written in C and x86 assembly language. I also have a SQlite3 database.
Lighttpd runs all these cgi scripts as child processes and I much say that the whole thing works pretty damn well.
But I want to experiment with FastCGI. However, the examples are poor, the documentation is poor, and it really looks like it's made for Linux in mind. Did someone get FastCGI working on Windows? If someone has a code example around, and the lighttpd configuration lines, I would be really grateful.
i've done some work with fastcgi on windows. bottom line is its not a lot of fun - you are 100% correct that there aren't a lot of sample and it the documentation is poor. but, the developer who i was helping on this was in contact with the guys who write iis and the fastcgi spec and was able to get his software to work. some changes are in the works to help. here is a link to some information:
http://blogs.iis.net/ksingla/archive/2009/04/20/fastcgi-isapi-1-5-beta-for-winxp-and-win2k3.aspx
i should add that the guy i was working with had so many problems with libfcgi.dll that he ended up rewriting it (see the reference to libfcgi2.dll in the article linked above.)
best regards,
don

Resources