fix: Check if DynamoDB table exists before create#5658
Merged
franciscojavierarceo merged 1 commit intofeast-dev:masterfrom Oct 12, 2025
Merged
fix: Check if DynamoDB table exists before create#5658franciscojavierarceo merged 1 commit intofeast-dev:masterfrom
franciscojavierarceo merged 1 commit intofeast-dev:masterfrom
Conversation
Signed-off-by: ntkathole <nikhilkathole2683@gmail.com>
franciscojavierarceo
approved these changes
Oct 12, 2025
Member
franciscojavierarceo
left a comment
There was a problem hiding this comment.
Probably we could do this for all feature views
franciscojavierarceo
pushed a commit
that referenced
this pull request
Oct 14, 2025
# [0.55.0](v0.54.0...v0.55.0) (2025-10-14) ### Bug Fixes * Added unix_timestamp_val in _serialize_val ([#5659](#5659)) ([35a8423](35a8423)) * BatchFeatureView transformation should persist in Registry Ser/Deserialization ([3364bad](3364bad)) * Check if DynamoDB table exists before create ([#5658](#5658)) ([e7fd506](e7fd506)) * Fix the link to Expedia in the Go Feature Server readme. ([3ed0163](3ed0163)) ### Features * Add Claude instructions ([#5651](#5651)) ([4807a52](4807a52)) * Groups and Namespaces based authorization, for Users and Service Accounts ([#5619](#5619)) ([da6257c](da6257c))
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
What this PR does / why we need it:
This PR adds a proactive table existence check before attempting to create DynamoDB tables during feast apply. This enables Feast to work in environments where IAM roles don't have dynamodb:CreateTable or dynamodb:DeleteTable permissions, allowing organizations to manage DynamoDB tables exclusively through infrastructure-as-code tools like Terraform.
Which issue(s) this PR fixes:
Fixes #5647