Cascading is a Query API, Query Planner, and Process Scheduler used for defining and executing complex, scale-free, and fault tolerant data processing workflows on a Hadoop cluster.
0
votes
1answer
29 views
Cascading - regex parser - wrong number of fields
Starting to play with Cascading on Amazon EMR, have managed to get it running BUT falling at a fairly simple hurdle and I was hoping someone could shed some light on it.
My code:
import ...
2
votes
1answer
74 views
Ajax Cascading DropDownLists with web service don't work on server, the lists are empty
I need help with ajax cascading dropdownlists which work perfectly on my local computer but when i deployed it on server all dropdownlists are empty, without any error message!
Can anyone please help ...
0
votes
0answers
9 views
Fluent NHibernate HasMany cascad deleting
I have mapping for parent:
public PersonMap()
{
Map(x => x.Gender).CustomType<GenderEnum>().Not.Nullable();
Map(x => x.FirstName).Not.Nullable();
...
2
votes
4answers
59 views
Mapreduce Table Diff
I have two versions (old/new) of a database table with about 100,000,000 records. They are in files:
trx-old
trx-new
The structure is:
id date amount memo
1 5/1 100 slacks
2 5/1 50 wine
...
0
votes
1answer
51 views
hadoop cascading how to get top N tuples
New to cascading, trying to find out a way to get top N tuples based on a sort/order. for example, I'd like to know the top 100 first names people are using.
here's what I can do similar in teradata ...
1
vote
1answer
47 views
QueryDsl, elegant way to make method cascades NULL safe with Java or Groovy
If often run into NPEs when traversing cascading methods that could be null somewhere a long the path. For instance I'd like to query the customer's "salutation" property..
ConstructorExpression ...
0
votes
1answer
37 views
Cascalog first-n - unable to join predicates
I'm working through the following example in a lein repl in a clone from the cascalog project. I've run:
(def src [[1] [3] [2]])
(def queryx (<- [?x ?y] (src ?x) (inc ?x :> ?y)))
(?<- ...
0
votes
1answer
80 views
Getting cascading.tap.hadoop.io.MultiInputSplit class not found exception while running hadoop program using cascading framework
Here is my code that connects to hadoop machine and perform set of validation and write on another directory.
public class Main{
public static void main(String...strings){
...
0
votes
0answers
6 views
Is there a way to copy the Fields associated with a Pipe in Cascading?
I've been maintaining a Fields object that mirrors the Fields associated with one of the Pipes. This allows me to modify declared fields pretty easily when I am getting ready to do a CoGroup for ...
0
votes
1answer
18 views
How to rename Pipe fields in cascading?
In two separate occasions, I've had to rename all the fields in a Pipe to join (using Merge or CoGroup). What I have done recently is:
//These two pipes contain similar values but different Field ...
0
votes
1answer
21 views
How do I force a reducer in cascading?
To gain some of the benefits only possible with reducers and not mappers.
0
votes
1answer
24 views
How to average several columns at once in Scalding?
As the final step on some computations with Scalding I want to compute several averages of the columns in a pipe. But the following code doesn't work
myPipe.groupAll { _average('col1,'col2, 'col3) }
...
1
vote
1answer
50 views
Interpreting Cascading dot diagrams
Can someone explain how to read these diagrams? I understand the flow from head to tail, but I am specifically wondering about how to read the field (bracket) transitions between ellipses ...
0
votes
1answer
31 views
Cascading(buffer) implementation
I need to create a buffer in cascading hadoop.
Suppose i have fields : member_id,amountpaid,diadnosis_id,diagnosis_description,superGrouper_id,superGrouper_descriptiion,grouperId,grouperDescription
...
1
vote
3answers
123 views
Where can I find a tutorial for installing and running cascading.jruby?
I have Hadoop installed and testing fine, however unable to find any instructions for a n00b on
How to setup cascading and cascading.jruby. Where to place the cascading Jars and how to configure ...
2
votes
1answer
236 views
Cascading HBase Tap
I am trying to write Scalding jobs which have to connect to HBase, but I have trouble using the HBase tap. I have tried using the tap provided by Twitter Maple, following this example project, but it ...
0
votes
0answers
31 views
Prevent cascading refreshes
I have a header.js that includes in its ready section the following:
var auto_refresh = setInterval(function () {
var theToken = $('#token').text();
$('#error-div').text('');
...
1
vote
2answers
42 views
Use Apache Cascading in windows
I am starting to use Cascading library, but I search information and all is about cascading on linux... I have executed fine the Impatient examples in a ubuntu server.
But I want to develop and test ...
0
votes
2answers
20 views
cascading : How to read or write multicharactor word?
If 'Each' read GBK String from file and Write GBK String to file, how can i do? How to define it?
Fields namesFields = new Fields("zid", "vid", "title", "number");
sourcePipe = new Each(sourcePipe, ...
1
vote
0answers
83 views
cascading : how to define every map-reduce job in configuration?
My code is below. This is cascading code.
And it has 8 jobs. I don't know how to configure every job.
Code below configure 8 jobs togerher.
But what i want to do is let last job one reduce.
I want ...
0
votes
0answers
259 views
Webmatrix: Passing 2 values to a Cascading Drop-down list
I am using webmatrix, razor to make my site. I use a SQL db.
I have a large list of lenses. I wish to find a group of lens in this list and have decided that using a cascading drop-down would be the ...
1
vote
2answers
52 views
C++ Cascading type conversion
How do I get type conversion to work when cascading the type conversions?
The following code should be simple, but converison from TypeB to int requires the compiler to deduce two type conversions ...
2
votes
3answers
170 views
how to prevent hadoop job to fail on corrupted input file
I'm running hadoop job on many input files.
But if one of the files is corrupted the whole job is fails.
How can I make the job to ignore the corrupted file?
maybe write for me some counter/error log ...
0
votes
1answer
56 views
cartesian product in cascading
I'm working on a cascading program which needs to find not only a word count, but also the total fraction of all words that accounts for. I've had no problem getting as far as the word count itself ...
1
vote
4answers
661 views
Clojure Hadoop - 5 Lines of Cascalog equivalent to 300 lines of PIG?
In this presentation at slides 36 and 37 - the author of Cascalog asserts that given a data set of names and ages like:
[name age]
that the query to return all the results that are greater than the ...
1
vote
0answers
36 views
Scalability issues with templatetap
I wrote a cascading 1.2 program that does the following processing from data of a sensor network:
Read CSV files having 3 columns: millisecond timestamp, event type (either of sensor data, battery ...
1
vote
1answer
327 views
knockout js unable to bind cascading dropdown
I'm new to knockout, and trying to create work out how to populate a second dropdown list based on a selection made in the first.
I've been basing my code on the first fiddle provided by rpn in this ...
1
vote
0answers
109 views
PPS cascading filter not working at initial loading
I have created 3 cascading filters:
Company
Calendar Type
Dates
When the company is selected the Calendar type is filtered to those that belong to the company then the dates selection is filtered ...
0
votes
1answer
727 views
(doctrine2 + symfony2) cascading remove : integrity constraint violation 1451
First, sorry for my poor english...
I got four entities : User, Application, Bundle & Entity. Here are their relations (with cascading persist & remove, see code below) :
User 1-n ...
1
vote
2answers
117 views
Calculate sums of even/odd pairs on Hadoop?
I want to create a parallel scanLeft(computes prefix sums for an associative operator) function for Hadoop (scalding in particular; see below for how this is done).
Given a sequence of numbers in a ...
0
votes
1answer
108 views
Cascade Hadoop file loading - method to deal with records crossing a newline?
I'm working with Hadoop to process some files distributed across a cluster of JVM instances.
I'm using the Cascading library to interface to Hadoop.
I want to parse a text file where the records ...
0
votes
1answer
213 views
CSS Media Query Styles Being Overridden
I've looked into media query related questions for a while yet haven't found a solution to my problem. I'm sure it's just a tiny thing I'm overlooking, but for some reason I can't figure it out.
So, ...
1
vote
1answer
684 views
how to get input file name in hadoop cascading
In map-reduce I would extract the input file name as following
public void map(WritableComparable<Text> key, Text value, OutputCollector<Text,Text> output, Reporter reporter)
...
-1
votes
1answer
84 views
got error when running Cascading code on CDH3 - token can't be found in cache
Can someone help me out with following error when running a Cascading code?
The error happens when a CoGroup() is used to join two data streams. These two data streams are fine if they are separately ...
2
votes
1answer
93 views
Compilation error when using Cascading 2.0 in scala
I am using cascading 2.0 in scala, and meet a weird compilation issue
This is main parts of the code
val sojSource = createSojSource(optionMap("input"))
val sinkScheme = createSojScheme(true)
val ...
2
votes
0answers
423 views
How to reset the partial view containing cascading dropdown list in MVC4 Jquery
I am using MVC4/EF and I have four cascading dropdownlist and I got it working the first time. So when the page is rendered first time, I am able to select the first dropdown and filter the result on ...
1
vote
0answers
119 views
Ajax cascading dropdownlist 3rd level not working properly
I have been using AJAX for 2 level cascading dropdown lists. Country and state. It was working fine. Problem is now I added one more level - City now the problem is , city is not binding properly. On ...
2
votes
1answer
219 views
Cassandra Cascalog operation across all rows
I have data that looks like this
{super-row-key1 [{ts1 {version-ts1 value, version-ts2 value}}
{ts2 {version-ts1 value}}]
super-row-key2 ...}
These keys and values look ...
0
votes
0answers
69 views
Loading cascading dropdownlist: local development IIS much faster than live IIS
I have created a "table" of sorts with drop down lists - 10 rows with 4 drop downs in each row. This is to function in a cascading fashion - e.g. selecting the value from the first column loads the ...
0
votes
2answers
129 views
Cascading S3 Sink Tap not being deleted with SinkMode.REPLACE
We are running Cascading with a Sink Tap being configured to store in Amazon S3 and were facing some FileAlreadyExistsException (see [1]).
This was only from time to time (1 time on around 100) and ...
1
vote
1answer
1k views
JPA: How do I add new Items to a List with a OneToMany annotation
I have 2 tables. One is called Employee, and the other is called Phones, and an employee can have multiple Phones.
Employee Class:
@Entity
@Table(name = "employee")
public class Employee {
@Id
...
1
vote
2answers
105 views
how to use similarity algorithm for keys of hadoop map resuce job
I need to implement the following problem:
I'm getting the data of type
public class Data{
private String key;
private String valueData;
}
I need to write a map reduce job to get all unique ...
1
vote
1answer
142 views
CSS/js cascading Verticle Menu accordion: trying to make my active page show as active
given up tearing my hair out, can anyone help?
I'm trying to get the active page to apply a separate style, in the example same as when you click on test1 ie have the dark background hen on the ...
2
votes
1answer
47 views
Select latest month record from group of records for several groups
I have a table that generates a record each month for each project status report (PSR) if a PSR is/was generated. From a single table, I need to get the most recent record for each PSR.
This gives me ...
0
votes
1answer
290 views
AJAX Toolkit cascading dropdown list database - CS ok, but VB fail
Cascading dropdown list is ok with CS but the same site in VB doesn't work. In VB the last dropdown list looses it's value when postback, it takes the value of the previous dropdown list.
The two ...
0
votes
1answer
70 views
Load balancing Cascading JDBCTap for MySQL
I am considering writing a Cascading application that issues SELECT statements to MYSQL databases where each query can return millions of rows.
Each database exists on N slaves and one master, as ...
0
votes
5answers
89 views
CSS Cascading takes over inheritance, how to solve this?
We have run into a wall trying to figure out why CSS inheritance does not work as expected.
To describe the problem... I have a reusable CSS that defines various background colors and we switch ...
0
votes
1answer
184 views
SSRS Report Cascade Parameter
Have 3 parameters in my SSRS report, Location, Has book, author
Location will always be selected and is a multivalue drop down and it has it's own dataset.
Has book is a true or false and values come ...
0
votes
2answers
88 views
Access Cascaded JSON in javascript
If I have the following JSON object, how can I access the survey.id (e.g 1) using JavaScript? I'm using Backbone / json.stringify / object.parse
[{
"class": "org.example.UserBooking",
"id": ...
1
vote
1answer
3k views
asp.net/MVC 3/razor/jquery/cascading dropdown list not working
I'm new to stackoverflow as well as to jquery/javascript. I've been searching all day for different ways to add cascading drop down lists to my current project and have yet to find a way that has ...


