-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1236 from spapas/windows-support
- Loading branch information
Showing
5 changed files
with
35 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,4 +12,5 @@ basics/tasks | |
basics/defer | ||
basics/worker | ||
basics/command_line | ||
basics/windows | ||
::: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Running on Windows | ||
|
||
Procrastinate has been manually tested and is known to work on Windows. However, | ||
there are a few things to keep in mind: | ||
|
||
- Due to the way signals are implemented on Windows (in short, they are not fully supported), | ||
the worker will not be able to gracefully stop when receiving a `SIGINT` or `SIGTERM` signal | ||
as described in the {doc}`../production/retry_stalled_jobs` guide. This means that any running | ||
jobs will be halted abruptly. | ||
|
||
- We do not use windows for running Procrastinate in production, so we may not | ||
be aware of all the issues that may arise. | ||
|
||
- There are no automated tests in place for windows, so it's possible you encounter | ||
bugs. If you know what needs to be fixed, we accept | ||
[pull requests](https://github.com/procrastinate-org/procrastinate/pulls). | ||
Thank you! | ||
|
||
Given these limitations, we strongly advise using a Unix-like system for running Procrastinate | ||
in production. Windows should primarily be used for development purposes only. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters