Change Password

Please enter the password.
Please enter the password. Between 8-64 characters. Not identical to your email address. Contain at least 3 of: uppercase, lowercase, numbers, and special characters.
Please enter the password.
Submit

Change Nickname

Current Nickname:
Submit

Apply New License

License Detail

Please complete this required field.

  • Ultipa Graph V4

Standalone

Please complete this required field.

Please complete this required field.

The MAC address of the server you want to deploy.

Please complete this required field.

Please complete this required field.

Cancel
Apply
ID
Product
Status
Cores
Applied Validity Period(days)
Effective Date
Excpired Date
Mac Address
Apply Comment
Review Comment
Close
Profile
  • Full Name:
  • Phone:
  • Company:
  • Company Email:
  • Country:
  • Language:
Change Password
Apply

You have no license application record.

Apply
Certificate Issued at Valid until Serial No. File
Serial No. Valid until File

Not having one? Apply now! >>>

Product Created On ID Amount (USD) Invoice
Product Created On ID Amount (USD) Invoice

No Invoice

v5.0
Search
    English
    v5.0

      Algorithm Management

      This section introduces methods on a Connection object for managing Ultipa graph algorithms and custom algorithms (EXTA) in the instance.

      Each example focuses solely on the method's usage. For a complete code example, please refer to the full example.

      Ultipa Graph Algorithms

      showAlgo()

      Retrieves all Ultipa graph algorithms installed in the instance.

      Parameters:

      • RequestConfig (Optional): Configuration settings for the request.

      Returns:

      • List[Algo]: The list of all algorithms retrieved.

      # Retrieves all Ultipa graph algorithms installed and prints the information of the first returned one
      
      algos = Conn.showAlgo()
      print(algos[0].toJSON())
      

      {"name": "lpa", "description": "label propagation algorithm", "version": "1.0.10", "result_opt": "27", "parameters": {"loop_num": "size_t,required", "node_label_property": "optional", "node_weight_property": "optional", "edge_weight_property": "optional", "k": "no more than k labels will be kept for each node", "ids": "labeled nodes, optional, all nodes(with non-NULL value) as labeled nodes if empty"}, "write_to_db_parameters": {"property": "set property name in db, only label with `max probability` will be write to db"}, "write_to_file_parameters": {"filename": "set file name"}}
      

      installAlgo()

      Installs an Ultipa graph algorithm in the instance.

      Parameters:

      • str: File path of the algo installation package (.so).
      • str: File path of the configuration file (.yml).
      • RequestConfig (Optional): Configuration settings for the request.

      Returns:

      • UltipaResponse: Result of the request.

      # Installs the algorithm LPA and uses the leader node to guarantee consistency, and prints the error code
      # The installation package libplugin_lpa.so and the config file lpa.yml are located in the 'algo' folder, which is placed in the same directory as the file you executed
      
      requestConfig = RequestConfig(useMaster=True)
      
      response = Conn.installAlgo("algo/libplugin_lpa.so", "algo/lpa.yml", requestConfig)
      print(response.status.code)
      

      0
      

      uninstallAlgo()

      Uninstalls an Ultipa graph algorithm in the instance.

      Parameters:

      • str: Name of the algorithm.
      • RequestConfig (Optional): Configuration settings for the request.

      Returns:

      • UltipaResponse: Result of the request.

      # Uninstalls the algorithm LPA and prints the error code
      
      requestConfig = RequestConfig()
      
      response = Conn.uninstallAlgo("lpa")
      print(response.status.code)
      

      0
      

      EXTA

      showExta()

      Retrieves all extas installed in the instance.

      Parameters:

      • RequestConfig (Optional): Configuration settings for the request.

      Returns:

      • List[Exta]: The list of all extas retrieved.

      # Retrieves all extas installed and prints the information of the first returned one
      
      extas = Conn.showExta()
      print(extas[0].toJSON())
      

      {
        "author": "wuchuang",
        "detail": {
          "base": {
            "category": "ExtaExample",
            "cn": {
              "name": "page_rank",
              "desc": null
            },
            "en": {
              "name": "page_rank",
              "desc": null
            }
          },
          "other_param": {},
          "param_form": {},
          "write": {},
          "return": {},
          "media": {}
        },
        "name": "page_rank",
        "version": "beta.4.4.41-b4.4.0-tv-ui"
      }
      

      installExta()

      Installs an exta in the instance.

      Parameters:

      • str: File path of the exta installation package (.so).
      • str: File path of the configuration file (.yml).
      • RequestConfig (Optional): Configuration settings for the request.

      Returns:

      • UltipaResponse: Result of the request.

      # Installs the exta page_rank and uses the leader node to guarantee consistency, and prints the error code
      # The installation package libexta_page_rank.so and the config file page_rank.yml are located in the 'exta' folder, which is placed in the same directory as the file you executed
      
      requestConfig = RequestConfig(useMaster=True)
      
      response = Conn.installExta("exta/libexta_page_rank.so", "exta/page_rank.yml", requestConfig)
      print(response.status.code)
      

      0
      

      uninstallExta()

      Uninstalls an exta in the instance.

      Parameters:

      • str: Name of the exta.
      • RequestConfig (Optional): Configuration settings for the request.

      Returns:

      • UltipaResponse: Result of the request.

      # Uninstalls the exta page_rank and prints the error code
      
      response = Conn.uninstallExta("page_rank")
      print(response.status.code)
      

      0
      

      Full Example

      from ultipa import Connection, UltipaConfig
      from ultipa.configuration.RequestConfig import RequestConfig
      
      ultipaConfig = UltipaConfig()
      # URI example: ultipaConfig.hosts = ["mqj4zouys.us-east-1.cloud.ultipa.com:60010"]
      ultipaConfig.hosts = ["192.168.1.85:60061","192.168.1.87:60061","192.168.1.88:60061"]
      ultipaConfig.username = "<username>"
      ultipaConfig.password = "<password>"
      
      Conn = Connection.NewConnection(defaultConfig=ultipaConfig)
      
      # Request configurations
      requestConfig = RequestConfig(useMaster=True)
      
      # Installs the algorithm LPA: the installation package libplugin_lpa.so and the config file lpa.yml are placed under the 'algo' folder within the current project directory.
      
      response = Conn.installAlgo("algo/libplugin_lpa.so", "algo/lpa.yml", requestConfig)
      print(response.status.code)   
      
      Please complete the following information to download this book
      *
      公司名称不能为空
      *
      公司邮箱必须填写
      *
      你的名字必须填写
      *
      你的电话必须填写