> For the complete documentation index, see [llms.txt](https://blog.ruipan.xyz/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://blog.ruipan.xyz/machine-learning-systems/index/big-data-systems-papers-short-notes.md).

# Big Data Systems Papers - Short Notes

## \[2012 HotNets] Coflow: A Networking Abstraction for Cluster Applications

Coflows make it easier for applications to convey their communicatino semantics to the network, which in turn enables the network to better optimize common communication patterns.

![](/files/ynCqmlJFh62kxAiWA7Er)

![](/files/xsjDlOg1T78eWvYMT8tQ)

## \[2014 SIGCOMM] Efficient coflow scheduling with Varys

* Smallest-Effective-Bottleneck-First (SEBF) heuristic: greedily schedules a coflow based on its bottleneck’s completion time
* Minimum-Allocation-for-Desired-Duration (MADD) algorithm: slows down all the flows in a coflow to match the completion time of the flow that will take the longest to finish, so that other coexisting coflows can make progress

<img src="/files/4n9TDbjBjI1BIxfbrkgc" alt="" data-size="original">

![](/files/NR0UkK8el352cbaEBGoz)

![](/files/RX1oC61XvKOHOhn4iV7R)

## \[2015 SIGCOMM] Aalo: Efficient coflow scheduling without prior knowledge

* Removed the clairvoyance requirements of the coflow information
* Aalo employs Discretized Coflow-Aware Least-Attained Service (D-CLAS) to separate coflows into a small number of priority queues based on how much they have already sent across the cluster. By performing prioritization across queues and by scheduling coflows in the FIFO order within each queue, Aalo’s non-clairvoyant scheduler reduces coflow completion times while guaranteeing starvation freedom.

![](/files/SUExmu2r41V7xkELNbYS)

![](/files/sArPobPgghcqXzoVEYsz)


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://blog.ruipan.xyz/machine-learning-systems/index/big-data-systems-papers-short-notes.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
