Member since
02-01-2019
650
Posts
143
Kudos Received
117
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
2837 | 04-01-2019 09:53 AM | |
1471 | 04-01-2019 09:34 AM | |
6967 | 01-28-2019 03:50 PM | |
1581 | 11-08-2018 09:26 AM | |
3832 | 11-08-2018 08:55 AM |
07-13-2018
10:01 AM
@Sundar Lakshmanan You can simply use "sort" command. [root@node1 ~]# cat /tmp/a.txt
abcd_2_20180703
abcd_4_20180703
abcd_5_20180703
abcd_1_20180703
abcd_3_20180703
abcd_6_20180703
[root@node1 ~]# sort /tmp/a.txt
abcd_1_20180703
abcd_2_20180703
abcd_3_20180703
abcd_4_20180703
abcd_5_20180703
abcd_6_20180703
Let me know if this helps.
... View more
07-13-2018
09:45 AM
@Erkan ŞİRİN Here you go. /var/lib/ambari-server/resources/scripts/configs.py --action=delete --host=<ambarihost> --cluster=<clustername> --config-type=sqoop-atlas-application.properties --user admin --password admin --key=atlas.jaas.KafkaClient.option.renewTicket
/var/lib/ambari-server/resources/scripts/configs.py --action=delete --host=<ambarihost> --cluster=<clustername> --config-type=sqoop-atlas-application.properties --user admin --password admin --key=atlas.jaas.KafkaClient.option.useTicketCache
... View more
07-11-2018
05:24 PM
@rmr1989 This is the jira : https://issues.apache.org/jira/browse/SPARK-2750 , you can refer the fixed version or the commit branch from pull request. **If this answers your question, feel free to click on 'accept' and close this thread.
... View more
07-11-2018
05:19 PM
@rmr1989 We don't have SSL option for Spark1 , https was implemented in Spark2.
... View more
07-07-2018
07:14 PM
after reading above comments, realised that you already tried running configs.py. What is the error you got when using configs.py
... View more
07-07-2018
07:06 PM
@Erkan ŞİRİN If you are not using kerberos and seeing this error. Do check if you have below properties in sqoop-atlas-application.properties atlas.jaas.KafkaClient.option.renewTicket
atlas.jaas.KafkaClient.option.useTicketCache If they are present, delete them using below commands on ambari-server machine. /var/lib/ambari-server/resources/scripts/configs.sh -u admin -p <password> delete localhost <cluster> sqoop-atlas-application.properties atlas.jaas.KafkaClient.option.renewTicket
/var/lib/ambari-server/resources/scripts/configs.sh -u admin -p <password> delete localhost <cluster> sqoop-atlas-application.properties atlas.jaas.KafkaClient.option.useTicketCache P.S if you are using new version of ambari use configs.py instead of configs.sh Let me know if this helps.
... View more
07-07-2018
06:56 PM
@Sara Alizadeh, The first command was executed with 10 mappers (-m 10) for 1.3 millions and your mappers might be going out of memory if you are using the same number of mappers for 12 million records. Do increase the number of mappers (i'd say 100) and re-run the job.
... View more
07-06-2018
08:30 AM
@Sameer Mrinal If you found this answer addressed your question, please take a moment to login and click the "accept" link on the answer. 🙂
... View more
07-06-2018
08:24 AM
@SAD KHALED Please take a moment to click "Accept" if this answer helps you. 🙂
... View more
07-06-2018
08:23 AM
@Vinod C Kaggal Please take a moment to click "Accept" if this answer helps you. 🙂
... View more