修改密码

请输入密码
请输入密码 请输入8-64长度密码 和 email 地址不相同 至少包括数字、大写字母、小写字母、半角符号中的 3 个
请输入密码
提交

修改昵称

当前昵称:
提交

申请证书

证书详情

Please complete this required field.

  • Ultipa Graph V4

Standalone

Please complete this required field.

Please complete this required field.

服务器的MAC地址

Please complete this required field.

Please complete this required field.

取消
申请
ID
产品
状态
核数
申请天数
审批时间
过期时间
MAC地址
申请理由
审核信息
关闭
基础信息
  • 用户昵称:
  • 手机号:
  • 公司名称:
  • 公司邮箱:
  • 地区:
  • 语言:
修改密码
申请证书

当前未申请证书.

申请证书
Certificate Issued at Valid until Serial No. File
Serial No. Valid until File

Not having one? Apply now! >>>

ProductName CreateTime ID Price File
ProductName CreateTime ID Price File

No Invoice

v5.0
搜索
    v5.0

      HDC图和算法

      本节介绍用于管理HDC图和HDC算法的方法。请注意,这些方法要求数据库部署HDC服务器。

      HDC图

      showHDCGraph()

      获取从图创建的全部HDC图。

      参数

      • config: RequestConfig(可选):请求配置。

      返回

      • List[HDCGraph]:获取的HDC图列表。

      # 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()

      为图创建一个HDC图。

      参数

      • builder: HDCBuilder: 要创建的HDC图;属性hdcGraphNamehdcServerName必填,nodeSchemaedgeSchemasyncType可选。
      • config: RequestConfig(可选):请求配置。

      返回

      • JobResponse:请求结果。

      # 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()

      删除指定的HDC图。

      参数

      • hdcGraphName: str:HDC图名称。
      • config: RequestConfig(可选):请求配置。

      返回

      • Response:请求结果。

      # 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算法

      showHDCAlgo()

      获取安装在一台HDC服务器上的全部HDC算法。

      参数

      • hdcServerName: str:HDC服务器名称。
      • config: RequestConfig(可选):请求配置。

      返回值

      • List[Algo]:获取的HDC算法列表。

      # 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()

      在一台HDC服务器上安装一个HDC算法。

      参数

      • files: List[str]:安装文件路径列表,算法包文件(.so)必须,配置文件(.yml)可选。
      • hdcServerName: str:HDC服务器名称。
      • config: RequestConfig(可选):请求配置。

      返回值

      • Response:请求结果。

      # 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()

      从一台HDC服务器上卸载一个HDC算法。

      参数

      • algoName: str:算法名称。
      • hdcServerName: str:HDC服务器名称。
      • config: RequestConfig(可选):请求配置。

      返回值

      • Response:请求结果。

      # 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()

      将一台HDC服务器上的一个指定HDC算法回退到上一个版本。

      参数

      • algoName: str:算法名称。
      • hdcServerName: str:HDC服务器名称。
      • config: RequestConfig(可选):请求配置。

      返回值

      • Response:请求结果。

      # 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
      

      完整示例

      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)
      
      请完成以下信息后可下载此书
      *
      公司名称不能为空
      *
      公司邮箱必须填写
      *
      你的名字必须填写
      *
      你的电话必须填写
      *
      你的电话必须填写