blob: 938bd73962521f0b376a2de97c0b3461f4a83e5a [file] [log] [blame]
// The fsmigrator executable migrates various data from firestore to an SQL database.
// It uses port forwarding, as that is the simplest approach and there shouldn't be
// too much data.
package main
import (
"context"
"flag"
"github.com/jackc/pgx/v4/pgxpool"
ifirestore "go.skia.org/infra/go/firestore"
"go.skia.org/infra/go/sklog"
"go.skia.org/infra/golden/go/sql"
)
func main() {
var (
fsProjectID = flag.String("fs_project_id", "skia-firestore", "The project with the firestore instance. Datastore and Firestore can't be in the same project.")
oldFSNamespace = flag.String("old_fs_namespace", "", "Typically the instance id. e.g. 'chrome-gpu', 'skia', etc")
newSQLDatabase = flag.String("new_sql_db", "", "Something like the instance id (no dashes)")
)
flag.Parse()
if *oldFSNamespace == "" {
sklog.Fatalf("You must include fs_namespace")
}
if *newSQLDatabase == "" {
sklog.Fatalf("You must include new_sql_db")
}
ctx := context.Background()
fsClient, err := ifirestore.NewClient(ctx, *fsProjectID, "gold", *oldFSNamespace, nil)
if err != nil {
sklog.Fatalf("Unable to configure Firestore: %s", err)
}
u := sql.GetConnectionURL("root@localhost:26234", *newSQLDatabase)
conf, err := pgxpool.ParseConfig(u)
if err != nil {
sklog.Fatalf("error getting postgres config %s: %s", u, err)
}
conf.MaxConns = 16
db, err := pgxpool.ConnectConfig(ctx, conf)
if err != nil {
sklog.Info("You must run\nkubectl port-forward gold-cockroachdb-0 26234:26234")
sklog.Fatalf("error connecting to the database: %s", err)
}
sklog.Fatalf("Should do something with fsclient %v and db %v", fsClient, db)
}