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

      HDC Graph and Algorithm

      This section introduces methods for managing HDC graph and HDC algorithms. Note that these methods require the deployment of HDC servers for the database.

      HDC Graph

      showHDCGraph()

      Retrieves all HDC graphs created from the graph.

      Parameters

      • config: RequestConfig (Optional): Request configuration.

      Returns

      • List[HDCGraph]: The list of retrieved HDC graphs.

      # Retrieves all HDC graphs of the graph 'miniCircle'
      
      requestConfig = RequestConfig(graph="miniCircle")
      hdcGraphs = Conn.showHDCGraph(requestConfig)
      for hdcGraph in hdcGraphs:
          print(hdcGraph.name, "on", hdcGraph.hdcServerName)
      

      miniCircle_hdc_graph on hdc-server-1
      miniCircle_hdc_graph2 on hdc-server-2
      

      createHDCGraphBySchema()

      Creates an HDC graph for the graph.

      Parameters

      • builder: HDCBuilder: The HDC graph to be created; the attributes hdcGraphName and hdcServerName are mandatory, nodeSchema, edgeSchema and syncType are optional.
      • config: RequestConfig (Optional): Request configuration.

      Returns

      • JobResponse: Response of the request.

      # Creates an HDC graph named 'test_hdc_graph' for the graph 'miniCircle'
      
      requestConfig = RequestConfig(graph="miniCircle")
      hdcBuilder = HDCBuilder(
          hdcGraphName="test_hdc_graph",
          hdcServerName="hdc-server-1",
          nodeSchema=[{"*": ["*"]}],
          edgeSchema=[
              {"direct": ["*"]},
              {"review": ["value", "content"]}
          ],
          syncType=HDCSyncType.SCTATIC
      )
      
      response = Conn.createHDCGraphBySchema(hdcBuilder, requestConfig)
      jobID = response.jobId
      
      time.sleep(3)
      jobs = Conn.showJob(jobID, requestConfig)
      for job in jobs:
          print(job.id, "-", job.status)
      

      61 - FINISHED
      61_1 - FINISHED
      

      dropHDCGraph()

      Deletes a specified HDC graph of the graph.

      Parameters

      • hdcGraphName: str: Name of the HDC graph.
      • config: RequestConfig (Optional): Request configuration.

      Returns

      • Response: Response of the request.

      # Drops the HDC graph 'miniCircle_hdc_graph2' of the graph 'miniCircle'
      
      requestConfig = RequestConfig(graph="miniCircle")
      response = Conn.dropHDCGraph("miniCircle_hdc_graph2", requestConfig)
      print(response.status.code.name)
      

      SUCCESS
      

      HDC Algorithms

      showHDCAlgo()

      Retrieves all HDC algorithms installed on an HDC server.

      Parameters

      • hdcServerName: str: Name of the HDC server.
      • config: RequestConfig (Optional): Request configuration.

      Returns

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

      # Retrieves all HDC algorithms installed on the HDC server 'hdc-server-1'
      
      algos = Conn.showHDCAlgo("hdc-server-1")
      data = [[algo.name, algo.writeSupportType] for algo in algos if algo.type == "algo"]
      headers = ["Name", "writeSupportType"]
      print(tabulate.tabulate(data, headers=headers, tablefmt="grid"))
      

      +-----------+--------------------+
      | Name      | writeSupportType   |
      +===========+====================+
      | fastRP    | DB,FILE            |
      +-----------+--------------------+
      | struc2vec | DB,FILE            |
      +-----------+--------------------+
      

      installHDCAlgo()

      Installs an HDC algorithm on an HDC server.

      Parameters

      • files: List[str]: List of the paths of the installation files, the package file (.so) is necessary while the configuration file (.yml) is optional.
      • hdcServerName: str: Name of the HDC server.
      • config: RequestConfig (Optional): Request configuration.

      Returns

      • Response: Response of the request.

      # Installs the HDC algorithm LPA on the HDC server 'hdc-server-1'
      # The files 'libplugin_lpa.so' and 'lpa.yml' are located in the 'algo' folder that is placed in the same directory as the file you executed
      
      response = Conn.installHDCAlgo(["algo/libplugin_lpa.so", "algo/lpa.yml"], "hdc-server-1")
      print(response.status.code.name)
      

      SUCCESS
      

      uninstallHDCAlgo()

      Uninstalls an HDC algorithm from an HDC server.

      Parameters

      • algoName: str: Name of the algorithm.
      • hdcServerName: str: Name of the HDC server.
      • config: RequestConfig (Optional): Request configuration.

      Returns

      • Response: Response of the request.

      # Uninstalls the HDC algorithm LPA from the HDC server 'hdc-server-1'
      
      response = Conn.uninstallHDCAlgo("lpa", "hdc-server-1")
      print(response.status.code.name)
      

      SUCCESS
      

      rollbackHDCAlgo()

      Rolls back a specified HDC algorithm on an HDC server.

      Parameters

      • algoName: str: Name of the algorithm.
      • hdcServerName: str: Name of the HDC server.
      • config: RequestConfig (Optional): Request configuration.

      Returns

      • Response: Response of the request.

      # Rolls back the HDC algorithms LPA on the HDC server 'hdc-server-1'
      
      response = Conn.rollbackHDCAlgo("lpa", "hdc-server-1")
      print(response.status.code.name)
      

      SUCCESS
      

      Full Example

      from ultipa import UltipaConfig, Connection
      
      ultipaConfig = UltipaConfig()
      # URI example: ultipaConfig.hosts = ["https://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)
      
      # Installs the HDC algorithm LPA on the HDC server 'hdc-server-1'
      # The files 'libplugin_lpa.so' and 'lpa.yml' are located in the 'algo' folder that is placed in the same directory as the file you executed
      
      response = Conn.installHDCAlgo(["algo/libplugin_lpa.so", "algo/lpa.yml"], "hdc-server-1")
      print(response.status.code.name) 
      
      Please complete the following information to download this book
      *
      公司名称不能为空
      *
      公司邮箱必须填写
      *
      你的名字必须填写
      *
      你的电话必须填写