gpt4 book ai didi

scala - 将 Spark Streaming RDD 推送到 Neo4j -Scala

转载 作者:行者123 更新时间:2023-12-04 12:50:24 24 4
gpt4 key购买 nike

我需要建立从 Spark Streaming 到 Neo4j 图形数据库的连接。RDD 的类型为((is,I),(am,Hello)(sam,happy....)。我需要在 Neo4j 中的每对单词之间建立一条边。

在我发现的 Spark Streaming 文档中

dstream.foreachRDD { rdd =>
rdd.foreachPartition { partitionOfRecords =>
// ConnectionPool is a static, lazily initialized pool of connections
val connection = ConnectionPool.getConnection()
partitionOfRecords.foreach(record => connection.send(record))
ConnectionPool.returnConnection(connection) // return to the pool for future reuse
}
}

to the push to the data to an external database.

我正在 Scala 中执行此操作。我对如何去做有点困惑?我找到了 AnormCypher 和 Neo4jScala 包装器。我可以使用这些来完成工作吗?如果是这样,我该怎么做?如果没有,还有更好的选择吗?

谢谢你们....

最佳答案

我用 AnormCypher 做了一个实验

像这样:

implicit val connection = Neo4jREST.setServer("localhost", 7474, "/db/data/")
val conf = new SparkConf().setAppName("Simple Application")
val sc = new SparkContext(conf)
val logData = sc.textFile(FILE, 4).cache()
val count = logData
.flatMap( _.split(" "))
.map( w =>
Cypher("CREATE(:Word {text:{text}})")
.on( "text" -> w ).execute()
).filter( _ ).count()

Neo4j 2.2.x 具有出色的并发写入性能,您可以在 Spark 中使用。因此,您可以向 Neo4j 写入的并发线程越多越好。如果每个请求可以批量处理 100 到 1000 个语句,那就更好了。

关于scala - 将 Spark Streaming RDD 推送到 Neo4j -Scala,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31059930/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com