Please feel free to start a discussion topic here below.
Hortonworks hadoop 2.0 developer certification trainingHi Nitesh,This is Vishal. I am very keen on giving Hortonworks hadoop 2.0 developer certification. Now, this certification explores the data analysis side of things and has nothing to with java based map reduce.It focuses on Pig,Hive,hcatalog and tools like oozie.i am not even concerned about how to install these components. My major need is how they are used for analysis. I already know more then handful about these topics. but a training would do me a wolrd of good and help me prepare more effectively for the certification. So.my question to you is does your course content cater to the data analysis topics? I am NOT a developer so was wondering would enrolling in your course help me learn about the data analysis side of things?hope to hear back soon.Regards,Vishal
Hey Nitesh Greetings:)I am M.Tech Computer science engineering Student..This course certainly would help me learn hadoop, No doubt in that!Can you be Of any help to me For my Academic Project on Hadoop?i am greatly Intrested to Do my ACADEMIC Project on HADOOP.. but missing the link...can u provide me some sources?Atleast a sort of guidence?pls help me...
--
hadoop-skills.com
---
You received this message because you are subscribed to the Google Groups "Hadoop Learners from Hadoop-skills.com" group.
To unsubscribe from this group and stop receiving emails from it, send an email to hadoop-learner-tutorial-tra...@googlegroups.com.
Visit this group at http://groups.google.com/group/hadoop-learner-tutorial-training-community.
To view this discussion on the web, visit https://groups.google.com/d/msgid/hadoop-learner-tutorial-training-community/404a368c-9161-409c-be9c-41864270d4ac%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
spsan...@gmail.com | 2:08 PM (1 hour ago) |
Java(TM) SE Runtime Environment (build 1.8.0_45-b14)
Java HotSpot(TM) 64-Bit Server VM (build 25.45-b02, mixed mode)
I follow the path below:
cd /usr/lib/jvm
and type cd java* which brings up the following path:
/usr/lib/jvm/java-1.6.0-openjdk-amd64
Which seems odd since I have 1.8.0_45 installed ad that is the version that comes up. With this information I pasted the output of pwd into the .bashrc file and then restarted my terminal. When typing Hadoop -version I get the following output:
/usr/bin/hadoop: line 350: /usr/lib/jvm/java-6-sun/bin/java: No such file or directory
/usr/bin/hadoop: line 434: /usr/lib/jvm/java-6-sun/bin/java: No such file or directory
I do not know where to go from here.
Thank you,
start-dfs.sh
it show me this Hello,Please look into this ASAP. I am not able to access any type of quiz & not even the Final Quizzes
--
hadoop-skills.com
---
You received this message because you are subscribed to a topic in the Google Groups "Hadoop Learners from Hadoop-skills.com" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/hadoop-learner-tutorial-training-community/_pXlEmRs-gE/unsubscribe.
To unsubscribe from this group and all its topics, send an email to hadoop-learner-tutorial-tra...@googlegroups.com.
Visit this group at http://groups.google.com/group/hadoop-learner-tutorial-training-community.
To view this discussion on the web, visit https://groups.google.com/d/msgid/hadoop-learner-tutorial-training-community/32bed35d-d14f-48d4-814a-d843ff80269f%40googlegroups.com.
$ bin/hadoop jar share/hadoop/mapreduce/hadoop-mapreduce-examples-2.7.1.jar grep input output 'dfs[a-z.]+'
i have a windows 8.1 on my laptop, a VMware on it and 2 ubuntu 14.04 as guests. Im trying to install a multi node Hadoop 2.6.3 on them. one VM as HadoopMaster and the other HadoopSlave1. i took the steps in below link to set up a single node Hadoop:http://www.bogotobogo.com/Hadoop/BigData_hadoop_Install_on_ubuntu_single_node_cluster.php
then i started to turn it to a multi node Hadoop, doing the steps in this link: http://pingax.com/install-apache-hadoop-ubuntu-cluster-setup/
everything went OK exactly like was told in the toturial,except in the last step when i fire jps command on HadoopSlave1 i see no datanode.
i googled a lot and checked everything,and made sure there is no problem in /etc/hosts. i did
stop-dfs.sh
andstop-yarn.sh
and then firedstart-dfs.sh
andstart-yarn.sh
still no change. i formatted the namenode byhadoop namenode -format
command and no change again. and there is no connectivity problem. ping and SSH are working correctly. any idea why i cant get DataNode running on my slave???
A communication error occurred: "Operation timed out"
The Web Server may be down, too busy, or experiencing other problems preventing it from responding to requests. You may wish to try again at a later time.
For assistance, contact your network support team."
{"FileStatuses":{"FileStatus":[ {"accessTime":1457408551025,"blockSize":67108864,"group":"supergroup","length":16,"modificationTime":1457336753406,"owner":"ubuntu","pathSuffix":"","permission":"666","replication":2,"type":"FILE"} ]}}
Hadoop 2.x installation problems with 64bit Java
Please feel free to start a discussion topic here below.
Hi Nitesh,
Hi All,
Please feel free to start a discussion topic here below.
Hi Nitesh- My Name Rajendra. i have purchased Hadoop Tutorial training program and i have completed 99% of the course. as we have at last three final quiz set ups. in that i am able to complete first two and i am not able to get the last one final quiz setip.
Is it possible to create a new tables with update of bash tables by using the below base tables and conditions. if yes please help me to create.
my input tables are below
delivery:
delivery_id count_reqd order_date prod_id qty_delivered
1 30 2016-05-12 10:10:10 101 25
2 40 2016-05-12 10:10:10 101 0
3 20 2016-05-13 10:10:10 102 0
product:
prod_id prod_name date_mfgd qty_mgfd
101 margo 2016-05-11 10:10:10 0
101 margo 2016-05-12 10:10:10 20
102 Tide 2016-05-13 10:10:10 20
inventory:
prod_id qty_available
101 20
102 30
the above 3 tables are base tables. we wont update anything in that. we will create a new tables as delivery_dup, product_dup, inventory_dup and update below changes
2.this remaining 5 need to be reduce from product table based on prod_id if order_date>=date_mfgd. (here qty_mgfd is 0 in product table then goto the next record if prod_id is same).
4.now qty_delivered= 25+5=30 so count_reqd=qty_delivered.
6.latest qty_mgfd =15. so 40-15=25 so remaining =25 and 15 need to be reduce from product table based on prod_id if order_date>=date_mfgd. so qty_mgfd is 0 in product table
7.qty_delivered=15 now in delivery table.
8.so count_reqd != qty_delivered and qty is not available in product table
9 so now will go to the inv table check if prod_id is same then reduce remaining - qty_available (means 25-20 = remaining 5 now)
10.qty_delivered=15+20 = 35 now in delivery table.
I trust have explained my question clearly.
Thanks in advance, Anbu k