This is an automated email from the ASF dual-hosted git repository.
lordgamez pushed a commit to branch MINIFICPP-2276
in repository https://gitbox.apache.org/repos/asf/nifi-minifi-cpp.git
The following commit(s) were added to refs/heads/MINIFICPP-2276 by this push:
new 2c1f97bb0 Update limiations
2c1f97bb0 is described below
commit 2c1f97bb02c6fc5d8c2e89845b014f365b4d45c2
Author: Gabor Gyimesi <[email protected]>
AuthorDate: Tue Feb 6 10:21:25 2024 +0100
Update limiations
---
extensions/python/PYTHON.md | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/extensions/python/PYTHON.md b/extensions/python/PYTHON.md
index 53823ca87..0a9d49aff 100644
--- a/extensions/python/PYTHON.md
+++ b/extensions/python/PYTHON.md
@@ -158,7 +158,8 @@ Due to some differences between the NiFi and MiNiFi C++
processors and implement
- Virtualenv support is not yet available in MiNiFi C++, so all required
packaged must be installed on the system.
- Controller properties are not supported at the moment.
- There are some validators in NiFi that are not present in MiNiFi C++, so
some property validations will be missing using the NiFi Python processors.
-- Allowable values specified in NiFi Python processors are ignored in MiNiFi
C++ (due to MiNiFi C++ requiring them to be specified in compile time), so the
property values are not pre-verified.
+- Allowable values specified in NiFi Python processors are ignored in MiNiFi
C++ (due to MiNiFi C++ requiring them to be specified at compile time), so the
property values are not pre-verified.
- MiNiFi C++ does not support custom relationship names in Python processors,
the only available relationships are "success", "failure" and "original".
- MiNiFi C++ only supports expression language with flow file attributes, so
only FLOWFILE_ATTRIBUTES expression language scope is supported, otherwise the
expression language will not be evaluated.
- MiNiFi C++ does not support property dependencies, so the property
dependencies will be ignored. If a property depends on another property, the
property will not be required.
+- MiNiFi C++ does not support the use of self.jvm member in Python processors
that provides JVM bindings in NiFi, it is set to None in MiNiFi C++.