Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Correct the logic to truncate Stack map in CodeContext.restoreLocalVariables #148

Closed
wants to merge 3 commits into from

Conversation

maropu
Copy link
Contributor

@maropu maropu commented Jun 2, 2021

This PR proposes to correct the logic for truncating Stack map in CodeContext.restoreLocalVariables.
The current logic:

if (this.currentLocalScope != null) {
StackMap sm = this.currentInserter.getStackMap();
if (sm != null) {
int numLocalsInStackMap = 0;
for (VerificationTypeInfo slot : sm.locals()) {
if (slot != StackMapTableAttribute.TOP_VARIABLE_INFO) {
numLocalsInStackMap++;
}
}
while (numLocalsInStackMap-- > this.allLocalVars.size()) {
sm = sm.popLocal();
}
this.currentInserter.setStackMap(sm);
}
}

The proposed logic:

        // To truncate the stack map, it removes local variables
        // indicated by the popped scope.
        if (this.currentLocalScope != null) {
            StackMap sm = this.currentInserter.getStackMap();
            if (sm != null && sm.locals().length > 0) {
                int numActiveSlots = 0;
                int nextLvIndex = 0;
                for (VerificationTypeInfo slot : sm.locals()) {
                    if (nextLvIndex >= this.nextLocalVariableSlot) break;
                    nextLvIndex += slot.category();
                    numActiveSlots += 1;
                }
                int numRemovedSlots = sm.locals().length - numActiveSlots;
                while (numRemovedSlots-- > 0) sm = sm.popLocal();
                this.currentInserter.setStackMap(sm);
            }
        }

My previous fix in #146 causes another implicit bug and the Spark community found it in apache/spark#32716. The example code to reproduce it is as follows;

class MyClass {
  private boolean b1;

  public MyClass(boolean b1) {
    this.b1 = b1;
  }

   public Object apply(Object i) {
     final int value_0;
     // The bug still exist if the if condition is 'true'. Here we use a variable
     // to make the test more robust, in case the compiler can eliminate the else branch.
     if (b1) {
     } else {
       int field_0 = 1;
     }
     // The second if-else is necessary to trigger the bug.
     if (b1) {
     } else {
       // The bug disappear if it's an int variable.
       long field_1 = 2;
     }
     value_0 = 1;

     // The second final variable is necessary to trigger the bug.
     final int value_2;
     if (b1) {
     } else {
       int field_2 = 3;
     }
     value_2 = 2;

     return null;
   }
}

// When compiling the class above with janino, it throws an exception below;
[info]   Cause: java.lang.AssertionError:
[info]   at org.codehaus.janino.UnitCompiler.updateLocalVariableInCurrentStackMap(UnitCompiler.java:13227)
[info]   at org.codehaus.janino.UnitCompiler.store(UnitCompiler.java:12430)
[info]   at org.codehaus.janino.UnitCompiler.store(UnitCompiler.java:12406)
[info]   at org.codehaus.janino.UnitCompiler.compile2(UnitCompiler.java:2636)
[info]   at org.codehaus.janino.UnitCompiler.access$2700(UnitCompiler.java:231)
[info]   at org.codehaus.janino.UnitCompiler$6.visitLocalVariableDeclarationStatement(UnitCompiler.java:1539)
[info]   at org.codehaus.janino.UnitCompiler$6.visitLocalVariableDeclarationStatement(UnitCompiler.java:1523)
[info]   at org.codehaus.janino.Java$LocalVariableDeclarationStatement.accept(Java.java:3840)
[info]   at org.codehaus.janino.UnitCompiler.compile(UnitCompiler.java:1523)
...

When truncating a stack map, the current logic fails to remove local variable slots referenced by a popped scope, so the assertion in UnitCompiler.java:13227 fails when reusing the slots.

assert nextLvIndex <= lvIndex;

The proposed logic simply removes all local variables slots referenced by a popped scope (from scopeToPop.startingLocalVariableSlot to the end in locals). I added a new test for it and checked that all the existing tests can pass.

@maropu
Copy link
Contributor Author

maropu commented Jun 2, 2021

Could you review this? Thank you in advance @aunkrig @oontvoo

@kiszk
Copy link
Contributor

kiszk commented Jun 9, 2021

Would it be possible to add more complicated test cases? For example,

Both paths have local variables with different levels.

if (b1) {
  double f0  = 1;
} else {
  float f0 = 1;
}

