我们希望Go应用程序监听集合上的数据更改。因此,谷歌搜索解决方案,我们遇到了MongoDB的Change Streams。该链接还展示了一些语言的一些实现片段,如Python,Java,Nodejs等。但是,Go没有任何代码。
我们使用Mgo作为驱动程序,但无法在更改流上找到明确的声明。
有没有人知道如何使用Mgo或Go的任何其他Mongo驱动程序观看Change Streams?
答案 0 :(得分:14)
Gustavo Niemeyer开发的流行mgo
驱动程序(github.com/go-mgo/mgo
)变暗(未维护)。它不支持变更流。
社区支持的fork github.com/globalsign/mgo
处于更好的状态,并且已经添加了对更改流的支持(请参阅details here)。
要观看集合的更改,只需使用Collection.Watch()
方法,该方法返回值mgo.ChangeStream
。这是一个使用它的简单示例:
coll := ... // Obtain collection
pipeline := []bson.M{}
changeStream := coll.Watch(pipeline, mgo.ChangeStreamOptions{})
var changeDoc bson.M
for changeStream.Next(&changeDoc) {
fmt.Printf("Change: %v\n", changeDoc)
}
if err := changeStream.Close(); err != nil {
return err
}
另请注意,正在开发的官方 MongoDB Go驱动程序已在此处公布:Considering the Community Effects of Introducing an Official MongoDB Go Driver
目前处于 alpha(!!)阶段,因此请考虑这一点。它可以在这里找到:github.com/mongodb/mongo-go-driver
。它也已经支持更改流,类似地通过Collection.Watch()
方法(这是一种不同的mongo.Collection
类型,它与mgo.Collection
无关。它会返回一个mongo.Cursor
,您可以这样使用:
var coll mongo.Collection = ... // Obtain collection
ctx := context.Background()
var pipeline interface{} // set up pipeline
cur, err := coll.Watch(ctx, pipeline)
if err != nil {
// Handle err
return
}
defer cur.Close(ctx)
for cur.Next(ctx) {
elem := bson.NewDocument()
if err := cur.Decode(elem); err != nil {
log.Fatal(err)
}
// do something with elem....
}
if err := cur.Err(); err != nil {
log.Fatal(err)
}
答案 1 :(得分:0)
此示例将The MongoDB supported driver for Go与流管道一起使用(仅过滤具有field1 = 1和field2 = false的文档):
ctx := context.TODO()
clientOptions := options.Client().ApplyURI(mongoURI)
client, err := mongo.Connect(ctx, clientOptions)
if err != nil {
log.Fatal(err)
}
err = client.Ping(ctx, nil)
if err != nil {
log.Fatal(err)
}
fmt.Println("Connected!")
collection := client.Database("test").Collection("test")
pipeline := mongo.Pipeline{bson.D{
{"$match",
bson.D{
{"fullDocument.field1", 1},
{"fullDocument.field2", false},
},
},
}}
streamOptions := options.ChangeStream().SetFullDocument(options.UpdateLookup)
stream, err := collection.Watch(ctx, pipeline, streamOptions)
if err != nil {
log.Fatal(err)
}
log.Print("waiting for changes")
var changeDoc map[string]interface{}
for stream.Next(ctx) {
if e := stream.Decode(&changeDoc); e != nil {
log.Printf("error decoding: %s", e)
}
log.Printf("change: %+v", changeDoc)
}