User mrflip - Stack Overflowmost recent 30 from stackoverflow.com2010-03-18T22:11:51Zhttp://stackoverflow.com/feeds/user/41857http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/2160863/new-to-hadoop-and-dumbo-how-to-correctly-sequence-these-operations/2189293#21892930Answer by mrflip for New to Hadoop and dumbo, how to correctly sequence these operations?mrfliphttp://stackoverflow.com/users/418572010-02-03T02:40:53Z2010-02-03T02:47:31Z<p>If I understand, the first step is to calculate a histogram:</p>
<pre><code>[attr, value] => frequency
</code></pre>
<p>where <code>frequency</code> is the number of times that <code>value</code> ocurred in the <code>attr</code> column.</p>
<p>The next step is to take the histogram table and the original data, for each line calculate the AVF, and sort them.</p>
<p>I'd do it in two passes: one map-reduce pass to calculate the histogram, a second m-r pass to find the AVF using the histogram. I'd also use a single constant hash guilt-free, as getting the histogram values and the cell values to the same locality will be a messy beast. (For example, have map1 emit <code>[attr val id]</code> with <code>[attr val]</code> as key; and have reduce1 accumulate all records for each key, count them, and emit <code>[id attr val count]</code>. The second pass uses <code>id</code> as key to reassemble and then average each row).</p>
<hr>
<p>To calculate a histogram, it helps to think of the middle step as 'group' rather than 'sort'. Here's how: since the reduce input is sorted by key, have it accumulate all records for the given key, and as soon as it sees a different key, emit the count. Wukong, the ruby equivalent of dumbo, has an <code>Accumulator</code>, and I assume dumbo does too. (See below for working code).</p>
<p>This leaves you with</p>
<pre><code>attr1 val1a frequency
attr1 val1b frequency
attr2 val2a frequency
...
attrN attrNz frequency
</code></pre>
<p>For the next pass, I'd load that data into a hash table -- a simple <code>Hash</code> (<code>dictionary</code>) if it fits in memory, a fast key-value store if not -- and calculate each record's AVF just as you had it.</p>
<hr>
<p>Here is working ruby code to calculate the avf; see <a href="http://github.com/mrflip/wukong/blob/master/examples/stats/avg_value_frequency.rb" rel="nofollow">http://github.com/mrflip/wukong/blob/master/examples/stats/avg_value_frequency.rb</a></p>
<h2>First Pass</h2>
<pre><code>module AverageValueFrequency
# Names for each column's attribute, in order
ATTR_NAMES = %w[length width height]
class HistogramMapper < Wukong::Streamer::RecordStreamer
def process id, *values
ATTR_NAMES.zip(values).each{|attr, val| yield [attr, val] }
end
end
#
# For an accumulator, you define a key that is used to group records
#
# The Accumulator calls #start! on the first record for that group,
# then calls #accumulate on all records (including the first).
# Finally, it calls #finalize to emit a result for the group.
#
class HistogramReducer < Wukong::Streamer::AccumulatingReducer
attr_accessor :count
# use the attr and val as the key
def get_key attr, val, *_
[attr, val]
end
# start the sum with 0 for each key
def start! *_
self.count = 0
end
# ... and count the number of records for this key
def accumulate *_
self.count += 1
end
# emit [attr, val, count]
def finalize
yield [key, count].flatten
end
end
end
Wukong::Script.new(AverageValueFrequency::HistogramMapper, AverageValueFrequency::HistogramReducer).run
</code></pre>
<hr>
<h2>Second pass</h2>
<pre><code>module AverageValueFrequency
class AvfRecordMapper < Wukong::Streamer::RecordStreamer
# average the frequency of each value
def process id, *values
sum = 0.0
ATTR_NAMES.zip(values).each do |attr, val|
sum += histogram[ [attr, val] ].to_i
end
avf = sum / ATTR_NAMES.length.to_f
yield [id, avf, *values]
end
# Load the histogram from a tab-separated file with
# attr val freq
def histogram
return @histogram if @histogram
@histogram = { }
File.open(options[:histogram_file]).each do |line|
attr, val, freq = line.chomp.split("\t")
@histogram[ [attr, val] ] = freq
end
@histogram
end
end
end
</code></pre>
http://stackoverflow.com/questions/2180101/generating-multiple-output-files-with-hadoop-0-20/2189012#21890120Answer by mrflip for Generating Multiple Output files with Hadoop 0.20+mrfliphttp://stackoverflow.com/users/418572010-02-03T01:06:27Z2010-02-03T01:06:27Z<p>You can <em>do</em> this in Hadoop 0.20, just that as mentioned you have to use the older API.</p>
<p>There's some very rough code to do so in
<a href="http://github.com/orngejaket/Info_Moist_1_Splicer/tree/master/src/contrib/streaming/src/java/org/infochimps/hadoop/mapred/lib/" rel="nofollow">http://github.com/orngejaket/Info_Moist_1_Splicer/tree/master/src/contrib/streaming/src/java/org/infochimps/hadoop/mapred/lib/</a></p>
<p>The resulting jar writes each record to a file named after its (sanitized) key.</p>
http://stackoverflow.com/questions/945709/emacs-23-os-x-multi-tty-and-emacsclient/1800724#18007240Answer by mrflip for Emacs 23, OS X, multi-tty and emacsclientmrfliphttp://stackoverflow.com/users/418572009-11-25T23:43:23Z2009-11-25T23:43:23Z<p>I have an alias from emacs to </p>
<pre><code>open -a /Applications/Emacs.app "$@"
</code></pre>
<p>If you are annoyed by the fact that it opens a new frame (window) for each file -- add</p>
<pre><code>(setq ns-pop-up-frames nil)
</code></pre>
<p>to your .emacs and fixed.</p>
http://stackoverflow.com/questions/388302/how-to-implement-eigenvalue-calculation-with-mapreduce-hadoop/774221#7742212Answer by mrflip for how to implement eigenvalue calculation with MapReduce/Hadoop?mrfliphttp://stackoverflow.com/users/418572009-04-21T19:30:47Z2009-04-21T19:30:47Z<p>PageRank solves the dominant eigenvector problem by iteratively finding the steady-state discrete flow condition of the network.</p>
<p>If NxM matrix A describes the link weight (amount of flow) from node n to node m, then </p>
<pre><code>p_{n+1} = A . p_{n}
</code></pre>
<p>In the limit where p has converged to a steady state (p_n+1 = p_n), this is an eigenvector problem with eigenvalue 1. </p>
<p>The PageRank algorithm doesn't require the matrix to be held in memory, but is inefficient on dense (non-sparse) matrices. For dense matrices, MapReduce is the wrong solution -- you need locality and broad exchange among nodes -- and you should instead look at LaPACK and MPI and friends.</p>
<p>You can see a working pagerank implementation in the <a href="http://github.com/infochimps/wukong/tree/master/examples/pagerank" rel="nofollow">wukong library</a> (hadoop streaming for ruby) or in the <a href="http://webteam.archive.org/confluence/display/Heritrix/Offline%2BPageRank%2BAnalysis%2BNotes" rel="nofollow">Heretrix pagerank submodule</a>. (The heretrix code runs independently of Heretrix)</p>
<p>(disclaimer: I am an author of wukong.)</p>
http://stackoverflow.com/questions/735791/hadoop-examples/774163#7741631Answer by mrflip for Hadoop examples?mrfliphttp://stackoverflow.com/users/418572009-04-21T19:18:14Z2009-04-21T19:18:14Z<p>There are several examples using ruby under Hadoop streaming in the <a href="http://github.com/infochimps/wukong" rel="nofollow">wukong library</a>. (Disclaimer: I am an author of same). Besides the now-standard wordcount example, there's pagerank and a couple simple graph manipulation scripts. </p>
http://stackoverflow.com/questions/758774/capistrano-bash-ignore-command-exit-status/774139#7741392Answer by mrflip for Capistrano & Bash: ignore command exit statusmrfliphttp://stackoverflow.com/users/418572009-04-21T19:09:42Z2009-04-21T19:09:42Z<p>The +grep+ command exits non-zero based on what it finds. In the use case where you care about the output but don't mind if it's empty, you'll discard the exit state silently:</p>
<pre><code>run %Q{bash -c 'grep #{escaped_grep_command_args} ; true' }
</code></pre>
<p>Normally, I think the first solution is just fine -- I'd make it document itself tho:</p>
<pre><code>cmd = "my_command with_args escaped_correctly"
run %Q{bash -c '#{cmd} || echo "Failed: [#{cmd}] -- ignoring."'}
</code></pre>
http://stackoverflow.com/questions/543961/warm-up-cache-on-deployment/774069#7740690Answer by mrflip for "Warm Up Cache" on deploymentmrfliphttp://stackoverflow.com/users/418572009-04-21T18:55:36Z2009-04-21T18:55:36Z<p>Preloading this way -- generally, with a cron job to start at 10pm Pacific to and terminate at 6am Eastern time -- is a nice way to load-balance your site.</p>
<p>Check out the <a href="http://github.com/courtenay/spider%5Ftest/tree/master" rel="nofollow">spider_test rails plugin</a> for a simple way to do this in testing.</p>
<p>If you're going to use the wget above, add the --level=, --no-parent, --wait=SECONDS and --waitretry=SECONDS options to throttle your load, and you might as well log and capture the header responses for diagnosis or analysis (change the path from /tmp if desired):</p>
<pre><code>wget -r --level=5 --no-parent --delete-after \
--wait=2 --waitretry=10 \
--server-response \
--append-output=/tmp/spidering-`date "+%Y%m%d"`.log
'http://whatever.com/~popular/page/'
</code></pre>
http://stackoverflow.com/questions/319711/ruby-on-rails-and-active-record-standalone-scripts-disagree-on-database-values-fo/328157#3281571Answer by mrflip for Ruby on Rails and Active Record standalone scripts disagree on database values for :timestampsmrfliphttp://stackoverflow.com/users/418572008-11-29T23:15:42Z2008-11-29T23:15:42Z<p>There is a setting in config/environment.rb that sets a time_zone. Possibly this is not set the same in your script:</p>
<pre><code># Make Time.zone default to the specified zone, and make Active Record store time values
# in the database in UTC, and return them converted to the specified local zone.
# Run "rake -D time" for a list of tasks for finding time zone names. Uncomment to use default local time.
config.time_zone = 'UTC'
</code></pre>
<p>You can also try explicitly specifying the TZ and format: </p>
<pre><code>require 'active_support/core_ext/date/conversions'
record.the_time.utc.to_s(:db)
</code></pre>
<p>(or cheat and grab the code fragment from there if you're not using active_support in your standalone script)</p>
http://stackoverflow.com/questions/320621/ruby-pdf-parsing-gem-library/328144#3281440Answer by mrflip for ruby pdf parsing gem/library mrfliphttp://stackoverflow.com/users/418572008-11-29T23:06:24Z2008-11-29T23:06:24Z<p>Dr.Fred is right: don't be afraid to use <code>backticks</code> where required.</p>
<p>For an idea of the complexity required, look at this guy's <a href="http://edwardbetts.com/rail_timetable_parser" rel="nofollow">script to parse every British Rails Timetable</a> and keep in mind: this is one script on one collection of uniform and well-formatted documents.</p>
http://stackoverflow.com/questions/328041/scripting-language-choice-for-initial-performance/328132#3281320Answer by mrflip for Scripting language choice for initial performancemrfliphttp://stackoverflow.com/users/418572008-11-29T22:58:24Z2008-11-29T22:58:24Z<p>Can you instead have it be a long-running process and answer http or rpc requests?<br />
This would satisfy the latency requirements in almost any scenario, but I don't know if that would break your memory footprint constraints.</p>