更新时间:2022-06-30 GMT+08:00
subgraph_matching算法
您可以使用GES提供的接口执行subgraph_matching算法。示例代码如下:
public void subgraphMatching(GraphClient graphClient) throws ApiException { SubgraphMatchingParameters subgraphMatchingParameters = new SubgraphMatchingParameters(); subgraphMatchingParameters.setEdges(""); subgraphMatchingParameters.setVertices(""); AlgorithmReq algorithmReq = new AlgorithmReq(); algorithmReq.setAlgorithmName(AlgorithmNames.SUBGRAPH_MATCHING); // 算法名 algorithmReq.setParameters(subgraphMatchingParameters); // 算法参数 // 根据输入参数执行指定算法 AsyncAPIResp asyncAPIResp = graphClient.algorithmQuery(algorithmReq); // 根据算法执行任务id,查询任务执行状态 QueryJobReq queryJobReq = new QueryJobReq(); queryJobReq.setJobId(asyncAPIResp.getJobId()); GesResponse gesResponse = graphClient.queryAsyncTask(queryJobReq); System.out.println(gesResponse); }
父主题: 执行算法