Project

General

Profile

Actions

Feature #4289

closed

NFD - Feature #1624: Design and Implement Congestion Control

ndncatchunks: React to congestion marks

Added by Anonymous over 6 years ago. Updated over 6 years ago.

Status:
Closed
Priority:
Normal
Start date:
Due date:
% Done:

100%

Estimated time:

Description

ndncatchunks should be able to react to the congestion marks implemented in feature #3797.

The reaction should be similar to the one of a timeout, and the window adaptation code should separated and called on both timeouts and received congestion marks.


Related issues 3 (0 open3 closed)

Blocked by NFD - Feature #3797: Congestion Control: generic congestion marksClosedEric Newberry

Actions
Blocked by ndn-tools - Feature #4299: ndncatchunks: Print summary for all pipeline typesClosedChavoosh Ghasemi09/22/2017

Actions
Blocks ndn-cxx - Feature #4364: Implement congestion control in SegmentFetcherClosedEric Newberry

Actions
Actions #1

Updated by Anonymous over 6 years ago

We agreed that Chavoosh can work on this.

Please let me know if any of the design is still unclear.

Actions #2

Updated by Anonymous over 6 years ago

  • Related to Feature #3797: Congestion Control: generic congestion marks added
Actions #3

Updated by Anonymous over 6 years ago

  • Related to Feature #1624: Design and Implement Congestion Control added
Actions #4

Updated by Davide Pesavento over 6 years ago

  • Start date deleted (09/15/2017)

is this related to #3860 in any way?

Actions #5

Updated by Davide Pesavento over 6 years ago

  • Tracker changed from Task to Feature
Actions #6

Updated by Anonymous over 6 years ago

Yeah, but these issues don't depend upon each other.

Any of the rate adaptation algorithms (AIMD, Bic, Cubic) should be able to use the congestion marks.

Actions #7

Updated by Anonymous over 6 years ago

Since Eric finished the implementation of congestion marks, we think that this feature is more important than implementing BIC/Cubic.

Actions #8

Updated by Davide Pesavento over 6 years ago

  • Parent task set to #1624
Actions #9

Updated by Davide Pesavento over 6 years ago

  • Blocked by Feature #3797: Congestion Control: generic congestion marks added
Actions #10

