Skip to content

Commit

Permalink
Fix slf4j version conflicts (#2196)
Browse files Browse the repository at this point in the history
  • Loading branch information
siyuan0322 committed Nov 3, 2022
1 parent 87b9602 commit fb12c7b
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,12 @@ public static void main(String[] args) throws IOException {

// Avoid java sandbox protection
job.set("odps.isolation.session.enable", "true");
// Don't introduce legacy jar files
job.set("odps.sql.udf.java.retain.legacy", "false");
// Default priority is 9
job.set("odps.instance.priority", "1");
job.set("odps.mr.run.mode", "sql");
job.set("odps.mr.sql.group.enable", "true");

for (Map.Entry<String, GraphElement> entry : tableType.entrySet()) {
if (entry.getValue() instanceof GraphVertex || entry.getValue() instanceof GraphEdge) {
Expand Down

0 comments on commit fb12c7b

Please sign in to comment.