Is it possible to set global variables in a Zeppelin Notebook?
Using z.put
and z.get
can share variable over different notebooks.
z.put("name", "zeppelin")
z.get("name")
Possibly combine with z.angularBind
and z.angular
to use it in dashboard. ref How to put a variable into z ZeppelinContext in javascript in Zeppelin?