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: CHANGELOG.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,6 @@
1
+
## 1.5.1 (October 16, 2024)
2
+
* Fixed memory leak in `Re-assembled message` action, when you have more than 1 000 000 messages
3
+
1
4
## 1.5.0 (May 29, 2024)
2
5
* Revitalized `Re-assembled message` action - now all messages are stored in memory within the component and saved to the external storage (Maester) only when needed
3
6
* Added new checkbox `Emit result as array` to `Re-assembled message` action
this.logger.warn(`Local storage is overloaded group "${groupOriginalId}" will be emitted to prevent data loss`);
105
+
this.logger.warn(`Local storage is overloaded group "${groupOriginalId}" will be emitted to prevent data loss (${Math.round(group.groupDataSize/1024/1024)} MB used)`);
94
106
}else{
95
107
this.logger.info(`Group "${groupOriginalId}" is ready by ${readyBySize ? 'Size' : 'Time'}`);
96
108
}
@@ -99,7 +111,8 @@ class GroupsProcessor {
99
111
deletegroup.messages;
100
112
deletegroup.readyAfter;
101
113
deletegroup.maesterId;
102
-
114
+
deletegroup.groupDataSize;
115
+
logMemoryUsage(this.logger);
103
116
awaitthis.emitGroup(fixedGroup,groupOriginalId);
104
117
this.logger.info(`Message with groupId: ${groupOriginalId} was emitted`);
105
118
if(fixedGroup.maesterId){
@@ -161,7 +174,7 @@ class GroupsProcessor {
161
174
this.logger.info('All groups saved to maester, stopping status checker');
0 commit comments