Giter Club home page Giter Club logo

cuesheet's People

Contributors

emesday avatar jongwook avatar oss-kakao avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

cuesheet's Issues

Support dependency version conflict resolution

Currently DependencyAnalyzer does not resolve dependency version conflicts while building assembly.

A simpler step to do is to make it include the latest version, and possibly provide an option to give a specific strategy for resolution

Support Kerberos-authenticated YARN

Currently CueSheet does not support submitting applications to YARN clusters that require Kerberos authentication.

The goal is to make CueSheet work in such YARN clusters, by adding Kerberos-related properties in application.conf as necessary.

Perform tests

Due to the nature of this framework, writing unit tests like conventional libraries is not easy.

However, for the stability of the codebase we should find a way to automate testing of basic features, such as YARN deployment, spark startup, etc.

Travis CI's sudo-enabled environment provides 7.5 GB of RAM, which may barely run ZooKeeper, HDFS, Hive, and YARN.

Duplicate dependency is too verbose

When a CueSheet application is running on YARN, it is typical that the JVM has duplicate JARs in the classpath. However, DependencyGraph prints too many warning messages that are very long, polluting the YARN application log.

It should shorten the warning messages, and possibly suppress or lower the log level of the message if the application is running on YARN.

CueSheet does not pick up Hive configurations in cluster mode

When sc is instantiated in cluster mode, it does not pickup hive-conf.xml and other Hadoop configuration files as specified in spark.master configuration. Since other Hadoop configurations are already available from YARN, Hive configurations are usually the only thing that is left off.

CueSheet should pick up non-YARN Hadoop configurations when instantiating SparkContext here and here, possibly by setting sparkConf to contain Hadoop configurations when launched in cluster mode.

A workaround is possible, by explicitly specifying Hive configurations when extending CueSheet with its optional constructor parameter like:

object Example extends CueSheet({
  val conf = new org.apache.hadoop.conf.Configuration(false)
  conf.addResource(Thread.currentThread().getContextClassLoader.getResourceAsStream("quickstart/hive-site.xml"))
  conf.iterator().toSeq.map {
    e => ("spark.hadoop." + e.getKey, e.getValue)
  }
}: _*) {{

Does One-Liner Deployment work?

Even if -Dcuesheet.install is given, this version 0.10.0 submits a job to Yarn.

As I understand, if -Dcuesheet.install is defined, no job would be launched. But Cuesheet performs deployment then print a shell command.

Is it right?

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.