Skip to content

Instantly share code, notes, and snippets.

@koduki
Created October 10, 2016 13:07
Show Gist options
  • Save koduki/e4d3217088cbf4e56ac236cc017f701f to your computer and use it in GitHub Desktop.
Save koduki/e4d3217088cbf4e56ac236cc017f701f to your computer and use it in GitHub Desktop.
List<Item> items = createItemList("Item", 100);
bench("outer_join(df:bloadcast)", 5, () -> {
long count = sc.parallelize(items)
.map(x -> sleep(1))
.count();
System.out.println("finish: " + count);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment