tl;dr: You do not have a big data problem.
Command-line tools can be faster than your Hadoop cluster
31–40 of 315 posts
Re: Command-line tools can be faster than your Hadoop cluster
#32Re: Command-line tools can be faster than your Hadoop cluster
#33Re: Command-line tools can be faster than your Hadoop cluster
#34Awk and Sed aren't very accessible to most people who did not grow up learning those tools. The whole point of tools built on top of Hadoop (Hive/Pig/HBase) is to make large scale data processing more accessible (by hiding the map-reduce as much as possible). Not everyone will want to write a Java map-reduce in Hadoop. However, many can write a HiveQL statement or Pig textual script. Amazon Redshift brings it even fa…
Re: Command-line tools can be faster than your Hadoop cluster
#35Perhaps I'm missing something. It appears that the author is recommending against using Hadoop (and related tools) for processing 3.5GB of data. Who in the world thought that would be a good idea to begin with? The underlying problem here isn't unique to Hadoop. People who are minimally familiar with how technology works and who are very much into BuzzWords™ will always throw around the wrong tool for the job so they…
Re: Command-line tools can be faster than your Hadoop cluster
#36Re: Command-line tools can be faster than your Hadoop cluster
#37This also isn't a straight either or proposition. I build local command line pipelines and do testing and/or processing. When either the amount of data needed to be processed passes into the range where memory or network bandwidth makes the processing more efficient on a Hadoop cluster I make some fairly minimal conversions and run the stream processing on the Hadoop cluster in streaming mode. It hasn't been uncommon…
Re: Command-line tools can be faster than your Hadoop cluster
#38See https://www.gnu.org/software/parallel/man.html#DIFFERENCES-B...
Re: Command-line tools can be faster than your Hadoop cluster
#39'xargs -n' elicits fond memories of spawning large jobs to my Openmosix cluster ! I miss Openmosix.