t: Re: sql interpreter
To:
Hi,
Give sql syntax looks like only works with "HiveContext".
Zeppelin tries to create "HiveContext" if possible, but when it couldn't, it
fall back to "SQLContext", which may not support such syntax
ith initializing
HiveContext?
Best,
moon
On Sun, Nov 1, 2015 at 4:25 PM Tomas Hudik wrote:
> Hi there,
> I have a problem with sql interpreter:
>
>
>
> *%sqlCREATE TABLE blaUSING com.databricks.spark.csvOPTIONS (path
> "bank-full.csv", header "true",
Hi there,
I have a problem with sql interpreter:
*%sqlCREATE TABLE blaUSING com.databricks.spark.csvOPTIONS (path
"bank-full.csv", header "true", delimiter ';',inferSchema = "true")*
(code taken from https://github.com/d
Hi,
that is a bit wired, as there is no separate sql interpreter (it is spark
one) - you check the interpreter bindings using wrench icon on the right
and make sure spark-local is activated and is the first (default) one.
Can you also send spark interpret logs, they should be in a separate file
Hoping someone can help.
I've successfully built zeppelin (on CentOS 6.6) and can execute theĀ Scala
%spark cell titledĀ "Load Data Into Table" of the Tutorial notebook.
But when I try to execute any of the 3 %sql cells that query the "bank" table,
I get "sql inter
Hi Yian,
Current implementation of SQLInterpreter in spark package able to run only
single single statement per paragraph.
Thanks,
moon
On Fri, Aug 21, 2015 at 3:53 PM Yian Shang wrote:
> Hi all,
>
> Does Zeppelin currently support getting multiple Spark SQL queries to run
> in one paragraph?
Hi all,
Does Zeppelin currently support getting multiple Spark SQL queries to run
in one paragraph?
For example if I wanted to run something like:
%sql
create table if not exists something (name string, number int)
select * from something where name != 'all'
I get an error from that:
org.apach