if (b1) {
  int f1 = 0;
} else {
  long f10 = 0;
}

if (b1) {
} else {
  int f2 = 0;
}

Multiple local variables in a block.

if (b1) {
  double f0  = 1;
} else {
  float f0 = 1;
}

if (b1) {
  int f10 = 0;
  long f11 = 0; 
  long f12 = 0; 
} else {
  long f10 = 0;
  int f11 = 0;
  int f12 = 0;
  long f13 = 0;
}

if (b1) {
  double f20 = 0;
  double f21 = 0; 
} else {
  float f20 = 0;
  float f21 = 0;
}

@maropu
Copy link
Contributor Author

maropu commented Jun 11, 2021

Adding more tests looks fine, but the tests above fail in the current master? I run a test with the code below;

        s.cook((""
                + "class MyClass {\n"
                + "    private boolean b1;\n"
                + "\n"
                + "    public MyClass(boolean b1) {\n"
                + "        this.b1 = b1;\n"
                + "    }\n"
                + "\n"
                + "    public Object func(Object i) {\n"
                + "        final int value_0;\n"
                + "        if (b1) {\n"
                + "            double f0  = 1;\n"
                + "        } else {\n"
                + "            float f0 = 1;\n"
                + "        }\n"
                + "\n"
                + "        if (b1) {\n"
                + "            int f1 = 0;\n"
                + "        } else {\n"
                + "            long f10 = 0;\n"
                + "        }\n"
                + "        value_0 = 1;\n"
                + "\n"
                + "        final int value_2;\n"
                + "        if (b1) {\n"
                + "        } else {\n"
                + "            int f2 = 0;\n"
                + "        }\n"
                + "        value_2 = 2;\n"
                + "\n"
                + "        return null;\n"
                + "    }\n"
                + "}\n"
                + "\n"
                + "public class JaninoTest {\n"
                + "    public static Object main() {\n"
                + "        MyClass c = new MyClass(true);\n"
                + "        return c.func(null);\n"
                + "    }\n"
                + "}\n"
        ));

@kiszk
Copy link
Contributor

kiszk commented Jun 11, 2021

I did not run these tests in the current master.
Beyond that, I think that it would be good to increase the test coverage for future development. For example, in the current tests, only one variable exists in the block. What do you think?

@maropu
Copy link
Contributor Author

maropu commented Jun 11, 2021

Yea, adding more test cases is okay to me. But, if that is not directly related to the bug, I think its better to separate PRs.

@kiszk
Copy link
Contributor

kiszk commented Jun 20, 2021

I would like to hear the opinions of others to add more tests in this PR or in a separate PR.

@maropu
Copy link
Contributor Author

maropu commented Jun 21, 2021

kindly ping @aunkrig @oontvoo

@aunkrig
Copy link
Member

aunkrig commented Jun 22, 2021

@maropu More unit tests in this field would be great; however I don't have much time these days. If you volunteer to provide a PR with more tests, I'd be grateful!

@aunkrig aunkrig closed this Jun 22, 2021
@kiszk
Copy link
Contributor

kiszk commented Jun 24, 2021

@aunkrig Why do we need to close this PR? I think that your suggestion is to create another PR to prepare more tests.

I think that we can still work on this PR to resolve an issue.

@HyukjinKwon
Copy link

@aunkrig shall we reopen this PR for visibility? I thought this was merged.

@cloud-fan
Copy link

This PR provides a valid test that fails on the current master, can we move forward and adding more tests later? Downstream libraries are affected by this bug, and hopefully we can have a new janino release with this bug fixed.

@HyukjinKwon
Copy link

Hi @aunkrig can we reopen this or would you mind landing the fix please?

HyukjinKwon pushed a commit to apache/spark that referenced this pull request Jul 13, 2021
…sion to v3.1.4"

### What changes were proposed in this pull request?

This PR reverts #32455 and its followup #32536 , because the new janino version has a bug that is not fixed yet: janino-compiler/janino#148

### Why are the changes needed?

avoid regressions

### Does this PR introduce _any_ user-facing change?

no

### How was this patch tested?

existing tests

Closes #33302 from cloud-fan/revert.

Authored-by: Wenchen Fan <[email protected]>
Signed-off-by: Hyukjin Kwon <[email protected]>
HyukjinKwon pushed a commit to apache/spark that referenced this pull request Jul 13, 2021
…sion to v3.1.4"

