cmoog / vscode-sql-notebook

Open SQL files as VSCode Notebooks.
https://marketplace.visualstudio.com/items?itemName=cmoog.sqlnotebook
MIT License
129 stars 18 forks source link

How do I change SQL read limit timeout? #67

Closed mettafore closed 1 year ago

mettafore commented 1 year ago

I'm querying data from a redshift data warehouse. Most queries take beyond the 30 seconds read timeout.

cmoog commented 1 year ago

The query timeout is configurable via the VS Code settings.

You can edit the settings.json file manually, or use the graphical editor.

{
// ...
"SQLNotebook.queryTimeout": 15000,
// ...
}
Screenshot 2023-04-06 at 10 25 23 AM
mettafore commented 1 year ago

Thanks, friend. Noticed that after I opened the issue. Brilliant project by the way. So convenient :)