Member since
11-17-2021
1158
Posts
260
Kudos Received
30
Solutions
My Accepted Solutions
| Title | Views | Posted |
|---|---|---|
| 275 | 04-23-2026 02:02 PM | |
| 754 | 03-17-2026 05:26 PM | |
| 5741 | 11-05-2025 10:13 AM | |
| 986 | 10-16-2025 02:45 PM | |
| 1698 | 10-06-2025 01:01 PM |
10-10-2022
10:50 AM
@urunath 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. Thanks
... View more
10-07-2022
01:58 PM
@coco Has the reply helped resolve your issue? If so, please mark the appropriate reply as the solution, as it will make it easier for others to find the answer in the future. Thanks
... View more
09-26-2022
06:57 AM
Hello @jagadeesan , @rki_ parameters you mentioned do not appear in Ambari. Does that mean our clusters are running with the default settings, exposing the clusters to the vulnerability ? Please, could you provide the way to set this parameters (which custom settings for Spark 1 and Spark 2 as well as the keys and values). Thanks in advance.
... View more
09-21-2022
06:45 PM
Here are some highlights from the month of August
247 new support questions
3 new community articles
639 new members
Rank
Community Article
Author
Components/ Labels
#1
How Cloudera Data Platform excels at hybrid use cases
Anshul Gupta
@Anshul_Gupta
Apache Hive
Apache NiFi
Apache Spark
Cloudera Data Platform (CDP)
Cloudera Data Platform Private Cloud (CDP-Private)
#2
Using Recipes to Simplify Data Hub Setup Tasks
Craig Nelson
@cnelson2
Cloudera Data Platform (CDP)
Cloudera Enterprise Data Hub
#3
Knox HA / Loadbalancing using Haproxy
Vikas Srivastava
@cloude
Apache Knox
Hortonworks Data Platform (HDP)
Congratulations Robin Kakkasery @rki_ for being the Community Spotlight member for the month!! Thanks for everything that you do!! Check out the Community Member Spotlight on Cloudera Linkedin!
We would like to recognize the below community members and employees for their efforts over the last month to provide community solutions.
See all our top participants at Top Solution Authors leaderboard and all the other leaderboards on our Leaderboards and Badges page.
@SAMSAL @Juanes @rbalamohan @m_a_lembarki @araujo @rki_ @MattWho @ckumar
Share your expertise and answer some of the below open questions. Also, be sure to bookmark the unanswered question page to find additional open questions.
Unanswered Community Post
Components/ Labels
Jolt Transform flatten and combine array attributes
Apache NiFi
How can I merge big XML files with attributes in tags using Nifi MergeRecord
Nifi Registry
Cannot get pyspark to work (Creating Spark Context) with FileNotFoundError: [Errno 2] No such file or directory: '/usr/hdp/current/spark-client/./bin/spark-submit'
Apache Spark
Hortonworks Data Platform (HDP)
NIFI Replace Text- after replace the text want to save out put of the file
Apache NiFi
Support of redis cluster in nifi - save and fetch
Apache NiFI
... View more
08-23-2022
09:52 AM
Here are some highlights from the month of July
231 new support questions
8 new community articles
586 new members
Rank
Community Article
Author
Components/ Labels
#1
MySQL CDC with Kafka Connect/Debezium in CDP Public Cloud
@cnelson2
Apache Kafka
Cloudera Data Platform (CDP)
Kerberos
#2
Event driven pipelines in Azure with CDE(Cloudera Data Engineering) orchestrated by Azure Event Grid/Azure Functions
@hrongali
Apache Spark
Cloudera Data Engineering (CDE)
Cloudera Data Platform (CDP)
#3
How to configure CML's Spark Connection
@peter_ableda
Cloudera Data Science Workbench (CDSW)
Cloudera Machine Learning (CML)
#4
HDP to CDP - Atlas backup and restore
@hpasumarthi
Apache Atlas
Cloudera Data Platform (CDP)
Hortonworks Data Platform (HDP)
#5
"kinit: Preauthentication failed while getting initial credentials" when using Active Directory or FreeIPA
@araujo
Kerberos
Security
171 kudos to @jagadeesan ! Check out the Community Member Spotlight on Cloudera Linkedin!
We would like to recognize the below community members and employees for their efforts over the last month to provide community solutions.
See all our top participants at Top Solution Authors leaderboard and all the other leaderboards on our Leaderboards and Badges page.
@SAMSAL @AbhishekSingh @sayak17 @hegdemahendra @MattWho @araujo @jagadeesan @rki_
Share your expertise and answer some of the below open questions. Also, be sure to bookmark the unanswered question page to find additional open questions.
Unanswered Community Post
Components/ Labels
Apache Atlas use of "Constraints" to change typeDef behaviour?
Apache Atlas
We are getting 501 error while accessing Application master URL using knox gateway
Apache Knox
Status: Failed to receive heartbeat from agent
Cloudera Data Platform (CDP) Cloudera Data Platform Private Cloud (CDP-Private)
What are the best config memory and vcore in YARN and mapred multi-node cluster?
Apache Hadoop Apache Sqoop Apache YARN
Nifi server certificate shows different issuer
Apache NiFi
... View more
08-22-2022
11:41 AM
@BORDIN Has the reply above helped resolve your issue? If so, please mark the appropriate reply as the solution, as it will make it easier for others to find the answer in the future. Thanks!
... View more
08-06-2022
09:02 AM
@shrikantbm& team, Yes, in this case, we need to check cleanup.policy of the topic __consumer_offsets. If the existing cleanup.policy=compact then the log segment of this topic will not be deleted. You should follow the below steps to conclude and resolve this issue initially. 1) Check what is current cleanup.policy of the topic __consumer_offsets. You can check it using the command: kafka-topics.sh --bootstrap-server <broker-hostname:9092> --describe OR kafka-topics.sh --zookeeper <zookeeper-hostname:2181> --describe --topics-with-overrides Note: topic_name is the name for which you are facing an issue 2) If you want to clear the old log segment of this topic, then you should set cleanup.policy like cleanup.policy=compact,delete,retention.ms=<30days> compact = when the kafka-log is rolled over, it will be compacted delete - once the offset.retention.ms is reached, the older logs will be removed retention.ms=<30days> > the old log segment will be deleted after 30 days. Note: 30 days are just an example here and this setting will be in ms. You should set it as per your requirement after checking it with the application team and their need. For "delete", the property "log.cleaner.enable" must be set to "true" After configuring this cleanup policy data will be deleted as per retention.ms as suggested above. If you will not set retention.ms then old log segment will be deleted as per retention period set in the CM / Ambari >> kafka >> Conf. The setting is log.retention.hours = <7 Days default> in CM >> Kafka, check what it is in your case so that log segment older than 7 days will be deleted. Kafka will keep checking the old log segment with the help of the property log.retention.check.interval.ms . Important note: The "delete" on consumer offsets is that you may lose offsets which can lead to duplication/data loss. So check it with your application team before setting a deletion policy. 3) If you still face the same issue, then broker logs need to be reviewed for the root cause of the issue and make the changes accordingly. If you found this information helped with your query, please take a moment to log in and click on KUDOS 🙂 and "Accept as Solution" below this post. Thank you.
... View more
07-26-2022
07:06 AM
@jeyaguna Has the reply helped resolve your issue? If so, please mark the appropriate reply as the solution, as it will make it easier for others to find the answer in the future. Thanks
... View more
07-26-2022
06:47 AM
@Ploeplse Has the reply helped resolve your issue? If so, please mark the appropriate reply as the solution, as it will make it easier for others to find the answer in the future. Thanks
... View more
07-20-2022
09:56 AM
Here are some highlights from the month of June
206 new support questions
3 new community articles
646 new members
Rank
Community Article
Author
Components/ Labels
#1
NiFi cluster sandbox on Docker
@araujo
Apache NiFi
#2
Decompressing nested ZIP files in NiFi
@araujo
Apache NiFi
#3
Cloudera Machine Learning adds ability for admins to add a static subdomain for the CML Workspace
@cpv0310
Cloudera Machine Learning (CML)
#4
MySQL CDC with Kafka Connect/Debezium in CDP Public Cloud
@cnelson2
Apache Kafka
Cloudera Data Platform (CDP)
Kerberos
Thank you to @shehbazk for supporting our community! :trophy: 👏 Check out the Community Member Spotlight on Cloudera Linkedin!
We would like to recognize the below community members and employees for their efforts over the last month to provide community solutions.
See all our top participants at Top Solution Authors leaderboard and all the other leaderboards on our Leaderboards and Badges page.
@SAMSAL @rafy @snm1523 @Luwi @araujo @MattWho @jagadeesan @rki_
Share your expertise and answer some of the below open questions. Also, be sure to bookmark the unanswered question page to find additional open questions.
Unanswered Community Post
Components/ Labels
Central management of connection strings - Sqoop - HDP
Apache Ambari Apache Hadoop Apache Sqoop
Spark Streaming job not reading data from Kafka
Apache Kafka
Apache Spark
Cloudera Data Platform (CDP)
How do I drop empty Impala partitions?
Apache Hive
Apache Impala
Cloudera Enterprise Data Hub
... View more