blob: 5801922171eb364dfbe67ae6118fce2078e7ca80 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.uniffle.client.request;
import com.google.common.annotations.VisibleForTesting;
public class RssGetShuffleDataRequest extends RetryableRequest {
private final String appId;
private final int shuffleId;
private final int partitionId;
private final int partitionNumPerRange;
private final int partitionNum;
private final long offset;
private final int length;
public RssGetShuffleDataRequest(
String appId,
int shuffleId,
int partitionId,
int partitionNumPerRange,
int partitionNum,
long offset,
int length,
int retryMax,
long retryIntervalMax) {
this.appId = appId;
this.shuffleId = shuffleId;
this.partitionId = partitionId;
this.partitionNumPerRange = partitionNumPerRange;
this.partitionNum = partitionNum;
this.offset = offset;
this.length = length;
this.retryMax = retryMax;
this.retryIntervalMax = retryIntervalMax;
}
@VisibleForTesting
public RssGetShuffleDataRequest(
String appId,
int shuffleId,
int partitionId,
int partitionNumPerRange,
int partitionNum,
long offset,
int length) {
this(appId, shuffleId, partitionId, partitionNumPerRange, partitionNum, offset, length, 1, 0);
}
public String getAppId() {
return appId;
}
public int getShuffleId() {
return shuffleId;
}
public int getPartitionId() {
return partitionId;
}
public int getPartitionNumPerRange() {
return partitionNumPerRange;
}
public int getPartitionNum() {
return partitionNum;
}
public long getOffset() {
return offset;
}
public int getLength() {
return length;
}
@Override
public String operationType() {
return "GetShuffleData";
}
}