Re: [NGO] external module properties

Andy Bierman <ietf@andybierman.com> Tue, 29 April 2008 15:28 UTC

Return-Path: <ngo-bounces@ietf.org>
X-Original-To: ngo-archive@optimus.ietf.org
Delivered-To: ietfarch-ngo-archive@core3.amsl.com
Received: from core3.amsl.com (localhost [127.0.0.1]) by core3.amsl.com (Postfix) with ESMTP id 8381828C289; Tue, 29 Apr 2008 08:28:29 -0700 (PDT)
X-Original-To: ngo@core3.amsl.com
Delivered-To: ngo@core3.amsl.com
Received: from localhost (localhost [127.0.0.1]) by core3.amsl.com (Postfix) with ESMTP id A202528C289 for <ngo@core3.amsl.com>; Tue, 29 Apr 2008 08:28:28 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.126
X-Spam-Level:
X-Spam-Status: No, score=-2.126 tagged_above=-999 required=5 tests=[AWL=0.139, BAYES_00=-2.599, IP_NOT_FRIENDLY=0.334]
Received: from mail.ietf.org ([64.170.98.32]) by localhost (core3.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 5ISbM0D6aSl5 for <ngo@core3.amsl.com>; Tue, 29 Apr 2008 08:28:27 -0700 (PDT)
Received: from smtp123.sbc.mail.sp1.yahoo.com (smtp123.sbc.mail.sp1.yahoo.com [69.147.64.96]) by core3.amsl.com (Postfix) with SMTP id C334D3A6C2B for <ngo@ietf.org>; Tue, 29 Apr 2008 08:28:27 -0700 (PDT)
Received: (qmail 8320 invoked from network); 29 Apr 2008 15:28:30 -0000
Received: from unknown (HELO ?127.0.0.1?) (andybierman@att.net@67.126.241.42 with plain) by smtp123.sbc.mail.sp1.yahoo.com with SMTP; 29 Apr 2008 15:28:29 -0000
X-YMail-OSG: lWd0BH8VM1nFw9hBq9O7kaZCWK3NPRTBX3xJHywQvmv9BMr4QkuA5L1JXSDr2Iw32vC8yuZwcsuno5eZDRhenVDLoEyWFrqud2foDXZREHNildXHWL3IYUi6nWxxAJ.Ajlk-
X-Yahoo-Newman-Property: ymail-3
Message-ID: <48173E9B.5000404@andybierman.com>
Date: Tue, 29 Apr 2008 08:28:27 -0700
From: Andy Bierman <ietf@andybierman.com>
User-Agent: Thunderbird 2.0.0.12 (Windows/20080213)
MIME-Version: 1.0
To: Wes Hardaker <wjhns1@hardakers.net>
References: <48137444.6070802@andybierman.com> <sdr6cq83d2.fsf@wes.hardakers.net> <4815EA5E.60607@andybierman.com> <sdprs8vh0f.fsf@wes.hardakers.net>
In-Reply-To: <sdprs8vh0f.fsf@wes.hardakers.net>
Cc: NETCONF Goes On <ngo@ietf.org>
Subject: Re: [NGO] external module properties
X-BeenThere: ngo@ietf.org
X-Mailman-Version: 2.1.9
Precedence: list
List-Id: NETCONF Goes On - discussions on future work and extensions to NETCONF <ngo.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/listinfo/ngo>, <mailto:ngo-request@ietf.org?subject=unsubscribe>
List-Archive: <http://www.ietf.org/pipermail/ngo>
List-Post: <mailto:ngo@ietf.org>
List-Help: <mailto:ngo-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/ngo>, <mailto:ngo-request@ietf.org?subject=subscribe>
Content-Type: text/plain; charset="us-ascii"
Content-Transfer-Encoding: 7bit
Sender: ngo-bounces@ietf.org
Errors-To: ngo-bounces@ietf.org

Wes Hardaker wrote:
>>>>>> On Mon, 28 Apr 2008 08:16:46 -0700, Andy Bierman <ietf@andybierman.com> said:
> 
> AB> I believe 2 independent YANG implementations are deriving the version
> AB> from the most recent revision date.  In my code, the current date
> AB> will be used (for the internal version) if no revision clauses are
> AB> provided.
> 
> A numerical date meets my needs too...
> 
> I'd be tempted not to even define the required formatting of the version
> number.  Simply say it must be sortable using a standard comparison
> function (strcmp or >).
> 
> DNS does this with the SOA serial number.  The format is up to the
> network operator.  Some use date/time based serial numbers.  Some
> (especially those with > 256 pushes a day) use an incrementing number
> approach.  In the end, all the software that needs to look at the serial
> number is never confused: it just does a comparison to decide if their
> local copy is newer or older than the currently published zone file.
> 
> AB> The first order problem I want to solve is a standard mechanism
> AB> for distinguishing between multiple versions of the same module.
> 
> Do you mean multiple vendors publishing a single yang module?  How is
> that even possible (namespace definitions alone should take care of
> those conflicts think).
> 

No, I just mean mandatory revision clauses in YANG.
There must be some data within the module itself that
can be used to distinguish 2 different versions of
the same module.

We already have a single naming scope for module names.
There is no concept at all in YANG of the Acme FOO-MIB
and some other FOO-MIB.  There is just one FOO-MIB,
and any import (or include) which identifies FOO-MIB
in the target is referring to the one and only possible
module (within that implementation) called FOO-MIB.

The YANG spec is silent on finding the module associated
with an import or include.  That doesn't mean a robust,
interoperable, standards-based CM system can be silent on the issue.


>>> 2) How about we do the inverse of normal SMIv2 modules and optimize for
>>> the reader...  Most of this type of meta information, which I do
>>> agree is critical, isn't of huge interest to the average technical
>>> reader (which 99% of the time are trying to get to the technical
>>> cruft).  How about we put it at the bottom (or anywhere after the
>>> real data definitions)?
>>>
> 
> AB> I suppose a long list of revision statements gets in the way,
> AB> but not 1 or 2.  I would like to reserve the 'bottom' for the granular
> AB> conformance specification that is missing from YANG.
> 
> I don't really care how the bottom stuff is organized.  We likely have
> multiple sets of information that need to go into a YANG module.  Lets
> say that boils down to: technical stuff, an ever growing list of
> meta-data, conformance statements.  I don't care about the order beyond
> the fact I want the technical stuff to go first.  Because that's what
> 99% of the population cares the most about getting to.  Anything else
> gets in their way.
> 
> Now...  don't read into this that I'm proposing a CLR sorting rule.  I'm
> not.  I actually think the file should be more flexible in it's required
> ordering.  But IETF documents and the resulting YANGnits tool should
> suggest that non-technical sort of stuff needs to be lower in the
> document.  Which makes it a CLS (suggestion).


Andy

_______________________________________________
NGO mailing list
NGO@ietf.org
https://www.ietf.org/mailman/listinfo/ngo