示例#1
0
 def initialize(self, verb):
     JavaBundle.initialize(self, verb)
     verb.add_options(
         cli.StringListOption(None, '--ignore', 'skip_requirements',
                          '''requirements to skip when start voltdb:
              thp - Checking for Transparent Huge Pages (THP) has been disabled.  Use of THP can cause VoltDB to run out of memory. Do not disable this check on production systems.''',
                          default = None))
     verb.add_options(
         cli.StringOption('-g', '--placement-group', 'placementgroup',
                          'placement group',
                          default = '0'))
     # --safemode only used by recover server action (on start)
     if self.safemode_available:
         verb.add_options(cli.BooleanOption(None, '--safemode', 'safemode', None))
     if self.supports_daemon:
         verb.add_options(
             cli.BooleanOption('-B', '--background', 'daemon',
                               'run the VoltDB server in the background (as a daemon process)'))
         if self.supports_multiple_daemons:
             # Keep the -I/--instance option hidden for now.
             verb.add_options(
                 cli.IntegerOption('-I', '--instance', 'instance',
                               #'specify an instance number for multiple servers on the same host'))
                               None))
     if self.supports_paused:
         verb.add_options(
             cli.BooleanOption('-p', '--pause', 'paused',
                               'Start Database in paused mode.'))
示例#2
0
 def initialize(self, verb):
     JavaBundle.initialize(self, verb)
     verb.add_options(
         cli.StringOption('-d', '--deployment', 'deployment',
                          'specify the location of the deployment file',
                          default = None))
     if self.default_host:
         verb.add_options(cli.StringOption('-H', '--host', 'host',
             'HOST[:PORT] (default HOST=localhost, PORT=3021)',
             default='localhost:3021'))
     else:
         verb.add_options(cli.StringOption('-H', '--host', 'host',
             'HOST[:PORT] host must be specified (default HOST=localhost, PORT=3021)'))
     if self.supports_live:
        verb.add_options(cli.BooleanOption('-b', '--blocking', 'block', 'perform a blocking rejoin'))
     if self.needs_catalog:
         verb.add_arguments(cli.PathArgument('catalog',
                            'the application catalog jar file path',
                            min_count=0, max_count=1))
     # --safemode only used by recover server action.
     if self.safemode_available:
         verb.add_options(cli.BooleanOption(None, '--safemode', 'safemode', None))
     if self.supports_daemon:
         verb.add_options(
             cli.BooleanOption('-B', '--background', 'daemon',
                               'run the VoltDB server in the background (as a daemon process)'))
         if self.supports_multiple_daemons:
             # Keep the -I/--instance option hidden for now.
             verb.add_options(
                 cli.IntegerOption('-I', '--instance', 'instance',
                               #'specify an instance number for multiple servers on the same host'))
                               None))
示例#3
0
 def __init__(self, name, function, java_class, **kwargs):
     CommandVerb.__init__(self, name, function, **kwargs)
     self.java_class = java_class
     self.add_options(
         cli.IntegerOption(
             None, '--debugport', 'debugport',
             'enable remote Java debugging on the specified port'),
         cli.BooleanOption(None, '--dry-run', 'dryrun', None))
示例#4
0
    def initialize(self, verb):
        JavaBundle.initialize(self, verb)
        verb.add_options(
            cli.StringListOption(None, '--ignore', 'skip_requirements',
                             '''requirements to skip when start voltdb:
                 thp - Checking for Transparent Huge Pages (THP) has been disabled.  Use of THP can cause VoltDB to run out of memory. Do not disable this check on production systems.''',
                             default = None))
        if self.is_legacy_verb:
            verb.add_options(
                cli.StringOption('-d', '--deployment', 'deployment',
                                 'specify the location of the deployment file',
                                 default = None))
        verb.add_options(
            cli.StringOption('-g', '--placement-group', 'placementgroup',
                             'placement group',
                             default = '0'))
        if self.is_legacy_verb and self.default_host:
            verb.add_options(cli.StringOption('-H', '--host', 'host',
                'HOST[:PORT] (default HOST=localhost, PORT=3021)',
                default='localhost:3021'))
        elif self.is_legacy_verb:
            verb.add_options(cli.StringOption('-H', '--host', 'host',
                'HOST[:PORT] host must be specified (default HOST=localhost, PORT=3021)'))
        if self.supports_live:
           verb.add_options(cli.BooleanOption('-b', '--blocking', 'block', 'perform a blocking rejoin'))
        if self.needs_catalog:
            verb.add_arguments(cli.PathArgument('catalog',
                               'the application catalog jar file path',
                               min_count=0, max_count=1))
        # --safemode only used by recover server action.
        if self.safemode_available:
            verb.add_options(cli.BooleanOption(None, '--safemode', 'safemode', None))
        if self.supports_daemon:
            verb.add_options(
                cli.BooleanOption('-B', '--background', 'daemon',
                                  'run the VoltDB server in the background (as a daemon process)'))
            if self.supports_multiple_daemons:
                # Keep the -I/--instance option hidden for now.
                verb.add_options(
                    cli.IntegerOption('-I', '--instance', 'instance',
                                  #'specify an instance number for multiple servers on the same host'))
                                  None))
        if self.supports_paused:
            verb.add_options(
                cli.BooleanOption('-p', '--pause', 'paused',
                                  'Start Database in paused mode.'))

        if self.force_voltdb_create:
            verb.add_options(
                cli.BooleanOption('-f', '--force', 'force',
                                  'Start a new, empty database even if the VoltDB managed directories contain files from a previous session that may be overwritten.'))