Updated by Davide Pesavento over 6 years ago

  • Related to deleted (Feature #3797: Congestion Control: generic congestion marks)
Actions #11

Updated by Anonymous over 6 years ago

  • Related to Feature #4299: ndncatchunks: Print summary for all pipeline types added
Actions #12

Updated by Anonymous over 6 years ago

Related to #4299 since Chavoosh needs to finish that task first.

Actions #13

Updated by Davide Pesavento over 6 years ago

  • Related to deleted (Feature #4299: ndncatchunks: Print summary for all pipeline types)
Actions #14

Updated by Davide Pesavento over 6 years ago

  • Blocked by Feature #4299: ndncatchunks: Print summary for all pipeline types added
Actions #15

Updated by Anonymous over 6 years ago

  • Blocks Feature #4364: Implement congestion control in SegmentFetcher added
Actions #16

Updated by Chavoosh Ghasemi over 6 years ago

In our weekly meeting we decided to take the following steps to enable ndncatchunks to react to the congestion marks:

  • Figuring out whether there is a congestion mark in the tags of the received data packet
  • Finding and not finding a congestion mark in the received data packet should trigger different methods, consequently
  • We think the best place to implement this feature would be in "PipelineInterests.cpp" file, so all pipelines can use it
Actions #17

Updated by Anonymous over 6 years ago

Just a note: you can get the right bullet point formatting by writing:

  • One
  • Two
  • Three

(there needs to be a blank line between text and bullet points)

Actions #18

Updated by Chavoosh Ghasemi over 6 years ago

To make sure we are all agree about the implementation details, here I want to discuss details of mentioned steps:

  • By using getTag<lp::CongestionMarkTag>() method we can determine whether the data packet has congestion mark in its tags or not. This method should be called for each received data packet.
  • We need to add a new method to pipeline-interests.hpp file, named checkCongestionMark(). If you think this name is not informative enough, suggest your name.
  • If there was not any congestion mark, we should call PipelineInterestsAimd::increaseWindow() method. Otherwise, PipelineInterestsAimd::decreaseWindow() method should be triggered. Worth to mention that we need to move these methods to pipeline-interests.hpp file and make it virtual, such that each subclass can implement it, consequently. BTW, if we need to change the way PipelineInterestsAimd::decreaseWindow() should react to congestion mark, let me know.
  • Again, if you think pipeline-interests.hpp is not a good place to put this functionality, discuss it.
Actions #19

Updated by Davide Pesavento over 6 years ago

Chavoosh Ghasemi wrote:

  • By using getTag<lp::CongestionMarkTag>() method we can determine whether the data packet has congestion mark in its tags or not.

No, you should use getCongestionMark().

  • We need to add a new method to pipeline-interests.hpp file, named checkCongestionMark().

What will it do?

  • Again, if you think pipeline-interests.hpp is not a good place to put this functionality, discuss it.

I'm not convinced about this. But I don't have a strong opinion either, so you might convince me if you have good reasons to do it. My rationale against is that I'm not sure how much code can actually be shared among different pipelines. It's hard to see also because we currently have only one pipeline with a dynamic window, and I can't picture how potential future pipelines might look like.

Actions #20

Updated by Chavoosh Ghasemi over 6 years ago

What will it do?

The input of this method is a data packet and its output would be boolean (i.e. whether congestion mark exists or not). Anyway, we can shift this functionality into handleData() method; however, for readability of the code we can make a new method. BTW, I am OK with either one.

I'm not convinced about this. But I don't have a strong opinion either, so you might convince me if you have good reasons to do it. My rationale against is that I'm not sure how much code can actually be shared among different pipelines. It's hard to see also because we currently have only one pipeline with a dynamic window, and I can't picture how potential future pipelines might look like.

Regardless of the pipeline's mechanisms (current and future ones), we need to add a virtual method in order to react to congestion mark. It is up to each pipeline to use it or not. A pipeline can react to congestion mark (e.g. AIMD) or it can ignore it (e.g. fixed-window). In the first case, the pipeline simply does not do anything. However, for the second case the pipeline implement this virtual method and will react to congestion mark.

Actions #21

Updated by Chavoosh Ghasemi over 6 years ago

Sorry. I am still kind of confused how to properly use this edit tool.

Actions #22

Updated by Davide Pesavento over 6 years ago

Chavoosh Ghasemi wrote:

Sorry. I am still kind of confused how to properly use this edit tool.

You can edit your comment to fix the formatting. Also note that there is a "preview" button next to "submit" that you can use...

Actions #23

Updated by Anonymous over 6 years ago

Regardless of the pipeline's mechanisms (current and future ones), we need to add a virtual method in order to react to congestion mark. It is up to each pipeline to use it or not. A pipeline can react to congestion mark (e.g. AIMD) or it can ignore it (e.g. fixed-window). In the first case, the pipeline simply does not do anything. However, for the second case the pipeline implement this virtual method and will react to congestion mark.

I would move "PipelineInterestsAimd::recordTimeout()" to "PipelineInterests::recordTimeout()". Maybe rename to "handleTimeout()".

Then add a function "PipelineInterests::handleCongEvent()". Where "congestion event" means either congestion mark or timeout.

handleTimeout() should call handleCongEvent():

PipelineInterests::handleTimeout()
{
  handleCongEvent();
  retransmitInterest();
}

I think this function should work for practically all pipelines, except the fixed pipeline. PipelineFixed should overwrite handleTimeout() to do nothing.

Actions #24

Updated by Anonymous over 6 years ago

Again, if you think pipeline-interests.hpp is not a good place to put this functionality, discuss it.

I'm not convinced about this. But I don't have a strong opinion either, so you might convince me if you have good reasons to do it. My rationale against is that I'm not sure how much code can actually be shared among different pipelines. It's hard to see also because we currently have only one pipeline with a dynamic window, and I can't picture how potential future pipelines might look like.

Here's some assumptions that I would make about future pipelines:

  • All of them will consider timeouts: after a timeout, they will both retransmit and reduce their sending rate.
  • All of should have a function to consider congestion marks, but may choose not to use it (ignore congestion marks)
  • Most of them will be window-based (example: BIC, Cubic), but I can also imagine rate-based ones.
Actions #25

Updated by Davide Pesavento over 6 years ago

Chavoosh Ghasemi wrote:

The input of this method is a data packet and its output would be boolean (i.e. whether congestion mark exists or not). Anyway, we can shift this functionality into handleData() method; however, for readability of the code we can make a new method. BTW, I am OK with either one.

This doesn't provide any additional logic compared to getCongestionMark().

Regardless of the pipeline's mechanisms (current and future ones), we need to add a virtual method in order to react to congestion mark. It is up to each pipeline to use it or not. A pipeline can react to congestion mark (e.g. AIMD) or it can ignore it (e.g. fixed-window). In the first case, the pipeline simply does not do anything. However, for the second case the pipeline implement this virtual method and will react to congestion mark.

The question is how much logic is abstracted into the base class method. If it's just one simple "if", I don't think it's worth it.

Actions #26

Updated by Chavoosh Ghasemi over 6 years ago

Davide Pesavento wrote:

The question is how much logic is abstracted into the base class method. If it's just one simple "if", I don't think it's worth it.

Reacting to congestion control highly depends on pipeline's mechanism and we cannot shift too much functionalities to the base class. So, maybe we only need to define a virtual method in the base class that checks the very basic conditions and after that calls a proper method, due to some conditions. However, since different pipelines can have different logic we cannot abstract too much logic into the base class.

Actions #27

Updated by Chavoosh Ghasemi over 6 years ago

Klaus Schneider wrote:

I would move "PipelineInterestsAimd::recordTimeout()" to "PipelineInterests::recordTimeout()". Maybe rename to "handleTimeout()".

Then add a function "PipelineInterests::handleCongEvent()". Where "congestion event" means either congestion mark or timeout.

handleTimeout() should call handleCongEvent():

PipelineInterests::handleTimeout()
{
  handleCongEvent();
  retransmitInterest();
}

I think this function should work for practically all pipelines, except the fixed pipeline. PipelineFixed should overwrite handleTimeout() to do nothing.

I am wondering whether it is reasonable to define these functions in the base class or not. For instance, AIMD might handle congestion mark totally different from another pipeline like Cubic. Thus, how these functions should be defined in the base class?

Actions #28

Updated by Anonymous over 6 years ago

Chavoosh Ghasemi wrote:

Klaus Schneider wrote:

I would move "PipelineInterestsAimd::recordTimeout()" to "PipelineInterests::recordTimeout()". Maybe rename to "handleTimeout()".

Then add a function "PipelineInterests::handleCongEvent()". Where "congestion event" means either congestion mark or timeout.

handleTimeout() should call handleCongEvent():

PipelineInterests::handleTimeout()
{
  handleCongEvent();
  retransmitInterest();
}

I think this function should work for practically all pipelines, except the fixed pipeline. PipelineFixed should overwrite handleTimeout() to do nothing.

I am wondering whether it is reasonable to define these functions in the base class or not. For instance, AIMD might handle congestion mark totally different from another pipeline like Cubic. Thus, how these functions should be defined in the base class?

The function definition (the .hpp part) of handleCongEvent(); should be in the base class, the actual implementation (the .cpp part) should only be in the sub-classes.

Reacting to congestion control highly depends on pipeline's mechanism and we cannot shift too much functionalities to the base class. So, maybe we only need to define a virtual method in the base class that checks the very basic conditions and after that calls a proper method, due to some conditions. However, since different pipelines can have different logic we cannot abstract too much logic into the base class.

This paragraph is very long, yet contains little information. Please be more specific.

It poses the following questions:

  • What are "too much functionalities"?
  • What are "very basic conditions"?
  • Which is the "proper method"?
  • What are "some conditions"?
  • How much is "too much logic"?

I agree that the base class should only have a virtual method for handleCongEvent();

But I think the base class can and should contain the full implementation of handleTimeout() and retransmitInterest();

Actions #29

Updated by Chavoosh Ghasemi over 6 years ago

Klaus Schneider wrote:

The function definition (the .hpp part) of handleCongEvent(); should be in the base class, the actual implementation (the .cpp part) should only be in the sub-classes.

You still did not answer my question, why we need to have them in the base class? Maybe you mean defining two interfaces and implement them in the subclass. That's the point?

Reacting to congestion control highly depends on pipeline's mechanism and we cannot shift too much functionalities to the base class. So, maybe we only need to define a virtual method in the base class that checks the very basic conditions and after that calls a proper method, due to some conditions. However, since different pipelines can have different logic we cannot abstract too much logic into the base class.

This paragraph is very long, yet contains little information. Please be more specific.

It poses the following questions:

  • What are "too much functionalities"?
  • What are "very basic conditions"?
  • Which is the "proper method"?
  • What are "some conditions"?
  • How much is "too much logic"?

The reason of ambiguity of this comment is we do not know details of implementation (e.g. which functions should be called facing different cases, what are their names, where to implement them, etc.).

Anyway, as I mentioned in previous comments "proper methods" are those that should be called upon finding or not finding congestion mark (e.g. for decreasing or increasing window size, re-transmissions, or any other mechanism that the corresponded pipeline needs to take into account according to its implementation).

"Basic conditions" (from my point of view) include simple tasks like checking the timestamps of the received packets and some if statements (that I am not sure about their context).

I do not have any unit of "how much is too much logic!" but when you have no idea about the future pipeline implementations (your mentioned assumptions do not clear their implementation) their logic can be totally different. Putting logic of AIMD in the pipeline and expecting (or hoping) the other pipelines to follow them is not reasonable.

I agree that the base class should only have a virtual method for handleCongEvent();

But I think the base class can and should contain the full implementation of handleTimeout() and retransmitInterest();

handleTimeout() and retransmitInterest() can differ from one pipeline to another one, how do you define full implementation?

Actions #30

Updated by Anonymous over 6 years ago

Chavoosh Ghasemi wrote:

Klaus Schneider wrote:

The function definition (the .hpp part) of handleCongEvent(); should be in the base class, the actual implementation (the .cpp part) should only be in the sub-classes.

You still did not answer my question, why we need to have them in the base class? Maybe you mean defining two interfaces and implement them in the subclass. That's the point?

We should have the interface in the base class, since all potential pipelines would want to implement some version of handleCongEvent();

I think the most common implementation should be to perform a window decrease.

Regarding your example: Even if AIMD handles congestion mark differently from Cubic, the interface stays the same.

I agree that the base class should only have a virtual method for handleCongEvent();

But I think the base class can and should contain the full implementation of handleTimeout() and retransmitInterest();

handleTimeout() and retransmitInterest() can differ from one pipeline to another one, how do you define full implementation?

This depends on the implementation of these two functions; you can implement both functions in a way that they work for all possible pipelines.

If the handleTimeout() follows the implementation that I list above, then it does not differ for each pipeline. It calls functions that differ for each pipeline, but the handleTimeout() implementation itself stays the same.

The same goes for retransmitInterests. The closest to this function is the current function enqueueForRetransmission(), here printed in full:

void
PipelineInterestsAimd::enqueueForRetransmission(uint64_t segNo)
{
  BOOST_ASSERT(m_nInFlight > 0);
  m_nInFlight--;
  m_retxQueue.push(segNo);
  m_segmentInfo.at(segNo).state = SegmentState::InRetxQueue;
}

This function seems generic enough to be used for all possible pipelines.

Actions #31

Updated by Davide Pesavento over 6 years ago

Chavoosh Ghasemi wrote:

Davide Pesavento wrote:

The question is how much logic is abstracted into the base class method. If it's just one simple "if", I don't think it's worth it.

Reacting to congestion control highly depends on pipeline's mechanism and we cannot shift too much functionalities to the base class. So, maybe we only need to define a virtual method in the base class that checks the very basic conditions and after that calls a proper method, due to some conditions. However, since different pipelines can have different logic we cannot abstract too much logic into the base class.

That's my point. If you abstract just one "if" condition in the base class (e.g. pkt.getCongestionMark() > 0), then it's definitely not worth it. It would add complexity instead of removing it.

Actions #32

Updated by Anonymous over 6 years ago

Davide Pesavento wrote:

That's my point. If you abstract just one "if" condition in the base class (e.g. pkt.getCongestionMark() > 0), then it's definitely not worth it. It would add complexity instead of removing it.

Yeah, I agree that the "checkCongestionMark()" function would likely be too much overhead, and best replaced by an if-condition.

Actions #33

Updated by Davide Pesavento over 6 years ago

Klaus Schneider wrote:

We should have the interface in the base class, since all potential pipelines would want to implement some version of handleCongEvent();

To what purpose? This is not a library, and the pipeline is not a component that can be used "from outside" (except for the initial run()). Having a common interface among pipelines is a non-goal. You should put things in the base class only if it simplifies the implementation of the various subclasses, e.g. common/repeated logic.

[...]
This function seems generic enough to be used for all possible pipelines.

Let's not speculate. I strongly suggest adding this functionality to the AIMD pipeline only for now. When we're about to add other pipeline types, we can re-evaluate whether some pieces can be shared among them.

Actions #34

Updated by Anonymous over 6 years ago

Davide Pesavento wrote:

Klaus Schneider wrote:

We should have the interface in the base class, since all potential pipelines would want to implement some version of handleCongEvent();

To what purpose? This is not a library, and the pipeline is not a component that can be used "from outside" (except for the initial run()). Having a common interface among pipelines is a non-goal. You should put things in the base class only if it simplifies the implementation of the various subclasses, e.g. common/repeated logic.

So does this mean that there should not be any function declaration in the base class, unless the base class also implements the given function?

[...]
This function seems generic enough to be used for all possible pipelines.

Let's not speculate. I strongly suggest adding this functionality to the AIMD pipeline only for now. When we're about to add other pipeline types, we can re-evaluate whether some pieces can be shared among them.

I agree with the general point (of not speculating), but there might be less speculation involved than you think.

If we are talking about adding the BIC or Cubic pipeline (which we planned to do earlier), then the current enqueueForRetransmission() function will definitely work.

The main difference between AIMD, BIC, and Cubic can be put in two functions: windowIncrease() and windowDecrease(). windowIncrease() is called on every normal Data packet; windowDecrease() is called on every congestion mark and timeout.

But we could also implement BIC and Cubic as sub-classes of AIMD. I don't have any strong preference either way.

Actions #35

Updated by Davide Pesavento over 6 years ago

Klaus Schneider wrote:

Davide Pesavento wrote:

To what purpose? This is not a library, and the pipeline is not a component that can be used "from outside" (except for the initial run()). Having a common interface among pipelines is a non-goal. You should put things in the base class only if it simplifies the implementation of the various subclasses, e.g. common/repeated logic.

So does this mean that there should not be any function declaration in the base class, unless the base class also implements the given function?

Basically yes, but it's not a strict rule, there can be exceptions, e.g. run/doRun, template method pattern, etc...

But we could also implement BIC and Cubic as sub-classes of AIMD. I don't have any strong preference either way.

This sounds like a good idea.

Actions #36

Updated by Chavoosh Ghasemi over 6 years ago

Davide Pesavento wrote:

Klaus Schneider wrote:

Davide Pesavento wrote:

To what purpose? This is not a library, and the pipeline is not a component that can be used "from outside" (except for the initial run()). Having a common interface among pipelines is a non-goal. You should put things in the base class only if it simplifies the implementation of the various subclasses, e.g. common/repeated logic.

So does this mean that there should not be any function declaration in the base class, unless the base class also implements the given function?

Basically yes, but it's not a strict rule, there can be exceptions, e.g. run/doRun, template method pattern, etc...

I highly suggest to specifically talk about the details of each function:

  • what functions we need to define and implement (choose a name for them, so we can reference them in our discussion)
  • the context of each function (so we can figure out whether to put it in the base class or not - based on Davide's comment)

But we could also implement BIC and Cubic as sub-classes of AIMD. I don't have any strong preference either way.

This sounds like a good idea.

Is this something that should be done in this issue??

Actions #37

Updated by Davide Pesavento over 6 years ago

Chavoosh Ghasemi wrote:

I highly suggest to specifically talk about the details of each function:

You haven't pushed any code yet, so it's hard to be more specific than this.

But we could also implement BIC and Cubic as sub-classes of AIMD. I don't have any strong preference either way.

This sounds like a good idea.

Is this something that should be done in this issue??

No. There are separate issues for BIC and Cubic.

Actions #38

Updated by Chavoosh Ghasemi over 6 years ago

Davide Pesavento wrote:

Chavoosh Ghasemi wrote:

I highly suggest to specifically talk about the details of each function:

You haven't pushed any code yet, so it's hard to be more specific than this.

I think when we did not even conclude our discussion pushing any code would be to no avail.
Anyway, here is what we need to add to the source code, after our discussion. Note that I am assuming we are implementing this functionality just for AIMD pipeline in this issue.

PipelineInterestsAimd::handleData
{
    ...
    if (data.getCongestionMark())
    {
        decreaseWindow();
        ..       
    }
    ..
}

I think we do not need to touch retransmission mechanism as congestion mark does not trigger packet retransmission.
About handleCongEvent() method, if we do not implement this functionality in the base class, having such method is not necessary.

Actions #39

Updated by Anonymous over 6 years ago

Chavoosh Ghasemi wrote:

Davide Pesavento wrote:

Chavoosh Ghasemi wrote:

I highly suggest to specifically talk about the details of each function:

You haven't pushed any code yet, so it's hard to be more specific than this.

I think when we did not even conclude our discussion pushing any code would be to no avail.
Anyway, here is what we need to add to the source code, after our discussion. Note that I am assuming we are implementing this functionality just for AIMD pipeline in this issue.

PipelineInterestsAimd::handleData
{
    ...
    if (data.getCongestionMark())
    {
        decreaseWindow();
        ..       
    }
    ..
}

Looks good to me.

I think we do not need to touch retransmission mechanism as congestion mark does not trigger packet retransmission.

Makes sense.

About handleCongEvent() method, if we do not implement this functionality in the base class, having such method is not necessary.

I think for all window-based congestion control schemes (AIMD, BIC, CUBIC, etc.), handleCongEvent() is equivalent to decreaseWindow(). So no need to have this extra function.

I think this outline is well-specified enough for you to start coding. Or do you have any other questions?

@Davide: Do we need to wait for your current change to get merged before Chavoosh can start coding?

Actions #40

Updated by Davide Pesavento over 6 years ago

Klaus Schneider wrote:

@Davide: Do we need to wait for your current change to get merged before Chavoosh can start coding?

No. Chavoosh can download change 4343 onto his machine and start developing on top of it.

Actions #41

Updated by Chavoosh Ghasemi over 6 years ago

How can I create a new issue on gerrit for this change? Does it require any permission?

Actions #42

Updated by Chavoosh Ghasemi over 6 years ago

Chavoosh Ghasemi wrote:

How can I create a new issue on gerrit for this change? Does it require any permission?

Since I did not hear from you, I asked Eric about my question. Apparently the only thing that I need to do is pushing my changes to gerrit and everything else will be handled by gerrit itself. Previously, I thought I need to create a new issue (or ticket) on gerrit for this change.

Actions #43

Updated by Anonymous over 6 years ago

Yes, the "git-review" command will create the new issue, just like you created it last time :)

Actions #44

Updated by Anonymous over 6 years ago

Btw, it seems like you edited your earlier comment, instead of adding a new one.

This is why we didn't get an email notification, and likely why we didn't reply.

Actions #45

Updated by Chavoosh Ghasemi over 6 years ago

Klaus Schneider wrote:

Btw, it seems like you edited your earlier comment, instead of adding a new one.

This is why we didn't get an email notification, and likely why we didn't reply.

I see. I am not sure what exactly happened. Thanks for your comment, though.

Actions #46

Updated by Anonymous over 6 years ago

Chavoosh Ghasemi wrote:

Klaus Schneider wrote:

Btw, it seems like you edited your earlier comment, instead of adding a new one.

This is why we didn't get an email notification, and likely why we didn't reply.

I see. I am not sure what exactly happened. Thanks for your comment, though.

There is an edit button (pencil) next to your comment, and one at the bottom of all comments. It's quite possible to confuse them.

Actions #47

Updated by Anonymous over 6 years ago

  • Status changed from New to Code review
Actions #48

Updated by Anonymous over 6 years ago

  • % Done changed from 0 to 100
Actions #49

Updated by Davide Pesavento over 6 years ago

  • Status changed from Code review to Closed
Actions

Also available in: Atom PDF