Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Flow control of fragmented data transfer #84

Open
JaeseungYeom opened this issue Feb 1, 2024 · 0 comments
Open

Flow control of fragmented data transfer #84

JaeseungYeom opened this issue Feb 1, 2024 · 0 comments
Assignees
Labels
enhancement New feature or request

Comments

@JaeseungYeom
Copy link
Contributor

To allow a send/recv buffer of a size smaller than that of the entire data file, data need to be split into multiple chunks and sent one at a time.
To avoid overrunning the receiver's buffer in a transmission scheme based on the RMA (remote memory access), a flow control is necessary such that the receiver's buffer is clear to receive new data. For this, we will use a circular buffer and a scheme similar to TPC's flow control where a token(ACK) is sent from the receiver to the sender when a buffer is ready to accept new data. To increase overlapping and hide the control overhead, we many use more than two buffers in rotation. In such as case, the token may specify the number of buffers ready to receive new data.

@JaeseungYeom JaeseungYeom self-assigned this Feb 1, 2024
@JaeseungYeom JaeseungYeom added the enhancement New feature or request label Feb 1, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant