-
Notifications
You must be signed in to change notification settings - Fork 3.3k
[HDInsight] Support new feature: create kafka cluster with kafka rest proxy #11529
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -96,8 +96,11 @@ def load_arguments(self, _): | |
| help='The size of the data disk in GB, e.g. 1023.') | ||
| c.argument('zookeepernode_size', arg_type=node_size_type) | ||
| c.argument('edgenode_size', arg_type=node_size_type) | ||
| c.argument('kafka_management_node_size', arg_type=node_size_type) | ||
| c.argument('workernode_count', options_list=['--workernode-count', '-c'], arg_group='Node', | ||
| help='The number of worker nodes in the cluster.') | ||
| c.argument('kafka_management_node_count', arg_group='Node', | ||
Juliehzl marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| help='The number of kafka management node in the cluster') | ||
|
|
||
| # Storage | ||
| c.argument('storage_account', arg_group='Storage', validator=validate_storage_account, | ||
|
|
@@ -161,6 +164,12 @@ def load_arguments(self, _): | |
| c.argument('encryption_algorithm', arg_type=get_enum_type(JsonWebKeyEncryptionAlgorithm), | ||
| arg_group='Customer Managed Key', help='Algorithm identifier for encryption.') | ||
|
|
||
| # Kafka Rest Proxy | ||
| c.argument('kafka_client_group_id', arg_group='Kafka Rest Proxy', | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is it possible to provide short name for your argument here?
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Hi @Juliehzl , Thanks. This is the shortest name that can explain the meaning. And there are already some properties' name are longer than this one. For example :
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. You can provide |
||
| help='The client AAD security group id for Kafka Rest Proxy') | ||
| c.argument('kafka_client_group_name', arg_group='Kafka Rest Proxy', | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The same
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
The same with above |
||
| help='The client AAD security group name for Kafka Rest Proxy') | ||
|
|
||
| # Managed Service Identity | ||
| c.argument('assign_identity', arg_group='Managed Service Identity', validator=validate_msi, | ||
| completer=get_resource_name_completion_list_under_subscription( | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.