登录
首页 >  Golang >  Go问答

使用Golang库查询MongoDB版本的方法

来源:stackoverflow

时间:2024-02-18 13:51:24 490浏览 收藏

从现在开始,努力学习吧!本文《使用Golang库查询MongoDB版本的方法》主要讲解了等等相关知识点,我会在golang学习网中持续更新相关的系列文章,欢迎大家关注并积极留言建议。下面就先一起来看一下本篇正文内容吧,希望能帮到你!

问题内容

我正在使用 go 的 mongoddb 驱动程序 (https://pkg.go.dev/go.mongodb.org/[电子邮件受保护]/ mongo#section-documentation)并希望获取部署的mongodb服务器的版本。

例如,如果它是 mysql 数据库,我可以执行如下操作:

db, err := sql.Open("mysql", DbUser+":"+DbPwd+"@tcp("+Host+")/"+DbName)
if err != nil {
    log.Printf("Error while connecting to DB: %v", err)
}
defer db.Close()

var dbVersion string
if err := db.QueryRow("SELECT VERSION()").Scan(&dbVersion); err != nil {
    dbVersion = "NA"
    log.Printf("Couldnt obtain db version: %w", err)
}
fmt.Println("DB Version: ", dbVersion)

我浏览了文档,但找不到线索。

我还需要获取其他元数据,例如特定数据库的大小等。

如有任何帮助,我们将不胜感激。谢谢!


正确答案


mongodb版本可以通过running a command获取,具体是buildInfo command

使用 shell,您可以这样做:

db.runcommand({buildinfo: 1})

结果是一个文档,其 version 属性保存服务器版本,例如:

{
    "version" : "5.0.6",
    ...
}

要使用官方驱动程序运行命令,请使用 Database.RunCommand() 方法。

例如:

// connect to mongodb and acquire a database:

ctx := context.background()
opts := options.client().applyuri("mongodb://localhost")
client, err := mongo.connect(ctx, opts)
if err != nil {
    log.fatalf("failed to connect to db: %v", err)
}
defer client.disconnect(ctx)

db := client.database("your-db-name")

// and now run the buildinfo command:

buildinfocmd := bson.d{bson.e{key: "buildinfo", value: 1}}
var buildinfodoc bson.m
if err := db.runcommand(ctx, buildinfocmd).decode(&buildinfodoc); err != nil {
    log.printf("failed to run buildinfo command: %v", err)
    return
}
log.println("database version:", buildinfodoc["version"])

根据@icza的回答,以下是获取数据库其他元数据的方法:

我们需要使用dbStats命令来获取元数据。

host := "<your-host-name>:<pot-number>"
url := "mongodb://" + host


credential := options.Credential{
    AuthSource: "authentication-database",
    Username:   "username",
    Password:   "password",
}

clientOpts := options.Client().ApplyURI(url).SetAuth(credential)

ctx := context.Background()
client, err := mongo.Connect(ctx, clientOpts)
if err != nil {
    log.Fatal("Failed to connect to db : %w", err)
}
defer client.Disconnect(ctx)

if err := client.Ping(context.TODO(), readpref.Primary()); err != nil {
    panic(err)
}
fmt.Println("Successfully connected and pinged.")

db := client.Database("your-database-name")


dbStatsCmd := bson.D{bson.E{Key: "dbStats", Value: 1}}
var dbStatsDoc bson.M
if err := db.RunCommand(ctx, dbStatsCmd).Decode(&dbStatsDoc); err != nil {
    log.Printf("Failed to run dbStats command: %v", err)
    return
}

log.Println("\nTotal Used Size in MB: ", dbStatsDoc["totalSize"].(float64) / 1048576 , " ,Total Free size in MB (part of total used size): ", dbStatsDoc["totalFreeStorageSize"].(float64)/1048576)

今天带大家了解了的相关知识,希望对你有所帮助;关于Golang的技术知识我们会一点点深入介绍,欢迎大家关注golang学习网公众号,一起学习编程~

声明:本文转载于:stackoverflow 如有侵犯,请联系study_golang@163.com删除
相关阅读
更多>
最新阅读
更多>
课程推荐
更多>