-
Notifications
You must be signed in to change notification settings - Fork 28.5k
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
[SPARK-34944][SQL][TESTS] Replace bigint with int for web_returns and store_returns in TPCDS tests to employ correct data type #32037
Closed
Closed
Changes from 18 commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
5ecd6e2
[SPARK-34944][SQL][TESTS] Employ correct data type for web_returns an…
yaooqinn 936ecfe
update
yaooqinn 081fd00
disable TPC-DS queries with SF=1 tempo
yaooqinn c4e4973
address comments
yaooqinn 59cdca9
Merge branch 'master' of github.com:apache/spark into SPARK-34944
yaooqinn 44a09c7
regen
yaooqinn a58e6f4
add class level comment for TPCDSBase
yaooqinn 4e2dac2
style
yaooqinn 08da3a8
nit
yaooqinn 41293b6
nit
yaooqinn 37fd5cc
Merge branch 'master' of github.com:apache/spark into SPARK-34944
yaooqinn 2e6534b
nit
yaooqinn 2fe53ff
address comments
yaooqinn 0bf17db
Merge branch 'master' of github.com:apache/spark into SPARK-34944
yaooqinn 68fde39
cache?
yaooqinn 4a3cf60
empty
yaooqinn b0283ef
Merge branch 'master' of github.com:apache/spark into SPARK-34944
yaooqinn 2efff16
trigger ci
yaooqinn 3cfc320
Merge branch 'master' of github.com:apache/spark into SPARK-34944
yaooqinn 545a42b
cacah
yaooqinn 98296c2
nit
yaooqinn aa042bf
update cache key via git revision
yaooqinn f129d95
empty
yaooqinn 3ddd450
restore-key
yaooqinn File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We need to always fetch the data?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It failed the first time, so I turned it off, shall I turn it on now
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we need to disable the cache and merge this PR, then enable the cache again? Still seeing the above error if cache on
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What's the mechanism to refresh the cache?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I guess it's based on the catch key here https://github.com/apache/spark/pull/32037/files#diff-48c0ee97c53013d18d6bbae44648f7fab9af2e0bf5b0dc1ca761e18ec5c478f2R484, which is based on the cache data itself(seems a mistake we made before?), and seems that it never changed if we have no opportunity to change the cache data entirely by disabling it. Or let me try to modify the key to rely on the lastest revision of maropu/tpcds-sf-1
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
SGTM
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It may still hit the cache by fuzzy matching of
restore-keys
which seems useless for this case. if fails again, I will remove it too and try again.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
FYI, https://docs.github.com/en/actions/guides/caching-dependencies-to-speed-up-workflows#matching-a-cache-key
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yea, it looks better to check if it can work correctly without
restore-keys
.