2224
Posts
236
Kudos Received
83
Solutions
About
My expertise is not in hadoop but rather online communities, support and social media. Interests include: photography, travel, movies and watching sports.
My Accepted Solutions
| Title | Views | Posted |
|---|---|---|
| 984 | 05-07-2025 11:41 AM | |
| 10392 | 12-04-2023 09:38 AM | |
| 3896 | 06-29-2023 05:42 AM | |
| 3349 | 05-22-2023 07:03 AM | |
| 2321 | 05-22-2023 05:42 AM |
07-10-2020
11:47 AM
1 Kudo
I'm happy to see you resolved your issue. Please mark the appropriate reply as the solution, as it will make it easier for others to find the answer in the future.
... View more
05-20-2020
05:43 AM
I'm happy to see you resolved your issue. Please mark the appropriate reply as the solution, as it will make it easier for others to find the answer in the future.
... View more
04-21-2020
06:25 AM
Hi @cjervis i resolved it by adding the below parameter hive.server2.parallel.ops.in.session=true under Hive > Config > Advanced > "Custom hive-site" .
... View more
04-09-2020
12:45 PM
I'm happy to see you resolved your issue. Please mark the appropriate reply as the solution, as it will make it easier for others to find the answer in the future.
... View more
03-20-2020
11:44 AM
2 Kudos
Here are some highlights from the month of February on the Cloudera Community.
Community activity:
457 new support questions
4 new community articles
1200+ new members
Top Tag Views:
Hive
Data Processing
Data Ingestion & Streaming
Top Solution Authors
Links to the Top Solution Authors leaderboard as well as others can be found on our Leaderboards and Badges page. We would like to recognize the below community members and employees for their efforts over the month of February to provide community solutions.
Rank
Community Member
Solutions
Rank
Employee
Solutions
#1
@thewayofthinkin
3
#1
@MattWho
14
#2
@stevenmatison
3
#2
@jsensharma
13
#3
@Seaport
2
#3
@venkatsambath
6
#4
@gdr
2
#4
@StevenOD
5
#5
@JTT
2
#5
@DennisJaheruddi
3
Most Viewed Community Articles
Rank
Topic
Author
#1
HDF/NIFI Best practices for setting up a high performance NiFi installation...
MattWho
#2
Manually resetting offset for a Kafka topic
vjain
#3
Integrating Apache Hive with Apache Spark - Hive Warehouse Connector
hkwon
Topics Needing Answers
Here are a sample of the community questions that have not received a reply:
Connection failed: [Errno 111] Connection refused to mynode.id:6188
Ambari REST API + how to capture the active namenode IP from API
Nifi - Ingest Files from Local System using ListFile, ingest files irrespective of timestamp
Understand general cluster and yarn utilization graph in cloudera manager
Please feel free to jump in and share your expertise to answer open questions. Also be sure to bookmark the unanswered question page to find additional open questions.
... View more
02-28-2020
06:14 AM
I'm happy to see you resolved your issue. Please mark the appropriate reply as the solution, as it will make it easier for others to find the answer in the future.
... View more
02-25-2020
10:02 AM
I got the following responses from Cloudera Certification. Regarding Question #1, the FAQ page has the most the up-to-date information. So right now I'd better hold off purchasing the exam until the DE575 is relaunched. Regarding Question #2, the course is the "Spark and Hadoop Developer" training course is the one I should take for preparing DE575. Regarding Question #3, the environment for the exam is fixed and only available on CDH. Candidates do not have the option to take the exam in an HDP environment. The skills tested are applicable to HDP development as well, it is in the developer track, so it should have nothing to do with the environment that it is running in. It is primarily interested in transforming data that sits on the cluster.
... View more
02-18-2020
10:40 AM
Here are some highlights from the month of January on the Cloudera Community.
Community activity:
406 new support questions
10 new community articles
977 new members
Top Label views:
Apache Hive
Apache Spark
Apache NiFi
Top Solution Authors
Links to the Top Solution Authors leaderboard as well as others can be found on our Leaderboards and Badges page. We would like to recognize the below community members and employees for their efforts over the month of January to provide community solutions.
Rank
Community Member
Solutions
Rank
Employee
Solutions
#1
@Shelton
10
#1
@MattWho
7
#1
@stevenmatison
10
#2
@jsensharma
6
#2
@Manus
2
#3
@EricL
5
#3
@goga
2
#4
@DennisJaheruddi
3
#4
@svasi
1
#5
@StevenOD
2
Most Viewed Community Articles
Rank
Topic
Author
#1
Manually resetting offset for a Kafka topic
@vjain
#2
HDF/NIFI Best practices for setting up a high performance NiFi installation...
@MattWho
#3
Kafka Best Practices
@schintalapani
Topics Needing Answers
Here are a sample of the community questions that have not received a reply:
kuduClient can't connect to kudu cluster which sentry is enabled
Can not Initialize Zookeeper Service
Add new kafka machine to ambari cluster
Pyspark Parsing Text File
Re-installing ambari-server on existing HDF platform without any data loss
Please feel free to jump in and share your expertise to answer open questions. Also be sure to bookmark the unanswered question page to find additional open questions.
... View more
02-07-2020
02:03 PM
Thanks for sharing @JTT. As for entering code, you do have the option to add a code sample in the post editor.
This will open a pop-up to enter the code.
The final result looks like this ( I anonymized the IP addresses):
WARN [NiFi Web Server-363] o.a.nifi.web.server.HostHeaderHandler Request host header [example.com] different from web hostname [xxx.x.x.x(:xxxx)]. Overriding to [xxx.x.x.x:xxxx/nifi-api/flow/current-user]
While you cannot use this to format words in a sentence, it is helpful for large samples. I hope it helps.
... View more
02-07-2020
08:23 AM
@nishank_paras Let's assume your input FlowFile content looks like this: Date, IP, Description
01-30-2020, 10.0.0.1, server1
01-30-2020, 10.0.1.2, server2
01-30-2020, 10.0.3.4, server3
01-30-2020, 10.0.4.6, server4
01-30-2020, 10.0.10.2, server5 You would configure your ReplaceText processor as follows: The Search Value contains a java regular expression which will match on your entire line and uses one capture group. The Replacement Value says to replace everything matched by the Search Value Regex with only the value from capture group 1. We then configure ReplaceText to evaluate that Regex against each line. The resulting FlowFile output to the success relationship will have content that looks like this: IP
10.0.0.1
10.0.1.2
10.0.3.4
10.0.4.6
10.0.10.2 Hope this helps, Matt
... View more