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
Copy file name to clipboardExpand all lines: README.md
+14-3Lines changed: 14 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
# Overview (4.1.0)
1
+
# Overview (4.1.1)
2
2
3
3
Message store (mstore) is an important th2 component responsible for storing raw messages into Cradle. Please refer to [Cradle repository] (https://github.com/th2-net/cradleapi/blob/master/README.md) for more details. This component has a pin for listening messages via MQ.
4
4
@@ -19,9 +19,9 @@ session alias, direction and sequence number are a **compound unique identifier*
19
19
{
20
20
"drain-interval": 1000,
21
21
"termination-timeout": 5000,
22
-
"maxTaskCount" : 1024,
22
+
"maxTaskCount" : 256,
23
23
"maxTaskDataSize" : 133169152,
24
-
"maxRetryCount" : 3,
24
+
"maxRetryCount" : 1000000,
25
25
"retryDelayBase" : 5000
26
26
}
27
27
```
@@ -74,6 +74,17 @@ spec:
74
74
This is a list of supported features provided by libraries.
75
75
Please see more details about this feature via [link](https://github.com/th2-net/th2-common-j#configuration-formats).
76
76
77
+
## 4.1.1
78
+
79
+
+ Using Cradle 3.1.4. No changes related to message persistence
80
+
+ Changed default configuration to
81
+
```json
82
+
{
83
+
"maxTaskCount": 256,
84
+
"maxRetryCount": 1000000,
85
+
"retryDelayBase": 5000
86
+
}
87
+
```
77
88
## 4.1.0
78
89
+ Added metrics collection for Prometheus
79
90
+ Limiting simultaneously processed message batches by number and content size
0 commit comments