Member since
06-24-2016
111
Posts
8
Kudos Received
0
Solutions
12-29-2020
07:33 AM
Below export command worked for me. CREATE table departments_export (departmentid int(11), department_name varchar(45), created_date T1MESTAMP); sqoop export --connect jdbc:mysql://<host>:3306/DB --username cloudera --password *** \ --table departments_export \ --export-dir '/user/cloudera/departments_new/*' \ -m 1 \ --input-fields-terminated-by ','; Sample input: 103,Finance,2020-10-10 10:10:00
... View more
05-08-2018
01:11 AM
Thanks, I checked that information.
... View more
11-08-2017
04:10 AM
I didn't notice that actually. That because a little different version of HDP 2.6.2 to HDP 2.6.3.. And as I know, JDK 1.8 minimum requirement will be adopted HDP 3.0+....
... View more
09-25-2017
06:03 AM
As per this Link(point17) :https://docs.hortonworks.com/HDPDocuments/HDP2/HDP-2.6.2/bk_command-line-upgrade/content/getting-ready-23.html You need to upgrade JDK first. then go with HDP upgrade
... View more
09-26-2017
10:15 AM
central user management overrides local user installations...
... View more
12-06-2017
05:48 AM
Hi @Gaurav Bapat, As you are using python 2.7.5 you might be hitting the same bug mentioned in about link. You can refer to this Link . https://access.redhat.com/articles/2039753#controlling-certificate-verification-7 and try disabling the certificates. hope this helps
... View more
08-04-2017
06:34 PM
1 Kudo
So indeed it was a corrupted client, in that case please accept my first answer.
... View more
07-28-2017
02:23 PM
I'm just interesting. Why does it setup these options in hive config from ambari web? Well, actually, that means is if I want to use hive ORC file format with advanced TBLPROPERTIES such as "orc.compress, orc.compress.size, orc.stripe.size, orc,create.index....etc", I have to specify these tblproperties options every times when I'm trying to create hive table ORC file format.
... View more
10-24-2017
04:16 AM
Check users info in mysql.user. mysql> select User,Password,Host from mysql.user; Normally, create user DDL pattern is like this below. CREATE USER 'peter'@'localhost' IDENTFIED BY 'password'; GRANT ALL PRIGILEGES ON *.* TO 'peter'@'localhost'; CREATE USER 'peter'@'fqdn' IDENTFIED BY 'password'; GRANT ALL PRIGILEGES ON *.* TO 'peter'@'fqdn'; CREATE USER 'peter'@'%' IDENTFIED BY 'password'; GRANT ALL PRIGILEGES ON *.* TO 'peter'@'%'; FLUSH PRIVILEGES;
... View more
07-10-2017
06:40 AM
1st. If you were executed spark cmd with master(local), then check the connection host and port in that local server. 2nd. Check your firewall & iptables status whether it is of or off.
... View more