755 reputation
59
bio website
location ZZ9: Plural Zα
age
visits member for 4 years, 5 months
seen May 12 at 3:05
stats profile views 139

My about me is mostly blank.


Nov
16
answered ycsb for mongodb
Oct
17
answered Hadoop Map Reduce reference static objects
Oct
15
comment Best Practices for securing a REST API / web service
@fiXedd - The opposite has been my experience with client certs because they are truly stateless. Client cert authenticated connections can be load balanced with a dumb load balancer with no regard to connection stickyness because they require absolutely zero shared state between the client and server.
Jun
22
comment Create two resources at once using Restful HTTP API
Yes, that's a perfectly fine use of POST. I'm PUT happy.
Jun
17
answered Create two resources at once using Restful HTTP API
Apr
23
comment Authentication with public/private key signatures: What's a good message (digest)?
Is there a reason that you don't want to use a standard SSL/TLS handshake using client certificates?
Jan
2
comment HBase Export/Import: Unable to find output directory
Where have you looked for the export file? Your local file system? Or a path in hdfs? Have you tried specifying an absolute path?
Dec
15
awarded  Yearling
Jul
8
comment RESTful development -How to share with clients?
They shouldn't need your classes at all to make use of the JSON representation of your class. If the JSON being generated is tightly coupled to some java class implementation such that it doesn't make sense without that particular implementation, then it should probably be changed. Can you post a sample of the JSON?
Jun
15
awarded  Notable Question
May
27
comment Having issue setting up Hadoop
Look for useful error messages under your log directory in the namenode and datanode files. By default the log directory is $HADOOP_HOME/log.
Apr
28
awarded  Nice Answer
Mar
30
comment What Java REST framework to use with App Engine and Android for students?
I second your assessment of Restlet.
Mar
16
awarded  Commentator
Mar
16
comment Providing several non-textual files to a single map in Hadoop MapReduce
Glad that worked for you. Happy Hadooping.
Feb
28
answered Client Server API pattern in REST (unreliable network use case)
Feb
28
comment Providing several non-textual files to a single map in Hadoop MapReduce
Creating the sequence file shouldn't take a very long time, and the efficiency gain comes from using that file more than once. It has been a while since I used them, but if I recall correctly, the sequence file will result in one instance of a Mapper per HDFS chunk on the task trackers, and those instances will invoke the map method once for each record in the local chunk (the inputsplit) of the sequencefile. The most important overhead to eliminate is the creation of the mapper instance, not multiple invocations of the map method within a Mapper instance.
Feb
27
answered Providing several non-textual files to a single map in Hadoop MapReduce
Feb
26
comment Regular Expression in C++
Interesting, I'd like to read more about that if you have any links that go into detail.
Feb
26
answered Regular Expression in C++