Mongo-Go-Driver не может подключиться
Поэтому я пытаюсь использовать https://github.com/mongodb/mongo-go-driver для подключения к базе данных Монго в Голанге.
Вот мой обработчик соединения:
var DB *mongo.Database
func CreateConnectionHandler()(*mongo.Database, error){
fmt.Println("inside createConnection in database package")
godotenv.Load()
fmt.Println("in CreateConnectionHandler and SERVER_CONFIG: ")
fmt.Println(os.Getenv("SERVER_CONFIG"))
uri:=""
if os.Getenv("SERVER_CONFIG")=="kubernetes"{
fmt.Println("inside kubernetes db config")
uri = "mongodb://patientplatypus:SUPERSECRETPASSDOOT@
mongo-release-mongodb.default.svc.cluster.local:27017/
platypusNEST?authMechanism=SCRAM-SHA-1"
}else if os.Getenv("SERVER_CONFIG")=="compose"{
fmt.Println("inside compose db config")
uri = "mongodb://datastore:27017"
}
ctx, _ := context.WithTimeout(context.Background(), 10*time.Second)
client, err := mongo.Connect(ctx, uri)
if err != nil {
return nil, fmt.Errorf("mongo client couldn't connect: %v", err)
}
DB := client.Database("platypusNEST")
return DB, nil
}
И ошибка, которую я получаю:
api | database/connection.go:29:30: cannot use uri (type
string) as type *options.ClientOptions in argument to mongo.Connect
Поэтому я попытался заменить uri
со строкой подключения вот так:
client, err := mongo.Connect(ctx, "mongodb://datastore:27017")
Но я все еще получил ошибку.
Сравните это с тем, что есть в документации:
ctx, _ := context.WithTimeout(context.Background(), 10*time.Second) client, err := mongo.Connect(ctx, "mongodb://localhost:27017")
И это точно так же! Я действительно не уверен, почему есть эта ошибка. Есть идеи?
1 ответ
Для тех, кто приходит на поиски - документы устарели на момент публикации, но их последняя версия здесь: https://github.com/mongodb/mongo-go-driver/commit/32946b1f8b9412a6a94e68ff789575327bb257cf заставляет их делать это с помощью connect:
client, err := mongo.NewClient(options.Client().ApplyURI(uri))
Теперь вам также нужно будет импортировать пакет опций. Счастливого взлома.
РЕДАКТИРОВАТЬ: спасибо vcanales за это - вы джентльмен и ученый.
В дополнение к принятому ответу - этот фрагмент ниже можно улучшить, используя переменную среды для передачи URL-адреса Mongodb.
package main
import (
"context" //use import withs " char
"fmt"
"time"
"go.mongodb.org/mongo-driver/mongo"
"go.mongodb.org/mongo-driver/mongo/options"
"go.mongodb.org/mongo-driver/mongo/readpref"
)
func ConnectMongo() {
var (
client *mongo.Client
mongoURL = "mongodb://localhost:27017"
)
// Initialize a new mongo client with options
client, err := mongo.NewClient(options.Client().ApplyURI(mongoURL))
// Connect the mongo client to the MongoDB server
ctx, _ := context.WithTimeout(context.Background(), 10*time.Second)
err = client.Connect(ctx)
// Ping MongoDB
ctx, _ = context.WithTimeout(context.Background(), 10*time.Second)
if err = client.Ping(ctx, readpref.Primary()); err != nil {
fmt.Println("could not ping to mongo db service: %v\n", err)
return
}
fmt.Println("connected to nosql database:", mongoURL)
}
func main() {
ConnectMongo()
}
Дополнительная информация о параметрах и readpref соответственно: https://docs.mongodb.com/manual/reference/method/cursor.readPref/index.htmlhttps://docs.mongodb.com/manual/core/read-preference/