Giter VIP home page Giter VIP logo

native_spark's Introduction

native_spark

Join the chat at https://gitter.im/fast_spark/community

A new arguably faster implementation of Apache Spark from scratch in Rust. WIP

Code is tested only on Linux and requires nightly version.

Refer make_rdd.rs and other examples in example code to get the basic idea.

Instructions for running the code in Local and Distributed mode

First, Install Cap'n Proto Then, run these following steps:(Tested only on Linux)

  • git clone https://github.com/rajasekarv/native_spark/
  • cd native_spark
  • You need to have hosts.conf in the format present inside config folder in the home directory of all the machines when running in distributed mode and all of them should be ssh-able from master. Change master-ip as 0.0.0.0 in case of local mode. Setup appropriate IPs of master and executor nodes for distributed mode.
  • The master port can be configured in hosts.conf and port 10500 in executors should be free. Ports 5000-6000 is reserved for shuffle manager. It will be handled internally soon.
  • export SPARK_LOCAL_IP=0.0.0.0 when running in local mode and appropriate IP in all machines when running in distributed mode.
  • cargo run --example make_rdd

Since File readers are not done, you have to use manual file reading for now (like manually reading from S3 or hack around local files by distributing copies of all files to all machines and make rdd using filename list).

Ctrl-C handling and panic handling is not done yet, so if there is some problem in runtime, executors won't shut down automatically and you have to manually kill the processes.

One of the limitations of current implementation is that the input and return types of all closures and all input to make_rdd should be owned data.

ToDo

  • Error Handling(Priority)
  • Fault tolerance

RDD

Most of these except file reader and writer are trivial to implement

  • map
  • flat_map
  • filter
  • group_by
  • reduce_by
  • distinct
  • count
  • take_sample
  • union
  • glom
  • cartesian
  • pipe
  • map_partitions
  • for_each
  • collect
  • reduce
  • fold
  • aggregate
  • take
  • first
  • sample
  • zip
  • save_as_text_file(can save only as text file in executors local file system)

Config Files

  • Replace hard coded values

native_spark's People

Contributors

0xflotus avatar alecmocatta avatar ariesdevil avatar edprince avatar gitter-badger avatar gzsombor avatar iduartgomez avatar marcelbuesing avatar nimpruda avatar rajasekarv avatar rodrigocfd avatar steven-joruk avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.