### What changes were proposed in this pull request?

This PR reverts #32455 and its followup #32536 , because the new janino version has a bug that is not fixed yet: janino-compiler/janino#148

### Why are the changes needed?

avoid regressions

### Does this PR introduce _any_ user-facing change?

no

### How was this patch tested?

existing tests

Closes #33302 from cloud-fan/revert.

Authored-by: Wenchen Fan <[email protected]>
Signed-off-by: Hyukjin Kwon <[email protected]>
(cherry picked from commit ae6199a)
Signed-off-by: Hyukjin Kwon <[email protected]>
@shardulm94
Copy link

@aunkrig or @maropu Was this ultimately fixed or worked around? One of our users of https://github.com/apache/spark ran into #165 which is fixed now in Janino. But I see that Spark still uses 3.0.x deprecated line of Janino due to this issue. It would be great if Spark can be upgraded to Janino 3.1.x!

@aunkrig
Copy link
Member

aunkrig commented Apr 19, 2022

Hey Shardul,

this one completely passed me by... sorry for that, and thank you for the reminder!

I was able to reproduce the problem in the current version, and merged your fix into the HEAD, and verified that it doesn't break the regression test suite.

Please test!

@aunkrig aunkrig reopened this Apr 19, 2022
aunkrig added a commit that referenced this pull request Apr 19, 2022
@aunkrig
Copy link
Member

aunkrig commented Apr 19, 2022

To celebrate the day, I just published version 3.1.7 which contains this PR.

@shardulm94
Copy link

Thanks @aunkrig! Just to clarify, the PR was raised by @maropu and not me. I was able to test Janino v3.1.7 with the problematic test case mentioned here apache/spark#32716 and it passed.

@maropu @HyukjinKwon @cloud-fan Are we good to upgrade the Janino version in Spark now?

@cloud-fan
Copy link

Great! We can upgrade janino now :)

@aunkrig
Copy link
Member

aunkrig commented Apr 20, 2022

👏

@aunkrig aunkrig closed this May 17, 2022
srowen pushed a commit to apache/spark that referenced this pull request Jul 18, 2022
### What changes were proposed in this pull request?

upgrade janino to 3.1.7 from 3.0.16

### Why are the changes needed?

- The proposed version contains bug fix in janino by maropu.
   - janino-compiler/janino#148
- contains `getBytecodes` method which can be used to simplify the way to get bytecodes from ClassBodyEvaluator in CodeGenerator#updateAndGetCompilationStats method. (by LuciferYang)
   - #32536

### Does this PR introduce _any_ user-facing change?

No

### How was this patch tested?

Existing UTs

Closes #37202 from singhpk234/upgrade/bump-janino.

Authored-by: Prashant Singh <[email protected]>
Signed-off-by: Sean Owen <[email protected]>
a0x8o added a commit to a0x8o/spark that referenced this pull request Jul 18, 2022
### What changes were proposed in this pull request?

upgrade janino to 3.1.7 from 3.0.16

### Why are the changes needed?

- The proposed version contains bug fix in janino by maropu.
   - janino-compiler/janino#148
- contains `getBytecodes` method which can be used to simplify the way to get bytecodes from ClassBodyEvaluator in CodeGenerator#updateAndGetCompilationStats method. (by LuciferYang)
   - apache/spark#32536

### Does this PR introduce _any_ user-facing change?

No

### How was this patch tested?

Existing UTs

Closes #37202 from singhpk234/upgrade/bump-janino.

Authored-by: Prashant Singh <[email protected]>
Signed-off-by: Sean Owen <[email protected]>
a0x8o added a commit to a0x8o/spark that referenced this pull request Dec 30, 2022
### What changes were proposed in this pull request?

upgrade janino to 3.1.7 from 3.0.16

### Why are the changes needed?

- The proposed version contains bug fix in janino by maropu.
   - janino-compiler/janino#148
- contains `getBytecodes` method which can be used to simplify the way to get bytecodes from ClassBodyEvaluator in CodeGenerator#updateAndGetCompilationStats method. (by LuciferYang)
   - apache/spark#32536

### Does this PR introduce _any_ user-facing change?

No

### How was this patch tested?

Existing UTs

Closes #37202 from singhpk234/upgrade/bump-janino.

Authored-by: Prashant Singh <[email protected]>
Signed-off-by: Sean Owen <[email protected]>
a0x8o added a commit to a0x8o/spark that referenced this pull request Dec 30, 2022
### What changes were proposed in this pull request?

