Feature #4193
openMake ASF strategy less sensitive to timeouts
Added by Junxiao Shi over 7 years ago. Updated 10 months ago.
50%
Description
Currently, AsfStrategy
attempts to switches to an alternate path after one Interest times out.
It should be less sensitive, and switch to a new path after multiple timeouts.
The threshold should be configurable at runtime through strategy parameters (#3868).
Updated by Junxiao Shi over 7 years ago
This problem is identified on 20170719 because ASF is not working well with NDN-RTC.
In NDN-RTC, each video frame is encoded as a variable number of data segments. The consumer may send more Interests than available segments, and the producer (incorrectly) does not use application-generated Nack but leaves the Interests to timeout.
20170719 NFD call discussed several ways to count timeouts:
- An absolute number of consecutive timeouts.
- A percentage of recent Interests (but it's unclear what does the percentage count against).
- Multiple timeouts within a round-trip time can count as one timeout event.
- The switching of paths should be gradual. For example, the Interest right after a timeout can be sent to two paths.
Updated by Ashlesh Gawande almost 7 years ago
- Status changed from New to In Progress
Updated by Junxiao Shi almost 7 years ago
4480,15 gives the following strategy name syntax: /localhost/nfd/strategy/asf/%FD%02/probing-interval/30000/n-silent-timeouts/5
.
There are two wasted components. It's better to use a more compact format: /localhost/nfd/strategy/asf/%FD%02/probing-interval%3D30000%20n-silent-timeouts%3D5
.
Updated by Junxiao Shi almost 7 years ago
- Target version changed from v0.6 to v0.7
4480,19 instructs the operator to configure the strategy with the following commands:
nfdc strategy set prefix /ndn strategy /localhost/nfd/strategy/asf/
nfdc strategy set prefix /ndn strategy /localhost/nfd/strategy/asf/%FD%02/probing-interval=30000
nfdc strategy set prefix /ndn strategy /localhost/nfd/strategy/asf/%FD%02/n-silent-timeouts=5
nfdc strategy set prefix /ndn strategy /localhost/nfd/strategy/asf/%FD%02/probing-interval=30000/n-silent-timeouts=5
All NDN names are invalid under NDN Packet Format v3.0 draft. The first one has /
at the end. Others have =
within a component but the portion before =
is not a number.
Furthermore, although these names are somewhat human readable, it's not easy to remember.
I'd suggest a small bash or Python script to construct the strategy name, so that the above commands can be invoked like:
nfdc strategy set prefix /ndn strategy $(nfd-asf-strategy)
nfdc strategy set prefix /ndn strategy $(nfd-asf-strategy --probing-interval=30000)
nfdc strategy set prefix /ndn strategy $(nfd-asf-strategy --n-silent-timeouts=5)
nfdc strategy set prefix /ndn strategy $(nfd-asf-strategy --probing-interval=30000 --n-silent-timeouts=5)
Benefits of this approach include:
- The
nfd-asf-strategy
script can check the command line arguments and ensure they are correct. If they are not, an error/usage message can be shown on stderr. - The script can accept both long form (as shown above) and short form (eg
-p30000
-s5
) flags, if desired. - Strategy parameters can use a more compact form, without worrying about human readability which shouldn't be a concern in the first place. Operator doesn't need to remember or type
%FD%02
part as well.
Updated by Davide Pesavento almost 7 years ago
Junxiao Shi wrote:
I'd suggest a small bash or Python script to construct the strategy name, so that the above commands can be invoked like:
I very much disagree with this.
The script can accept both long form (as shown above) and short form (eg -p30000 -s5) flags, if desired.
The strategy itself can do the same. Or better, nfdc should natively include this functionality. But I don't see it as particularly urgent.
Strategy parameters can use a more compact form, without worrying about human readability which shouldn't be a concern in the first place
Why is compactness a concern while human readability isn't? I'd say the opposite is true.
In any case, it seems like this discussion will become mostly irrelevant once we have typed name components. So let's just implement something "good enough" for the time being.
Updated by Junxiao Shi almost 7 years ago
Why is compactness a concern while human readability isn't? I'd say the opposite is true.
In any case, it seems like this discussion will become mostly irrelevant once we have typed name components. So let's just implement something "good enough" for the time being.
Fine. ASF may define any syntax they want as long as URIs are valid.
Updated by Junxiao Shi almost 7 years ago
- Blocked by Bug #4484: Component::toUri escapes ~ instead of + added
Updated by Junxiao Shi almost 7 years ago
Since you choose to use ~
as delimiter, this issue is now blocked by #4484. You may clear this block relation by using a different unaffected delimiter.
Updated by Davide Pesavento almost 7 years ago
Junxiao Shi wrote:
Since you choose to use
~
as delimiter, this issue is now blocked by #4484.
No it's not. Unreserved characters should not be encoded, but it's not illegal to do so, i.e. a fully encoded URI would still be valid. Therefore, decoding percent-encoded characters in the unreserved set can always be done and doesn't change the interpretation of the URI.
Updated by Davide Pesavento almost 7 years ago
- Blocked by deleted (Bug #4484: Component::toUri escapes ~ instead of +)
Updated by Davide Pesavento almost 7 years ago
One change has been merged. What's left to do here?
Updated by Ashlesh Gawande almost 7 years ago
I think we would like to explore other suggestions in note-1 to make ASF less sensitive. Maybe it should be another issue?
Updated by Davide Pesavento almost 7 years ago
Ashlesh Gawande wrote:
I think we would like to explore other suggestions in note-1 to make ASF less sensitive. Maybe it should be another issue?
I was asking based on the issue description, which seems to have been fulfilled. I have no preference. If you intend to do more work under this issue, please update the description to clearly state what has been done and what hasn't.
Updated by Ashlesh Gawande almost 7 years ago
- Subject changed from AsfStrategy: switch path after multiple timeouts to Make ASF Strategy less sensitive to timeouts
We have implemented "An absolute number of consecutive timeouts" for now so that ndnrtc's problem is solved and will investigate other suggested solutions.
Updated by Ashlesh Gawande about 5 years ago
- Assignee changed from Ashlesh Gawande to Saurab Dulal
Updated by Davide Pesavento almost 5 years ago
- Target version changed from v0.7 to 22.02
Updated by Davide Pesavento over 3 years ago
- Target version changed from 22.02 to 22.12
Updated by Davide Pesavento over 1 year ago
- Tags set to ASF
- Subject changed from Make ASF Strategy less sensitive to timeouts to Make ASF strategy less sensitive to timeouts
Updated by Davide Pesavento 10 months ago
- Assignee deleted (
Saurab Dulal) - Estimated time deleted (
3.00 h)