Skip to content

Commit

Permalink
docs: fix typos of netx.recovery-milli
Browse files Browse the repository at this point in the history
  • Loading branch information
devxb authored Apr 6, 2024
1 parent 18790e7 commit c5362a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ When configured automatically with the `@EnableSaga` annotation, netx uses the f
| **netx.group** | pay-group | The group of distributed nodes. Saga events are sent to only one node within the same group. | |
| **netx.node-id** | 1 | The identifier used for id generation. Each server must be assigned a different id, and ids can be set from 1 to 256. _`Ids are generated using the Twitter Snowflake algorithm to prevent duplicate id generation.`_ | |
| **netx.node-name** | pay-1 | The name of the server participating in the _`netx.group`_. There should be no duplicate names within the same group. | |
| **netx.recovery-milli** | 1000 | Finds and reruns Sagas not processed for _`netx.recovery-milli`_ milliseconds every _`netx.orphan-milli`_ milliseconds. | 1000 |
| **netx.recovery-milli** | 1000 | Finds and reruns Sagas not processed for _`netx.orphan-milli`_ milliseconds every _`netx.recovery-milli`_ milliseconds. | 1000 |
| **netx.orphan-milli** | 60000 | Finds events in the PENDING state that have not become ACK state even after _`netx.orphan-milli`_ milliseconds and restarts them. | 60000 |
| **netx.backpressure** | 40 | Adjusts the number of events that can be received at once. **Setting this too high can cause server load, and setting it too low can reduce performance.** This setting affects the amount of events received from other servers and the amount of events failed to be processed. Unreceived or dropped events are automatically put into the retry queue. | 40 |
| **netx.logging.level** | info | Specifies the logging level. Possible values are: "info", "warn", "off" | "off" |
Expand Down

0 comments on commit c5362a2

Please sign in to comment.