You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@zeppelin.apache.org by Bel��n Dom��nguez <be...@guadaltel.com> on 2021/08/24 12:40:53 UTC

How to access interpreter properties from notebook

Hello, I'm new with Zeppelin and I wanted to create environment properties for a multi-user platform. I'll use zeppelin to access my postgres database and I want my users to just use the url string as a variable (POSTGRES_URL for example) instead of declaring it everytime.

My idea was creating a property in the python interpreter and then access it throught a notebook but I am unable to achieve it. I also investigated about using z.put("url", "http://....") and z.get("url") as global variables but it only works if my interpreter is set to global access and I am using per user scoped process