You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`ignore_patterns`| Files that match glob patterns specified in this list are ignored when scanning the project folder (Default: `[]`) | list[string]| N |
22
-
|`project`| The project name of this config. Used for [multi-repo setups](../guides/multi_repo.md). | string | N |
|`ignore_patterns`| Files that match glob patterns specified in this list are ignored when scanning the project folder (Default: `[]`) | list[string]| N |
22
+
|`project`| The project name of this config. Used for [multi-repo setups](../guides/multi_repo.md). | string | N |
23
23
24
24
### Environments
25
25
@@ -291,3 +291,8 @@ You can disable collection of anonymized usage information with these methods:
291
291
292
292
- Set the root `disable_anonymized_analytics: true` key in your SQLMesh project configuration file
293
293
- Execute SQLMesh commands with an environment variable `SQLMESH__DISABLE_ANONYMIZED_ANALYTICS` set to `1`, `true`, `t`, `yes`, or `y`
294
+
295
+
## Parallel loading
296
+
SQLMesh by default uses all of your cores when loading models and snapshots. It takes advantage of `fork` which is not available on Windows. The default is to use the same number of workers as cores on your machine if fork is available.
297
+
298
+
You can override this setting by setting the environment variable `MAX_FORK_WORKERS`. A value of 1 will disable forking and load things sequentially.
0 commit comments