Member since
08-08-2024
103
Posts
27
Kudos Received
10
Solutions
My Accepted Solutions
| Title | Views | Posted |
|---|---|---|
| 312 | 04-15-2026 11:56 AM | |
| 740 | 04-07-2026 02:00 PM | |
| 337 | 03-12-2026 09:53 AM | |
| 357 | 03-04-2026 03:07 PM | |
| 506 | 02-10-2026 07:31 PM |
05-06-2026
02:07 PM
Hello @Dagonvlg, The best option should be on NiFi UI, in that way you can execute it as stateless: https://nifi.apache.org/docs/nifi-docs/components/org.apache.nifi/nifi-stateless-processor-nar/1.28.0/org.apache.nifi.processors.stateless.ExecuteStateless/index.html
... View more
04-23-2026
02:02 PM
Hi @MusabAlosaimi !
I have sent you a DM with further instructions, thanks!
... View more
04-23-2026
04:21 AM
1 Kudo
Hi @dylee Welcome to cloudera community! just wanted add some more details to @vafs response: you are encountering at https://archive.cloudera.com/cdp-public/ is expected behavior. Cloudera has changed how its repositories are structured and accessed, particularly for CDP (Cloudera Data Platform). The path cdp-public is not a browsable directory. To verify access and proceed with your trial installation, please refer to the following details regarding the repository structure and authentication: 1. The Repository Path has Changed For modern CDP installations, Cloudera often uses a different path structure. If you are looking for Cloudera Manager or Runtime artifacts, the URLs typically include a /p/ (private/protected) or a specific version prefix. Example for Cloudera Manager 7: https://archive.cloudera.com/p/cm7/ Example for Runtime: https://archive.cloudera.com/p/cdh7/ (Note that CDP Private Cloud Base artifacts are often under the cdh7 path). 2. Authentication Requirements (The "Paywall") Since February 2021, Cloudera moved its software behind a paywall. Even for trial environments, you generally cannot access the repositories without valid credentials. Trial Credentials: When you signed up for the CDP trial, you should have received a License Key or a set of Remote Repository Credentials (username/password). Verification: You cannot "browse" the root of the archive in a browser to verify access. Instead, you must test a specific file download using your trial credentials. If you do not have credentials, you can request them via the Cloudera Trial Portal or contact your Cloudera Account Manager. Test Command: curl -u <your_username>:<your_password> https://archive.cloudera.com/p/cm7/7.x.x/allkeys.asc If your issue has been resolved, please mark the appropriate reply as the solution, as it will make it easier for others to find the answer in the future.
... View more
04-20-2026
08:09 AM
1 Kudo
Hi, I had to downgrade and upgrade all my nars to 2.0.0 for it to work.
... View more
04-17-2026
03:20 AM
1 Kudo
Thank you André, This led to the right direction. Since the configuration file is required by a third party JAR that I don't build, the way to solve it was to add a src/main/resources path to the myProcessor-nar directory instead of the myProcessor-processor directory. The nar directory doesn't include a src/main/java but you can nevertheless add a src/main/resources path and add subfolders/files to it, e.g. NAR-INF/data/config.ini. Maven will copy automatically everything under src/main/resources to the target, hence it's not necessary to add the resources snippet to the pom.xml. So, now NiFi's work/nar/extensions/myProcessor-nar-1.0.nar-unpacked/NAR-INF folder contains my subfolder/file data/config.ini every time NiFi unpacks the NAR. I found this article helpful that explains the parts of a NAR and the three pom.xml files: https://www.javahotchocolate.com/notes/nifi-project.html Thanks @vafs!
... View more
03-12-2026
09:53 AM
1 Kudo
Hello @criki, No, PutS3Object itself does not perform MD5 integrity check. This can be confirmed on the processor source code where we do not have any checksum method: https://github.com/apache/nifi/blob/main/nifi-extension-bundles/nifi-aws-bundle/nifi-aws-processors/src/main/java/org/apache/nifi/processors/aws/s3/PutS3Object.java On this link you can see how the SDK can configure the MD5 checksum, which is not part of the processor code: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity-upload.html What you can do is, in your Flow, add a hash and then review it. First with CryptographicHashContent create the hash, then do the PutS3Object. After that, you can confirm it is fine do FetchS3Object then CryptographicHashContent and compare the hash with RouteOnAttribute.
... View more
03-10-2026
07:43 PM
@okanergun Has the reply helped resolve your issue? If so, please mark the appropriate reply as the solution, as it will make it easier for others to find the answer in the future. Thanks.
... View more
03-10-2026
07:41 PM
@jI-mi Has the reply helped resolve your issue? If so, please mark the appropriate reply as the solution, as it will make it easier for others to find the answer in the future. Thanks.
... View more
03-05-2026
09:53 AM
@DevOpsWorld Has the reply helped resolve your issue? If so, please mark the appropriate reply as the solution, as it will make it easier for others to find the answer in the future. Thanks.
... View more
02-22-2026
10:56 PM
@jI-mi, Did the response help answer your question? If so, please consider marking it as the solution so others can easily find it later.
... View more