Skip to content
Compare
Choose a tag to compare
@doronrosenberg doronrosenberg released this 23 Sep 21:24
  • Allow Node to create multiple Spark Contexts at a time (/issues/109). This changes the EclairJS API slightly as you know need to create a new EclairJS instance for each context:
var eclairjs = require('eclairjs');

var spark = new eclairjs();

var sc = new spark.SparkContext("local[*]", "My Program");
  • Several ml fixes