Member since
02-07-2019
2690
Posts
235
Kudos Received
30
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
1103 | 04-15-2025 10:34 PM | |
3288 | 10-28-2024 12:37 AM | |
1418 | 09-04-2024 07:38 AM | |
3253 | 06-10-2024 10:24 PM | |
1384 | 02-01-2024 10:51 PM |
11-12-2024
06:17 AM
@ZNFY Since you are exporting a flow definition of a process group, you'll need to utilize the MiNiFi toolkit to transform it in to the proper format that can be loaded by MiNiFi. The MiNiFi-toolkit can be downloaded from here: https://nifi.apache.org/download/ (select "MINIFI' and click download link for Toolkit). Execute: ./minifi-toolkit/bin/config.sh transform-nifi <exported flow definition> flow.json.raw Now edit the flow.json.raw file and edit the following property at start of file (value can not be 0.) "maxTimerDrivenThreadCount":5 Now you can start your MiNiFi and it will create the flow.json.gz as it starts. Please help our community thrive. If you found any of the suggestions/solutions provided helped you with solving your issue or answering your question, please take a moment to login and click "Accept as Solution" on one or more of them that helped. Thank you, Matt
... View more
11-11-2024
02:35 AM
1 Kudo
Thanks ~ Good Answer~
... View more
11-11-2024
02:21 AM
1 Kudo
@ecampos Yes try the same with localhost or IP.
... View more
11-10-2024
10:43 PM
1 Kudo
Thank you for your follow up, I appreciate it . I have been using AWS with ubuntu 20.04 to do the following: I create an EC2 instance, and in the Network settings, I create Inbound security groups rules for 8080 (Ambari), 22 (SSH), 4200, 9995 (zeppelin), 2222 (Hortonworks file system) From port 22, I install Hortonworks sandbox, then I can access port 8080 (Ambari) with user maria_dev, and I can access as well the other ports 4200, 2222, and 9995. BUT now AWS supports only ubuntu 22.04 and 24.04; which do not work to access Hortonworks like Ambari. I go through the same exact steps that I used with ubuntu 20.04. I can access port 22 (SSH) only so I can install Hortonworks sandbox successfully. But I can not access ports 8080 (Ambari), 4200, 9995; I get errors from the browser: 502 Bad Gateway -- nginx/1.15.0 If it helps, I can send the exact instructions on a pdf file. Thank you again!
... View more
11-07-2024
10:29 PM
2 Kudos
Thanks for suggestion, the issue has been resolve, we had aaded new datanode after that we had restarted the namenode, resourcemanager, datanode, node manager, but not hiveserver, because of which configuration was not loaded on hive properly, after restart it started working.
... View more
11-06-2024
01:51 AM
1 Kudo
@nuwan, Welcome to our community! To help you get the best possible answer, I have tagged in our experts @upadhyayk04 @vaishaakb who may be able to assist you further. Please feel free to provide any additional information or details about your query, and we hope that you will find a satisfactory solution to your question.
... View more
10-31-2024
12:50 AM
For anyone reading here; I never got the DecryptContent processor to work. Made a Groovy script processor instead, that handled the decrypting
... View more
10-15-2024
08:24 AM
1 Kudo
I create my first user with this script #!/bin/bash group='admins' username='admin' uidNumber=1001 gidNumber=1001 firstName='My First' lastName="My Last" password="password" ldapadd -x -D "cn=admin,dc=myhost,dc=dev" -w $password <<EOF dn: ou=$group,dc=myhost,dc=dev objectClass: organizationalUnit ou: $group EOF cat <<EOF dn: uid=$username,ou=$group,dc=myhost,dc=dev objectClass: inetOrgPerson objectClass: posixAccount uid: $username cn: $username sn: $lastName givenName: $firstName uidNumber: $uidNumber gidNumber: $gidNumber homeDirectory: /home/$username loginShell: /bin/bash userPassword: $(slappasswd -s $password) EOF # Ajouter l'utilisateur via ldapadd ldapadd -x -D "cn=admin,dc=myhost,dc=dev" -w $password <<EOF dn: uid=$username,ou=$group,dc=myhost,dc=dev objectClass: inetOrgPerson objectClass: posixAccount uid: $username cn: $username sn: $lastName givenName: $firstName uidNumber: $uidNumber gidNumber: $gidNumber homeDirectory: /home/$username loginShell: /bin/bash userPassword: $(slappasswd -s $password) EOF Authentication Proxy Server not trusted
... View more
10-07-2024
07:52 AM
Sure, it’s the latest version available. We have opened a case to cloudera, but being Impala and python widely used together I am surprised not finding lots bug report about this.
... View more
10-01-2024
03:39 AM
1 Kudo
@ayukus0705, Did the response assist in resolving your query? If it did, kindly mark the relevant reply as the solution, as it will aid others in locating the answer more easily in the future.
... View more