使用Golang将一千个节点插入到Neo4j中。

huangapple go评论126阅读模式
英文:

Insert thousand nodes to neo4j using golang

问题

我正在使用neoism将数据导入到neo4j中,但在导入大数据时遇到了一些问题,导入1000个节点需要8秒。以下是导入100个节点的代码片段。这是一个相当基本的代码,需要改进,有人可以帮助我改进吗?

  1. var wg sync.WaitGroup
  2. for _, itemProps := range items {
  3. wg.Add(1)
  4. go func(i interface{}) {
  5. s := time.Now()
  6. cypher := neoism.CypherQuery{
  7. Statement: fmt.Sprintf(`
  8. CREATE (%v)
  9. SET i = {Props}
  10. RETURN i
  11. `, ItemLabel),
  12. Parameters: neoism.Props{"Props": i},
  13. }
  14. if err := database.ExecuteCypherQuery(cypher); err != nil {
  15. utils.Error(fmt.Sprintf("error ImportItemsNeo4j! %v", err))
  16. wg.Done()
  17. return
  18. }
  19. utils.Info(fmt.Sprintf("import Item success! took: %v", time.Since(s)))
  20. wg.Done()
  21. }(itemProps)
  22. }
  23. wg.Wait()
英文:

I am importing data to neo4j using neoism, and I have some issues importing big data, 1000 nodes, would take 8s. here is a part of the code that imports 100nodes.
quite basic code, needs improvement, anyone can help me improve this?

<!-- language: go -->

  1. var wg sync.WaitGroup
  2. for _, itemProps := range items {
  3. wg.Add(1)
  4. go func(i interface{}) {
  5. s := time.Now()
  6. cypher := neoism.CypherQuery{
  7. Statement: fmt.Sprintf(`
  8. CREATE (%v)
  9. SET i = {Props}
  10. RETURN i
  11. `, ItemLabel),
  12. Parameters: neoism.Props{&quot;Props&quot;: i},
  13. }
  14. if err := database.ExecuteCypherQuery(cypher); err != nil {
  15. utils.Error(fmt.Sprintf(&quot;error ImportItemsNeo4j! %v&quot;, err))
  16. wg.Done()
  17. return
  18. }
  19. utils.Info(fmt.Sprintf(&quot;import Item success! took: %v&quot;, time.Since(s)))
  20. wg.Done()
  21. }(itemProps)
  22. }
  23. wg.Wait()

答案1

得分: 4

据我所知,Neoism仍在使用旧的API,你应该使用cq代替:https://github.com/go-cq/cq

此外,你应该批量创建节点,

例如,可以在一个请求中发送多个语句,例如每个请求发送100个语句

或者更好的是,将参数列表发送到单个Cypher查询中:

例如,{data} 是一个 [{id:1},{id:2},...] 的列表

  1. UNWIND {data} as props
  2. CREATE (n:Label) SET n = props
英文:

Afaik neoism still uses old APIs, you should use cq instead: https://github.com/go-cq/cq

also you should batch your creates,

i.e. either send multiple statements per request, e.g 100 statements per request

or even better send a list of parameters to a single cypher query:

e.g. {data} is a [{id:1},{id:2},...]

  1. UNWIND {data} as props
  2. CREATE (n:Label) SET n = props

huangapple
  • 本文由 发表于 2016年2月18日 11:49:30
  • 转载请务必保留本文链接:https://go.coder-hub.com/35472484.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定