first release
This commit is contained in:
parent
ec9bbe8a6c
commit
3d9b5feba9
2 changed files with 64 additions and 22 deletions
25
main.go
25
main.go
|
@ -420,17 +420,30 @@ func ProcessGMA(filePath string) (err error) {
|
||||||
fmt.Printf("Import Duration %dms\n", time.Since(importStartTime).Milliseconds())
|
fmt.Printf("Import Duration %dms\n", time.Since(importStartTime).Milliseconds())
|
||||||
fmt.Println()
|
fmt.Println()
|
||||||
// TODO: upload all unknownNewFiles to StorageServer
|
// TODO: upload all unknownNewFiles to StorageServer
|
||||||
|
http.DefaultTransport.(*http.Transport).MaxIdleConnsPerHost = 200
|
||||||
var httpClient *http.Client = http.DefaultClient
|
var httpClient *http.Client = http.DefaultClient
|
||||||
|
|
||||||
for _, unknownFile := range newUnknownFiles {
|
for _, unknownFile := range newUnknownFiles {
|
||||||
unknownFileID := fmt.Sprintf("file/%s", unknownFile)
|
unknownFileID := fmt.Sprintf("file/%s", unknownFile)
|
||||||
for _, dboGMA2File := range dboGMA2Files {
|
for _, dboGMA2File := range dboGMA2Files {
|
||||||
if unknownFileID == dboGMA2File.File {
|
if unknownFileID == dboGMA2File.File {
|
||||||
fmt.Printf("Uploading %s (local %s) to Storage\n", dboGMA2File.UploadID, dboGMA2File.LocalFileName)
|
uploadSuccess := true
|
||||||
err = common.MultipartUpload(httpClient, fmt.Sprintf("http://127.0.0.1:13371/stash/%s/%d", dboGMA2File.UploadID, dboGMA2File.FileSize), dboGMA2File.LocalFileName)
|
for {
|
||||||
if err != nil {
|
fmt.Printf("Uploading %s (local %s) to Storage\n", dboGMA2File.UploadID, dboGMA2File.LocalFileName)
|
||||||
fmt.Println("oopsie")
|
err = common.MultipartUpload(httpClient, fmt.Sprintf("http://127.0.0.1:13371/stash/%s/%d", dboGMA2File.UploadID, dboGMA2File.FileSize), dboGMA2File.LocalFileName)
|
||||||
undoBatch(true, dboGMA.ID, fileIDs, gma2FileIDs)
|
if err != nil {
|
||||||
return err
|
if strings.Contains(err.Error(), "cannot assign requested address") {
|
||||||
|
uploadSuccess = false
|
||||||
|
} else {
|
||||||
|
fmt.Println("oopsie")
|
||||||
|
undoBatch(true, dboGMA.ID, fileIDs, gma2FileIDs)
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if uploadSuccess {
|
||||||
|
break
|
||||||
|
}
|
||||||
|
time.Sleep(10 * time.Second)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -32,11 +32,11 @@ var (
|
||||||
)
|
)
|
||||||
|
|
||||||
type Pool struct {
|
type Pool struct {
|
||||||
PoolID string `json:"_key"`
|
PoolID string `json:"_key"`
|
||||||
Finalized bool `json:"finalized"`
|
Finalized bool `json:"finalized"`
|
||||||
ReadOnly bool `json:"readOnly"`
|
ReadOnly bool `json:"readOnly"`
|
||||||
Size uint64 `json:"size"`
|
Size uint64 `json:"size"`
|
||||||
//folder string `json:"-"`
|
LastTouchy time.Time `json:"-"`
|
||||||
|
|
||||||
itemCount int
|
itemCount int
|
||||||
items []string
|
items []string
|
||||||
|
@ -88,7 +88,7 @@ func ConnectDB(baseURL string, arangoUser string, arangoPWD string, arangoDataba
|
||||||
// Retry Loop for Failed Connections
|
// Retry Loop for Failed Connections
|
||||||
for i := 0; i < 6; i++ {
|
for i := 0; i < 6; i++ {
|
||||||
if i == 5 {
|
if i == 5 {
|
||||||
return driver, ctx, fmt.Errorf("connectdb: unable to connect to database %d times!", i)
|
return driver, ctx, fmt.Errorf("connectdb unable to connect to database %d times", i)
|
||||||
} else if i > 0 {
|
} else if i > 0 {
|
||||||
time.Sleep(30 * time.Second)
|
time.Sleep(30 * time.Second)
|
||||||
}
|
}
|
||||||
|
@ -128,6 +128,9 @@ func ConnectDB(baseURL string, arangoUser string, arangoPWD string, arangoDataba
|
||||||
}
|
}
|
||||||
func InitDatabase() (err error) {
|
func InitDatabase() (err error) {
|
||||||
arangoDB, arangoCTX, err = ConnectDB("http://192.168.45.8:8529/", "gma-inator", "gma-inator", "gma-inator")
|
arangoDB, arangoCTX, err = ConnectDB("http://192.168.45.8:8529/", "gma-inator", "gma-inator", "gma-inator")
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
colChunk, err = arangoDB.Collection(arangoCTX, "chunk")
|
colChunk, err = arangoDB.Collection(arangoCTX, "chunk")
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
@ -189,6 +192,7 @@ func (p *Pool) Fetch(id string, writer io.Writer) (err error) {
|
||||||
for _, poolItem := range p.items {
|
for _, poolItem := range p.items {
|
||||||
if poolItem == id {
|
if poolItem == id {
|
||||||
fmt.Printf("Fetch WORMPool %s\n", id)
|
fmt.Printf("Fetch WORMPool %s\n", id)
|
||||||
|
p.LastTouchy = time.Now()
|
||||||
poolLocalFilePath := filepath.Join(poolMaster.cachePath, "worm", p.PoolID, id)
|
poolLocalFilePath := filepath.Join(poolMaster.cachePath, "worm", p.PoolID, id)
|
||||||
srcLocalFile, err := os.Open(poolLocalFilePath)
|
srcLocalFile, err := os.Open(poolLocalFilePath)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
@ -203,6 +207,10 @@ func (p *Pool) Fetch(id string, writer io.Writer) (err error) {
|
||||||
}
|
}
|
||||||
return fmt.Errorf("%s not found", id)
|
return fmt.Errorf("%s not found", id)
|
||||||
}
|
}
|
||||||
|
func (p *Pool) Unload() {
|
||||||
|
log.Printf("Unloading WORMPool [%s]\n", p.PoolID)
|
||||||
|
p.file.Close()
|
||||||
|
}
|
||||||
|
|
||||||
func NewPoolMaster(finalPath string, cachePath string) (poolMaster PoolMaster, err error) {
|
func NewPoolMaster(finalPath string, cachePath string) (poolMaster PoolMaster, err error) {
|
||||||
poolMaster.finalPath = finalPath
|
poolMaster.finalPath = finalPath
|
||||||
|
@ -213,20 +221,20 @@ func NewPoolMaster(finalPath string, cachePath string) (poolMaster PoolMaster, e
|
||||||
destPath := filepath.Join(poolMaster.cachePath, "pool")
|
destPath := filepath.Join(poolMaster.cachePath, "pool")
|
||||||
err = os.MkdirAll(destPath, os.ModePerm)
|
err = os.MkdirAll(destPath, os.ModePerm)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return poolMaster, err
|
return PoolMaster{}, err
|
||||||
}
|
}
|
||||||
|
|
||||||
destPath = filepath.Join(poolMaster.cachePath, "worm")
|
destPath = filepath.Join(poolMaster.cachePath, "worm")
|
||||||
err = os.MkdirAll(destPath, os.ModePerm)
|
err = os.MkdirAll(destPath, os.ModePerm)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return poolMaster, err
|
return PoolMaster{}, err
|
||||||
}
|
}
|
||||||
|
|
||||||
err = os.MkdirAll(poolMaster.finalPath, os.ModePerm)
|
err = os.MkdirAll(poolMaster.finalPath, os.ModePerm)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return poolMaster, err
|
return PoolMaster{}, err
|
||||||
}
|
}
|
||||||
return poolMaster, nil
|
return
|
||||||
}
|
}
|
||||||
func (p *PoolMaster) NewPool() (*Pool, error) {
|
func (p *PoolMaster) NewPool() (*Pool, error) {
|
||||||
var err error
|
var err error
|
||||||
|
@ -244,7 +252,6 @@ func (p *PoolMaster) NewPool() (*Pool, error) {
|
||||||
|
|
||||||
return &pool, nil
|
return &pool, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (p *PoolMaster) GetCurrentWriteablePool() (pool *Pool, err error) {
|
func (p *PoolMaster) GetCurrentWriteablePool() (pool *Pool, err error) {
|
||||||
//fmt.Printf("Current Pool %s, ItemCount = %d\n", pool.PoolID, pool.itemCount)
|
//fmt.Printf("Current Pool %s, ItemCount = %d\n", pool.PoolID, pool.itemCount)
|
||||||
if p.CurrentPool != nil && p.CurrentPool.itemCount >= PoolMaxItems {
|
if p.CurrentPool != nil && p.CurrentPool.itemCount >= PoolMaxItems {
|
||||||
|
@ -536,7 +543,7 @@ func (p *PoolMaster) PackPool(poolID string) (packResult PoolPackResult, err err
|
||||||
func (p *PoolMaster) AcquireNewOrRecoverPool() (pool *Pool, err error) {
|
func (p *PoolMaster) AcquireNewOrRecoverPool() (pool *Pool, err error) {
|
||||||
// p.NewPool()
|
// p.NewPool()
|
||||||
for _, localPool := range p.LocalPools {
|
for _, localPool := range p.LocalPools {
|
||||||
if !localPool.ReadOnly && localPool.itemCount < 500 {
|
if !localPool.ReadOnly && localPool.itemCount < PoolMaxItems {
|
||||||
return localPool, nil
|
return localPool, nil
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -612,10 +619,11 @@ func (p *PoolMaster) FetchLoadWORM(chunkID string, fileID string, writer io.Writ
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
loadedWormPool := Pool{
|
loadedWormPool := Pool{
|
||||||
PoolID: dboChunk.ID,
|
PoolID: dboChunk.ID,
|
||||||
Size: uint64(dboChunk.Size),
|
Size: uint64(dboChunk.Size),
|
||||||
ReadOnly: dboChunk.ReadOnly,
|
ReadOnly: dboChunk.ReadOnly,
|
||||||
Finalized: dboChunk.Finalized,
|
Finalized: dboChunk.Finalized,
|
||||||
|
LastTouchy: time.Now(),
|
||||||
|
|
||||||
filePath: filepath.Join(p.finalPath, fmt.Sprintf("%s.tar", dboChunk.ID)),
|
filePath: filepath.Join(p.finalPath, fmt.Sprintf("%s.tar", dboChunk.ID)),
|
||||||
}
|
}
|
||||||
|
@ -629,6 +637,19 @@ func (p *PoolMaster) FetchLoadWORM(chunkID string, fileID string, writer io.Writ
|
||||||
return loadedWormPool.Fetch(fileID, writer)
|
return loadedWormPool.Fetch(fileID, writer)
|
||||||
//return nil
|
//return nil
|
||||||
}
|
}
|
||||||
|
func (p *PoolMaster) CleanWORMTemp() (err error) {
|
||||||
|
p.lock.Lock()
|
||||||
|
defer p.lock.Unlock()
|
||||||
|
|
||||||
|
for _, wormPool := range p.WORMPools {
|
||||||
|
if time.Since(wormPool.LastTouchy).Minutes() > 2 {
|
||||||
|
wormPool.Unload()
|
||||||
|
delete(p.WORMPools, wormPool.PoolID)
|
||||||
|
os.RemoveAll(filepath.Join(poolMaster.cachePath, "worm", wormPool.PoolID))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
func (p *PoolMaster) Fetch(id string, writer io.Writer) (err error) {
|
func (p *PoolMaster) Fetch(id string, writer io.Writer) (err error) {
|
||||||
if p.CurrentPool != nil {
|
if p.CurrentPool != nil {
|
||||||
|
@ -823,6 +844,12 @@ func main() {
|
||||||
}
|
}
|
||||||
os.RemoveAll(filepath.Join(poolMaster.cachePath, "pool", fullPool.PoolID))
|
os.RemoveAll(filepath.Join(poolMaster.cachePath, "pool", fullPool.PoolID))
|
||||||
deletedPools = append(deletedPools, fullPool.PoolID)
|
deletedPools = append(deletedPools, fullPool.PoolID)
|
||||||
|
_, err = colChunk.UpdateDocument(arangoCTX, packResult.PoolID, common.DB_Chunk{
|
||||||
|
NotReady: false,
|
||||||
|
})
|
||||||
|
if err != nil {
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
poolMaster.lock.Unlock()
|
poolMaster.lock.Unlock()
|
||||||
}
|
}
|
||||||
for _, deletedPoolID := range deletedPools {
|
for _, deletedPoolID := range deletedPools {
|
||||||
|
@ -833,6 +860,8 @@ func main() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
//
|
||||||
|
poolMaster.CleanWORMTemp()
|
||||||
time.Sleep(time.Second * 10)
|
time.Sleep(time.Second * 10)
|
||||||
}
|
}
|
||||||
}()
|
}()
|
||||||
|
|
Loading…
Add table
Reference in a new issue