Member since
08-08-2024
30
Posts
1
Kudos Received
1
Solution
My Accepted Solutions
Title | Views | Posted |
---|---|---|
141 | 08-22-2025 03:01 PM |
08-27-2025
01:26 PM
Hi @MattWho, I think you tagged the wrong person. @yoonli, take a look on @MattWho update.
... View more
08-26-2025
11:06 AM
Hello @yoonli, I was checking the configuration and comparing it with other threads and it looks fine to me. Now, I was checking that users.xml and authorizations.xml cannot already exist to be created. You will need to stop the NiFi and then rename those files: cp conf/authorizations.xml conf/authorizations.xml.backup cp conf/users.xml conf/users.xml.backup Then you can retry. Also, it will worth to check this thread as well, that contains a lot of information on this same issue: https://community.cloudera.com/t5/Support-Questions/Untrusted-proxy-error-Authentication-Failed-o-a-n-w-s/m-p/399540
... View more
08-22-2025
03:01 PM
Hello @HoangNguyen, If I do not understand wrong, what you want is not possible. ListFile does not support incoming FlowFile as an source. To do that, you will need to use variable registry. Look here: Display Name: Input Directory API Name: Input Directory Description: The input directory from which files to pull files Supports Expression Language: true (will be evaluated using variable registry only) https://nifi.apache.org/docs/nifi-docs/components/org.apache.nifi/nifi-standard-nar/1.9.2/org.apache.nifi.processors.standard.ListFile/index.html Looking on that, FetchFile will do what you need: Display Name: File to Fetch API Name: File to Fetch Default Value: ${absolute.path}/${filename} Description: The fully-qualified filename of the file to fetch from the file system Supports Expression Language: true (will be evaluated using flow file attributes and variable registry) https://nifi.apache.org/docs/nifi-docs/components/org.apache.nifi/nifi-standard-nar/1.9.2/org.apache.nifi.processors.standard.FetchFile/index.html
... View more
08-22-2025
01:50 PM
Hello @Amry, Strange, you should be able to see something like this: Do you have that button? Can you confirm your CFM version so I can take a look on a version like that as well?
... View more
08-21-2025
09:28 AM
1 Kudo
Hello @MoJadallah, Sorry for no one answering so far. We do want to give you a good experience on your trial. I assume you requested your free trial from here: https://www.cloudera.com/products/cloudera-public-cloud-trial.html?internal_keyplay=ALL&internal_campaign=FY25-Q1-GLOBAL-CDP-5-Day-Trial&cid=FY25-Q1-GLOBAL-CDP-5-Day-Trial&internal_link=WWW-Nav-u01 When was that error hit? Just after the sign-up?
... View more
08-18-2025
08:13 AM
Default configurations are the tested and for that reason are set in that way, but those are configurable for a reason, sometimes, and depending on the environment, the use case and much more, they need to be tuned in an specific way.
... View more
08-14-2025
09:30 AM
They are using the service principals, is the autorenewal that is not being done on time. Adding the setting you can force that to be done.
... View more
08-12-2025
10:46 AM
Hello @LSIMS, The logs are complaining about no valid credentials, it's reporting "HTTP Status 401 – Unauthorized". This could be also due to a valid Kerberos token not being passed. Something you can try is adding below setting under "YARN Service Advanced Configuration Snippet (Safety Valve) for core-site.xml" on YARN configurations tab. Name: hadoop.kerberos.keytab.login.autorenewal.enabled
Value: true Then, restart any stale service and retry. This should work now.
... View more
05-23-2025
04:48 PM
Hello @rizalt Have you tested the same query directly on beeline? Can you try it?
... View more
05-23-2025
04:38 PM
Hello @mokkan, Yes, that buffer means that it will wait until it reaches the 100kb and will write it to the location under HDFS. If you need to get the events before, you can decrease the buffer size. Not all the times the buffer is reached it will perform the fsync, According to what I found, Spark uses OutputStream.flush(), so not all the times an fsync() will be performed. Regards, Andrés Fallas Cloudera Customer Operations Engineer
... View more