such as
Spark has their own example: https://github.com/apache/spark/blob/master/examples/src/main/scala/org/apache/spark/examples/HBaseTest.scala
MapR has also some cool sample: http://www.mapr.com/developercentral/code/loading-hbase-tables-spark
and here, a more detailed code snippet: http://www.vidyasource.com/blog/Programming/Scala/Java/Data/Hadoop/Analytics/2014/01/25/lighting-a-spark-with-hbase
but all of them, has no information about:
- which jar library are needed, let us say dependency problem
- how should i set the classpath when i start my spark job/application with HBase connection
- sc.newAPIHadoopRDD uses this holly class org.apache.hadoop.hbase.client.Result as a return value type, but objects in this Result are org.apache.hadoop.hbase.KeyValue, this is a core client-side Java API of HBase, sometimes it is really not enough to use it just with getColumn("columnFamily".getBytes(), "columnQualifier".getBytes()), and more important is, in scala, to use this KeyValue object is even more complicated.
assume you have already read the samples above. i will go ahead directly to solve this three problems.
if you only want to see some code, jump to the next part of this doc: http://www.abcn.net/2014/07/spark-hbase-result-keyvalue-bytearray.html
1. dependency problem
it is similar as a HBase client programfor maven:
<dependency> <groupid>org.apache.spark</groupid> <artifactid>spark-core_2.10</artifactid> <version>1.0.1</version> </dependency> <dependency> <groupid>org.apache.hbase</groupid> <artifactid>hbase</artifactid> <version>0.98.2-hadoop2</version> </dependency> <dependency> <groupid>org.apache.hbase</groupid> <artifactid>hbase-client</artifactid> <version>0.98.2-hadoop2</version> </dependency> <dependency> <groupid>org.apache.hbase</groupid> <artifactid>hbase-common</artifactid> <version>0.98.2-hadoop2</version> </dependency> <dependency> <groupid>org.apache.hbase</groupid> <artifactid>hbase-server</artifactid> <version>0.98.2-hadoop2</version> </dependency>
sbt:
libraryDependencies ++= Seq( "org.apache.spark" % "spark-core_2.10" % "1.0.1", "org.apache.hbase" % "hbase" % "0.98.2-hadoop2", "org.apache.hbase" % "hbase-client" % "0.98.2-hadoop2", "org.apache.hbase" % "hbase-common" % "0.98.2-hadoop2", "org.apache.hbase" % "hbase-server" % "0.98.2-hadoop2" )
change the version of spark and hbase to yours.
2. classpath
in the time of Spark 0.9.x, you just need to set this environment: SPARK_CLASSPATH with HBase's Jars, for example, start spark-shell with local mode, in CDH5 Hadoop distribution:export SPARK_CLASSPATH=/opt/cloudera/parcels/CDH/lib/hbase/hbase-server.jar:/opt/cloudera/parcels/CDH/lib/hbase/hbase-protocol.jar:/opt/cloudera/parcels/CDH/lib/hbase/hbase-hadoop2-compat.jar:/opt/cloudera/parcels/CDH/lib/hbase/hbase-client.jar:/opt/cloudera/parcels/CDH/lib/hbase/hbase-common.jar:/opt/cloudera/parcels/CDH/lib/hbase/lib/htrace-core.jarand then
./bin/spark-shell --master local[2]or just
SPARK_CLASSPATH=/opt/cloudera/parcels/CDH/lib/hbase/hbase-server.jar:/opt/cloudera/parcels/CDH/lib/hbase/hbase-protocol.jar:/opt/cloudera/parcels/CDH/lib/hbase/hbase-hadoop2-compat.jar:/opt/cloudera/parcels/CDH/lib/hbase/hbase-client.jar:/opt/cloudera/parcels/CDH/lib/hbase/hbase-common.jar:/opt/cloudera/parcels/CDH/lib/hbase/lib/htrace-core.jar ./bin/spark-shell --master local[2]
in your cluster, you should change the path of those jars to your HBase's path, such as in other Hadoop distribution should be some path like /usr/lib/xxx (Hortonworks HDP) or /opt/mapr/hbase-xxx (MapR)
but, but... this lovely SPARK_CLASSPATH is deprecated in the new era of Spark 1.x !!! -_-
so, in Spark 1.x
there is one conf property and one command line augment for this:
spark.executor.extraClassPath
and
--driver-class-path
WTF... but, yes, you must give the whole jar paths twice!... and spark.executor.extraClassPath must be set in a conf file, can not be set via command line...
so, you need to do this:
edit conf/spark-defaults.conf
add this:
spark.executor.extraClassPath /opt/cloudera/parcels/CDH/lib/hive/lib/hive-hbase-handler.jar:/opt/cloudera/parcels/CDH/lib/hbase/hbase-server.jar:/opt/cloudera/parcels/CDH/lib/hbase/hbase-protocol.jar:/opt/cloudera/parcels/CDH/lib/hbase/hbase-hadoop2-compat.jar:/opt/cloudera/parcels/CDH/lib/hbase/hbase-client.jar:/opt/cloudera/parcels/CDH/lib/hbase/hbase-common.jar:/opt/cloudera/parcels/CDH/lib/hbase/lib/htrace-core.jarand then, start spark shell or submit your spark job with command line args for driver --driver-class-path:
./bin/spark-shell --master local[2] --driver-class-path /opt/cloudera/parcels/CDH/lib/hbase/hbase-server.jar:/opt/cloudera/parcels/CDH/lib/hbase/hbase-protocol.jar:/opt/cloudera/parcels/CDH/lib/hbase/hbase-hadoop2-compat.jar:/opt/cloudera/parcels/CDH/lib/hbase/hbase-client.jar:/opt/cloudera/parcels/CDH/lib/hbase/hbase-common.jar:/opt/cloudera/parcels/CDH/lib/hbase/lib/htrace-core.jarunbelievable, but it is so in spark 1.x ...
3. how to use org.apache.hadoop.hbase.KeyValue in scala with Spark
it seems this post is already long enough, let us take a break, to see the code of real world examples, you can go to the next part of this doc: http://www.abcn.net/2014/07/spark-hbase-result-keyvalue-bytearray.html
Thanks
ReplyDeleteThanks
ReplyDeleteGreat article...
This is what I want to know. Thanks!
ReplyDeleteGreat Article
ReplyDeleteIEEE Projects for CSE in Big Data
Java Training in Chennai
Final Year Project Centers in Chennai
Java Training in Chennai
These are only a few ideas and there are lots more available online. I hope I've given you some inspiration on what you can do to make your Halloween party a spooky success. Bath mirror lamps
ReplyDeleteThis is really very nice post you shared, i like the post, thanks for sharing..
ReplyDeleteData Science Course
Very awesome!!! When I seek for this I found this website at the top of all blogs in search engine.
ReplyDeleteData Science Training
After reading your article I was amazed. I know that you explain it very well. And I hope that other readers will also experience how I feel after reading your article.
ReplyDeleteData Science Training Institute in Bangalore
Great post i must say and thanks for the information.
ReplyDeleteBest Data Science Courses in Bangalore
wow, great, I was wondering how to cure acne naturally. and found your site by google, learned a lot, now i’m a bit clear. I’ve bookmark your site and also add rss. keep us updated.
ReplyDeleteData Science Training in Bangalore
Never too late to start learning at Salesforce Training in Australia even though you don't have any programming knowledge you can excell in Salesforce Training in London United Kingdom (UK) because it is all about your customers, so this time find the best Salesforce Training in Europe. This way we will learn Salesforce CRM.
ReplyDeleteMyself so glad to establish your blog entry since it's actually quite instructive. If it's not too much trouble continue composing this sort of web journal and I normally visit this blog. Examine my administrations.
ReplyDeleteRead these Salesforce Admin Certification Topics which are really helpful. I read these Salesforce Admin and Developer Certification Dumps and very much useful for me.
I'd love to thank you for the efforts you've made in composing this post. I hope the same best work out of you later on too. I wished to thank you with this particular sites! Thank you for sharing. Fantastic sites!
ReplyDelete360DigiTMG Data Science Course in Bangalore
This is a great post. This post gives a truly quality information. I am certainly going to look into it. Really very helpful tips are supplied here. Thank you so much. Keep up the great works
ReplyDelete360DigiTMG Data Science Training in Bangalore
Get real time project based and job oriented Salesforce training India course materials for Salesforce Certification with securing a practice org, database terminology, admin and user interface navigation and custom fields creation, reports & analytics, security, customization, automation and web to lead forms.
ReplyDeleteI see some amazingly important and kept up to length of your strength searching for in your on the sitedata science course
ReplyDelete
ReplyDeleteI'm really thankful that I read this. It's extremely valuable and quite informative and I truly learned a great deal from it.
360DigiTMG Data Science Training Institute in Bangalore
Additionally, this is an excellent article which I truly like studying. It's not everyday I have the option to see something similar to this.
ReplyDeleteData Science Course In Bangalore With Placement
This is a great post I saw thanks to sharing. I really want to hope that you will continue to share great posts in the future.
ReplyDeleteartificial intelligence course in noida
If you don't mind, then continue this excellent work and expect more from your great blog posts
ReplyDeletehrdf training course
I was looking at a portion of your posts on this site and I consider this site is really enlightening! Keep setting up..
ReplyDelete360DigiTMG supply chain analytics using r
I feel extremely glad to have seen your site page and anticipate such a large number of additionally engaging occasions perusing here. Much obliged again for all the subtleties.
ReplyDeletehrdf scheme
Regular visits listed here are the easiest method to appreciate your energy, which is why why I am going to the website everyday, searching for new, interesting info. Many, thank you!
ReplyDeletebusiness analytics course
Many sales managers tell me that their salespeople don't meet their expectations. The sales manager pleads, begs and even threatens, but the salesperson just goes through the motions of selling and following through on proposals and sales calls. Salesforce training in Chennai
ReplyDelete
ReplyDeleteThank you quite much for discussing this type of helpful informative article. Will certainly stored and reevaluate your Website.
Cyber Security Course In Bangalore
I enjoyed reading your article. Thanks for taking the time to post such a valuable article.
ReplyDeleteseo content writing tips
language similar to english
salesforce basics
star certification
hacking books
Đại lý vé máy bay Aivivu, tham khảo
ReplyDeletevé máy bay đi Mỹ giá rẻ 2021
giá vé máy bay tết 2021
đặt vé máy bay đi toronto canada
săn vé máy bay đi Pháp
giá vé máy bay sang Anh quốc
giá vé máy bay Vietjet
combo hà nội đà nẵng
combo nha trang 3 ngày 2 đêm 2021
visa trung quốc giá rẻ tphcm
cách ly khách sạn
Excellent blog thanks for sharing the valuable information..it becomes easy to read and easily understand the information.
ReplyDeleteUseful article which was very helpful. also interesting and contains good information.
to know about python training course , use the below link.
Python Training in chennai
Python Course in chennai
Aivivu, đại lý chuyên vé máy bay, tham khảo
ReplyDeletevé máy bay đi Mỹ giá rẻ
bay từ california về việt nam mất bao lâu
giá vé máy bay từ Vancouver về việt nam
Lịch bay từ Hàn Quốc về Việt Nam tháng 7
This post is very simple to read and appreciate without leaving any details out. Great work!
ReplyDeletedata scientist courses in gurgaon
I am reading your post from the beginning, it was so interesting to read & I feel thanks to you for posting such a good blog, keep updates regularly.I want to share aboutdata analytics courses in yelahanka
ReplyDeleteNice Blog. Thanks for Sharing this useful information...
ReplyDeleteData science training in chennai
Data science course in chennai
Wonderful post. Thanks for taking time to share this information with us.
ReplyDeletePrimavera course in Chennai | Primavera p6 training online
My spouse and I stumbled over here by a different web page and thought I should check things out. usamagazine writersevoke pathofex oftenit dsnews I like what I see so i am just following you. Look forward to looking over your web page yet again.
ReplyDeletei am glad to discover this page : i have to thank you for the time i spent on this especially great reading !! i really liked each part and also bookmarked you for new information on your site.
ReplyDeletedata science courses in hyderabad
Excellent Blog! I would like to thank for the efforts you have made in writing this post. I am hoping the same best work from you in the future as well. I wanted to thank you for this websites! Thanks for sharing. Great websites!
ReplyDeleteData Science Training in Bangalore
I am a new user of this site, so here I saw several articles and posts published on this site, I am more interested in some of them, hope you will provide more information on these topics in your next articles.
ReplyDeletedata analytics training in bangalore
I read your article it is very interesting and every concept is very clear, thank you so much for sharing. AWS Certification Course in Chennai
ReplyDeleteGreat post i must say and thanks for the information. Education is definitely a sticky subject. However, is still among the leading topics of our time. I appreciate your post and look forward to more.
ReplyDeleteData Science Course in Bangalore
It is amazing and wonderful to see your blog. Thanks for sharing this information, this is useful to me.
ReplyDeleteData Science Training in Hyderabad
Data Science Course in Hyderabad
หาคุณกำลังหาเกมส์ออนไลน์ที่สามารถสร้างรายได้ให้กับคุณ เรามีเกมส์แนะนำ เกมยิงปลา รูปแบบใหม่เล่นง่ายบนมือถือ คาสิโนออนไลน์ บนคอม เล่นได้ทุกอุปกรณ์รองรับทุกเครื่องมือ มีให้เลือกเล่นหลายเกมส์ เล่นได้ทั่วโลกเพราะนี้คือเกมส์ออนไลน์แบบใหม่ เกมยิงปลา
ReplyDeleteOnline football betting ufabet will definitely get the price of water more than anywhere else. When compared with other companies such as other water 1.90, we water 1.94 or more, depending on the pair. We guarantee the price of 4 sets of football betting with us, starting with a minimum of only 10 baht, because our website has no minimum deposit with an automatic system
ReplyDeleteOnline slots (Slot Online) may be the release of a gambling machine. Slot computer As stated before Used to produce electrical games known as online slots, on account of the development era, folks have looked to gamble through computer systems. Will achieve slot video games making internet gambling video games Via the world wide web network device Which players can have fun with through the slot plan or will have fun with Slots with the system provider's site Which internet slots games are actually available within the kind of participating in guidelines. It's similar to participating in on a slot machine. The two practical photos as well as sounds are equally thrilling since they go to lounge in the casino on the globe.บาคาร่า
ReplyDeleteufa
ufabet
แทงบอล
แทงบอล
แทงบอล
I just found this blog and have high hopes for it to continue. Keep up the great work, its hard to find good ones. I have added to my favorites. Thank You.
ReplyDeletebest data science online course
rastgele görüntülü konuşma - kredi hesaplama - instagram video indir - instagram takipçi satın al - instagram takipçi satın al - tiktok takipçi satın al - instagram takipçi satın al - instagram beğeni satın al - instagram takipçi satın al - instagram takipçi satın al - instagram takipçi satın al - instagram takipçi satın al - binance güvenilir mi - binance güvenilir mi - binance güvenilir mi - binance güvenilir mi - instagram beğeni satın al - instagram beğeni satın al - polen filtresi - google haritalara yer ekleme - btcturk güvenilir mi - binance hesap açma - kuşadası kiralık villa - tiktok izlenme satın al - instagram takipçi satın al - sms onay - paribu sahibi - binance sahibi - btcturk sahibi - paribu ne zaman kuruldu - binance ne zaman kuruldu - btcturk ne zaman kuruldu - youtube izlenme satın al - torrent oyun - google haritalara yer ekleme - altyapısız internet - bedava internet - no deposit bonus forex - erkek spor ayakkabı - webturkey.net - karfiltre.com - tiktok jeton hilesi - tiktok beğeni satın al - microsoft word indir - misli indir
ReplyDeleteyoutube abone satın al
ReplyDeletecami avizesi
cami avizeleri
avize cami
no deposit bonus forex 2021
takipçi satın al
takipçi satın al
takipçi satın al
takipcialdim.com/tiktok-takipci-satin-al/
instagram beğeni satın al
instagram beğeni satın al
btcturk
tiktok izlenme satın al
sms onay
youtube izlenme satın al
no deposit bonus forex 2021
tiktok jeton hilesi
tiktok beğeni satın al
binance
takipçi satın al
uc satın al
sms onay
sms onay
tiktok takipçi satın al
tiktok beğeni satın al
twitter takipçi satın al
trend topic satın al
youtube abone satın al
instagram beğeni satın al
tiktok beğeni satın al
twitter takipçi satın al
trend topic satın al
youtube abone satın al
takipcialdim.com/instagram-begeni-satin-al/
perde modelleri
instagram takipçi satın al
instagram takipçi satın al
takipçi satın al
instagram takipçi satın al
betboo
marsbahis
sultanbet
Wow, happy to see this awesome post. I hope this think help any newbie for their awesome work and by the way thanks for share this awesomeness, i thought this was a pretty interesting read when it comes to this topic. Thank you..
ReplyDeleteData Science Training in Hyderabad
Very awesome!!! When I seek for this I found this website at the top of all blogs in search engine.
ReplyDeletedata science training in malaysia
takipçi satın al
ReplyDeleteinstagram takipçi satın al
https://www.takipcikenti.com
I am impressed by the information that you have on this blog. It shows how well you understand this subject.
ReplyDeletedata scientist training in malaysia
Your work is very good and I appreciate you and hopping for some more informative posts
ReplyDeletedata science training
I am impressed by the information that you have on this blog. It shows how well you understand this subject.
ReplyDeletedata science course
Such a very useful article. Very interesting to read this article.I would like to thank you for the efforts you had made for writing this awesome article.
ReplyDeletedata science course
This post is very simple to read and appreciate without leaving any details out. Great work!
ReplyDeletedata scientist course in aurangabad
cover coin hangi borsada
ReplyDeletecover coin hangi borsada
cover coin hangi borsada
xec coin hangi borsada
xec coin hangi borsada
xec coin hangi borsada
ray hangi borsada
tiktok jeton hilesi
tiktok jeton hilesi
Informative blog
ReplyDeleteai training in hyderabad
That's why we also keep improving our safety management skills to counter the top security companies in London
ReplyDeletenew threats our clients may face. The number of times leading media outlets refer to us as experts in security matters is a clear testimony that we are a highly effective and
innovative service provider that does a better job than any other security company in London.
Thanks for the informative and helpful post, obviously in your blog everything is good..
ReplyDeletedata science course in malaysia
Please share this more. Thanks for sharing useful information and don't forget to share useful information.If you are flying to your destination and transiting through Turkey, you will need to obtain a Visa Transit Turkey. This visa allows you to travel through Turkey.
ReplyDeleteThis is a wonderful inspiring article. I am practically satisfied with your great work. You have really put together extremely helpful data. Keep it up.. Are you planning to visit Kenya?For this, you need to fill the Kenya evisa application and pay the fee online.
ReplyDeleteeskişehir
ReplyDeleteizmir
muğla
yalova
çanakkale
düzce
antalya
aydın
mate
Nice info..... South Africa e Visa to be launched in 2022 you can read all info related to South Africa e Visa 2022 via South Africa e visa website.
ReplyDeleteWhat a really awesome post this is. Truly, one of the best posts I've ever witnessed to see in my whole life. Wow, just keep it up.
ReplyDeletedata science course
Hello! I thought I had been to this site before, but after looking through some of the posts, I realized it was new to me. Anyway, I'm glad I found it and I'll definitely be bookmarking it and checking back often. How to apply for Indian visa? Yes you can apply for an online visa for India through the India electronic visa website.
ReplyDeleteHi! I thought I had been to this site before, but after looking through some of the posts, I realized it was new to me. Anyway, I'm glad I found it and I'll definitely be bookmarking it and checking back often. How to apply for Indian visa? Yes you can apply for an online visa for India via the India electronic visa portal.
ReplyDeleteGood article. I enjoyed reading your articles. This can be really a good scan for me. Wanting forward to reading new articles. Maintain the nice work!
ReplyDeleteServicenow Training In Hyderabad
Informative blog
ReplyDeletedata analytics course in jamshedpur
Thanks for your great article which is both informative and innovative: with the latest updates. It was highly invaluable. Travelers can apply India tourist visa for US citizens directly for e-visas online. Therefore, the Indian government has developed an easy-to-use online Indian visa application form that makes it easy to apply for a visa.
ReplyDeleteThanks for your post. I’ve been thinking about writing a very comparable post over the last couple of weeks, I’ll probably keep it short and sweet and link to this instead if thats cool. Thanks.
ReplyDeletecyber security course malaysia
Good afternoon guys, Nice blog. Thanks for sharing. Do you know how to apply India visa online application? You can apply for India Visa Online. You can read all the details on our Indian Visa Blog. All information available here..
ReplyDeleteVery happy to find a good place for many here in the post, the writing is just great, thanks for the post.
ReplyDeleteSoftware Testing Tools Training in Hyderabad
ReplyDeleteHello sir, thanks for the amazing post. Planning a holiday in India. Is Indian e visa open ,yes India visa open you can now apply for India visa online.
Mule masters Hyderabad,provides 100% job assistance, extending real time projects for practical knowledge this is best course you have interest visit my website link https://mulemasters.in/
ReplyDeleteHey guys! Amazing post! Many people ask, How to apply for a Turkey e visa? Citizens of eligible countries are allowed to apply and obtain a Turkey evisa after the submission of an online application. Eligible travelers only need a good internet connection and a computer, laptop or tablet to complete and submit a visa application
ReplyDeleteThis comment has been removed by the author.
ReplyDeleteour Portal Provided Punjab 11th Class Revised new Syllabus 2022 So, the Students can Download the as early as possible without late. So, the Students have Less Time for Exam Preparation. But These Much of time is Enough for Exam Preparation. Punjab 11th Class Syllabus Punjab 11th Syllabus 2022 Subject wise will be available at Official Website. Students Those who are Going to Appear Public Exam march 2022 can Download Punjab 11th Syllabus 2022 Subject wise important Question pdf Format Download.
ReplyDeleteI found so much interesting stuff in your blog, especially its discussion. From the tons of comments on your articles, I guess I am not the only one having all the enjoyment here to keep up the good work. Travelers who want to travel to Turkey. They need a Turkey evisa which is designed for tourism purposes.
ReplyDeleteNCERT Exam Question Papers are Strictly Based on the Syllabus issued by NCERT Board so, before Starting Preparation of NCERT Class 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 Examination 2023 one Must need to go Through the Complete NCERT Syllabus of Class 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 of all the Subjects. Students of NCERT Class 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 can Check other Important Articles for Board Exam Preparation. NCERT 7th Class Revised Syllabus Students need to go Through Updated NCERT Class 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 Syllabus 2023, Students are also Advised to official site of NCERT d to get new NCERT Class 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 new Syllabus 2023.
ReplyDeleteFirst class data, modify everybody mind basically reference designate assistance to it. I could be placed in a larger invincible state. XXClone Make Bootable
ReplyDeleteFirst class data, modify everybody mind basically reference designate assistance to it. I could be placed in a larger invincible state. XXClone 2022 x64 Download
ReplyDeleteFirst class data, modify everybody mind basically reference designate assistance to it. I could be placed in a larger invincible state. https://cyberspc.com/xxclone-pro-crack/
ReplyDeleteYour article is easy to read and understand. I would like to read more articles like this. Getting an evisa Turkey online is a hassle free process. It saves time and money as well.
ReplyDeleteThese are the perfect birthday quotes for brother from sister, and so fun to share. 1. Happy birthday, bro .Happy Birthday Wishes For My Brother
ReplyDeleteNice thanks for sharing informative post like this keep posting if like more details visit my website linkhttps://azuretrainings.in/azure-devops/
ReplyDeleteinstagram takipçi satın al
ReplyDeletecasino siteleri
UOBJM
This comment has been removed by the author.
ReplyDeleteThe best facility for every prepaid mobile customer is online recharge to feel proud for managing recharges from own hands with new offers provided by Bharat Sanchar Nigam Limited. This may possible through a new website call as BSNL Quick Recharge Portal or with My BSNL App. BSNL Online Recharge This is one of the best service to avail Full Talktime Top Up, STV’s or any latest prepaid mobile plan recharges online. It is like an instant service, but from anywhere on just log in to BSNL Recharge Portal.
ReplyDelete