This content has been machine translated dynamically.
Dieser Inhalt ist eine maschinelle Übersetzung, die dynamisch erstellt wurde. (Haftungsausschluss)
Cet article a été traduit automatiquement de manière dynamique. (Clause de non responsabilité)
Este artículo lo ha traducido una máquina de forma dinámica. (Aviso legal)
此内容已经过机器动态翻译。 放弃
このコンテンツは動的に機械翻訳されています。免責事項
이 콘텐츠는 동적으로 기계 번역되었습니다. 책임 부인
Este texto foi traduzido automaticamente. (Aviso legal)
Questo contenuto è stato tradotto dinamicamente con traduzione automatica.(Esclusione di responsabilità))
This article has been machine translated.
Dieser Artikel wurde maschinell übersetzt. (Haftungsausschluss)
Ce article a été traduit automatiquement. (Clause de non responsabilité)
Este artículo ha sido traducido automáticamente. (Aviso legal)
この記事は機械翻訳されています.免責事項
이 기사는 기계 번역되었습니다.책임 부인
Este artigo foi traduzido automaticamente.(Aviso legal)
这篇文章已经过机器翻译.放弃
Questo articolo è stato tradotto automaticamente.(Esclusione di responsabilità))
Translation failed!
依赖性检测
样书中的组件可以引用同一样书中的其他组件的属性或部分。组件本身就是完整的块,可能无法按照必须运行的顺序写入。样书编译器会检查组件的编写顺序,然后按逻辑顺序运行它们。
示例:
components:
-
name: lbvserver-comp
type: ns::lbvserver
properties:
name: mylb
ipv46: 10.102.190.15
port: 80
servicetype: HTTP
-
name: lb-sg-binding-comp
type: ns::lbvserver_servicegroup_binding
condition: $parameters.create-binding
properties:
name: $components.lbvserver-comp.properties.name
servicegroupname: $components.sg-comp.properties.servicegroupname
-
name: sg-comp
type: ns::servicegroup
properties:
servicegroupname: mysg
servicetype: HTTP
<!--NeedCopy-->
在上面的例子中,定义了三个组件- lbvser-comp, lb-sg-绑定-复合和 sg-comp。运行此样书时,首先创建了 lbvserver-comp
。lb-sg-binding-comp
是指 lbvserver-comp
属性,但下一步无法创建它,尽管它是样书中定义的第二个组件。这是因为 lb-sg-binding-comp
也依赖于尚未创建的 sg-comp
。因此,编译器会对组件重新排序,以便在创建组件时解析组件的依赖关系,然后运行此重新排序的组件列表。上述样书的执行顺序是:lbvserver-comp
、sg-comp
和 lb-sg-binding-comp
。
这样,样书的作者不必担心组件的正确顺序。组件可以按任何顺序显示。编译器根据组件相互引用的情况计算组件的正确执行顺序。请注意,这也适用于替换和输出部分。
循环依赖项
由于一个组件可能会引用另一个组件,因此可能会在样书的定义中引入依赖关系循环。例如,如果组件 A 引用组件 B 中定义的一个属性,而后者也引用组件 A 中定义的一个属性。这种依赖项称为循环依赖项。循环依赖项无法自动解析。样书的作者手动更正样书定义,以消除此类循环依赖关系。编译器能够识别循环依赖项(如果存在)并报告。
以下示例显示了组件的循环依赖项:
components:
-
name: lbvserver-comp
type: ns::lbvserver
properties:
name: $components.lb-sg-binding-comp.properties.name
ipv46: 10.102.190.15
port: 80
servicetype: HTTP
-
name: lb-sg-binding-comp
type: ns::lbvserver_servicegroup_binding
condition: $parameters.create-binding
properties:
name: mylb
servicegroupname: $components.sg-comp.properties.servicegroupname
-
name: sg-comp
type: ns::servicegroup
properties:
servicegroupname: mysg
servicetype: $components.lbvserver-comp.properties.servicetype
<!--NeedCopy-->
在上面的例子中,有三个组件: lbv服务器comp、 lb-sg-binding-comp和 sg-comp。lbvserver-comp
组件取决于 lb-sg-binding-comp
、lb-sg-binding
组件。而且,这些组件取决于 sg-comp
。sg-comp
组件取决于 lbvserver-comp
。此处,在这些组件之间形成了依赖项循环,这无法自动解析。因此,无法运行此样书。样书编译器会检测到此问题并阻止样书导入到 NetScaler 控制台中。
共享
共享
在本文中
This Preview product documentation is Cloud Software Group Confidential.
You agree to hold this documentation confidential pursuant to the terms of your Cloud Software Group Beta/Tech Preview Agreement.
The development, release and timing of any features or functionality described in the Preview documentation remains at our sole discretion and are subject to change without notice or consultation.
The documentation is for informational purposes only and is not a commitment, promise or legal obligation to deliver any material, code or functionality and should not be relied upon in making Cloud Software Group product purchase decisions.
If you do not agree, select I DO NOT AGREE to exit.