NIFI-12625 Listed Supported Python Versions in Docs

This closes #8261

Signed-off-by: David Handermann <exceptionfactory@apache.org>
This commit is contained in:
Pierre Villard 2024-01-17 23:08:41 +04:00 committed by exceptionfactory
parent 6e9da11be9
commit c719761a51
No known key found for this signature in database
GPG Key ID: 29B6A52D2AAE8DBA
2 changed files with 3 additions and 3 deletions

View File

@ -24,7 +24,7 @@ Apache NiFi Team <dev@nifi.apache.org>
Apache NiFi can run on something as simple as a laptop, but it can also be clustered across many enterprise-class servers. Therefore, the amount of hardware and memory needed will depend on the size and nature of the dataflow involved. The data is stored on disk while NiFi is processing it. So NiFi needs to have sufficient disk space allocated for its various repositories, particularly the content repository, flowfile repository, and provenance repository (see the <<system_properties>> section for more information about these repositories). NiFi has the following minimum system requirements:
* Requires Java 21
* Use of Python-based Processors (beta feature) requires Python 3.9+
* Use of Python-based Processors (beta feature) requires Python 3.9, 3.10 or 3.11
* Supported Operating Systems:
** Linux
** Unix
@ -231,7 +231,7 @@ The `name` attribute must start with `deprecation`, followed by the component cl
NiFi is a Java-based application. NiFi 2.0 introduces support for a Python-based Processor API. This capability is still
considered to be in "Beta" mode and should not be used in production. By default, support for Python-based Processors is disabled. In order to enable it,
Python 3.9+ must be installed on the NiFi node.
Python 3.9, 3.10 or 3.11 must be installed on the NiFi node (Python 3.12 is not supported yet).
The following properties may be used to configure the Python 3 installation and process management. These properties are all located under the
"Python Extensions" heading in the _nifi.properties_ file:

View File

@ -427,7 +427,7 @@ that there are no longer any invocations of the `transform` method running when
[[requirements]]
== Requirements
The Python API requires that Python 3.9+ is available on the machine hosting NiFi.
The Python API requires that Python 3.9, 3.10 or 3.11 is available on the machine hosting NiFi (Python 3.12 is not supported yet).
Each Processor may have its own list of requirements / dependencies. These are made available to the Processor by creating a separate
environment for each Processor implementation (not for each instance of a Processor on the canvas). PyPI is then used to install these