Member since
02-07-2019
2746
Posts
241
Kudos Received
31
Solutions
My Accepted Solutions
| Title | Views | Posted |
|---|---|---|
| 2341 | 08-21-2025 10:43 PM | |
| 2690 | 04-15-2025 10:34 PM | |
| 6983 | 10-28-2024 12:37 AM | |
| 2426 | 09-04-2024 07:38 AM | |
| 4419 | 06-10-2024 10:24 PM |
03-24-2024
11:26 PM
@bowen, 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
03-20-2024
01:05 PM
1 Kudo
@EFasdfSDfaSDFG Took sometime to do a feasibility study and found a couple of things from our Internal resources. 1. FYI: The native Ozone REST API is completely superseded by the S3 REST API. Therefore, there is no native REST API to manage Ozone. 2. Since I am unsure of your Use-case, I would suggest you test this either by Java API or HttpFS Gateway Interface.[0a] [0a]https://ozone.apache.org/docs/1.4.0/interface.html HTH. If you find this answering your question, Please mark this as Accept as Solution. Also, You may thank me by clicking the thumbs-up! Cheers!
... View more
03-20-2024
08:10 AM
Hi @MrBeasr Please check the status of job via Oozie Database: # select count(*) from WF_JOBS where id like '%0043858-220322202819429-oozie-oozi-W%'; If require you may set the status of the job in Database itself: # update wf_jobs set status='FAILED' where id like '%0043858-220322202819429-oozie-oozi-W%';
... View more
03-19-2024
02:24 AM
2 Kudos
Congratulations
... View more
03-18-2024
09:51 PM
3 Kudos
I am able to solve the problem Access token Rest API generates two token (check under cookies) - Secure-Request-Token and other is Secure-Authorization-Bearer token. While calling any of the other API (like creating Parameter Context or updating Parameter context) - in Headers provide one more header "Request-Token" with the value of _secure-Request-Token (From cookies).
... View more
03-18-2024
08:50 AM
1 Kudo
@Choolake, 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
03-18-2024
04:33 AM
2 Kudos
I suspect one more NiFi service is running on the same host with the same port, It can be checked easily by running "ps -ef | grep nifi"
... View more
03-13-2024
05:39 AM
1 Kudo
Hi Tee,, Thanks for taking care. Indeed, the workaround is working, results are correct when disabling vectorization. This bug looks pretty old, guess not a lot of hope to see it fixed somedays.... Thanks again for your help Eric
... View more
03-12-2024
09:57 PM
1 Kudo
@shofialau 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
03-12-2024
06:22 AM
2 Kudos
@broobalaji HDF 1.8.0.3.3.1.0-10 was released way back in 2017. I strongly recommend upgrading to a much newer release of CFM. NiFi Templates have been deprecated and are completely removed as of Apache NiFi 2.x releases. Apache NiFi deprecated templates for a number of reasons: 1. Templates uploaded to NiFi (even if not instantiated/imported to the NiFi canvas reside within NiFi's heap memory space) 2. Large uploaded templates or many uploaded templates can have a substantial impact on NiFi performance because of the amount of heap they can consume. Simply increasing the size of NiFi's heap is also not the best solution to that heap usage as large heaps just lend themselves to longer stop-the-world garbage collections with the JVM. 3. Apache NiFi deprecated and moved away from using xml based flow in favor of json flow definitions around the Apache NiFi 1.16 time frame. Flow definitions (JSON files) can exported and imported without uploading them in to heap memory within NiFi. The above info aside.... It is best to use the developer tools available in your web browser to inspect/capture the rest-api call being made when you perform the same steps directly via the NiFi UI. This makes it easy to understand the calls that need to be made in your automation. I also encourage you if you continue to use templates to upload, import to UI, and then delete the uploaded template to minimize heap impact. Thanks, Matt
... View more