Skip to content

Commit

Permalink
add java memory on dataX java launch params
Browse files Browse the repository at this point in the history
  • Loading branch information
baisui1981 committed Apr 13, 2024
1 parent d57f781 commit 96f2d37
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,10 @@ public class DefaultChainContext implements IExecChainContext {
// 执行阶段跨度
private ExecutePhaseRange executePhaseRange;

@Override
public String getJavaMemSpec() {
return null;
}
// @Override
// public TableDumpFactory getTableDumpFactory() {
// throw new UnsupportedOperationException();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -225,6 +225,11 @@ public String getIndexName() {
return null;
}

@Override
public String getJavaMemSpec() {
return null;
}

@Override
public boolean isDryRun() {
return false;
Expand Down Expand Up @@ -1023,6 +1028,11 @@ public DftJoinTaskContext(ExecutePhaseRange executePhaseRange) {
this.executePhaseRange = executePhaseRange;
}

@Override
public String getJavaMemSpec() {
return null;
}

@Override
public String getIndexName() {
return null;
Expand Down

0 comments on commit 96f2d37

Please sign in to comment.