Account Options

  1. Sign in
The old Google Groups will be going away soon, but your browser is incompatible with the new version.
Google Groups Home
« Groups Home
Announcing PyCascading, a Python wrapper for Cascading
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  3 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
Gabor Szabo  
View profile  
 More options Dec 13 2011, 2:49 pm
From: Gabor Szabo <gabor.j.sz...@gmail.com>
Date: Tue, 13 Dec 2011 11:49:45 -0800 (PST)
Local: Tues, Dec 13 2011 2:49 pm
Subject: Announcing PyCascading, a Python wrapper for Cascading
PyCascading brings Python to Cascading. It lets you assemble and run
Cascading flows from Python, and user-defined functions, aggregators,
and filters are also written natively in Python. The Python
interpreter is Jython, so all the libraries available to both Python
and Java are reusable for putting together Cascading jobs quickly.

The usual word counting example would look like this:

@map(produces=['word'])
def split_lines(tuple):
    for word in tuple.get('line').split():
        yield [word]

def main():
    ...
    input | split_lines | GroupBy('word') | Count() | output
    ....

Decorators are used to decorate functions to be used in flows, pipes
are chained together with the '|' operator, and merged with '&' in
joins.

PyCascading is open source, and hosted at https://github.com/twitter/pycascading
. Please see the examples folder for usage patterns, and submit any
questions or reports to the cascading-user list.

Happy hacking,
Gabor


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Chris K Wensel  
View profile  
 More options Dec 13 2011, 3:48 pm
From: Chris K Wensel <ch...@wensel.net>
Date: Tue, 13 Dec 2011 12:48:33 -0800
Local: Tues, Dec 13 2011 3:48 pm
Subject: Re: Announcing PyCascading, a Python wrapper for Cascading
This is great news!

chris

On Dec 13, 2011, at 11:49 AM, Gabor Szabo wrote:

--
Chris K Wensel
ch...@concurrentinc.com
http://concurrentinc.com

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
WonJun Cho  
View profile  
 More options Apr 3 2012, 12:04 am
From: WonJun Cho <WonJun....@gmail.com>
Date: Mon, 2 Apr 2012 21:04:24 -0700 (PDT)
Local: Tues, Apr 3 2012 12:04 am
Subject: Re: Announcing PyCascading, a Python wrapper for Cascading

Wow, it's great work!
Thank you for regarding python~


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »