Member since
02-07-2019
2690
Posts
235
Kudos Received
30
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
1112 | 04-15-2025 10:34 PM | |
3299 | 10-28-2024 12:37 AM | |
1419 | 09-04-2024 07:38 AM | |
3257 | 06-10-2024 10:24 PM | |
1385 | 02-01-2024 10:51 PM |
07-09-2024
06:35 PM
Thanks, @RangaReddy . It solved my problem. 👏
... View more
07-08-2024
12:05 AM
1 Kudo
I run into same issue after deploying cdp 7.1.7. Is there workaround for this issue ?
... View more
07-02-2024
06:59 AM
@greenflag Not knowing anything about this rest-api endpoint, all I have are questions. How would you complete this task outside of NiFi? How would you accomplish this using curl from command line? What do the REST-API docs for your endpoint have in terms of how to get files? Do they expect you to pass the filename in the rest-api request? What is the rest-api endpoint that would return the list of files? My initial thought here (with making numerous assumptions about your endpoint) is that you would need multiple InvokeHTTP processors possibly. The first InvokeHTTP in the dataflow hits the rest-api endpoint that outputs the list of files in the endpoint directory which would end up in the content of the FlowFile. Then you split that FlowFile by its content so you have multiple FlowFiles (1 per each listed file). Then rename each FlowFile using the unique filename and finally pass each to another invokeHTTP processor that actually fetches that specific file. 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
07-01-2024
03:05 PM
1 Kudo
@NeheikeQ yes, newer version of 1.x NiFi-Registry will support older versions of NiFi version controlling to it. For NiFi after upgrade, load the flow.xml.gz on one node and start it. Then start the other nodes so that they all inherit the flow from the one node where you had a flow.xml.gz. At this point all nodes should join successfully and will have the same dataflow loaded. 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
06-30-2024
09:46 PM
1 Kudo
Hi @VidyaSargur , @ChethanYM @SVB, is there any update about this issue? Looking forward to your response, thank you.
... View more
06-27-2024
11:02 PM
@kaif Hive does have information_schema database, that you can access from beeline or Hue. You also have SYS db that fetches different information from the RDBMS that is used to store hive metadata. Here's the DDLs of those tables, and this will also give you some idea on what data they store.
... View more
06-27-2024
03:34 AM
1 Kudo
Hello, We you can try something like this. Step 1 : Add an InvokeHTTP Processor to Generate the Token Step 2: Extract Token Using EvaluateJsonPath Processor: Step 3: Use the Token in a InvokeHTTP Thanks,
... View more
06-27-2024
02:58 AM
1 Kudo
@littlecong The files need to be uploaded to the individual project. As of now there is no documented provision to share contents between the projects.
... View more
06-26-2024
08:55 AM
Hi, just for completeness in case anyone has the same problem and gets here. I was using the command in the response from @Scharan but the error was because I was using the wrong version of Python 3.6, but this requires Python 3.8 or above. After upgrading to Py3.8, the comand worked as expected, only with a couple of warnings as shown bellow: # ./build/env/bin/hue --cm-managed createsuperuser
/opt/cloudera/parcels/CDH-7.1.9-1.cdh7.1.9.p6.51045883/lib/hue/build/env/lib/python3.8/site-packages/oauth2/grant.py:320: SyntaxWarning: "is" with a literal. Did you mean "=="?
if isinstance(value, tuple) and len(value) is 2:
Username (leave blank to use 'root'): prueba_permisos
Email address: prueba_permisos@test.org
Password:
Password (again):
Superuser created successfully.
... View more
06-25-2024
10:35 PM
@MaraWang, 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