This repository has been archived by the owner on Sep 18, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 75
[NSE-273]Support spark311 for branch 1.1.1 #319
Merged
zhouyuan
merged 22 commits into
oap-project:branch-1.1-spark-3.1.1
from
zhouyuan:wip_spark311_1.1.1
May 13, 2021
Merged
[NSE-273]Support spark311 for branch 1.1.1 #319
zhouyuan
merged 22 commits into
oap-project:branch-1.1-spark-3.1.1
from
zhouyuan:wip_spark311_1.1.1
May 13, 2021
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* fix decimal divide int issue * correct cpp uts * use const reference Co-authored-by: Yuan <[email protected]> Co-authored-by: Yuan <[email protected]>
* remove testing config * remove unused configs
…roject#266) * change the UnsafeAppend to Append * fix buffer builder in shuffle shuffle builder use UnsafeAppend API for better performance. it tries to reserve enough space based on results of last recordbatch, this maybe not buggy if there's a dense recordbatch after a sparse one. this patch adds below fixes: - adds Reset() after Finish() in builder - reserve length for offset_builder in binary builder A further clean up on the reservation logic should be needed. Signed-off-by: Yuan Zhou <[email protected]> Co-authored-by: Yuan Zhou <[email protected]>
Signed-off-by: Yuan Zhou <[email protected]>
Signed-off-by: Yuan Zhou <[email protected]>
…ect#289) * [NSE-206]Update installation guide and configuration guide. * Fix numaBinding setting issue. & Update description for protobuf
* Adding columnar RDD cache support Signed-off-by: Chendi Xue <[email protected]> * Directly save reference, only convert to Array[Byte] when calling by BlockManager Signed-off-by: Chendi Xue <[email protected]> * Add DeAllocator to construction to make sure this instance will be released once it be deleted by JVM Signed-off-by: Chendi Xue <[email protected]> * Delete cache by adding a release in InMemoryRelation Since unpersist only delete RDD object, seems our deAllocator wasn't being called along Now we added a release function in InMemoryRelation clearCache() func, may need to think a new way for 3.1.0 Signed-off-by: Chendi Xue <[email protected]>
* fix incorrect input in Expand * fix empty input for aggregate * fix only result expressions * fix empty aggregate expressions * fix res attr not found issue * refine * fix count distinct with null * fix groupby of NaN, -0.0 and 0.0 * fix count on mutiple cols with null in WSCG * format code * support normalize NaN and 0.0 * revert and update * support normalize function in WSCG
* [NSE-206]Update documents and remove duplicate parts * Modify documents by comments
Signed-off-by: Yuan Zhou <[email protected]>
* support spark 3.0.2 Signed-off-by: Yuan Zhou <[email protected]> * update to use spark 302 in unit tests Signed-off-by: Yuan Zhou <[email protected]> * support spark 311 Signed-off-by: Yuan Zhou <[email protected]> * fix Signed-off-by: Yuan Zhou <[email protected]> * fix missing dep Signed-off-by: Yuan Zhou <[email protected]> * fix broadcastexchange metrics Signed-off-by: Yuan Zhou <[email protected]> * fix arrow data source Signed-off-by: Yuan Zhou <[email protected]> * fix sum with decimal Signed-off-by: Yuan Zhou <[email protected]> * fix c++ code Signed-off-by: Yuan Zhou <[email protected]> * adding partial sum decimal sum Signed-off-by: Yuan Zhou <[email protected]> * fix hashagg in wscg Signed-off-by: Yuan Zhou <[email protected]> * fix partial sum with number type Signed-off-by: Yuan Zhou <[email protected]> * fix AQE shuffle copy Signed-off-by: Yuan Zhou <[email protected]> * fix shuffle redudant reat Signed-off-by: Yuan Zhou <[email protected]> * fix rebase Signed-off-by: Yuan Zhou <[email protected]> * fix format Signed-off-by: Yuan Zhou <[email protected]> * avoid unecessary fallbacks Signed-off-by: Yuan Zhou <[email protected]> * on-demand scala unit tests Signed-off-by: Yuan Zhou <[email protected]> * clean up Signed-off-by: Yuan Zhou <[email protected]>
Thanks for opening a pull request! Could you open an issue for this pull request on Github Issues? https://github.com/oap-project/native-sql-engine/issues Then could you also rename commit message and pull request title in the following format?
See also: |
zhouyuan
changed the title
Support spark311 for branch 1.1.1
[NSE-273]Support spark311 for branch 1.1.1
May 13, 2021
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
What changes were proposed in this pull request?
backport spark 311 support to 1.1.1 branch
How was this patch tested?
locally verified