Re: sql interpreter

2015-11-08 Thread Felix Cheung
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

Re: sql interpreter

2015-11-07 Thread moon soo Lee
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",

sql interpreter

2015-11-01 Thread Tomas Hudik
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

Re: sql interpreter not found

2015-09-04 Thread Alexander Bezzubov
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

sql interpreter not found

2015-09-02 Thread Bill Kehoe
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

Re: Spark SQL interpreter support for multiple queries in one paragraph

2015-08-31 Thread moon soo Lee
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?

Spark SQL interpreter support for multiple queries in one paragraph

2015-08-21 Thread Yian Shang
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