Member since
12-11-2015
244
Posts
31
Kudos Received
32
Solutions
My Accepted Solutions
| Title | Views | Posted |
|---|---|---|
| 338 | 07-22-2025 07:58 AM | |
| 947 | 01-02-2025 06:28 AM | |
| 1581 | 08-14-2024 06:24 AM | |
| 3115 | 10-02-2023 06:26 AM | |
| 2385 | 07-28-2023 06:28 AM |
02-29-2020
03:57 AM
1 Kudo
This link http://www.smartjava.org/content/how-analyze-java-ssl-errors/# covers the diagnosis methods to assess issues with Passwords, Incomplete CA Chains, Invalid keys and Certificate expiration For testing truststore this link will be useful https://docs.cloudera.com/documentation/enterprise/6/6.3/topics/cm_sg_tls_troubleshoot.html#concept_qvx_2xc_nw And https://www.shellhacks.com/openssl-check-ssl-certificate-expiration-date/ for determining the expiration date.
... View more
02-28-2020
06:31 PM
1 Kudo
Adding on top of Ben's suggestion. In this link you can find additional info on requirements for container-executor mount https://docs.cloudera.com/runtime/7.0.3/yarn-security/topics/yarn-linux-container-executor.html Quote from Doc: make sure the mount point for the parcel directory is without the nosuid option. The container-executor program must have a very specific set of permissions and ownership to function correctly. In particular, it must: Be owned by root. Be owned by a group that contains only the user running the YARN daemons. Be setuid. Be group readable and executable. This corresponds to the ownership root:yarn and the permissions 6050
... View more
02-28-2020
08:00 AM
Can you share the result of ls -nl /var/lib/yarn-ce/bin/container-executor This is to make sure the uid of yarn matches the uid on the container-executor
... View more
02-27-2020
09:52 PM
This property is hive specific so it can be either enabled on hiveserver2 server level or in the client session level but is not possible to set on queue level (coz scheduler dont understand hive specific properties). If you set this property in hiveserver2 level - then all hive client will be mandated to use where clause when user run query on partitioned table. Other property which you can use is hive.metastore.limit.partition.request https://docs.cloudera.com/documentation/enterprise/5-14-x/topics/admin_hive_tuning.html Quoting from link Set the hive.metastore.limit.partition.request parameter to 1000 to limit the maximum number of partitions accessed from a single table in a query. See the Apache wiki for information about setting this parameter. If this parameter is set, queries that access more than 1000 partitions fail with the following error: MetaException: Number of partitions scanned (=%d) on table '%s' exceeds limit (=%d) Setting this parameter protects against bad workloads and identifies queries that need to be optimized. To resolve the failed queries: Apply the appropriate partition filters. Override the limit on a per-query basis. Increase the cluster-wide limit beyond 1000, if needed, but note that this adds memory pressure to HiveServer2 and the Hive metastore.
... View more
02-26-2020
10:02 PM
2 Kudos
You can find the overview of CM internals in this blog https://blog.cloudera.com/how-does-cloudera-manager-work and the details of health tests on each service in https://docs.cloudera.com/documentation/enterprise/latest/topics/cm_ht.html
... View more
02-26-2020
04:09 AM
Hi Ansar, For CDH5.x version the spark service that is bundled with the CDH parcel was spark 1.6 version hence there was a need to add Spark2 as a separate parcel. You need not add spark2 separately for CDH6.2. When you just add spark service in CDH6.2, it will install spark2.4.0 -- For your reference, This link contains the individual service packaged inside cdh6.2.x https://docs.cloudera.com/documentation/enterprise/6/release-notes/topics/rg_cdh_62_packaging.html#cdh_621_packaging If you would like to validate the version of spark installed alternatively you can run spark-shell --> This will show the spark version like this Spark session available as 'spark'.
Welcome to
____ __
/ __/__ ___ _____/ /__
_\ \/ _ \/ _ `/ __/ '_/
/___/ .__/\_,_/_/ /_/\_\ version 2.4.0-cdh6.3.3
/_/
Using Scala version 2.11.12 (Java HotSpot(TM) 64-Bit Server VM, Java 1.8.0_141)
Type in expressions to have them evaluated.
... View more
02-25-2020
10:52 PM
Can you follow the steps mentioned in this link https://docs.cloudera.com/documentation/enterprise/5-14-x/topics/cm_ig_extrnl_pstgrs.html#cmig_topic_5_6_1 Specifically these lines if you want to access PostgreSQL from a different host, replace 127.0.0.1 with your IP address and update postgresql.conf, which is typically found in the same place as pg_hba.conf, to include: listen_addresses = '*'
... View more
02-21-2020
09:11 AM
Thanks for the awesome explanation!! This comment from spark explains on the reason for allowing insecure connection https://issues.apache.org/jira/browse/SPARK-26019?focusedCommentId=16719231&page=com.atlassian.jira.plugin.system.issuetabpanels%3Acomment-tabpanel#comment-16719231
... View more
02-20-2020
10:07 PM
May I know the exact steps you followed to replicate the issue? Are you noticing this error when running any code snippet. Can we have a shorter version of the script to replicate on my side and evaluate further?
... View more
02-20-2020
08:54 AM
time series graph of which metric are you looking for. HTTPFS has the following metrics https://docs.cloudera.com/documentation/enterprise/5-12-x/topics/cm_metrics_httpfs.html#cm_metrics_httpfs
... View more