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

Create a new client for async calls #99

Merged
merged 2 commits into from
Mar 31, 2025
Merged

Create a new client for async calls #99

merged 2 commits into from
Mar 31, 2025

Conversation

stangirala
Copy link
Contributor

@stangirala stangirala commented Mar 31, 2025

If we want to use a sync call with the async method we need to make sure we create a new client for each sync call.

This will allow a user to do what is natural with sync methods with a for-loop,

for _ in range(10):
  dataset.ingest(...)

Without this fix the for loop above will fail. This is because we are attempting to re-use the same event loop between calls because we share the client between them. We close the event loop resource when the first call is done, failing the subsequent call.

This PR is one way to fix it.

Another way to fix it would be to accept a list of inputs for the sync method and let the sdk handle the concurrency.

@stangirala stangirala merged commit 45a32b2 into main Mar 31, 2025
1 check failed
@stangirala stangirala deleted the event-loop-sync branch March 31, 2025 23:34
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