server.py 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. #
  2. # Copyright 2019 The FATE Authors. All Rights Reserved.
  3. #
  4. # Licensed under the Apache License, Version 2.0 (the "License");
  5. # you may not use this file except in compliance with the License.
  6. # You may obtain a copy of the License at
  7. #
  8. # http://www.apache.org/licenses/LICENSE-2.0
  9. #
  10. # Unless required by applicable law or agreed to in writing, software
  11. # distributed under the License is distributed on an "AS IS" BASIS,
  12. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. # See the License for the specific language governing permissions and
  14. # limitations under the License.
  15. #
  16. import click
  17. from flow_client.flow_cli.utils import cli_args
  18. from flow_client.flow_cli.utils.cli_utils import (preprocess, access_server)
  19. @click.group(short_help="FATE Flow Server Operations")
  20. @click.pass_context
  21. def server(ctx):
  22. """
  23. \b
  24. Provides numbers of component operational commands, including metrics, parameters and etc.
  25. For more details, please check out the help text.
  26. """
  27. pass
  28. @server.command("versions", short_help="Show Versions Command")
  29. @click.pass_context
  30. def versions(ctx, **kwargs):
  31. config_data, dsl_data = preprocess(**kwargs)
  32. access_server('post', ctx, 'server/version/get', config_data)
  33. @server.command("reload", short_help="Reload Server Command")
  34. @click.pass_context
  35. def reload(ctx, **kwargs):
  36. config_data, dsl_data = preprocess(**kwargs)
  37. access_server('post', ctx, 'server/reload', config_data)