Member since
06-26-2015
515
Posts
138
Kudos Received
114
Solutions
My Accepted Solutions
| Title | Views | Posted |
|---|---|---|
| 2271 | 09-20-2022 03:33 PM | |
| 6048 | 09-19-2022 04:47 PM | |
| 3259 | 09-11-2022 05:01 PM | |
| 3734 | 09-06-2022 02:23 PM | |
| 5823 | 09-06-2022 04:30 AM |
04-08-2022
04:43 AM
@ep_gunner , You can download the NAR from here: https://repo1.maven.org/maven2/org/apache/nifi/nifi-sql-reporting-nar/1.16.0/ Make sure you get the one that matches your NiFi version. Cheers, André
... View more
04-08-2022
04:38 AM
1 Kudo
@furkanaykut , THat's an indication that the resources configured for YARN are already in use somewhere else. The containers are pending because there's not enough resources to run all the containers at once and they have to wait for others to finish. Cheers, André
... View more
04-08-2022
04:33 AM
@Jerry_Molan , Please check this matrix: https://www.ibm.com/docs/en/spectrum-scale-bda?topic=requirements-support-matrix Cheers, André
... View more
04-08-2022
04:17 AM
@ravi_tadepally , Is your RabbitMQ configured to require TLS Mutual Authentication (or Client Authentication)? If so, you must also provide a keystore in the SSL Context in NiFi, besides the truststore. Cheers, André
... View more
04-08-2022
04:13 AM
1 Kudo
@Ibrmca , CDSW 1.6.1 does not support RHEL 7.9. Please see the supported OS's here. CDSW 1.9 and above do support RHEL 7.9. Please check the documentation here for upgrade details. Cheers, André The
... View more
04-02-2022
06:09 AM
@templarian , Your file has the characters "ú" and "í", which are not valid in an UTF-8 encoded file. Try replacing them with either "u" and "i", or with the proper UTF-8 encoding sequences "\xFA" and "\xED", respectively. For example: Extraer \xFAltimas 10 l\xEDneas del log Cheers, André
... View more
04-01-2022
07:28 PM
@Rohan44 , Unfortunately, I don't think there's a way to do that. What are you using to write the files to HDFS? Cheers, André
... View more
04-01-2022
07:26 PM
@gizo , In your processor you set "Ranger Key Value" to "${dynamodb.item.range.key.value}". This would reference to an attribute in your flowfile, but from the details you provided, there's no such attribute there. This may be the cause of the error. You must ensure that the attribute exists in the flowfile so that you can reference it in the processor configuration. Cheers, André
... View more
04-01-2022
07:20 PM
@templarian , If you could provide the converted YAML configuration, it could help understanding what the problem is. Cheers, André
... View more
04-01-2022
03:13 AM
@Rohan44 , Try creating your datafile with each JSON record in a single line, like so: {"buyer":{"legalBusinessName":"test1 Company","organisationIdentifications":[{"type":"abcd","identification":"test.bb@tesr"},{"type":"TXID","identification":"12345678"}]},"supplier":{"legalBusinessName":"test Company","organisationIdentifications":[{"type":"abcd","identification":"test28@test"}]},"paymentRecommendationId":"1234-5678-9876-2212-123456","excludedRemittanceInformation":[],"recommendedPaymentInstructions":[{"executionDate":"2022-06-12","paymentMethod":"aaaa","remittanceInformation":{"structured":[{"referredDocumentInformation":[{"type":"xxx","number":"12341234","relatedDate":"2022-06-12","paymentDueDate":"2022-06-12","referredDocumentAmount":{"remittedAmount":2600.5,"duePayableAmount":3000}}]}]}}]} Cheers, André
... View more