You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#85 introduced docker API based image build using in-memory load of build context. This is not a robust behavior as a big build context may consume a lot of memory which can result in OOM exception.
Followings seem to be a good alternatives:
FramedRead
Based on AsyncRead with blocking annotation, which requires Runtime running on thread pool. (Soma uses current_thread::Runtime)
#85 introduced docker API based image build using in-memory load of build context. This is not a robust behavior as a big build context may consume a lot of memory which can result in OOM exception.
Followings seem to be a good alternatives:
FramedRead
Based on
AsyncRead
withblocking
annotation, which requiresRuntime
running on thread pool. (Soma usescurrent_thread::Runtime
)futures-fs
Starts additional thread pool.
Both requires 'non-current-thread` runtime (or thread pool) running, which is expected to be a big change from current implementations.
The text was updated successfully, but these errors were encountered: