-
-
Notifications
You must be signed in to change notification settings - Fork 5.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* add my_build.sh * Fix OOM of thumbnail generation of LoaclDrive by using a task queue to control thread count * remove my_build.sh * chore(local): allow ThumbConcurrency set to zero * revert(local): changes to thumbnail generating functions * feat(local): implement static token bucket * feat(local): use static token bucket to limit thumbnails generating concurrent --------- Co-authored-by: KKJas <[email protected]>
- Loading branch information
Showing
3 changed files
with
85 additions
and
2 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
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,61 @@ | ||
package local | ||
|
||
import "context" | ||
|
||
type TokenBucket interface { | ||
Take() <-chan struct{} | ||
Put() | ||
Do(context.Context, func() error) error | ||
} | ||
|
||
// StaticTokenBucket is a bucket with a fixed number of tokens, | ||
// where the retrieval and return of tokens are manually controlled. | ||
// In the initial state, the bucket is full. | ||
type StaticTokenBucket struct { | ||
bucket chan struct{} | ||
} | ||
|
||
func NewStaticTokenBucket(size int) StaticTokenBucket { | ||
bucket := make(chan struct{}, size) | ||
for range size { | ||
bucket <- struct{}{} | ||
} | ||
return StaticTokenBucket{bucket: bucket} | ||
} | ||
|
||
func (b StaticTokenBucket) Take() <-chan struct{} { | ||
return b.bucket | ||
} | ||
|
||
func (b StaticTokenBucket) Put() { | ||
b.bucket <- struct{}{} | ||
} | ||
|
||
func (b StaticTokenBucket) Do(ctx context.Context, f func() error) error { | ||
select { | ||
case <-ctx.Done(): | ||
return ctx.Err() | ||
case <-b.bucket: | ||
defer b.Put() | ||
} | ||
return f() | ||
} | ||
|
||
// NopTokenBucket all function calls to this bucket will success immediately | ||
type NopTokenBucket struct { | ||
nop chan struct{} | ||
} | ||
|
||
func NewNopTokenBucket() NopTokenBucket { | ||
nop := make(chan struct{}) | ||
close(nop) | ||
return NopTokenBucket{nop} | ||
} | ||
|
||
func (b NopTokenBucket) Take() <-chan struct{} { | ||
return b.nop | ||
} | ||
|
||
func (b NopTokenBucket) Put() {} | ||
|
||
func (b NopTokenBucket) Do(_ context.Context, f func() error) error { return f() } |