Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

RunnerConfiguration's urlPackageSize property got set to 1 #422

Merged
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ All notable changes to AET will be documented in this file.
## Unreleased
**List of changes that are finished but not yet released in any final version.**

- [PR-422](https://github.com/Cognifide/aet/pull/422) RunnerConfiguration's urlPackageSize property got set to 1

## Version 3.1.0

- [PR-409](https://github.com/Cognifide/aet/pull/409) Added sources link in "view source" url
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@

int DEFAULT_MESSAGE_TIME_TO_LIVE_SECONDS = 300;

int DEFAULT_URL_PACKAGE_SIZE = 5;
int DEFAULT_URL_PACKAGE_SIZE = 1;

int DEFAULT_MAX_MESSAGES_IN_COLLECTOR_QUEUE = 20;

Expand Down
2 changes: 1 addition & 1 deletion documentation/src/main/wiki/Runner.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ Use OSGi configuration console and edit `RunnerConfiguration` to change Runner s
| --------- | ------------- | ----------- |
| Failure timeout `ft` | `120 seconds` | Time in seconds, after which suite processing will be interrupted if no notification was received in duration of this parameter. That means if Runner will be not updated by any collection or comparison result in that time it will decide to force stop suite processing. |
| Message ttl `mttl` | `300 seconds` | Time in seconds after which messages will be thrown out of queues. |
| URL Package Size `urlPackageSize` | `5` | Defines how many urls are being sent in one message. Each message is being processed by single CollectorListener. |
| URL Package Size `urlPackageSize` | `1` | Defines how many urls are being sent in one message. Each message is being processed by single CollectorListener. |
| Max Messages in Collector Queue `maxMessagesInCollectorQueue` | `20` | Defines the maximum amount of messages in the collector queue. This is defined for each runner instance separately, that means if you have more than one Runner instance in the system configured, the global number of messages in the queue is the sum of all Runners `maxMessagesInCollectorQueue` values. |
| Max Concurrent Suites Count `maxConcurrentSuitesCount` | `5` | Defines the maximum number of suites processed concurrently byt the Runner. If more suites will come to the system, they will be scheduled for later processing. |
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@

ft=120
mttl=300
urlPackageSize=5
urlPackageSize=1
maxMessagesInCollectorQueue=20
maxConcurrentSuitesCount=3