mirror of
				https://codeberg.org/forgejo/forgejo.git
				synced 2025-11-04 00:11:04 +00:00 
			
		
		
		
	Resolves #7207 Add new configuration to make XORM work with a main and replicas database instances. The follow configuration parameters were added: - `HOST_PRIMARY` - `HOST_REPLICAS` - `LOAD_BALANCE_POLICY`. Options: - `"WeightRandom"` -> `xorm.WeightRandomPolicy` - `"WeightRoundRobin` -> `WeightRoundRobinPolicy` - `"LeastCon"` -> `LeastConnPolicy` - `"RoundRobin"` -> `xorm.RoundRobinPolicy()` - default: `xorm.RandomPolicy()` - `LOAD_BALANCE_WEIGHTS` Co-authored-by: pat-s <patrick.schratz@gmail.com@> Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/7212 Reviewed-by: Gusted <gusted@noreply.codeberg.org> Co-authored-by: pat-s <patrick.schratz@gmail.com> Co-committed-by: pat-s <patrick.schratz@gmail.com>
		
			
				
	
	
		
			51 lines
		
	
	
	
		
			1.3 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			51 lines
		
	
	
	
		
			1.3 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
// Copyright 2018 The Gitea Authors. All rights reserved.
 | 
						|
// SPDX-License-Identifier: MIT
 | 
						|
 | 
						|
package cmd
 | 
						|
 | 
						|
import (
 | 
						|
	"context"
 | 
						|
 | 
						|
	"forgejo.org/models/db"
 | 
						|
	"forgejo.org/models/migrations"
 | 
						|
	"forgejo.org/modules/log"
 | 
						|
	"forgejo.org/modules/setting"
 | 
						|
 | 
						|
	"github.com/urfave/cli/v2"
 | 
						|
)
 | 
						|
 | 
						|
// CmdMigrate represents the available migrate sub-command.
 | 
						|
var CmdMigrate = &cli.Command{
 | 
						|
	Name:        "migrate",
 | 
						|
	Usage:       "Migrate the database",
 | 
						|
	Description: "This is a command for migrating the database, so that you can run 'forgejo admin user create' before starting the server.",
 | 
						|
	Action:      runMigrate,
 | 
						|
}
 | 
						|
 | 
						|
func runMigrate(ctx *cli.Context) error {
 | 
						|
	stdCtx, cancel := installSignals()
 | 
						|
	defer cancel()
 | 
						|
 | 
						|
	if err := initDB(stdCtx); err != nil {
 | 
						|
		return err
 | 
						|
	}
 | 
						|
 | 
						|
	log.Info("AppPath: %s", setting.AppPath)
 | 
						|
	log.Info("AppWorkPath: %s", setting.AppWorkPath)
 | 
						|
	log.Info("Custom path: %s", setting.CustomPath)
 | 
						|
	log.Info("Log path: %s", setting.Log.RootPath)
 | 
						|
	log.Info("Configuration file: %s", setting.CustomConf)
 | 
						|
 | 
						|
	if err := db.InitEngineWithMigration(context.Background(), func(dbEngine db.Engine) error {
 | 
						|
		masterEngine, err := db.GetMasterEngine(dbEngine)
 | 
						|
		if err != nil {
 | 
						|
			return err
 | 
						|
		}
 | 
						|
		return migrations.Migrate(masterEngine)
 | 
						|
	}); err != nil {
 | 
						|
		log.Fatal("Failed to initialize ORM engine: %v", err)
 | 
						|
		return err
 | 
						|
	}
 | 
						|
 | 
						|
	return nil
 | 
						|
}
 |