Support Questions

Find answers, ask questions, and share your expertise
Announcements
Celebrating as our community reaches 100,000 members! Thank you!

How to access NIFI Process Group variable in ExecuteScript Processor ?

avatar
Contributor

I want to access the process group variable from execute script and then need to change its value. I am using python. I have read the article which describe how to access flowfile attributes but not variables. My requirement is when some job complete successfully then some value is to be stored in variable.

1 ACCEPTED SOLUTION

avatar

Hi @Vivek Singh

This has been answered by @Matt Burgess recently : https://community.hortonworks.com/questions/193888/nifi-is-it-possible-to-access-processor-group-var...

This is mainly on how to access.

To update the variable, you should use the API. I don't think there's a direct way from the script. Maybe take the output value as a flow file after the ExecuteScript and use another processor to call the API and update the value

View solution in original post

4 REPLIES 4

avatar

Hi @Vivek Singh

This has been answered by @Matt Burgess recently : https://community.hortonworks.com/questions/193888/nifi-is-it-possible-to-access-processor-group-var...

This is mainly on how to access.

To update the variable, you should use the API. I don't think there's a direct way from the script. Maybe take the output value as a flow file after the ExecuteScript and use another processor to call the API and update the value

avatar
Contributor

I'd seen that already but its just for reading not for changing. I need to read and then manipulate the variable's value

avatar

Yes sorry I submitted before finishing my answer

avatar
New Contributor

more a question, so any update for manipulating variables? I have the same issue. Which API to call?