yujun777 commented on code in PR #40264: URL: https://github.com/apache/doris/pull/40264#discussion_r1753329387
########## docker/runtime/doris-compose/command.py: ########## @@ -297,6 +297,45 @@ def add_parser(self, args_parsers): default="", help="Set code coverage output directory") + parser.add_argument("--sql-mode-node-mgr", + default=False, + action=self._get_parser_bool_action(True), + help="Manager fe be via sql instead of http") + + if self._support_boolean_action(): + parser.add_argument( + "--be-metaservice-endpoint", + default=True, + action=self._get_parser_bool_action(True), + help= + "Do not set BE meta service endpoint in conf. Default is False." + ) + else: + parser.add_argument( + "--no-be-metaservice-endpoint", + dest='be-metaservice-endpoint', + default=True, + action=self._get_parser_bool_action(True), + help= + "Do not set BE meta service endpoint in conf. Default is False." + ) + + if self._support_boolean_action(): + parser.add_argument( + "--be-cloud-instanceid", + default=True, + action=self._get_parser_bool_action(True), + help= + "Do not set BE cloud instance ID in conf. Default is False.") Review Comment: Do set BE cloud instance ID in conf. Default is True. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org