upgrade janino to 3.1.7 from 3.0.16

### Why are the changes needed?

- The proposed version contains bug fix in janino by maropu.
   - janino-compiler/janino#148
- contains `getBytecodes` method which can be used to simplify the way to get bytecodes from ClassBodyEvaluator in CodeGenerator#updateAndGetCompilationStats method. (by LuciferYang)
   - apache/spark#32536

### Does this PR introduce _any_ user-facing change?

No

### How was this patch tested?

Existing UTs

Closes #37202 from singhpk234/upgrade/bump-janino.

Authored-by: Prashant Singh <[email protected]>
Signed-off-by: Sean Owen <[email protected]>
senthh pushed a commit to acceldata-io/spark3 that referenced this pull request Sep 4, 2024
### What changes were proposed in this pull request?

upgrade janino to 3.1.7 from 3.0.16

### Why are the changes needed?

- The proposed version contains bug fix in janino by maropu.
   - janino-compiler/janino#148
- contains `getBytecodes` method which can be used to simplify the way to get bytecodes from ClassBodyEvaluator in CodeGenerator#updateAndGetCompilationStats method. (by LuciferYang)
   - apache#32536

### Does this PR introduce _any_ user-facing change?

No

### How was this patch tested?

Existing UTs

Closes apache#37202 from singhpk234/upgrade/bump-janino.

Authored-by: Prashant Singh <[email protected]>
Signed-off-by: Sean Owen <[email protected]>

(cherry picked from commit 29ed337)
shubhluck pushed a commit to acceldata-io/spark3 that referenced this pull request Sep 13, 2024
* ODP-2189 Upgrade snakeyaml version to 2.0

* [SPARK-35579][SQL] Bump janino to 3.1.7

### What changes were proposed in this pull request?

upgrade janino to 3.1.7 from 3.0.16

### Why are the changes needed?

- The proposed version contains bug fix in janino by maropu.
   - janino-compiler/janino#148
- contains `getBytecodes` method which can be used to simplify the way to get bytecodes from ClassBodyEvaluator in CodeGenerator#updateAndGetCompilationStats method. (by LuciferYang)
   - apache#32536

### Does this PR introduce _any_ user-facing change?

No

### How was this patch tested?

Existing UTs

Closes apache#37202 from singhpk234/upgrade/bump-janino.

Authored-by: Prashant Singh <[email protected]>
Signed-off-by: Sean Owen <[email protected]>

(cherry picked from commit 29ed337)

* [SPARK-40633][BUILD] Upgrade janino to 3.1.9

### What changes were proposed in this pull request?
This pr aims upgrade janino from 3.1.7 to 3.1.9

### Why are the changes needed?
This version bring some improvement and bug fix, and janino 3.1.9 will no longer test Java 12, 15, 16 because these STS versions have been EOL:

- janino-compiler/janino@v3.1.7...v3.1.9

### Does this PR introduce _any_ user-facing change?
No

### How was this patch tested?
- Pass GitHub Actions
- Manual test this pr with Scala 2.13, all test passed

Closes apache#38075 from LuciferYang/SPARK-40633.

Lead-authored-by: yangjie01 <[email protected]>
Co-authored-by: YangJie <[email protected]>
Signed-off-by: Sean Owen <[email protected]>

(cherry picked from commit 49e102b)

* ODP-2167 Upgrade janino version from 3.1.9 to 3.1.10

* ODP-2190 Upgrade guava version to 32.1.3-jre

* ODP-2193 Upgrade jettison version to 1.5.4

* ODP-2194 Upgrade wildfly-openssl version to 1.1.3

* ODP-2198 Upgrade gson version to 2.11.0

* ODP-2199 Upgrade kryo-shaded version to 4.0.3

* ODP-2200 Upgrade datanucleus-core and datanucleus-rdbms versions to 5.2.3

* ODP-2203 Upgrade Snappy and common-compress to 1.1.10.4 and 1.26.0 respectively

* ODP-2198 Excluded gson from tink library

* ODP-2205 Upgrade jdom2 to 2.0.6.1

* ODP-2198 Excluded gson from hive-exec

* ODP-2175|SPARK-47018 Upgrade libthrift version and hive version

* [SPARK-39688][K8S] `getReusablePVCs` should handle accounts with no PVC permission

