Search in sources :

Example 6 with ParameterServer

use of com.tencent.angel.ps.ParameterServer in project angel by Tencent.

the class InitNeighborTest2 method testCSR.

@Test
public void testCSR() throws Exception {
    Worker worker = LocalClusterContext.get().getWorker(workerAttempt0Id).getWorker();
    MatrixClient client = worker.getPSAgent().getMatrixClient(SPARSE_INT_MAT, 0);
    int matrixId = client.getMatrixId();
    ParameterServer ps = LocalClusterContext.get().getPS(psAttempt0Id).getPS();
    Location masterLoc = LocalClusterContext.get().getMaster().getAppMaster().getAppContext().getMasterService().getLocation();
    TConnection connection = TConnectionManager.getConnection(ps.getConf());
    MasterProtocol master = connection.getMasterService(masterLoc.getIp(), masterLoc.getPort());
    // Init node neighbors
    Long2ObjectOpenHashMap<long[]> nodeIdToNeighbors = new Long2ObjectOpenHashMap<>();
    nodeIdToNeighbors.put(1, new long[] { 2, 3, 4, 5, 6 });
    nodeIdToNeighbors.put(2, new long[] { 4, 5 });
    nodeIdToNeighbors.put(3, new long[] { 4, 5, 6 });
    nodeIdToNeighbors.put(4, new long[] { 5, 6 });
    nodeIdToNeighbors.put(5, new long[] { 6 });
    nodeIdToNeighbors.put(8, new long[] { 3, 4 });
    InitNeighbor func = new InitNeighbor(new InitNeighborParam(matrixId, nodeIdToNeighbors));
    client.asyncUpdate(func).get();
    nodeIdToNeighbors.clear();
    /*nodeIdToNeighbors.put(1, new long[]{4, 5, 6});
    nodeIdToNeighbors.put(2, new long[]{5});
    nodeIdToNeighbors.put(4, new long[]{5, 6});
    func = new InitNeighbor(new InitNeighborParam(matrixId, nodeIdToNeighbors));
    client.asyncUpdate(func).get();
    nodeIdToNeighbors.clear();

    nodeIdToNeighbors.put(3, new long[]{4, 5, 6});
    nodeIdToNeighbors.put(5, new long[]{6});
    nodeIdToNeighbors.put(8, new long[]{3, 4});
    func = new InitNeighbor(new InitNeighborParam(matrixId, nodeIdToNeighbors));
    client.asyncUpdate(func).get();
    nodeIdToNeighbors.clear();
    */
    // client.asyncUpdate(new InitNeighborOver(new InitNeighborOverParam(matrixId))).get();
    // Sample the neighbors
    long[] nodeIds = new long[] { 1, 2, 3, 4, 5, 6, 7, 8 };
    SampleNeighborParam param = new SampleNeighborParam(matrixId, nodeIds, 2);
    Long2ObjectOpenHashMap<long[]> result = ((SampleNeighborResult) (client.get(new SampleNeighbor(param)))).getNodeIdToNeighbors();
    ObjectIterator<Long2ObjectMap.Entry<long[]>> iter = result.long2ObjectEntrySet().fastIterator();
    LOG.info("==============================sample neighbors result============================");
    Long2ObjectMap.Entry<long[]> entry;
    while (iter.hasNext()) {
        entry = iter.next();
        LOG.info("node id = " + entry.getLongKey() + ", neighbors = " + Arrays.toString(entry.getValue()));
    }
    client.checkpoint(0).get();
    ps.stop(-1);
    PSErrorRequest request = PSErrorRequest.newBuilder().setPsAttemptId(ProtobufUtil.convertToIdProto(psAttempt0Id)).setMsg("out of memory").build();
    master.psError(null, request);
    Thread.sleep(10000);
    param = new SampleNeighborParam(matrixId, nodeIds, -1);
    result = ((SampleNeighborResult) (client.get(new SampleNeighbor(param)))).getNodeIdToNeighbors();
    iter = result.long2ObjectEntrySet().fastIterator();
    LOG.info("==============================sample neighbors result============================");
    while (iter.hasNext()) {
        entry = iter.next();
        LOG.info("node id = " + entry.getLongKey() + ", neighbors = " + Arrays.toString(entry.getValue()));
    }
}
Also used : InitNeighborParam(com.tencent.angel.graph.client.initneighbor2.InitNeighborParam) SampleNeighborResult(com.tencent.angel.graph.client.sampleneighbor2.SampleNeighborResult) Long2ObjectMap(it.unimi.dsi.fastutil.longs.Long2ObjectMap) SampleNeighbor(com.tencent.angel.graph.client.sampleneighbor2.SampleNeighbor) InitNeighbor(com.tencent.angel.graph.client.initneighbor2.InitNeighbor) Long2ObjectOpenHashMap(it.unimi.dsi.fastutil.longs.Long2ObjectOpenHashMap) ParameterServer(com.tencent.angel.ps.ParameterServer) TConnection(com.tencent.angel.ipc.TConnection) SampleNeighborParam(com.tencent.angel.graph.client.sampleneighbor2.SampleNeighborParam) Worker(com.tencent.angel.worker.Worker) MatrixClient(com.tencent.angel.psagent.matrix.MatrixClient) MasterProtocol(com.tencent.angel.master.MasterProtocol) PSErrorRequest(com.tencent.angel.protobuf.generated.PSMasterServiceProtos.PSErrorRequest) Location(com.tencent.angel.common.location.Location) Test(org.junit.Test)

Aggregations

ParameterServer (com.tencent.angel.ps.ParameterServer)6 Test (org.junit.Test)6 Location (com.tencent.angel.common.location.Location)5 TConnection (com.tencent.angel.ipc.TConnection)5 Worker (com.tencent.angel.worker.Worker)5 MatrixClient (com.tencent.angel.psagent.matrix.MatrixClient)4 AngelException (com.tencent.angel.exception.AngelException)3 ParameterServerManager (com.tencent.angel.master.ps.ParameterServerManager)3 MasterProtocol (com.tencent.angel.master.MasterProtocol)2 PSAttempt (com.tencent.angel.master.ps.attempt.PSAttempt)2 AMParameterServer (com.tencent.angel.master.ps.ps.AMParameterServer)2 PSErrorRequest (com.tencent.angel.protobuf.generated.PSMasterServiceProtos.PSErrorRequest)2 PSAttemptId (com.tencent.angel.ps.PSAttemptId)2 ServerMatrix (com.tencent.angel.ps.storage.matrix.ServerMatrix)2 TaskContext (com.tencent.angel.psagent.task.TaskContext)2 PartitionKey (com.tencent.angel.PartitionKey)1 InitNeighbor (com.tencent.angel.graph.client.initneighbor.InitNeighbor)1 InitNeighborOver (com.tencent.angel.graph.client.initneighbor.InitNeighborOver)1 InitNeighborOverParam (com.tencent.angel.graph.client.initneighbor.InitNeighborOverParam)1 InitNeighborParam (com.tencent.angel.graph.client.initneighbor.InitNeighborParam)1