-
Notifications
You must be signed in to change notification settings - Fork 4k
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
feat(glue-alpha): adding partition projection #27490
Conversation
This PR has been in the BUILD FAILING state for 3 weeks, and looks abandoned. To keep this PR from being closed, please continue work on it. If not, it will automatically be closed in a week. |
This PR has been in the BUILD FAILING state for 3 weeks, and looks abandoned. To keep this PR from being closed, please continue work on it. If not, it will automatically be closed in a week. |
Is there someone from the maintainers/reviewers who can help with pushing this forward? I don't know how to get it to pass the build, as I don't have access to this environment and I don't see why it is failing. |
Hey, apologies for the delay. Someone from the team will take a look at this. At a brief glance, I see in the logs,
Looks like these are linting errors. I think these could be fixed with the |
Hey, were you not able to access the build logs? We posted a link in this comment: #27490 (comment) |
Thank you for the prompt reply over Slack. I fixed the linting issues. I hope that the build will run now and pass successfully. |
The build failed again, and I could access the build log as suggested. It wasn't helpful as the logs are long and full of errors that I have no control over. I didn't find any linting errors as were detected previously by @vinayak-kukreja . Any additional suggestions are welcome. |
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.
Hey, @guyernest I see the following error,
@aws-cdk/aws-glue-alpha: README.md:293 MD028/no-blanks-blockquote Blank line inside blockquote
@aws-cdk/aws-glue-alpha: Error: ''"'"'/usr/bin/node'"'"'' -- /codebuild/output/src2608913370/src/github.com/aws/aws-cdk/node_modules/markdownlint-cli/markdownlint.js --config /codebuild/output/src2608913370/src/github.com/aws/aws-cdk/tools/@aws-cdk/cdk-build-tools/config/markdownlint.json README.md exited with error code 1
@aws-cdk/aws-glue-alpha: Build failed.!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
@aws-cdk/aws-glue-alpha: �[2K�[1G@aws-cdk/aws-glue-alpha: �[31merror�[39m Command failed with exit code 1.
@aws-cdk/aws-glue-alpha: �[2K�[1G@aws-cdk/aws-glue-alpha: �[34minfo�[39m Visit �[1mhttps://yarnpkg.com/en/docs/cli/run�[22m for documentation about this command.
I am curious, are you seeing these fail in PR builds or local builds too?
AWS CodeBuild CI Report
Powered by github-codebuild-logs, available on the AWS Serverless Application Repository |
I give up. I don't have time to waste on adding docstring to |
I give up. I don't have time to waste on adding docstring to |
The partition projection feature in Athena and Glue needed to be supported correctly in the S3Table implementation. The table properties from the partition project were not added to the Parameters section of TableInput.
The new implementation allows the definition of the different types of partition projection, including date, integer and enum,
Closes: #27365