### What changes were proposed in this pull request?

This PR aims to handle `KubernetesClientException` in `getReusablePVCs` method to handle gracefully the cases where accounts has no PVC permission including `listing`.

### Why are the changes needed?

To prevent a regression in Apache Spark 3.4.

### Does this PR introduce _any_ user-facing change?

No.

### How was this patch tested?

Pass the CIs with the newly added test case.

Closes apache#37095 from dongjoon-hyun/SPARK-39688.

Authored-by: Dongjoon Hyun <[email protected]>
Signed-off-by: Dongjoon Hyun <[email protected]>

(cherry picked from commit 79f133b)

* [SPARK-40458][K8S] Bump Kubernetes Client Version to 6.1.1

### What changes were proposed in this pull request?

Bump kubernetes-client version from 5.12.3 to 6.1.1 and clean up all the deprecations.

### Why are the changes needed?

To keep up with kubernetes-client [changes](fabric8io/kubernetes-client@v5.12.3...v6.1.1).
As this is an upgrade where the main version changed I have cleaned up all the deprecations.

### Does this PR introduce _any_ user-facing change?

No.

### How was this patch tested?

#### Unit tests

#### Manual tests for submit and application management

Started an application in a non-default namespace (`bla`):

```
➜  spark git:(SPARK-40458) ✗ ./bin/spark-submit \
    --master k8s://http://127.0.0.1:8001 \
    --deploy-mode cluster \
    --name spark-pi \
    --class org.apache.spark.examples.SparkPi \
    --conf spark.executor.instances=5 \
    --conf spark.kubernetes.namespace=bla \
    --conf spark.kubernetes.container.image=docker.io/kubespark/spark:3.4.0-SNAPSHOT_064A99CC-57AF-46D5-B743-5B12692C260D \
    local:///opt/spark/examples/jars/spark-examples_2.12-3.4.0-SNAPSHOT.jar 200000
```

Check that we cannot find it in the default namespace even with glob without the namespace definition:

```
➜  spark git:(SPARK-40458) ✗ minikube kubectl -- config set-context --current --namespace=default
Context "minikube" modified.
➜  spark git:(SPARK-40458) ✗ ./bin/spark-submit --status "spark-pi-*" --master k8s://http://127.0.0.1:8001
Submitting a request for the status of submission spark-pi-* in k8s://http://127.0.0.1:8001.
No applications found.
```

Then check we can find it by specifying the namespace:
```
➜  spark git:(SPARK-40458) ✗ ./bin/spark-submit --status "bla:spark-pi-*" --master k8s://http://127.0.0.1:8001
Submitting a request for the status of submission bla:spark-pi-* in k8s://http://127.0.0.1:8001.
Application status (driver):
         pod name: spark-pi-4c4e70837c86ae1a-driver
         namespace: bla
         labels: spark-app-name -> spark-pi, spark-app-selector -> spark-c95a9a0888214c01a286eb7ba23980a0, spark-role -> driver, spark-version -> 3.4.0-SNAPSHOT
         pod uid: 0be8952e-3e00-47a3-9082-9cb45278ed6d
         creation time: 2022-09-27T01:19:06Z
         service account name: default
         volumes: spark-local-dir-1, spark-conf-volume-driver, kube-api-access-wxnqw
         node name: minikube
         start time: 2022-09-27T01:19:06Z
         phase: Running
         container status:
                 container name: spark-kubernetes-driver
                 container image: kubespark/spark:3.4.0-SNAPSHOT_064A99CC-57AF-46D5-B743-5B12692C260D
                 container state: running
                 container started at: 2022-09-27T01:19:07Z
```

Changing the namespace to `bla` with `kubectl`:

```
➜  spark git:(SPARK-40458) ✗  minikube kubectl -- config set-context --current --namespace=bla
Context "minikube" modified.
```

