use of com.tencent.angel.ps.server.data.request.IndexPartGetRowsRequest in project angel by Tencent.
the class IndexGetRowsHandler method parseRequest.
@Override
public RequestData parseRequest(ByteBuf in) {
IndexPartGetRowsRequest request = new IndexPartGetRowsRequest();
request.deserialize(in);
return request;
}
use of com.tencent.angel.ps.server.data.request.IndexPartGetRowsRequest in project angel by Tencent.
the class StreamIndexGetRowsHandler method parseRequest.
@Override
public RequestData parseRequest(ByteBuf in) {
IndexPartGetRowsRequest request = new IndexPartGetRowsRequest();
request.deserializeHeader(in);
request.setIn(in);
return request;
}
use of com.tencent.angel.ps.server.data.request.IndexPartGetRowsRequest in project angel by Tencent.
the class UserRequestAdapter method sendIndexGetRowsRequest.
private void sendIndexGetRowsRequest(MatrixTransportClient matrixClient, int userRequestId, int matrixId, int[] rowIds, int partId, KeyPart keyPart, InitFunc func) {
// Request header
RequestHeader header = createRequestHeader(userRequestId, TransportMethod.INDEX_GET_ROWS, matrixId, partId);
// Request body
IndexPartGetRowsRequest requestData = new IndexPartGetRowsRequest(rowIds, keyPart, func);
// Request
Request request = new Request(header, requestData);
// Send the request
matrixClient.sendGetRequest(request);
}
use of com.tencent.angel.ps.server.data.request.IndexPartGetRowsRequest in project angel by Tencent.
the class StreamIndexGetRowsHandler method handle.
@Override
public ResponseData handle(RequestHeader requestHeader, RequestData data) throws Exception {
IndexPartGetRowsRequest request = (IndexPartGetRowsRequest) data;
IndexPartGetRowsResponse response = new IndexPartGetRowsResponse();
int[] rowIds = request.getRowIds();
int rowNum = rowIds.length;
ServerBasicTypeRow row0 = (ServerBasicTypeRow) context.getMatrixStorageManager().getRow(requestHeader.matrixId, request.getRowIds()[0], requestHeader.partId);
ValueType valueType = MatrixUtils.getValueType(row0.getRowType());
ResponseHeader responseHeader = new ResponseHeader(requestHeader.seqId, requestHeader.methodId, context.getRunningContext().getState(), ResponseType.SUCCESS);
ByteBuf in = request.getInputBuffer();
// Read router type
RouterType routerType = RouterType.valueOf(in.readInt());
// Key type
KeyType keyType = KeyType.valueOf(in.readInt());
// Row id
int rowId = in.readInt();
// Key number
int size = in.readInt();
// Calculate final output buffer len
// Response header
int buffLen = responseHeader.bufferLen();
// Data flag
buffLen += ByteBufSerdeUtils.BOOLEN_LENGTH;
// Value type
buffLen += ByteBufSerdeUtils.INT_LENGTH;
// Row id
buffLen += ByteBufSerdeUtils.INT_LENGTH;
// Size
buffLen += ByteBufSerdeUtils.INT_LENGTH;
// Data
buffLen += size * ByteBufSerdeUtils.serializedValueLen(valueType);
// Allocate result buffer
ByteBuf resultBuf = ByteBufUtils.allocResultBuf(buffLen, context.isUseDirectBuffer());
// Header
responseHeader.serialize(resultBuf);
ByteBufSerdeUtils.serializeBoolean(resultBuf, true);
int colNum = 0;
int markPos = in.readerIndex();
for (int i = 0; i < rowNum; i++) {
in.readerIndex(markPos);
// Serialize Value part head
ByteBufSerdeUtils.serializeInt(resultBuf, valueType.getTypeId());
ByteBufSerdeUtils.serializeInt(resultBuf, rowIds[i]);
ByteBufSerdeUtils.serializeInt(resultBuf, colNum);
ServerBasicTypeRow row = (ServerBasicTypeRow) context.getMatrixStorageManager().getRow(requestHeader.matrixId, rowIds[i], requestHeader.partId);
resultBuf.writeInt(rowIds[i]);
if (request.getFunc() == null) {
row.startRead();
try {
row.indexGet(keyType, colNum, in, resultBuf, null);
} finally {
row.endRead();
}
} else {
row.startWrite();
try {
row.indexGet(keyType, colNum, in, resultBuf, request.getFunc());
} finally {
row.endWrite();
}
}
}
// response.setOutputBuffer(resultBuf);
return response;
}
use of com.tencent.angel.ps.server.data.request.IndexPartGetRowsRequest in project angel by Tencent.
the class IndexGetRowsHandler method handle.
@Override
public ResponseData handle(RequestHeader header, RequestData data) throws Exception {
IndexPartGetRowsRequest request = (IndexPartGetRowsRequest) data;
int[] rowIds = request.getRowIds();
KeyPart keyPart = request.getKeyPart();
ServerRow[] rows = new ServerRow[rowIds.length];
ValuePart[] results = new ValuePart[rowIds.length];
for (int i = 0; i < rowIds.length; i++) {
rows[i] = context.getMatrixStorageManager().getRow(header.matrixId, rowIds[i], header.partId);
rows[i].startRead();
try {
results[i] = ServerRowUtils.getByKeys(rows[i], keyPart);
} finally {
rows[i].endRead();
}
}
IndexPartGetRowsResponse response = new IndexPartGetRowsResponse(results);
return response;
}
Aggregations