Member since
02-02-2016
583
Posts
518
Kudos Received
98
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
3407 | 09-16-2016 11:56 AM | |
1443 | 09-13-2016 08:47 PM | |
5776 | 09-06-2016 11:00 AM | |
3366 | 08-05-2016 11:51 AM | |
5408 | 08-03-2016 02:58 PM |
09-19-2016
12:39 PM
Correct, if the change is non-destructive, it will be considered for a maint. release. But I should point out that the community tries to minimize this though. Cheers.
... View more
09-13-2016
08:47 PM
1 Kudo
I found out the issue, actually we enabled the spnego for atlas therefore it was checking the spnego.service.keytab file. Somehow user "atlas" got removed from the application group therefore didn't had read permission on spnego.service.keytab file. Once we given read permission issue got resolved. Thanks
... View more
06-05-2018
05:46 PM
It worked for me. Thanks!
... View more
06-05-2017
05:23 PM
My ambari version is Version2.2.2.0 and HDP version is HDP-2.3.4.0-3485 bash-4.2$ yum list 'smartsense*'
Loaded plugins: product-id, search-disabled-repos, subscription-manager
HDP-2.3 175/175
HDP-UTILS-1.1.0.20 44/44
puppetlabs-deps 12/12
puppetlabs-products 66/66
rhel-7-server-eus-rpms 8407/8407
rhel-7-server-optional-rpms 7122/7122
rhel-7-server-rpms 8450/8450
rhel-7-server-thirdparty-oracle-java-rpms 170/170
rhel-rs-for-rhel-7-server-eus-rpms 162/162
usps-addons 6/6
Error: No matching Packages to list
bash-4.2$ cat /etc/yum.repos.d/ambari.repo
cat /etc/yum.repos.d/ambari.repo cat: /etc/yum.repos.d/ambari.repo: No such file or directory
... View more
06-23-2016
03:55 PM
Thanks @Aman Mundra Glad it worked 🙂 , please accept the answer to close this thread.
... View more
06-15-2016
09:39 AM
I didn't understand the difference between s3 and s3n. This link helped: http://stackoverflow.com/questions/10569455/difference-between-amazon-s3-and-s3n-in-hadoop Thanks again.
... View more
06-11-2016
08:46 PM
1 Kudo
Hello @Thiago. It is possible to achieve communication across secured and unsecured clusters. A common use case for this is using DistCp for transfer of data between clusters. As mentioned in other answers, the configuration property ipc.client.fallback-to-simple-auth-allowed=true tells a secured client that it may enter a fallback unsecured mode when the unsecured server side fails to satisfy authentication. However, I recommend not setting this in core-site.xml, and instead setting it on the command line invocation specifically for the DistCp command that needs to communicate with the unsecured cluster. Setting it in core-site.xml means that all RPC connections for any application are eligible for fallback to simple authentication. This potentially expands the attack surface for man-in-the-middle attacks. Here is an example of overriding the setting on the command line while running DistCp: hadoop distcp -D ipc.client.fallback-to-simple-auth-allowed=true hdfs://nn1:8020/foo/bar hdfs://nn2:8020/bar/foo The command must be run while logged into the secured cluster, not the unsecured cluster. This is adapted from one of my prior answers: https://community.hortonworks.com/questions/294/running-distcp-between-two-cluster-one-kerberized.html
... View more
10-17-2017
02:36 PM
I tried using the external table method but I run out of memory. My mongo collection (table2) has 10 million records (0.755 GB) and reading from it works. After the insert task fails I do a count on the native table (table1) and it contains 0 rows. My query looks like this: "INSERT INTO table1 SELECT * FROM table2", if I add "LIMIT 1000" it works, however I need to migrate the entire collection. I attached the output from beeline.
... View more
06-10-2016
07:25 AM
I have 3 Journal Noeds in my cluster, but they don't seem to fail.
... View more
06-09-2016
12:43 PM
Hello, It worked fine now, the first solution worked connected to the database, but when Sqoop was running Map Reduce, the same error occurred. This way all Map Reduce agents have this configuration. So the solution is configure the TrustStore parameter on Map Reduce Configuration inside Ambari The value: -Djavax.net.ssl.trustStore=/home/user/truststore.jks Thank you
... View more