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

How to Timeout SQL queries? #182

Closed
LiShangAn opened this issue Apr 12, 2022 · 2 comments
Closed

How to Timeout SQL queries? #182

LiShangAn opened this issue Apr 12, 2022 · 2 comments

Comments

@LiShangAn
Copy link

LiShangAn commented Apr 12, 2022

Hi,

Is there any way to set the cursor timeout to let the hive client wait for the query to execute?

cursor.Exec(ctx, "select * from table1")

Does the HiveConfiguration support this?

Thanks :)

@beltran
Copy link
Owner

beltran commented Apr 13, 2022

Hello, not sure what you mean, I guess something like:

ctx, cancel := context.WithTimeout(context.Background(), time.Duration(value)*time.Seconds)
defer cancel()
cursor.Execute(ctx, "SELECT ...", false)

wouldn't work for you? That way you could set a timeout.

@LiShangAn
Copy link
Author

Thank you :)

That's what i meant.

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

No branches or pull requests

2 participants