scarecrow
scarecrow

Reputation: 1615

Export data into CSV gives Network Error - Apache Zeppelin

I ran sql query successfully with %sql in Apache Zeppellin - 0.6.2, with Download Button

Download option i'm getting Network error.

Download Failed

EDIT 1:

Logs

Screen1

Upvotes: 0

Views: 745

Answers (1)

Sanket Patel
Sanket Patel

Reputation: 386

I bumped into the same thing. The problem is when you hit download button, they do not have a file stored on server. Rather you will be given a url constructed from the contents of the table. It looks like

data:image/svg;charset=utf-8,%EF%BB%BFPK%2CaccountId%2CteamId%2CteamUrl%2Cemail%2CfirstNam

So when you have too long of a result, the url gets longer and browser fails to handle this too long url. And you see that Network Error...

EDIT: This was the case when I was using JDBC connection.

Upvotes: 1

Related Questions