-
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(ingestion/dynamodb): implement pagination for list_tables #8910
Conversation
@asikowitz @mayurinehate could one of you take a look at this? |
metadata-ingestion/src/datahub/ingestion/source/dynamodb/dynamodb.py
Outdated
Show resolved
Hide resolved
metadata-ingestion/src/datahub/ingestion/source/dynamodb/dynamodb.py
Outdated
Show resolved
Hide resolved
metadata-ingestion/src/datahub/ingestion/source/dynamodb/dynamodb.py
Outdated
Show resolved
Hide resolved
@mayurinehate thank you for reviewing. I have addressed your feedback. Please take another look when you get a chance. |
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.
LGTM
Thank you @mayurinehate for reviewing. @asikowitz could you merge it? |
@asikowitz @anshbansal can we merge this now that the CI all seem to pass. |
Also addressed an issue in handling the
include_table_item
config where the same table names in two different regions could clash. The fix is to specify the table name in the format ofregion.table_name
in the config and also does the matching this way in the code.Lastly, use the
region.table_name
when applying the table pattern.