Skip to content

Instantly share code, notes, and snippets.

@namabile
namabile / application.log
Last active September 26, 2015 14:29
Spark Notebook logs
at org.apache.thrift.protocol.TBinaryProtocol.readMessageBegin(TBinaryProtocol.java:219) ~[org.apache.thrift.libthrift-0.9.2.jar:0.9.2]
at org.apache.thrift.TServiceClient.receiveBase(TServiceClient.java:69) ~[org.apache.thrift.libthrift-0.9.2.jar:0.9.2]
at tachyon.thrift.MasterService$Client.recv_worker_getPinIdList(MasterService.java:463) ~[org.tachyonproject.tachyon-common-0.7.1.jar:na]
at tachyon.thrift.MasterService$Client.worker_getPinIdList(MasterService.java:451) ~[org.tachyonproject.tachyon-common-0.7.1.jar:na]
at tachyon.master.MasterClient.worker_getPinIdList(MasterClient.java:832) ~[org.tachyonproject.tachyon-common-0.7.1.jar:na]
at tachyon.worker.block.PinListSync.run(PinListSync.java:101) [org.tachyonproject.tachyon-servers-0.7.1.jar:na]
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) [na:1.8.0_51]
at java.util.concurrent.FutureTask.run(FutureTask.java:266) [na:1.8.0_51]
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142) [na:1.8
{
"Example standalone" : {
"profile" : "standalone",
"name" : "Example standalone",
"status" : "stopped",
"template" : {
"customLocalRepo" : null,
"customRepos" : null,
"customDeps" : null,
"customImports" : null,
@namabile
namabile / Vagrantfile
Last active September 22, 2015 15:12
ec2 Vagrantfile
# vi: set ft=ruby :
Vagrant.configure(2) do |config|
config.vm.box = "dummy"
config.omnibus.chef_version = :latest
config.vm.provider :aws do |aws, override|
aws.access_key_id = ENV["AWS_KEY_ID"]