-
Notifications
You must be signed in to change notification settings - Fork 2.9k
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(EntityService): batched transactions and ebean updates #8673
Closed
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
…actions # Conflicts: # metadata-io/src/main/java/com/linkedin/metadata/entity/EntityServiceImpl.java # metadata-io/src/main/java/com/linkedin/metadata/entity/EntityUtils.java # metadata-io/src/test/java/com/linkedin/metadata/entity/EbeanEntityServiceTest.java # metadata-io/src/test/java/com/linkedin/metadata/entity/EntityServiceTest.java # metadata-service/openapi-servlet/src/main/java/io/datahubproject/openapi/util/MappingUtil.java # metadata-service/restli-servlet-impl/src/main/java/com/linkedin/metadata/resources/entity/AspectResource.java # metadata-service/restli-servlet-impl/src/test/java/com/linkedin/metadata/resources/entity/AspectResourceTest.java # metadata-service/services/src/main/java/com/linkedin/metadata/entity/DeleteEntityService.java
…actions # Conflicts: # metadata-service/factories/src/test/java/com/linkedin/metadata/boot/steps/RestoreGlossaryIndicesTest.java
…hed-transactions # Conflicts: # .github/workflows/docker-unified.yml # metadata-io/src/main/java/com/linkedin/metadata/entity/EntityServiceImpl.java
…-batched-transactions # Conflicts: # metadata-io/src/main/java/com/linkedin/metadata/entity/AspectDao.java # metadata-io/src/main/java/com/linkedin/metadata/entity/EntityServiceImpl.java # smoke-test/tests/cypress/cypress/e2e/siblings/siblings.js
…actions # Conflicts: # datahub-graphql-core/src/main/java/com/linkedin/datahub/graphql/resolvers/mutate/util/DeleteUtils.java # datahub-graphql-core/src/main/java/com/linkedin/datahub/graphql/resolvers/mutate/util/DeprecationUtils.java # datahub-graphql-core/src/main/java/com/linkedin/datahub/graphql/resolvers/mutate/util/DomainUtils.java # datahub-graphql-core/src/main/java/com/linkedin/datahub/graphql/resolvers/mutate/util/LabelUtils.java # datahub-graphql-core/src/main/java/com/linkedin/datahub/graphql/resolvers/mutate/util/OwnerUtils.java # metadata-io/src/main/java/com/linkedin/metadata/entity/EntityUtils.java # metadata-io/src/main/java/com/linkedin/metadata/entity/ebean/EbeanAspectDao.java
Improve tx handling Prevent deadlock dropped writes
github-actions
bot
added
docs
Issues and Improvements to docs
product
PR or Issue related to the DataHub UI/UX
devops
PR or Issue related to DataHub backend & deployment
smoke_test
Contains changes related to smoke tests
labels
Aug 18, 2023
@@ -595,7 +595,8 @@ jobs: | |||
platforms: linux/amd64,linux/arm64/v8 | |||
- name: Compute Tag | |||
id: tag | |||
run: echo "tag=${{ (steps.filter.outputs.datahub-ingestion-base == 'true' || steps.filter.outputs.datahub-ingestion == 'true') && needs.setup.outputs.slim_tag || 'head' }}" >> $GITHUB_OUTPUT | |||
# TODO: Replace with `head` once publishing is fixed | |||
run: echo "tag=${{ (steps.filter.outputs.datahub-ingestion-base == 'true' || steps.filter.outputs.datahub-ingestion == 'true') && needs.setup.outputs.slim_tag || 'pr8515-full' }}" >> $GITHUB_OUTPUT |
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.
[actionlint] reported by reviewdog 🐶
shellcheck reported issue in this script: SC2086:info:1:179: Double quote to prevent globbing and word splitting [shellcheck]
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
devops
PR or Issue related to DataHub backend & deployment
docs
Issues and Improvements to docs
product
PR or Issue related to the DataHub UI/UX
smoke_test
Contains changes related to smoke tests
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.
Checking if branch on main repo passes, whereas this PR doesn't due to docker credentials.
Checklist