Reduce refers to the second step in a map reduce step, a component of a larger scalable, parallel-izable algorithm

learn more… | top users | synonyms

0
votes
0answers
7 views

Emergent Help on Map/Reduce

I have a map/reduce job. In this job map will call the method "getLine()" in class DataBuiler to get the data i want. But I just find out that the *.jar Application can only work well in the folder ...
1
vote
1answer
55 views

Merging more than 2 dataframes in R by rownames

I gather data from 4 df's and would like to merge them by rownames. I am looking for an efficient way to do this. This is a simplified version of the data I have. df1 <- data.frame(N= ...
1
vote
1answer
29 views

Running jar file map reduce without Hdfs

I have bundled a jar from my eclipse project. I would like to pass arguments to the jar. Basically an input file to the jar. I would like to know how to give an input file that is not in Hdfs. I know ...
0
votes
1answer
24 views

error in hadoop mapreduce program

I am trying to write data from hbase to hdfs and encountered this error in compilation. Is it problem with the reducer code or something else? HbaseFile.java:36: setReducerClass(java.lang.Class) in ...
0
votes
3answers
61 views

Python: AttributeError: 'tuple' object has no attribute 'setdefault'

say a list of tuples like this: y=[('a', 'b', 'c'), ('a', 'c', 'b'), ('b', 'a', 'c'), ('b', 'c', 'a'), ('c', 'a', 'b'), ('c', 'b', 'a')] I am trying to use reduce() feature to make a string of ...
1
vote
0answers
21 views

Database size not reduced after compressing tables [migrated]

In MS SQL Server 2008 R2 I use table compression. My table size reduced from 1770 MB to 250 MB , but the database size was not reduced. Why?
0
votes
1answer
49 views

How to reduce nested if-else condition?

I do a lot of nested if-else condition in my code. It's about 34 times i do it. You know, It's really driving me crazy. Please tell me how to reduce it. Thank you. and here my code : if ($input_age ...
-2
votes
0answers
41 views

Map Reduce to find age of person [closed]

Can anyone help me to write map reduce program to find age of person given their birth date How to store as date data type in Rscript?
-2
votes
3answers
45 views

DRY code to implement action listener (JAVA) [closed]

I'm now implementing a tray game, in which i use some JButton to represent the tray. But the tray makes 7x7, so to implement the action listener it's not so fun. I have a code like this now : public ...
-2
votes
0answers
33 views

Reduce vector 10000000 to 1000 cuda [closed]

I´m knowing cuda architecture. I practice with some exercises of my teacher. But i need reduce a vector 10,000,000 to 1,000 it´s using shared memory from gpu. Now i cant make that and ask you, if ...
0
votes
0answers
80 views

MR Job failing with the error java.lang.RuntimeException: Error in configuring object

I tried to execute the example from the Penatho Website http://wiki.pentaho.com/display/BAD/Using+Pentaho+MapReduce+to+Generate+an+Aggregate+Dataset+in+MapR with the following error. It works for a ...
0
votes
1answer
21 views

Unexpected behaviour with Mongodb Mapreduce

I'm testing mapreduce function but I have unexpected behaviour: I populated my collection with this simple for cycle: for (i=0; i<10000; i++) {db.coll.insert({'a':1,'b':2})} So I want count the ...
0
votes
2answers
41 views

Use global variable in reudcer class

I need to use global variable in my mapreduce program how to set it in following code and use global variable in reducer. public class tfidf { public static tfidfMap.............. { } public ...
1
vote
1answer
59 views

Runtimeexception: java.lang.NoSuchMethodException: tfidf$Reduce.<init>()

how to solve this problem:tfidf is my main class why this error coming after running jar file? java.lang.RuntimeException: java.lang.NoSuchMethodException: tfidf$Reduce.<init>() at ...
0
votes
2answers
64 views

Same key different Reducers (HADOOP)?

is it possible to process values with same key on different reducers ? from all mappers i got data with same key and i want to process it with different reducers ? my confusion is that the book says ...
0
votes
2answers
48 views

Reduce output to desired file based on Key/value pair (HADOOP)

is it possible to send reducer output to more than one file based on the key ? like, if(key1) { //output to file1 using context.write() or otherwise } else { //output to file2 ...
0
votes
1answer
68 views

Iterate over key/values more than once in Reduce phase (HADOOP)?

How to iterate multiple times on the key/value pairs received in Reduce phase of HADOOP. i want to do something like it, but it's not entering into the 2nd iteration. for (Vector value : values) { ...
0
votes
3answers
45 views

Unable to make native javascript reduce() function work

I'm trying to aggregate data using the reduce() function in javascript (similar to this question): HTML Product 1: <button id="product1">Add one</button> Product 2: <button ...
2
votes
1answer
534 views

Scala : fold vs foldLeft

I am trying to understand how fold and foldLeft and the respective reduce and reduceLeft work. I used fold and foldLeft as my example scala> val r = List((ArrayBuffer(1, 2, 3, 4),10)) scala> ...
0
votes
0answers
25 views

Android decrease size of graphic in application

I use bitmaps in application and work with .bmp or .png formats. I try to comply with standards from developer android page - Supporting Different Densities But if I use bitmaps on background and ...
1
vote
0answers
41 views

how could i factor this recursion as a reduce?

/** * recursively build a nested Backbone.Model or Backbone.Collection * from a deep JSON structure. * * undefined for regex values */ exports.modelify = function modelify ...
3
votes
2answers
71 views

Memory efficiency of each versus reduce/inject in Ruby

I have a large array (10+ million objects) that I want to combine into a single object (for simplicity, let's assume here a string) and run each element in the array through some processing ...
1
vote
0answers
27 views

Maximum characters Facebook comments?

Is it possible to reduce the maximum characters so you get earlier the "read more" link? I added comments this way to my website: https://developers.facebook.com/docs/reference/plugins/comments/ I ...
-1
votes
1answer
110 views

Couchbase vs Cloudant CouchDB - differences with Javascript in reduce

Ok, I've been banging my head for a way around this all weekend, and I'm finally stumped. My reduce map func: function(doc) { if(doc.primary_keys) { for(pi in doc.primary_keys) { var pk ...
0
votes
0answers
51 views

Shift-reduce conflict

I got this simple grammar: Productions program = stmts; stmts = {stmts1} stmts stmt | {stmts2} stmt; stmt = exprs; exprs = {exprs1} exprs expr | {exprs2} expr; ...
-1
votes
1answer
53 views

graph path on hadoop with python

Hy guys, i have to write an algorithm in python with the map reduce paradigm that has to run on hadoop: Let us assume that given a directed graph G = (V,E), an edge (v,u) ∈ E means that v is ...
-2
votes
4answers
175 views

How to reduce javascript / jquery / ajax load time for my website? [closed]

How to reduce javascript / jquery / ajax load time for my website ? my website is : http://maavankal.com/
0
votes
0answers
40 views

Hadoop reduce task failed while assign array values

Update : The problem is solved. My map function emits as following. I want to split the values and put them in arrays to sort. But I got java.lang.ArrayIndexOutOfBoundsException exception. Please ...
0
votes
6answers
137 views

Javascript reduce() on Object

There is nice Array method reduce() to get one value from the Array. Example: [0,1,2,3,4].reduce(function(previousValue, currentValue, index, array){ return previousValue + currentValue; }); What ...
0
votes
1answer
12 views

need clarity implementing interface GridTask<T,R>

I need clarity in implementing reduce() and map() methods of GridTask, How can we Pass arguments to these methods, Map map(List subgrid,T arg)throws GridException R reduce(List results)throws ...
2
votes
1answer
50 views

Function application and reduction on large arrays

I have two numpy arrays, X and Y whose shapes are X.shape == (m,d) and Y.shape == (n,d), where m, n, and d are non-trivial sizes. I need to make a third array Z whose shape is Z.shape == (m,n). An ...
0
votes
3answers
109 views

Unable to fix shift/reduce conflicts in Bison grammar

I have the following Bison grammar: %error-verbose %{ #include "node.h" NBlock *programBlock; #define YYDEBUG 1 extern int yylex(); void yyerror(const char *s) { printf("Error: %s\n", s); } %} ...
3
votes
2answers
91 views

Transforming a list of alists into a different list of alists based on values

I want to transform this list of alists: (setq terms '((("name" . "t1c1") ("taxonomy" . "category")) (("name" . "t1c2") ("taxonomy" . "category")) ...
2
votes
1answer
61 views

Why couchdb's reduce is implemented this way?

For example, this is a function that returns the sum and length of a row: function(key, values, rereduce) { var result = {total: 0, count: 0}; for(i=0; i < values.length; i++) { ...
0
votes
2answers
128 views

Kernel Launch Failure

I'm operating on a Linux system and a Tesla C2075 machine. I am launching a kernel that is a modified version of the reduction kernel. My aim is to find the mean and a step by step averaged ...
0
votes
2answers
94 views

Optimization for large strings C/C++

I'm looking for a way to optimize my implementation. Basically this is a "reduce"-like (from Map Reduce framework) function. It takes a key and its values. The goal is to check all the values if they ...
2
votes
2answers
103 views

group-by with reduce in clojure

I want to aggregate large dataset to get something like SELECT SUM(`profit`) as `profit`, `month` FROM `t` GROUP BY `month` So, i modified clojure's group-by function like so (defn group-reduce [f ...
1
vote
1answer
60 views

Stop Reduce function in Hadoop on condition

I have a reduce function where i want to halt the reduce function after processing some 'n' keys. I have set a counter to increment on each key, and on condition being satisfied return from the reduce ...
1
vote
1answer
77 views

Xtend “Movies example” best answer

I followed the Xtend tutorial and the Movies example. At the end of this tutorial, you can find this question: @Test def void sumOfVotesOfTop2() { val long sum = movies.sortBy[ -rating ...
1
vote
1answer
55 views

How to reduce the complexity?

I have to resolve a problem using dynamic programming. for(int i = 3; i < N; i++){ for(int j= 3; j < T; j++){ .. I want to reduce the complexity.How can I make this?
0
votes
1answer
64 views

MPI min function in reduce

I am trying to find the minimum number in my array of integers, however, it returns 0. import mpi.*; import java.util.Random; class AddIntSR { public static void main(String[] params) throws ...
1
vote
1answer
103 views

R - converting recursive code to functional programming

I want to do a conditional cumsum. I originally thought I could use the Reduce function but I wasnt able to. To explain clearly : a <- rep(1,5) b <- rnorm(n=5,mean=0.5) c <- rep(2,5) d <- ...
0
votes
2answers
61 views

Reduce list based on index

Say I have 3 lists x1 = [1, 2, 3, 4] x2 = [2, 3, 4, 5] x3 = [3, 4, 5, 6] I would like to reduce this list of lists based on index. We could reduce this by summing the elements: - x1[i] + x2[i] + ...
0
votes
1answer
50 views

Reduce a list with operator as summing each element in mpi4py

I am writing a mpi python code. For example, four procs have data below: data on procs0: [1, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0] data on procs1: [0, 0, 0, 4, 5, 6, 0, 0, 0, 0, 0, 0] data on procs2: [0, ...
0
votes
2answers
133 views

MongoDB: how to return distinct data with filtering

I have a "Post" collection with a lot of posts and I want to retrieve distinct YearMonth value from post.published_date Return Example: ['201303', '201301', '201212' ... ... ] I'm using Symfony2 + ...
2
votes
1answer
69 views

RavenDB complex index

While I'm really excited about idea of using RavenDB as OLTP-application storage I'm bit in trouble with Linq/Map-Reduce index implementations. Here is what I'm trying to do - I have documents - ...
5
votes
2answers
185 views

Scala: idiomatic way to merge list of maps with the greatest value of each key?

I have a List of Map[Int, Int], that all have the same keys (from 1 to 20) and I'd like to merge their contents into a single Map[Int, Int]. I've read another post on stack overflow about merging ...
5
votes
3answers
121 views

Stumped by one line of Python

I'm unofficially doing a python course CS61A through Berkely, and I'm absolutely stumped by one simple assignment that requires me to provide only one expression at the very end of the provided ...
0
votes
1answer
107 views

Scala assumes wrong type when using foldLeft

I am trying to create a cross product function in Scala, where k is the number of times I build the cross product. val l = List(List(1), List(2), List(3)) (1 to k).foldLeft[List[List[Int]]](l) { ...
1
vote
2answers
41 views

reduce() hstack python

I am trying to use reduce() function to create a function hstack() which horizontally stacks multiple arrays. As a simple example, lets say >>>>M=eye((4)) >>>>M array([[ ...

1 2 3 4 5 7