Member since
07-19-2018
613
Posts
101
Kudos Received
117
Solutions
My Accepted Solutions
| Title | Views | Posted |
|---|---|---|
| 5688 | 01-11-2021 05:54 AM | |
| 3812 | 01-11-2021 05:52 AM | |
| 9489 | 01-08-2021 05:23 AM | |
| 9289 | 01-04-2021 04:08 AM | |
| 38621 | 12-18-2020 05:42 AM |
06-25-2020
05:18 AM
@RajeshLuckky If you follow the original post, you need the ssl key and cert in the jdbc string. "At Nifi level make sure the cert file(s) are owned to nifi user". For example, if you create the cert and key files in the folder /etc/nifi/ssl/ then you would execute: chown -R nifi:nifi /etc/nifi/ssl/ This will own the files to nifi so the nifi user can read them.
... View more
06-25-2020
05:08 AM
@math23 No, you can also just copy the service directly into your ambari. I suggest this way if you can't easily get a newer cluster. I tried to point you at how to install the custom service in the accepted solution. A management pack just makes that task a lil easier, as well as being applicable to different stack versions.
... View more
06-23-2020
11:16 AM
1 Kudo
Thanks a Lot Steven , will go through the same . Will come back to you by any chance If i have any doubt .
... View more
06-22-2020
04:10 AM
Thank you it worked. I also used "1" for the number to make it work but it indeed worked.
... View more
06-19-2020
07:28 AM
<edit> Sorry I thought this was a new post. @guido please do not respond to old posts with new solutions. Ambari 2.6.0 Bug is not applicable here. @apappu The version on the end of the package is how they handled having multiple versions available in the repos as well as facilitating the upgrade process from one version to another. Using the variable scope in the python allowed ambari code to be dynamic across all the different versions, environments, etc. If your repos are setup right, this should not be an issue. I have seen some failure in the public repos lately, slow to respond, or blocked by certain cloud providers causing the "no package found" errors. If you are running your own private repos and have an issue like this, you can just create the packages you need in the version you want using the rpmrebuild command on an existing rpm.
... View more
06-11-2020
06:17 AM
1 Kudo
Thank you @stevenmatison appreciate the pointers provided. We are not using conventional nginx as load-balancer but instead have BigIP F5. And after examining configuration there we have identified connection limit parameter which was the culprit. We have updated it and this has made some difference in the user experience. We are looking to increase the number of Hue and HS2 instances in the cluster to boost the overall and query performance. Many thanks.
... View more
06-10-2020
04:11 AM
@vigneshvenu You will need to send parameters to hive during execution of query. You can find some good conversation about this here: https://community.cloudera.com/t5/Support-Questions/How-are-number-of-mappers-determined-for-a-query-with-hive/m-p/94915 If this answer resolves your issue or allows you to move forward, please choose to ACCEPT this solution and close this topic. If you have further dialogue on this topic please comment here or feel free to private message me. If you have new questions related to your Use Case please create separate topic and feel free to tag me in your post. Thanks, Steven @ DFHZ
... View more
06-05-2020
05:20 AM
@JonnyL The sample above provided exact output you requested. Please inspect the template and inspect FlowFiles for root files and subdirectories files. The path attribute, when the file comes from a subfolder is the subfolder ("/subdir") as needed. For any files in root folder, then path is "./". Additionally the absolute path attribute is also there for all the files. This attribute can be acted against too with deeper expression language, but I found path was easier.
... View more
06-04-2020
05:29 AM
@renuu You have to build the final values you want as separate key value pairs like this: UpdateAttribute Next you will use these attributes to create a json object attribute using AttributesToJson: AttributesToJson flowfile-attribute After that, if you inspect the flowfile you will see the json object as JSONAttributes: FlowFile Attribute JSONAttributes From here you can use it as ${JSONAttributes} or if you need it to be called ${attributes} you just use another UpdateAttribute:
... View more