data_prep/importfunc/import_user_id_map.go

96 lines
2.1 KiB
Go
Raw Normal View History

2024-09-13 17:06:00 +08:00
package importfunc
import (
2024-09-23 15:15:44 +08:00
"bufio"
2024-09-13 17:06:00 +08:00
"context"
"fmt"
2024-09-23 15:15:44 +08:00
"io"
"os"
"strconv"
"strings"
2024-09-13 17:06:00 +08:00
2024-09-13 17:06:40 +08:00
"data_prep/dbstruct"
"data_prep/mongo"
2024-09-13 17:06:00 +08:00
)
func ImportUserIdMap() {
mcli, err := mongo.NewMongo()
if err != nil {
fmt.Printf("mongo client init fail : %v", err)
return
}
ctx := context.Background()
2024-09-23 15:36:01 +08:00
for i := 1; i < 100; i++ {
2024-09-23 15:23:23 +08:00
go func(i int) {
fmt.Printf("Importing %dth", i)
2024-09-23 15:36:01 +08:00
pathurl := fmt.Sprintf("/app/data_prep/file/user_id_map%v.txt", i)
2024-09-23 15:23:23 +08:00
infile, err := os.Open(pathurl)
2024-09-23 15:15:44 +08:00
if err != nil {
2024-09-23 15:23:23 +08:00
fmt.Printf("Open File Err : %v", err)
2024-09-23 15:36:01 +08:00
return
2024-09-23 15:15:44 +08:00
}
2024-09-23 15:23:23 +08:00
reader := bufio.NewReader(infile)
userIdMaps := make([]*dbstruct.UserIdMap, 0)
for {
str, err := reader.ReadString('\n')
if len(str) == 0 {
continue
}
strs := strings.Split(str, ":")
seq, _ := strconv.Atoi(strs[0])
userId, _ := strconv.Atoi(strs[1])
userIdMaps = append(userIdMaps, &dbstruct.UserIdMap{
Seq: int64(seq),
UserId: int64(userId),
})
if len(userIdMaps) == 1000 {
err := mcli.CreateMappedUserIds(ctx, userIdMaps)
if err != nil {
fmt.Printf("CreateMappedUserIds err :%v", err)
}
}
if err == io.EOF {
err := mcli.CreateMappedUserIds(ctx, userIdMaps)
if err != nil {
fmt.Printf("CreateMappedUserIds err :%v", err)
}
break
}
2024-09-23 15:15:44 +08:00
}
2024-09-23 15:23:23 +08:00
infile.Close()
fmt.Printf("%dth imported", i)
}(i)
2024-09-23 11:24:54 +08:00
}
fmt.Printf("Import into test success")
}
2024-09-23 11:26:08 +08:00
func ImportAsList(mcli *mongo.Mongo, ctx context.Context, list []int64, s int) {
fmt.Printf("Importing %dth", s)
2024-09-23 11:24:54 +08:00
userIdMaps := make([]*dbstruct.UserIdMap, 0)
2024-09-13 17:11:04 +08:00
for i := range list {
seq := int64(1000000) + int64(i)
userId := list[i]
2024-09-13 17:06:00 +08:00
userIdMaps = append(userIdMaps, &dbstruct.UserIdMap{
Seq: int64(seq),
UserId: int64(userId),
})
if len(userIdMaps) == 10000 {
2024-09-13 17:11:04 +08:00
err := mcli.CreateMappedUserIds(ctx, userIdMaps)
if err != nil {
fmt.Printf("CreateMappedUserIds err :%v", err)
}
2024-09-13 17:06:00 +08:00
userIdMaps = make([]*dbstruct.UserIdMap, 0)
}
}
if len(userIdMaps) > 0 {
2024-09-13 17:11:04 +08:00
err := mcli.CreateMappedUserIds(ctx, userIdMaps)
if err != nil {
fmt.Printf("CreateMappedUserIds err :%v", err)
}
2024-09-13 17:06:00 +08:00
}
2024-09-23 11:26:08 +08:00
fmt.Printf("%dth imported", s)
2024-09-13 17:06:00 +08:00
}