-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c1f4681
commit 6daccfd
Showing
11 changed files
with
954 additions
and
312 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
package backups | ||
|
||
import ( | ||
"bytes" | ||
"encoding/json" | ||
"fmt" | ||
"os/exec" | ||
"strings" | ||
|
||
"github.com/yezzey-gp/yproxy/pkg/ylogger" | ||
) | ||
|
||
type BackupLSN struct { | ||
Lsn uint64 `json:"LSN"` | ||
} | ||
|
||
//go:generate mockgen -destination=pkg/mock/backups.go -package=mock | ||
type BackupInterractor interface { | ||
GetFirstLSN(int) (uint64, error) | ||
} | ||
|
||
type WalgBackupInterractor struct { | ||
} | ||
|
||
// get lsn of the oldest backup | ||
func (b *WalgBackupInterractor) GetFirstLSN(seg int) (uint64, error) { | ||
cmd := exec.Command("/usr/bin/wal-g", "st", "ls", fmt.Sprintf("segments_005/seg%d/basebackups_005/", seg), "--config=/etc/wal-g/wal-g.yaml") | ||
ylogger.Zero.Debug().Any("flags", cmd.Args).Msg("Command args") | ||
var out bytes.Buffer | ||
cmd.Stdout = &out | ||
|
||
err := cmd.Run() | ||
if err != nil { | ||
ylogger.Zero.Debug().AnErr("error", err).Msg("Failed to run st ls") | ||
return 0, err | ||
} | ||
p1 := strings.Split(out.String(), "\n") | ||
|
||
minLSN := BackupLSN{Lsn: ^uint64(0)} | ||
for _, line := range p1 { | ||
if !strings.Contains(line, ".json") { | ||
continue | ||
} | ||
p2 := strings.Split(line, " ") | ||
p3 := p2[len(p2)-1] | ||
|
||
ylogger.Zero.Debug().Str("file: %s", fmt.Sprintf("segments_005/seg%d/basebackups_005/%s", seg, p3)).Msg("check lsn in file") | ||
cmd2 := exec.Command("/usr/bin/wal-g", "st", "cat", fmt.Sprintf("segments_005/seg%d/basebackups_005/%s", seg, p3), "--config=/etc/wal-g/wal-g.yaml") | ||
|
||
var out2 bytes.Buffer | ||
cmd2.Stdout = &out2 | ||
|
||
err = cmd2.Run() | ||
if err != nil { | ||
ylogger.Zero.Debug().AnErr("error", err).Msg("Failed to run st cat") | ||
return 0, err | ||
} | ||
lsn := BackupLSN{} | ||
err = json.Unmarshal(out2.Bytes(), &lsn) | ||
|
||
if lsn.Lsn < minLSN.Lsn { | ||
minLSN.Lsn = lsn.Lsn | ||
} | ||
} | ||
|
||
return minLSN.Lsn, err | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,177 @@ | ||
package database | ||
|
||
import ( | ||
"fmt" | ||
"strings" | ||
|
||
"github.com/jackc/pgx" | ||
"github.com/jackc/pgx/pgtype" | ||
"github.com/pkg/errors" | ||
"github.com/yezzey-gp/yproxy/pkg/ylogger" | ||
) | ||
|
||
//go:generate mockgen -destination=../mock/mock_database_interractor.go -package mock | ||
type DatabaseInterractor interface { | ||
GetVirtualExpireIndexes(int) (map[string]bool, map[string]uint64, error) | ||
} | ||
|
||
type DatabaseHandler struct { | ||
} | ||
|
||
type DB struct { | ||
name string | ||
tablespace pgtype.OID | ||
oid pgtype.OID | ||
} | ||
|
||
type Ei struct { | ||
reloid pgtype.OID | ||
relfileoid pgtype.OID | ||
expireLsn string | ||
fqnmd5 string | ||
} | ||
|
||
func (database *DatabaseHandler) GetVirtualExpireIndexes(port int) (map[string]bool, map[string]uint64, error) { //TODO несколько баз | ||
db, err := getDatabase(port) | ||
if err != nil { | ||
return nil, nil, fmt.Errorf("unable to get ao/aocs tables %v", err) //fix | ||
} | ||
ylogger.Zero.Debug().Str("database name", db.name).Msg("recieved database") | ||
conn, err := connectToDatabase(port, db.name) | ||
if err != nil { | ||
return nil, nil, err | ||
} | ||
defer conn.Close() //error | ||
ylogger.Zero.Debug().Msg("connected to database") | ||
|
||
rows, err := conn.Query(`SELECT reloid, relfileoid, expire_lsn, fqnmd5 FROM yezzey.yezzey_expire_index WHERE expire_lsn != '0/0';`) | ||
if err != nil { | ||
return nil, nil, fmt.Errorf("unable to get ao/aocs tables %v", err) //fix | ||
} | ||
defer rows.Close() | ||
ylogger.Zero.Debug().Msg("executed select") | ||
|
||
c := make(map[string]uint64, 0) | ||
for rows.Next() { | ||
row := Ei{} | ||
if err := rows.Scan(&row.reloid, &row.relfileoid, &row.expireLsn, &row.fqnmd5); err != nil { | ||
return nil, nil, fmt.Errorf("unable to parse query output %v", err) | ||
} | ||
|
||
lsn, err := pgx.ParseLSN(row.expireLsn) | ||
if err != nil { | ||
return nil, nil, fmt.Errorf("unable to parse query output %v", err) | ||
} | ||
|
||
ylogger.Zero.Debug().Str("file", fmt.Sprintf("%d_%d_%s_%d_", db.tablespace, db.oid, row.fqnmd5, row.relfileoid)).Msg("added file to ei") | ||
c[fmt.Sprintf("%d_%d_%s_%d_", db.tablespace, db.oid, row.fqnmd5, row.relfileoid)] = lsn | ||
} | ||
ylogger.Zero.Debug().Msg("read 1") | ||
|
||
rows2, err := conn.Query(`SELECT x_path FROM yezzey.yezzey_virtual_index;`) | ||
if err != nil { | ||
return nil, nil, fmt.Errorf("unable to get ao/aocs tables %v", err) //fix | ||
} | ||
defer rows2.Close() | ||
ylogger.Zero.Debug().Msg("read 2") | ||
|
||
c2 := make(map[string]bool, 0) | ||
for rows2.Next() { | ||
xpath := "" | ||
if err := rows2.Scan(&xpath); err != nil { | ||
return nil, nil, fmt.Errorf("unable to parse query output %v", err) | ||
} | ||
p1 := strings.Split(xpath, "/") | ||
p2 := p1[len(p1)-1] | ||
p3 := strings.Split(p2, "_") | ||
if len(p3) >= 4 { | ||
p2 = fmt.Sprintf("%s_%s_%s_%s_", p3[0], p3[1], p3[2], p3[3]) | ||
} | ||
c2[p2] = true | ||
ylogger.Zero.Debug().Str("file", p2).Msg("added") | ||
} | ||
ylogger.Zero.Debug().Msg("read 3") | ||
|
||
return c2, c, err | ||
} | ||
|
||
func getDatabase(port int) (DB, error) { | ||
conn, err := connectToDatabase(port, "postgres") | ||
if err != nil { | ||
return DB{}, err | ||
} | ||
defer conn.Close() //error | ||
ylogger.Zero.Debug().Msg("connected to db") | ||
rows, err := conn.Query(`SELECT dattablespace, oid, datname FROM pg_database WHERE datallowconn;`) | ||
if err != nil { | ||
return DB{}, err | ||
} | ||
defer rows.Close() | ||
ylogger.Zero.Debug().Msg("recieved db list") | ||
|
||
for rows.Next() { | ||
row := DB{} | ||
ylogger.Zero.Debug().Msg("cycle 1") | ||
if err := rows.Scan(&row.tablespace, &row.oid, &row.name); err != nil { | ||
return DB{}, err | ||
} | ||
ylogger.Zero.Debug().Msg("cycle 2") | ||
ylogger.Zero.Debug().Str("db", row.name).Int("db", int(row.oid)).Int("db", int(row.tablespace)).Msg("database") | ||
if row.name == "postgres" { | ||
continue | ||
} | ||
|
||
ylogger.Zero.Debug().Str("db", row.name).Msg("check database") | ||
connDb, err := connectToDatabase(port, row.name) | ||
if err != nil { | ||
return DB{}, err | ||
} | ||
defer connDb.Close() //error | ||
ylogger.Zero.Debug().Msg("cycle 3") | ||
|
||
rowsdb, err := connDb.Query(`SELECT exists(SELECT * FROM information_schema.schemata WHERE schema_name='yezzey');`) | ||
if err != nil { | ||
return DB{}, err | ||
} | ||
defer rowsdb.Close() | ||
ylogger.Zero.Debug().Msg("cycle 4") | ||
var ans bool | ||
rowsdb.Next() | ||
err = rowsdb.Scan(&ans) | ||
if err != nil { | ||
ylogger.Zero.Error().AnErr("error", err).Msg("error during yezzey check") | ||
return DB{}, err | ||
} | ||
ylogger.Zero.Debug().Bool("result", ans).Msg("find yezzey schema") | ||
if ans { | ||
ylogger.Zero.Debug().Str("db", row.name).Msg("found yezzey schema in database") | ||
ylogger.Zero.Debug().Int("db", int(row.oid)).Int("db", int(row.tablespace)).Msg("found yezzey schema in database") | ||
return row, nil | ||
} | ||
|
||
ylogger.Zero.Debug().Str("db", row.name).Msg("no yezzey schema in database") | ||
} | ||
return DB{}, fmt.Errorf("no yezzey schema across databases") | ||
} | ||
|
||
func connectToDatabase(port int, database string) (*pgx.Conn, error) { | ||
config, err := pgx.ParseEnvLibpq() | ||
if err != nil { | ||
return nil, errors.Wrap(err, "Connect: unable to read environment variables") | ||
} | ||
|
||
config.Port = uint16(port) | ||
config.Database = database | ||
|
||
config.RuntimeParams["gp_role"] = "utility" | ||
conn, err := pgx.Connect(config) | ||
if err != nil { | ||
config.RuntimeParams["gp_session_role"] = "utility" | ||
conn, err = pgx.Connect(config) | ||
if err != nil { | ||
fmt.Printf("error in connection %v", err) // delete this | ||
return nil, err | ||
} | ||
} | ||
return conn, nil | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.