Checking we can find it without specifying the namespace (and glob):
```
➜  spark git:(SPARK-40458) ✗  ./bin/spark-submit --status "spark-pi-*" --master k8s://http://127.0.0.1:8001
Submitting a request for the status of submission spark-pi-* in k8s://http://127.0.0.1:8001.
Application status (driver):
         pod name: spark-pi-4c4e70837c86ae1a-driver
         namespace: bla
         labels: spark-app-name -> spark-pi, spark-app-selector -> spark-c95a9a0888214c01a286eb7ba23980a0, spark-role -> driver, spark-version -> 3.4.0-SNAPSHOT
         pod uid: 0be8952e-3e00-47a3-9082-9cb45278ed6d
         creation time: 2022-09-27T01:19:06Z
         service account name: default
         volumes: spark-local-dir-1, spark-conf-volume-driver, kube-api-access-wxnqw
         node name: minikube
         start time: 2022-09-27T01:19:06Z
         phase: Running
         container status:
                 container name: spark-kubernetes-driver
                 container image: kubespark/spark:3.4.0-SNAPSHOT_064A99CC-57AF-46D5-B743-5B12692C260D
                 container state: running
                 container started at: 2022-09-27T01:19:07Z
```

Killing the app:
```
➜  spark git:(SPARK-40458) ✗  ./bin/spark-submit --kill "spark-pi-*" --master k8s://http://127.0.0.1:8001
Submitting a request to kill submission spark-pi-* in k8s://http://127.0.0.1:8001. Grace period in secs: not set.
Deleting driver pod: spark-pi-4c4e70837c86ae1a-driver.
```

Closes apache#37990 from attilapiros/SPARK-40458.

Authored-by: attilapiros <[email protected]>
Signed-off-by: Dongjoon Hyun <[email protected]>

(cherry picked from commit fa88651)

* [SPARK-36462][K8S] Add the ability to selectively disable watching or polling

### What changes were proposed in this pull request?

Add the ability to selectively disable watching or polling

Updated version of apache#34264

### Why are the changes needed?

Watching or polling for pod status on Kubernetes can place additional load on etcd, with a large number of executors and large number of jobs this can have negative impacts and executors register themselves with the driver under normal operations anyways.

### Does this PR introduce _any_ user-facing change?

Two new config flags.

### How was this patch tested?

New unit tests + manually tested a forked version of this on an internal cluster with both watching and polling disabled.

Closes apache#36433 from holdenk/SPARK-36462-allow-spark-on-kube-to-operate-without-watchers.

Lead-authored-by: Holden Karau <[email protected]>
Co-authored-by: Holden Karau <[email protected]>
Signed-off-by: Dongjoon Hyun <[email protected]>

(cherry picked from commit 5bffb98)

* ODP-2201|SPARK-48867 Upgrade okhttp to 4.12.0, okio to 3.9.0 and esdk-obs-java to 3.24.3

* [SPARK-41958][CORE][3.3] Disallow arbitrary custom classpath with proxy user in cluster mode

Backporting fix for SPARK-41958 to 3.3 branch from apache#39474
Below description from original PR.

--------------------------

### What changes were proposed in this pull request?

This PR proposes to disallow arbitrary custom classpath with proxy user in cluster mode by default.

### Why are the changes needed?

To avoid arbitrary classpath in spark cluster.

### Does this PR introduce _any_ user-facing change?

Yes. User should reenable this feature by `spark.submit.proxyUser.allowCustomClasspathInClusterMode`.

### How was this patch tested?

Manually tested.

Closes apache#39474 from Ngone51/dev.

Lead-authored-by: Peter Toth <peter.tothgmail.com>
Co-authored-by: Yi Wu <yi.wudatabricks.com>
Signed-off-by: Hyukjin Kwon <gurwls223apache.org>

(cherry picked from commit 909da96)

### What changes were proposed in this pull request?

### Why are the changes needed?

### Does this PR introduce _any_ user-facing change?

### How was this patch tested?

Closes apache#41428 from degant/spark-41958-3.3.

Lead-authored-by: Degant Puri <[email protected]>
Co-authored-by: Peter Toth <[email protected]>
Signed-off-by: Dongjoon Hyun <[email protected]>

* ODP-2049 Changing Spark3 version from 3.3.3.3.2.3.2-2 to 3.3.3.3.2.3.2-201

* ODP-2049 Changing libthrift version to 0.16 in deps files

* ODP-2049 Changing derby version to 10.14.3.0

---------

Signed-off-by: Dongjoon Hyun <[email protected]>
Co-authored-by: Prashant Singh <[email protected]>
Co-authored-by: yangjie01 <[email protected]>
Co-authored-by: Dongjoon Hyun <[email protected]>
Co-authored-by: attilapiros <[email protected]>
Co-authored-by: Holden Karau <[email protected]>
Co-authored-by: Degant Puri <[email protected]>
Co-authored-by: Peter Toth <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

6 participants