-
Notifications
You must be signed in to change notification settings - Fork 29k
[SPARK-33483][INFRA][TESTS] Fix rat exclusion patterns and add a LICENSE #30418
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
Conversation
|
cc @rdblue , @HyukjinKwon , @viirya |
|
cc @ScrapCodes for SPARK-1144, too |
dev/.rat-excludes
Outdated
| .*txt | ||
| .*json | ||
| .*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.
Does it also apply to above .txt, .json, .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.
To be safe, yes. Those are also looks suspicious.
|
nice find @dongjoon-hyun ! |
|
Kubernetes integration test starting |
|
Thanks. @viirya , @HyukjinKwon , @sunchao . |
catalogcatalog
| # KIND, either express or implied. See the License for the | ||
| # specific language governing permissions and limitations | ||
| # under the License. | ||
| # |
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 created a JIRA because I touch this file inevitabily.
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.
For this change, we need to wait for the full test result of GitHub Action.
catalogcatalog
catalog| .*\.avsc | ||
| .*\.txt | ||
| .*\.json | ||
| .*\.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.
This hides the directory data and metadata.
| .*\.txt | ||
| .*\.json | ||
| .*\.data | ||
| .*\.log |
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.
This hides catalog directory.
| .*\.res | ||
| flights_tiny.txt.1 | ||
| over1k | ||
| over10k |
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 see. I checked these are .txt
| flights_tiny.txt.1 | ||
| over1k | ||
| over10k | ||
| exported_table/* |
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.
this is .q
|
Kubernetes integration test status failure |
|
Kubernetes integration test starting |
|
@dongjoon-hyun Thanks for fixing this. My bad, this bug have existed for years. |
|
Kubernetes integration test status success |
|
Test build #131314 has finished for PR 30418 at commit
|
|
retest this please |
|
Test build #131316 has finished for PR 30418 at commit
|
|
Kubernetes integration test starting |
|
Kubernetes integration test status failure |
|
Thank you, @HyukjinKwon , @viirya , @ScrapCodes , @sunchao . |
|
Test build #131323 has finished for PR 30418 at commit
|
What changes were proposed in this pull request?
This PR fixes the RAT exclusion rule which was originated from SPARK-1144 (Apache Spark 1.0)
Why are the changes needed?
This prevents the situation like #30415.
Currently, it missed
catalogdirectory due to.logrule.Does this PR introduce any user-facing change?
No.
How was this patch tested?
Pass the CI with the new rule.