Last active
December 18, 2015 20:17
-
-
Save vojtajina/e8c0efaacfed2b08c367 to your computer and use it in GitHub Desktop.
zeppelin-issue
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
val sqlContext = new org.apache.spark.sql.SQLContext(sc) | |
val testresults = sqlContext.read.json("/Users/vojta/Code/test.json") | |
testresults.registerTempTable("testresults") | |
testresults.printSchema() | |
// Output: | |
// sqlContext: org.apache.spark.sql.SQLContext = org.apache.spark.sql.SQLContext@5c927efe | |
// testresults: org.apache.spark.sql.DataFrame = [build: string, date: string, finished_epoch: double, first_failed_test_category: string, first_failed_test_error_string: string, first_failed_test_id: string, model: string, result_finished: string, result_started: string, root_test_category: string, root_test_id: string, status: string, tags: struct<mail_failure:boolean,product_failure:boolean,spotlight_failure:boolean,suggestd_failure:boolean>, train: string, uuid: string] | |
// root | |
// |-- build: string (nullable = true) | |
// |-- date: string (nullable = true) | |
// |-- finished_epoch: double (nullable = true) | |
// |-- first_failed_test_category: string (nullable = true) | |
// |-- first_failed_test_error_string: string (nullable = true) | |
// |-- first_failed_test_id: string (nullable = true) | |
// |-- model: string (nullable = true) | |
// |-- result_finished: string (nullable = true) | |
// |-- result_started: string (nullable = true) | |
// |-- root_test_category: string (nullable = true) | |
// |-- root_test_id: string (nullable = true) | |
// |-- status: string (nullable = true) | |
// |-- tags: struct (nullable = true) | |
// | |-- mail_failure: boolean (nullable = true) | |
// | |-- product_failure: boolean (nullable = true) | |
// |-- train: string (nullable = true) | |
// |-- uuid: string (nullable = true) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
%sql | |
select * | |
from testresults | |
-- Output: | |
org.apache.spark.sql.AnalysisException: no such table testresults; line 2 pos 5 | |
at org.apache.spark.sql.catalyst.analysis.package$AnalysisErrorAt.failAnalysis(package.scala:42) | |
at org.apache.spark.sql.catalyst.analysis.Analyzer$ResolveRelations$.getTable(Analyzer.scala:260) | |
at org.apache.spark.sql.catalyst.analysis.Analyzer$ResolveRelations$$anonfun$apply$7.applyOrElse(Analyzer.scala:268) | |
at org.apache.spark.sql.catalyst.analysis.Analyzer$ResolveRelations$$anonfun$apply$7.applyOrElse(Analyzer.scala:264) | |
at org.apache.spark.sql.catalyst.plans.logical.LogicalPlan$$anonfun$resolveOperators$1.apply(LogicalPlan.scala:57) | |
at org.apache.spark.sql.catalyst.plans.logical.LogicalPlan$$anonfun$resolveOperators$1.apply(LogicalPlan.scala:57) | |
at org.apache.spark.sql.catalyst.trees.CurrentOrigin$.withOrigin(TreeNode.scala:51) | |
at org.apache.spark.sql.catalyst.plans.logical.LogicalPlan.resolveOperators(LogicalPlan.scala:56) | |
at org.apache.spark.sql.catalyst.plans.logical.LogicalPlan$$anonfun$1.apply(LogicalPlan.scala:54) | |
at org.apache.spark.sql.catalyst.plans.logical.LogicalPlan$$anonfun$1.apply(LogicalPlan.scala:54) | |
at org.apache.spark.sql.catalyst.trees.TreeNode$$anonfun$4.apply(TreeNode.scala:249) | |
at scala.collection.Iterator$$anon$11.next(Iterator.scala:328) | |
at scala.collection.Iterator$class.foreach(Iterator.scala:727) | |
at scala.collection.AbstractIterator.foreach(Iterator.scala:1157) | |
at scala.collection.generic.Growable$class.$plus$plus$eq(Growable.scala:48) | |
at scala.collection.mutable.ArrayBuffer.$plus$plus$eq(ArrayBuffer.scala:103) | |
at scala.collection.mutable.ArrayBuffer.$plus$plus$eq(ArrayBuffer.scala:47) | |
at scala.collection.TraversableOnce$class.to(TraversableOnce.scala:273) | |
at scala.collection.AbstractIterator.to(Iterator.scala:1157) | |
at scala.collection.TraversableOnce$class.toBuffer(TraversableOnce.scala:265) | |
at scala.collection.AbstractIterator.toBuffer(Iterator.scala:1157) | |
at scala.collection.TraversableOnce$class.toArray(TraversableOnce.scala:252) | |
at scala.collection.AbstractIterator.toArray(Iterator.scala:1157) | |
at org.apache.spark.sql.catalyst.trees.TreeNode.transformChildren(TreeNode.scala:279) | |
at org.apache.spark.sql.catalyst.plans.logical.LogicalPlan.resolveOperators(LogicalPlan.scala:54) | |
at org.apache.spark.sql.catalyst.analysis.Analyzer$ResolveRelations$.apply(Analyzer.scala:264) | |
at org.apache.spark.sql.catalyst.analysis.Analyzer$ResolveRelations$.apply(Analyzer.scala:254) | |
at org.apache.spark.sql.catalyst.rules.RuleExecutor$$anonfun$execute$1$$anonfun$apply$1.apply(RuleExecutor.scala:83) | |
at org.apache.spark.sql.catalyst.rules.RuleExecutor$$anonfun$execute$1$$anonfun$apply$1.apply(RuleExecutor.scala:80) | |
at scala.collection.LinearSeqOptimized$class.foldLeft(LinearSeqOptimized.scala:111) | |
at scala.collection.immutable.List.foldLeft(List.scala:84) | |
at org.apache.spark.sql.catalyst.rules.RuleExecutor$$anonfun$execute$1.apply(RuleExecutor.scala:80) | |
at org.apache.spark.sql.catalyst.rules.RuleExecutor$$anonfun$execute$1.apply(RuleExecutor.scala:72) | |
at scala.collection.immutable.List.foreach(List.scala:318) | |
at org.apache.spark.sql.catalyst.rules.RuleExecutor.execute(RuleExecutor.scala:72) | |
at org.apache.spark.sql.SQLContext$QueryExecution.analyzed$lzycompute(SQLContext.scala:916) | |
at org.apache.spark.sql.SQLContext$QueryExecution.analyzed(SQLContext.scala:916) | |
at org.apache.spark.sql.SQLContext$QueryExecution.assertAnalyzed(SQLContext.scala:914) | |
at org.apache.spark.sql.DataFrame.<init>(DataFrame.scala:132) | |
at org.apache.spark.sql.DataFrame$.apply(DataFrame.scala:51) | |
at org.apache.spark.sql.SQLContext.sql(SQLContext.scala:725) | |
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) | |
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) | |
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) | |
at java.lang.reflect.Method.invoke(Method.java:497) | |
at org.apache.zeppelin.spark.SparkSqlInterpreter.interpret(SparkSqlInterpreter.java:136) | |
at org.apache.zeppelin.interpreter.ClassloaderInterpreter.interpret(ClassloaderInterpreter.java:57) | |
at org.apache.zeppelin.interpreter.LazyOpenInterpreter.interpret(LazyOpenInterpreter.java:93) | |
at org.apache.zeppelin.interpreter.remote.RemoteInterpreterServer$InterpretJob.jobRun(RemoteInterpreterServer.java:276) | |
at org.apache.zeppelin.scheduler.Job.run(Job.java:170) | |
at org.apache.zeppelin.scheduler.FIFOScheduler$1.run(FIFOScheduler.java:118) | |
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) | |
at java.util.concurrent.FutureTask.run(FutureTask.java:266) | |
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) | |
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) | |
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142) | |
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617) | |
at java.lang.Thread.run(Thread.java:745) | |
Took 0 seconds. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
%sql | |
show tables | |
-- Output: empty (no tables) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment