On 2018-08-29 22:39, Michael H. Behringer wrote:
> Christian, thanks for the review, my comments inline...
> 
> On 26/08/2018 22:57, Brian E Carpenter wrote:
>> (Ccs trimmed)
>>
>> Christian,
>>
>> Thanks for this careful review. I'll comment here on the larger issues:
>>
>> On 2018-08-27 04:03, Christian Hopps wrote:
>> ...
>>> Minor Major Issues:
>>>
>>> - Virtualization is mentioned once in "4.2 addressing" section. To quote:
>>>
>>>    TEXT: "Support for virtualization: Autonomic Nodes may support Autonomic
>>>    Service Agents in different virtual machines or containers. The 
>>> addressing
>>>    scheme should support this architecture."
>>>
>>>    The special casing of VM/containers here seems to indicate that virtual
>>>    devices are not "1st class citizens" in an autonomic network. In 
>>> particular I
>>>    could easily imagine virtual machines being full blown autonomic nodes
>>>    themselves. Assuming the intent is not to restrict virtual devices in 
>>> this
>>>    manor something needs to be said (somewhere) to make that clear.
>> I don't think that was the intention. We haven't really explored this in 
>> detail,
>> but I can certainly imagine a deployment (for example) where each tenant in
>> a data centre has its own virtual autonomic network, and the underlying 
>> physical
>> network is also autonomic. Since the ACP is expected to be implemented as
>> a VRF, you could even argue that every autonomic network is virtual.
>>
>> So, yes, we can reword this.
> 
> To add to Brian: I agree there was no intention to "downgrade" 
> virtualization. Nor am I aware of any text that indicates that, also not 
> what you quote above. We didn't mean this to say "this is not 
> recommended", only "we haven't explored / documented that further". I am 
> convinced that the Autonomic architecture will be all over data centers 
> one day, so OBVIOUSLY virtualization is important.
> 
> Happy to re-word, but: What do you suggest we change / add? I'm really 
> not clear...

A modest suggestion, on the basis that if Christian read the text differently
from the authors' intentions, other people might do so as well.

Support for virtualization: Autonomic functions can exist either at the
level of the physical network and physical devices, or at the level
of virtual machines, containers and networks. In particular, Autonomic
Nodes may support Autonomic Service Agents in virtual entities. The
infrastructure, including the addressing scheme, should be able to
support this architecture.

(Comment: it isn't just addressing. There are software design
implications too, but that is out of scope here, I think.)

>>> - Robust programming techniques. I think the intention here is to say that 
>>> the
>>>    design of ASAs must have robustness as a top design principle. I think in
>>>    doing that it should talk about what being robust means; however, it 
>>> should
>>>    not be talking about how to accomplish that as there are multiple ways to
>>>    achieve this goal.
>>>
>>>    In particular I feel saying that restarting is the *last* thing an ASA 
>>> should
>>>    do is way overreaching into engineering the solution rather than 
>>> specifying
>>>    the requirement. Indeed plenty of people think that overly complex 
>>> recovery
>>>    mechanisms that try everything under the sun to *not* restart often have 
>>> more
>>>    bugs and are less robust than KISS solutions that "fail" simply but 
>>> recover
>>>    quickly with minimal or no disruption.
>>>
>>>    I feel this section reads a bit more like someones idea of how to design 
>>> a
>>>    robust system instead of talking about what robust means which is the 
>>> intent I
>>>    believe.
>>>
>>>    Perhaps better is just to focus on robust design ideas (some are already
>>>    stated in the text):
>>>
>>>    - must deal with discovery and negotiation failure as routine.
>>>    - recovering from failures should be minimally disruptive.
>>>    - must not leak resources.
>>>    - must monitor for and deal with hung code.
>>>    - must include security analysis
>> OK. Since I drafted that text, I will leave the document editor to fix
>> it. (Some of the detail probably belongs in another draft specifically
>> about ASAs, which I am editing.)
> 
> Brian: Haha, that's called "passing on the ball" I believe... :-)

Good catch!

> Christian: With your input above, I suggest to reword that paragraph to:
> 
> Since autonomic systems must be self-repairing, it is of great 
> importance that ASAs are
> coded using robust programming techniques. All run-time error conditions 
> must be caught,
> leading to suitable >>> minimally disruptive <<< recovery actions, >>> 
> also considering a complete restart of the ASA.<<<
> 
> The other bullets are covered in the text.

OK for me.

>>> - 7.4: When text talks about feedback loop, it mentions "allow the 
>>> intervention"
>>>    of human admin or control system; however, it then describes the 
>>> feedback loop
>>>    as presenting default actions and allowing for override. This is fine, 
>>> but it
>>>    seems to leave out the common case where something is misbehaving and 
>>> would
>>>    not be presenting any choices to the administrator (using the feedback 
>>> loop),
>>>    so the admin must forcefully intervene.
>> Yes. I think the word "feedback" is a bad choice. For engineers raised on
>> Nyquist diagrams it is part of a closed loop; for other people it means
>> feedback to humans. The text needs clarifying.
> Christian: Right. I think this may be clearer when we distinguish (more 
> explicitly than is the case now) that there are two different systems 
> involving the NOC:
> 
> 1 - a closed loop, called feedback loop at the moment.
> 2 - a unidirectional error message.
> 
> 1 works like this: Node detects abnormal condition, informs NOC "here is 
> what I see, I will take recovery X at time Y to resolve this". The NOC 
> can then do nothing, or override this action.
> 
> 2 is a simple report, with no suggestion what to do, and no default 
> recovery action. It's the NOC engineer's job to figure out what to do. I 
> think this is the "common case" you refer to. Put differently: A loop as 
> in (1) REQUIRES some form of reaction by the node, otherwise it doesn't 
> belong here.
> 
> Secion 7.4 intents to cover case 1 only.
> In my mind, case 2 is like current notification mechanisms (syslog etc), 
> part of "traditional management", thus not covered in this draft.
> 
> So maybe the solution is to point out what I say above: If there is no 
> autonomic recovery option ("not presenting any choices" in your text), 
> it falls into the traditional, non-autonomic scenario. And the draft is 
> clear that such traditional mechanisms will co-exist for a long time still.
> 
> Proposal:
> "
>     Feedback loops are required in an autonomic network to allow the
>     intervention of a human administrator or central control systems,
>     while maintaining a default behaviour.  Through a feedback loop an
>     administrator ***must*** be prompted with a default action, and has the
>     possibility to acknowledge or override the proposed default action.
>     *** Uni-directional notifications to the NOC, that do not propose
>     any default action, and do not allow an override as part of the 
> transaction
>     are considered like traditional notification services, such as 
> syslog. They
>     are expected to co-exist with autonomic methods, but are not covered in
>     this draft.
> "
> 
> Would that be clear?

Again, OK for me.

>>> Minor Issues:
>>>
>>> - 6.1 TEXT: "It must be possible to run ASAs as non-privileged (user space)
>>>    processes except for those (such as the infrastructure ASAs) that 
>>> necessarily
>>>    require kernel privilege. Also, it is highly desirable that ASAs can be
>>>    dynamically loaded on a running node."
>>>
>>>    ISSUE: Discussing implementation details like user-space, kernel 
>>> privilege and
>>>    dynamic loading seems unnecessary and outside the scope of this 
>>> document. Does
>>>    this document care if I implement my ASA on a real-time architecture 
>>> with no
>>>    "user space" etc..?
>> Fair enough. See my above comment re robustness.
> 
> I see where you're coming from, and sort of agree, and don't :-) 
> Formally you're absolutely right, implementation details don't belong 
> here. However, we had a large number of exchanges on user vs kernel 
> space, which had design consequences. I feel it would be useful to leave 
> this point in the document.

Yes, because we want to insist that ASAs will be written not by kernel
programmers but ordinary humans ;-).

Whatever happens to the text here, the idea is that the complete
discussion of ASAs will be in draft-carpenter-anima-asa-guidelines,
assuming that the WG adopts it.

Regards
    Brian

>> I'll leave the rest of your comments to the document editor.
>>
>> Regards
>>      Brian
>>
>>> - 4.6 Why call out global routing and overlay networks in particular? Is the
>>>    real intention to just say that the ACP implementation is not restricted 
>>> to
>>>    any specific type of networking?
> I see that this can cause confusion. It also dates back to a looong 
> discussion on what the ACP should look like. Frankly, I think we have 
> all converged on the overlay model. So while the global routing table 
> model is theoretically an option, we should probably drop it here. 
> Suggestion:
> 
> "
>     The "Autonomic Control Plane" carries the control protocols in an
>     autonomic network.  In the architecture described here, it is 
> implemented
>     as an overlay network.  The document "An
>     Autonomic Control Plane" ([I-D.ietf-anima-autonomic-control-plane])
>     describes the implementation details suggested here.  See
>     [I-D.ietf-anima-stable-connectivity] for uses cases for the ACP.
> "
>>>
>>> - TEXT: 6.3.1.2 "on a given LAN"
>>>
>>>    NIT: Everyone knows what a LAN is; however, I wonder if the text should 
>>> be
>>>    more generic and actually describe what it really requires here which is 
>>> a
>>>    broadcast or multicast network?
> replace with "... on a given broadcast or multicast network." OK?
>>>
>>> Questions/Comments:
>>>
>>> - QUESTION: IoT and node requirements. There a couple node ASA 
>>> requirements. I
>>>    found myself wondering if a very simple IoT things like thermostats 
>>> might ever
>>>    be an AN and if so did they all really need to have joining assistent 
>>> ASAs? It
>>>    could be that the answer is "Yes, they do or they can't be nodes". I was 
>>> just
>>>    curious.
> We had that discussion a lot. 3.1 states that "At a later stage
>     ANIMA may define a scope for constrained nodes with a reduced ANI and
>     well-defined minimal functionality.  They are currently out of scope."
> 
> All sorts of things may happen: You may have devices that are hard-coded 
> to run in a domain, so they don't need to join (very specific cases 
> only, IMO). Or they have a SIM card (or similar), and don't need 
> enrolment (much more likely to happen). Many more... :-)
>>>
>>> - COMMENT: For the types of ASAs: simple (run anywhere), complex (resource
>>>    restricted), and infra (run everywhere), I was reminded of 
>>> Kubernetes/cloud
>>>    orchestration, and the concept of DaemonSets (pods that run everywhere) 
>>> and
>>>    Deployments (pods that can run anywhere, possibly be scaled replicated, 
>>> and
>>>    may also have requirements that restrict where they can run). I imagine 
>>> that
>>>    folks in Anima have also looked at this, but if not it would be good to 
>>> as
>>>    they seem to be solving very similar problems.
> Will do! Good point!
>>> Nits:
>>>
>>> - TEXT: 3.2 "However, the information is tracked independently of the 
>>> status of
>>>    the peer nodes; specifically, it contains information about non-enrolled
>>>    nodes, nodes of the same and other domains. "
>>>
>>>    QUESTION: What are peer nodes? Is this another name for adjacent nodes? 
>>> If so
>>>    "s/peer/adjacent/".
> We need to keep "peer" here. The adjacency table may have peers that are 
> not adjacent.
>>>
>>> - TEXT: 3.3.1 "enrols"
>>>    CHANGE: "enrolls"
> Being a non-native English speaker, I believe this is US vs GB English, 
> and I leave others to sort that :-)
>>> - TEXT: 3.3.3 "In this state, the autonomic node has at least one ACP 
>>> channel to
>>>    another device. It can participate in further autonomic transactions, 
>>> such as
>>>    starting autonomic service agents. For example it must now enable the 
>>> join
>>>    assistant ASA, to help other devices to join the domain.
>>>
>>>    NIT: "For example foo" is not a sentence on it's own, also "It" is not a 
>>> good
>>>    subject as there are multiple nouns in the previous sentence that could 
>>> serve
>>>    as antecedents.
>>>
>>>    SUGGEST: 3.3.3 "In this state, the autonomic node has at least one ACP 
>>> channel
>>>    to another device. The node can now participate in further autonomic
>>>    transactions, such as starting autonomic service agents (e.g., it must 
>>> now
>>>    enable the join assistant ASA, to help other devices to join the domain).
> Will do, thanks.
>>>
>>> - TEXT: 4.1 "Names are typically assigned by a Registrar at bootstrap time 
>>> and
>>>    persistent over the lifetime of the device."
>>>
>>>    NIT: s/persistent/and persist/
> I leave that to the RFC Editor to decide. To me our version is not 
> wrong... Again, not native ....
>>>
>>> - TEXT: "Out of scope are addressing approaches for the data plane of the
>>>    network, which may be configured and managed in the traditional way, or
>>>    negotiated as a service of an ASA. One use case for such an autonomic 
>>> function
>>>    is described in [I-D.ietf-anima-prefix-management]."
>>>
>>> - NIT: Sounds sort of Yoda-like, and the compounding makes things less 
>>> clear.
> Yoda I like! :-)
>>>    SUGGEST: "Addressing approaches for the data plane of the network are 
>>> outside
>>>    the scope of this document. These addressing approaches may be 
>>> configured and
>>>    managed in the traditional way, or negotiated as a service of an ASA. 
>>> One use
>>>    case for such an autonomic function is described in
>>>    [I-D.ietf-anima-prefix-management]."
> Will change.
>>>
>>> - TEXT: 6.1: "Following an initial discovery phase, the device properties 
>>> and
>>>    those of its neighbors are the foundation of the behavior of a specific
>>>    device. A device and its ASAs have no pre-configuration for the 
>>> particular
>>>    network in which they are installed."
>>>
>>>    NIT: Why suddenly lose the "node" abstraction and start talking about 
>>> devices
>>>    here? I think it continues to work well to say "node" (e.g., "node
>>>    properties", "specific node" and "A node and its ASAs...").
> OK, will change to "node" - you're right.
>>>
>>> - TEXT: 6.2 "install ASA: copy the ASA code onto the host and start it,"
>>>    NIT: "s/host/node/"
>>>
> OK.
> 
> Thanks for the thorough review Christian! I wait if anyone has an issue 
> with thos suggestions, and if not, edit the draft accordingly.
> 
> thanks!
> Michael
> 
> 

_______________________________________________
Anima mailing list
Anima@ietf.org
https://www.ietf.org/mailman/listinfo/anima

Reply via email to