Help Center/
MapReduce Service/
Developer Guide (LTS)/
Spark2x Development Guide (Security Mode)/
Developing Spark Applications/
Sample Project for Spark Concurrent Access to Two HBase Sample Projects/
Spark Concurrent Access to Two HBase Sample Projects (Scala)
Updated on 2024-08-10 GMT+08:00
Spark Concurrent Access to Two HBase Sample Projects (Scala)
The following code snippets are used as an example. For complete codes, see com.huawei.spark.examples.SparkOnMultiHbase
def main(args: Array[String]): Unit = { val conf = new SparkConf().setAppName("SparkOnMultiHbaseExample") conf.set("spark.serializer", "org.apache.spark.serializer.KryoSerializer") conf.set("spark.kryo.registrator", "com.huawei.spark.examples.MyRegistrator") val sc = new SparkContext(conf)val tableName = "SparkOnMultiHbase" val clusterFlagList=List("B", "A") clusterFlagList.foreach{ item => val hbaseConf = getConf( item ) println(hbaseConf.get("hbase.zookeeper.quorum")) val hbaseUtil = new HbaseUtil(sc,hbaseConf) hbaseUtil.writeToHbase(tableName) hbaseUtil.readFromHbase(tableName) } sc.stop() } private def getConf(item:String):Configuration={ val conf: Configuration = HBaseConfiguration.create() val url = "/opt" + File.separator + "example" + File.separator + item + File.separator + "hbase-site.xml" conf.addResource(new File(url).toURI.toURL) conf }
Feedback
Was this page helpful?
Provide feedbackThank you very much for your feedback. We will continue working to improve the documentation.See the reply and handling status in My Cloud VOC.
The system is busy. Please try again later.
For any further questions, feel free to contact us through the chatbot.
Chatbot