Member since
03-21-2016
46
Posts
5
Kudos Received
7
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
499 | 01-08-2021 07:37 AM | |
1954 | 12-04-2020 07:12 AM | |
648 | 10-22-2020 07:16 AM | |
777 | 10-20-2020 06:56 AM | |
671 | 09-09-2020 06:59 AM |
01-14-2021
01:32 PM
Your path should not include the "/hdfs://myserver" section. Also, I think you want to use the --warehouse_dir option. –warehouse-dir is used to specify a base directory within hdfs where SQOOP will create a sub folder inside with the name of the source table, and import the data files into that folder.
... View more
01-08-2021
07:54 AM
Cloudera Streaming Analytics 1.2.0 ships w/ Apache Flink 1.10 https://docs.cloudera.com/csa/1.2.0/support-matrix/topics/csa-system-req.html
... View more
01-08-2021
07:46 AM
CM uses BitTorrent to distrubte parcels so it's already very efficient. My recommendation would be to let CM do the work and not bother with trying to save yourself a few minutes.
... View more
01-08-2021
07:37 AM
KT should be installed in it's own cluster. From a security standpoint, you don't want other services on the box.
... View more
01-08-2021
07:31 AM
Here's a useful article... https://community.cloudera.com/t5/Support-Questions/How-do-I-resolve-clock-offset-issue/td-p/14602/page/2
... View more
12-11-2020
06:24 AM
If I understand your response, you have an NFS Server that’s timing out and clock offsets are out of sync. For the former, the NFS admin needs to address this. It’s not typical to run NFS on a Namenode BTW. For time sync, you need to be running NTP or chrony
... View more
12-09-2020
08:23 AM
Is this happening on a node install or have this node previously worked? If the former... 1. Verify SELinux is disabled 2. Run "df" from the CLI to ensure it responds in a timely manner 3. Verify you can ssh to the machine with the credentials you used for install 4. Verify you can reach the agent port (7182) from the CM. 5. Restart the agent If the later... 1. Have there been any filesystem changes? Check "df" to make sure it responds properly. 2. Verify forward and reverse DNS is working. You can use the CM Network Inspector for this. 3. Restart the agent
... View more
12-09-2020
06:19 AM
This is the executive summary from the the CVE link.... A security feature bypass vulnerability exists in the way Key Distribution Center (KDC) determines if a service ticket can be used for delegation via Kerberos Constrained Delegation (KCD). To exploit the vulnerability, a compromised service that is configured to use KCD could tamper with a service ticket that is not valid for delegation to force the KDC to accept it. The update addresses this vulnerability by changing how the KDC validates service tickets used with KCD.
... View more
12-09-2020
05:15 AM
>From CML, you could access Greenplum via JDBC.
... View more
12-07-2020
01:40 PM
You need to distribute the Cloudera clients. HDP and Apache clients are not supported.
... View more
12-04-2020
07:12 AM
We have found out that MSFT has also released a fix for the Kerberos authentication issue. To fix the Windows AD, you can engage with the AD team to apply one of the following patches that MSFT has provided to fix the Kerberos authentication issue. Please link on the appropriate link based on the flavor of the Windows Server. Windows Server 2012: https://www.catalog.update.microsoft.com/Search.aspx?q=KB4594438 Windows Server 2012 R2: https://www.catalog.update.microsoft.com/Search.aspx?q=KB4594439Windows Server 2016: https://www.catalog.update.microsoft.com/Search.aspx?q=KB4594441 Windows Server 2019: https://www.catalog.update.microsoft.com/Search.aspx?q=KB4594442 Windows Server 1903: https://www.catalog.update.microsoft.com/Search.aspx?q=KB4594443 Windows Server 1909: https://www.catalog.update.microsoft.com/Search.aspx?q=KB4594443 Windows Server 2004: https://www.catalog.update.microsoft.com/Search.aspx?q=KB4594440 Windows Server 20H2: https://www.catalog.update.microsoft.com/Search.aspx?q=KB4594440 Once the patch is applied, the application will be able to renew the tickets without theneed to apply any patch for Hue. [1] https://msrc.microsoft.com/update-guide/vulnerability/CVE-2020-17049
... View more
12-02-2020
11:50 AM
Community support is the only free support option. You could reach out to Cloudera to get the cluster under support or roll back the change on the AD side. BTW, CDH 5 is reaching end of support (EOS) on Dec 31 so you'd need to upgrade to CDH 6 or CDP. Both of these will require a license for the most recent versions.
... View more
12-02-2020
09:42 AM
CDW cannot use GreenPlum as a DW DB. You could ingest data from GreenPlum into the cluster and use Hive/Impala from CDW.
... View more
12-02-2020
09:37 AM
This is likely caused by a change in your AD servers. The CVE is CVE-2020-17049 You'll need to file a case with Support and get a patch.
... View more
12-02-2020
07:19 AM
I think you want to put the result set getWarnings() inside the while loop. while (rs. next ()){ System . out . println (rs. getInt ( "id" )); if (rs.getWarnings() != null ) { System . out . println (rs. getWarnings ()); System . out . println (rs. clearWarnings ()); } } According to the JDBC ResultSet docs, ResultSet warnings are set for each row when you call a method on the ResultSet which you haven't done yet in your current code. Also, warnings on multiple rows are appended which is why I added the clearWarning().
... View more
12-02-2020
06:23 AM
As a best practice, you should enable HDFS HA to avoid a single point of failure.
... View more
12-01-2020
11:03 AM
That's way too general a question to provide a useful response. Give us some background like: 1.Overview of the cluster config including CDH/HDP version, if HA is enabled 2. Any recent changes 3. Errors/Exceptions in the NN log files
... View more
11-12-2020
06:30 AM
IIRC, The ImpalaD process runs as the "impala". If you have sentry grants that enable access to roles the user is in any HDFL ACLs to the contrary will be ignored. The proper way to do this is to use Sentry to grant access to the roles which map to groups and users, you want to have access and then enable HDFS ACLs to sync the HDFS access.
... View more
11-10-2020
02:20 PM
Theres already a community answer on this... https://community.cloudera.com/t5/Support-Questions/Can-t-select-from-Impala-as-a-linked-server-on-SQL-Server/td-p/47218
... View more
10-27-2020
06:56 AM
Try this... https://docs.cloudera.com/documentation/enterprise/latest/topics/cn_admcfg_audit_publish.html#concept_bpk_rfc_dt__section_gnx_sf3_m4
... View more
10-23-2020
08:27 AM
I would think you'd set the log4j_safety_valve for Atlas for this. You should be able to configure this in CM.
... View more
10-22-2020
07:16 AM
1 Kudo
Here's a relevant community answer... https://community.cloudera.com/t5/Support-Questions/How-to-use-merge-in-sqoop-import/td-p/161847 Mike
... View more
10-20-2020
07:21 AM
1 Kudo
This looks like your sqoop job isn't authenticated w/ Kerberos. Here's a doc that may help... https://sqoop.apache.org/docs/1.99.7/security/AuthenticationAndAuthorization.html
... View more
10-20-2020
07:11 AM
There is no Kafka parcel in 6.x. Kafka was bundled with the core package. See the note at the top of this page... https://docs.cloudera.com/documentation/kafka/latest/topics/kafka_installing.html Mike
... View more
10-20-2020
07:08 AM
Cloudera has Streams Messaging Manager (SMM) that enables Kafka monitoring and management.
... View more
10-20-2020
07:06 AM
More that 100K partitions is not recommended with Impala. The Impala cookbook recommends some techniques to reduce the number.. https://blog.cloudera.com/latest-impala-cookbook/
... View more
10-20-2020
07:00 AM
You'll need to create local package an parcel repos. Docs here.. https://docs.cloudera.com/cdp-private-cloud-base/7.1.3/installation/topics/cdpdc-local-package-parcel-repositories.html Mike
... View more
10-20-2020
06:56 AM
1 Kudo
Here's the doc... https://docs.cloudera.com/cdp-private-cloud/latest/upgrade/topics/cdpdc-upgrade-paths.html I'd recommend getting Cloudera PS engaged to assist though. There are also a few on-demand CDP classes available... https://www.cloudera.com/about/training.html#?fq=training%3Atypes%2Fondemand Mike
... View more
09-09-2020
07:44 AM
According to this link, you should renew and replace the certificates and points to the procedure just above the link.
... View more