Member since
07-14-2021
11
Posts
4
Kudos Received
0
Solutions
08-22-2022
08:14 AM
Hi, I'm not 100% sure, but I think you mix some things up. NiFi is written in Java and therefore running in the JVM. In NiFi you can run Jython which is a Python implementation in Java. I guess you are trying to use CPython (mostly the default Python) modules / packages in Jython (Java-Python) which does not work. Maybe you are importing them wrong.
... View more
08-02-2022
08:11 AM
Thanks this works! I just have to use RPATH_STRING
... View more
03-25-2022
05:23 AM
2 Kudos
Hi @Luti yes sure you can use NiFi toolkit for this. nifi pg-set-var -pgid b1f05b41-017f-1000-0000-00005ac6776e --varValue "Test2" --varName "MyVar1" If the variable does not exist, it will create. If the variable exists, you will update the value. I hope this will help you.
... View more
07-27-2021
01:21 AM
You could set the Bulletin Level to None. But then you will not get any Error anymore. But if this is helpful in your situation you could do it.
... View more
07-27-2021
01:09 AM
1 Kudo
Could you enable DEBUG logging for the processor? Maybe we can see something there.
... View more
07-27-2021
01:07 AM
Is the problem with anonymous user, or with other logged-in users? If it's only with anonymous I would suggest you: Enable User-authorization and policies and restrict the policies, that only allowed users can access you ProcessGroup.
... View more
07-27-2021
01:04 AM
1 Kudo
Hi, Should not be possible. If put the token into a variable, then everyone else can see the variable. If you put it into a parameter, you also cannot use the secure parameter because you can put these only in sensitive fields. When you use normal parameter, you have the same behavior as with the variables. But I'm excited to see if anyone else comes up with a solution!
... View more
07-16-2021
06:03 AM
For only "name", it's working fine, I get following FlowFile content: I guess the issue is within the ControllerServices. I used JSON-TreeReader but with default configuration:
... View more
07-16-2021
12:55 AM
I tried both ways. For keys on the root level, it doesn't matter if you use quotes. If I want to access child keys I got following error:
... View more