Member since
03-27-2017
11
Posts
1
Kudos Received
0
Solutions
10-20-2021
10:32 PM
@nifideveloper, as this is an older post, you would have a better chance of receiving a resolution by starting a new thread. This will also be an opportunity to provide details specific to your environment that could aid others in assisting you with a more accurate answer to your question. You can link this thread as a reference in your new post.
... View more
08-13-2021
07:10 AM
1 Kudo
Convert the certificate from PEM to PKCS12 using openssl openssl pkcs12 -export -out keystore.p12 -in mydomain.crt Provide a strong password when prompted I don't know if it's a version issue but I only got the first instruction working adding the " -inkey mydomain.key" openssl pkcs12 -export -inkey mydomain.key -in mydomain.crt -out keystore.p12 The rest of the article is great. Thanks for the explanation
... View more
12-09-2017
01:52 PM
HI Bryan. end2end flow is: read from db ( nifi returns Avro format ) -> md5 selected columns -> convert to csv -> put to s3 I wanted to do md5 using groovy script using ConvertRecord . But I don't know how to start with a groovy script. Unitests didn't help me. If it is possible please share the example how groovy reads Avro data using ScriptedRecordReader) If my approach is wrong please suggest the better way. Thanks Oleg.
... View more
12-11-2017
11:08 PM
@Oleg Ruchovets Hi Oleg, I have a similar situation. I am loading an orc formatted file into HDFS to which the Hive table's Location is pointing to. In my case not all my values are null, If there are 33 files in the hdfs location where I stored it as orc format, I see 33 rows with data in the Hive table but I also see another 10 rows where all null in the hive table. Have you found a solution for your issue yet.
... View more