Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1757,7 +1757,7 @@ public void finishTransaction(long dbId, long transactionId, Map<Long, Long> par

public List<TransactionState> getUnFinishedPreviousLoad(long endTransactionId, long dbId, List<Long> tableIdList)
throws UserException {
LOG.info("getUnFinishedPreviousLoad(), endTransactionId:{}, dbId:{}, tableIdList:{}",
LOG.debug("getUnFinishedPreviousLoad(), endTransactionId:{}, dbId:{}, tableIdList:{}",
endTransactionId, dbId, tableIdList);

if (endTransactionId <= 0) {
Expand All @@ -1772,10 +1772,10 @@ public List<TransactionState> getUnFinishedPreviousLoad(long endTransactionId, l
final CheckTxnConflictRequest checkTxnConflictRequest = builder.build();
CheckTxnConflictResponse checkTxnConflictResponse = null;
try {
LOG.info("CheckTxnConflictRequest:{}", checkTxnConflictRequest);
LOG.debug("CheckTxnConflictRequest:{}", checkTxnConflictRequest);
checkTxnConflictResponse = MetaServiceProxy
.getInstance().checkTxnConflict(checkTxnConflictRequest);
LOG.info("CheckTxnConflictResponse: {}", checkTxnConflictResponse);
LOG.debug("CheckTxnConflictResponse: {}", checkTxnConflictResponse);
} catch (RpcException e) {
throw new UserException(e.getMessage());
}
Expand All @@ -1794,7 +1794,7 @@ public List<TransactionState> getUnFinishedPreviousLoad(long endTransactionId, l
@Override
public boolean isPreviousTransactionsFinished(long endTransactionId, long dbId, List<Long> tableIdList)
throws AnalysisException {
LOG.info("isPreviousTransactionsFinished(), endTransactionId:{}, dbId:{}, tableIdList:{}",
LOG.debug("isPreviousTransactionsFinished(), endTransactionId:{}, dbId:{}, tableIdList:{}",
endTransactionId, dbId, tableIdList);

if (endTransactionId <= 0) {
Expand All @@ -1809,10 +1809,10 @@ public boolean isPreviousTransactionsFinished(long endTransactionId, long dbId,
final CheckTxnConflictRequest checkTxnConflictRequest = builder.build();
CheckTxnConflictResponse checkTxnConflictResponse = null;
try {
LOG.info("CheckTxnConflictRequest:{}", checkTxnConflictRequest);
LOG.debug("CheckTxnConflictRequest:{}", checkTxnConflictRequest);
checkTxnConflictResponse = MetaServiceProxy
.getInstance().checkTxnConflict(checkTxnConflictRequest);
LOG.info("CheckTxnConflictResponse: {}", checkTxnConflictResponse);
LOG.debug("CheckTxnConflictResponse: {}", checkTxnConflictResponse);
} catch (RpcException e) {
throw new AnalysisException(e.getMessage());
}
Expand All @@ -1830,7 +1830,7 @@ public boolean isPreviousTransactionsFinished(long endTransactionId, long dbId,

public boolean isPreviousNonTimeoutTxnFinished(long endTransactionId, long dbId, List<Long> tableIdList)
throws AnalysisException {
LOG.info("isPreviousNonTimeoutTxnFinished(), endTransactionId:{}, dbId:{}, tableIdList:{}",
LOG.debug("isPreviousNonTimeoutTxnFinished(), endTransactionId:{}, dbId:{}, tableIdList:{}",
endTransactionId, dbId, tableIdList);

if (endTransactionId <= 0) {
Expand All @@ -1846,10 +1846,10 @@ public boolean isPreviousNonTimeoutTxnFinished(long endTransactionId, long dbId,
final CheckTxnConflictRequest checkTxnConflictRequest = builder.build();
CheckTxnConflictResponse checkTxnConflictResponse = null;
try {
LOG.info("CheckTxnConflictRequest:{}", checkTxnConflictRequest);
LOG.debug("CheckTxnConflictRequest:{}", checkTxnConflictRequest);
checkTxnConflictResponse = MetaServiceProxy
.getInstance().checkTxnConflict(checkTxnConflictRequest);
LOG.info("CheckTxnConflictResponse: {}", checkTxnConflictResponse);
LOG.debug("CheckTxnConflictResponse: {}", checkTxnConflictResponse);
} catch (RpcException e) {
throw new AnalysisException(e.getMessage());
}
Expand Down