npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

reall-cli

v0.0.45

Published

A command line interface for Reall Hadoop Tool

Downloads

73

Readme

npm version

Reall Command Line Interface

The official Command-Line for Reall Project, a Hadoop Tool for easy Job Automation and Real Time Display base on HDFS and MapReduce.

How to install

To install just type npm install reall-cli -g:

Create your first Reall Hadoop Job

# Creating a Reall Hadoop Job:
#
reall add -j "My First Reall Hadoop" -m "mapperByWeekday.py" -r "reducerByWeekday.py" -t -c
cd ~/ReallHdop/MyFirstReallHadoop/

# Download scripts and test datasets
#
curl -l https://s3-us-west-2.amazonaws.com/reall/data/purchases_100.txt -o input/purchases_100.txt
curl -l https://s3-us-west-2.amazonaws.com/reall/code/mapperByWeekday.py -o mapperByWeekday.py
curl -l https://s3-us-west-2.amazonaws.com/reall/code/reducerByWeekday.py -o reducerByWeekday.py

# Run the job
#
reall hd -j MyFirstReallHadoop

Create your first (medium size) Reall Hadoop Job

Just go ahead and practice something bigger, this time we will use the input/purchases.txt which is a 202Mb file:

# Creating a Reall Hadoop Job:
#
reall add -j "My First Medium Size Reall Hadoop" -m "mapperByWeekday.py" -r "reducerByWeekday.py" -t -c
cd ~/ReallHdop/MyFirstMediumSizeReallHadoop/

# Download scripts and test datasets
#
curl -l https://s3-us-west-2.amazonaws.com/reall/data/purchases.txt -o input/purchases.txt
curl -l https://s3-us-west-2.amazonaws.com/reall/code/mapperByWeekday.py -o mapperByWeekday.py
curl -l https://s3-us-west-2.amazonaws.com/reall/code/reducerByWeekday.py -o reducerByWeekday.py

# Run the job
#
reall hd -j MyFirstMediumSizeReallHadoop

Using command line help

To see all options type reall -h:

$ reall -h

  Usage: reall [options] [command]


  Commands:

    *
    hd [options]    Run basic Hadoop commands
    fs [options]    Runs basic HDFS commands
    add [options]   Add new Job Definitions to the Reall instance

  Options:

    -h, --help     output usage information
    -V, --version  output the version number

For basic Hadoop commands options type reall hd -h:

$ reall hd -h

  Usage: hd [options]

  Run basic Hadoop commands

  Options:

    -h, --help                       output usage information
    -j, --job [job]                  The job name identifier you want to run
    -m, --mapper [mapper]            The mapper script to be used on hadoop command
    -r, --reducer [reducer]          The reducer script to be used on hadoop command
    -c, --combiner [combiner]        The combiner script to be used on hadoop command
    -i, --input [input]              The input directory for the hadoop command
    -o, --output [output]            The output directory for the hadoop command
    -t, --transporter [transporter]  The transporter script to be used after hadoop command completes successfully

For basic HDFS commands options type reall fs -h:

$ reall fs -h

  Usage: fs [options]

  Runs basic HDFS commands

  Options:

    -h, --help               output usage information
    -p, --put [put]          Puts a file into hadoop file system
    -g, --get [get]          Pulls a file from hadoop file system
    -t, --target [target]    The targeted files to be trasfered
    -d, --destiny [destiny]  The destiny folder where to locate trasfered files

For adding Automated Hadoop Jobs options type reall add -h:

$ reall add -h

  Usage: add [options]

  Add new Job Definitions to the Reall instance

  Options:

    -h, --help                       output usage information
    -j, --job [job]                  The Job Name identifier
    -m, --mapper [mapper]            The mapper script to be used on hadoop job
    -r, --reducer [reducer]          The reducer script to be used on hadoop job
    -c, --combiner [combiner]        The combiner script to be used on hadoop job
    -i, --input [input]              The input directory for the hadoop job
    -o, --output [output]            The output directory for the hadoop job
    -t, --transporter [transporter]  The transporter script to be used after hadoop job completes successfully