Created 06-15-2017 08:15 PM
Hello All,
When i am trying to run different paragraphs at one go, i need to get the count of records from a particular data frame using the %r interpreter after the above paragraph got executed where i am trying to read the data frame with specific name, but it is giving me the count of previous saved data frame.
eg-
total records in abc.csv =100 and def.csv=200
para1 code :
data_frame_1= read.df("...../abc.csv)
para2 code:
count of records = 100
para3 code:
data_frame_1 = read.df("...../def.csv)
count of records = 100
ideally after reading the data_frame_1 from para3 the count of records should be 200 but since all the para are submitted in bakcend, parallel execution in happening and count of records from abc.csv is coming.
Is there any way to execute the paragrphs in sequential manner ?
Any help will be really appreciated !!
whatsapp number- +919039241113
Created 06-16-2017 06:03 PM
@suyash soni , This feature is not yet in zeppelin. Its being tracked at ZEPPELIN-1160 .
Created 06-16-2017 06:09 PM
The play button is already inbuilt in zeppelin which executes the code sequentially. The problem comes when we change the interpreter across different paragraphs then the code gets executed in parallel mode.
Need some suggestion/help for the same ?
Created 06-18-2017 05:52 AM
Hi @suyash soni
Unfortunately, this feature has not yet been implemented. This will be available in Zeppelin 0.8 based on https://issues.apache.org/jira/browse/ZEPPELIN-2368.
Created 06-19-2017 09:44 AM
Thanks for the help