Skip to content
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

Added delete_engine_wait function that completes once an engine is completely deleted #129

Draft
wants to merge 5 commits into
base: main
Choose a base branch
from

Conversation

antikus
Copy link

@antikus antikus commented Jul 6, 2023

No description provided.

railib/api.py Outdated
@@ -356,8 +366,8 @@ def poll_with_specified_overhead(
time.sleep(duration)


def is_engine_term_state(state: str) -> bool:
return state == "PROVISIONED" or ("FAILED" in state)
def is_engine_term_state(state: str, targetState: str) -> bool:
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't quite understand the change being made here, or at least I think this function name should change to be more clear what the intent is as it no longer just returns boolean 'if engine is in a term state'. Since "PROVISIONED" is passed in lower down, whats the point here?

Copy link
Collaborator

@torkins torkins Jul 6, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

oh I caught it... DELETED is also used below.. so is DELETED not a term state? why wouldn't DELETED be added here?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think to be precise and to avoid a use case where you call create_engine but in response it says DELETED but you still think it got created. This is also how it's written in our Go SDK.


if isinstance(rsp, list):
if len(rsp) == 0:
raise ResourceNotFoundError(f"Resource not found at {url}")
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

is it correct to say that historically an assertion error would be thrown instead of ResourceNotFound? (If so its good, just want to make sure we minor-version bump since surface area is changing)

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nope, the assert was there to check if for some reason we get two resources with the same name. I don't think it was useful since the name is required to be unique for any resource. But even if we do get two resources with the same name for some reason the assert wouldn't do any good for the user as the user would just get confused.

The change is backward incompatible, previously the function would return an empty list if a requested resource not found. So any method like get_engine or get_database would return an empty list when we can't find a resource with the provided name. Ideally, our rest api should handle this and give 404 but since we don't have a rest api for it I emulate this behavior by throwing ResourceNotFoundError.

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

got it, so we're replacing empty list with an error condition to match what a user of a rest api would expect (in this case that they get 1 resource and instead that resource doesn't exist)

@antikus
Copy link
Author

antikus commented Jul 24, 2023

The work is postponed because during the implementation we realized that it requires more design from both the API service and SDK point of view.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants