Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions docs/guides/vscode.md
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,10 @@ The SQLMesh VSCode extension provides the following commands in the VSCode comma

## Troubleshooting

### DuckDB concurrent access

If you are using DuckDB as your state store, you are likely to encounter problems with concurrent access to the DuckDB database file. The DuckDB database file is a single file on disk, and it does not support concurrent access from multiple processes. The extension uses a long-running process to provide its features. This long-running requires access, and so there is a risk of database locks. We don't recommend using DuckDB as a state store with the VSCode extension for this reason.
Comment thread
benfdking marked this conversation as resolved.
Outdated

### Python environment woes

The most common problem is the extension not using the correct Python interpreter.
Expand Down