愈來愈健忘了,得記錄下本身的操做才行!html
ES和spark版本:node
spark-1.6.0-bin-hadoop2.6linux
Elasticsearch for Apache Hadoop 2.1.2shell
若是是其餘版本,在索引數據寫入的時候可能會出錯。apache
首先,啓動es後,spark shell導入es-hadoop jar包:elasticsearch
cp elasticsearch-hadoop-2.1.2/dist/elasticsearch-spark* spark-1.6.0-bin-hadoop2.6/lib/ cd spark-1.6.0-bin-hadoop2.6/bin ./spark-shell --jars ../lib/elasticsearch-spark-1.2_2.10-2.1.2.jar
交互以下:ide
import org.apache.spark.SparkConf import org.elasticsearch.spark._ val conf = new SparkConf() conf.set("es.index.auto.create", "true") conf.set("es.nodes", "127.0.0.1") val numbers = Map("one" -> 1, "two" -> 2, "three" -> 3) val airports = Map("OTP" -> "Otopeni", "SFO" -> "San Fran") sc.makeRDD(Seq(numbers, airports)).saveToEs("spark/docs")
而後查看ES中的數據:oop
http://127.0.0.1:9200/spark/docs/_search?q=*
結果以下:ui
{"took":71,"timed_out":false,"_shards":{"total":5,"successful":5,"failed":0},"hits":{"total":2,"max_score":1.0,"hits":[{"_index":"spark","_type":"docs","_id":"AVfhVqPBv9dlWdV2DcbH","_score":1.0,"_source":{"OTP":"Otopeni","SFO":"San Fran"}},{"_index":"spark","_type":"docs","_id":"AVfhVqPOv9dlWdV2DcbI","_score":1.0,"_source":{"one":1,"two":2,"three":3}}]}}
參考:spa
https://www.elastic.co/guide/en/elasticsearch/hadoop/2.1/spark.html#spark-installation
http://spark.apache.org/docs/latest/programming-guide.html
http://chenlinux.com/2014/09/04/spark-to-elasticsearch/