3

I simply want to display the column without truncate into a select where i have an array or a Map with a very big lenth.

I use zeppelin to query a df register as temp table:

%livy.sql
select * from maTable

I would like to have the full length of the Consommeur column I get something like: enter image description here

Do you have any idea?

a.moussa
  • 2,977
  • 7
  • 34
  • 56
  • Hi, what version of Zeppelin and livy you are using? And it would be nice to attach the original value of the `Consommeur` column. – 1ambda Jun 19 '17 at 08:58

1 Answers1

5

This issue is solved in version 0.8.0. The problem is that by default Zeppelin truncates the string values.

In version 0.8.0 zeppelin.livy.spark.sql.field.truncate can be set to false (by default is set to true). This can be done going to the interpreter settings and adding that property.

Extra information on the solution to the issue here: https://github.com/apache/zeppelin/pull/2201

Original Jira ticket for the issue: https://issues.apache.org/jira/browse/ZEPPELIN-1965

Ignacio
  • 386
  • 4
  • 19