Actually its started happening again today ! I tried restarting spark
interpreter but no luck.
%sql select count(*) from valInput //Fails with ClassNotFoundException
exception
java.lang.ClassNotFoundException: $line85378294951.$read$
at java.net.URLClassLoader.findClass(URLClassLoader.java:381)
a
Never mind. I had logically incorrect transformation.
val validInputDocs = inputDocsDs.filter(doc => {
(doc.labelIdx != -1 && doc.label != "test ") // Predicate should be
!"test".equals(doc.label) ; I copied incorrect one from sql statement I
wrote earlier :)
})
Fixing above seem to resol
Recently I started to getting following error upon execution of spark sql.
validInputDocs.createOrReplaceTempView("valInput")
%sql select count(*) from valInput //Fails with ClassNotFoundException
exception
But validInputDocs.show works just fine.
ANy interpreter settings that may have affecte