Hisoka-X commented on code in PR #8233:
URL: https://github.com/apache/seatunnel/pull/8233#discussion_r1922994789
##########
docs/en/seatunnel-engine/slot-allocation-strategy.md:
##########
@@ -0,0 +1,117 @@
+# Slot Allocation Strategy
+
+Slot allocation strategy is an important part of SeaTunnel Engine, which
determines how SeaTunnel Engine allocates tasks to different slots. The slot
allocation strategy is a configurable component, and users can configure the
slot allocation strategy according to their needs.
+
+**Configuration method:**
+
+Set the parameter `slot-allocation-strategy`, optional values are `RANDOM`,
`SYSTEM_LOAD`, `SLOT_RATIO`.
+
+Example:
+
+```yaml
+seatunnel:
+ engine:
+ classloader-cache-mode: true
+ history-job-expire-minutes: 1440
+ backup-count: 1
+ queue-type: blockingqueue
+ print-execution-info-interval: 60
+ print-job-metrics-info-interval: 60
+ slot-service:
+ slot-allocation-strategy: RANDOM
+```
Review Comment:
```suggestion
```yaml
seatunnel:
engine:
slot-service:
slot-allocation-strategy: RANDOM
```
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]