Skip to content

Commit 0ef2c41

Browse files
authored
Merge pull request killbill#657 from reshmabidikar/minor-corrections
Minor corrections
2 parents 5a1450a + eb4f231 commit 0ef2c41

File tree

3 files changed

+11
-7
lines changed

3 files changed

+11
-7
lines changed

userguide/aviate/aviate-changelog.adoc

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
= Aviate Changelog
22

3+
== February, 24th 2026
4+
5+
* *Plugin Configuration Screen* - There have been several bug fixes in the plugin configuration screen,delivering a smoother and more seamless experience for users. These fixes eliminate previous glitches. As a result, configuring plugins is now faster, more reliable, and less error-prone.
6+
37
== February, 10th 2026
48

59
* *Create Tenant Option* - The Add Tenant form now includes a “Create if missing” option, allowing users to automatically create a tenant in the selected deployment if it does not already exist. This streamlines setup and removes the need for manual pre-creation.

userguide/platform/includes/killbill-configuration-properties-table.adoc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -392,13 +392,13 @@ KB_org_killbill_persistent_bus_${instanceName}_inflight_min |Min number of bus
392392
KB_org_killbill_persistent_bus_${instanceName}_inflight_max |Max number of bus events to fetch from the database at once (only valid in 'STICKY_EVENTS') |100 |Config File/Environment Variable
393393
|org.killbill.persistent.bus.${instanceName}.claimed/
394394
395-
KB_org_killbill_persistent_bus_${instanceName}_claimed |Number of bus events to fetch from the database at once (only valid in 'polling mode') |10 |Config File/Environment Variable
395+
KB_org_killbill_persistent_bus_${instanceName}_claimed |Number of bus events to fetch from the database at once (only valid in 'POLLING' mode) |10 |Config File/Environment Variable
396396
|org.killbill.persistent.bus.${instanceName}.queue.mode/
397397
398-
KB_org_killbill_persistent_bus_${instanceName}_queue_mode |How entries are put in the queue |STICKY_EVENTS |Config File/Environment Variable
398+
KB_org_killbill_persistent_bus_${instanceName}_queue_mode |How entries are put in the queue |POLLING |Config File/Environment Variable
399399
|org.killbill.persistent.bus.${instanceName}.claim.time/
400400
401-
KB_org_killbill_persistent_bus_${instanceName}_claim_time |Claim time |5m |Config File/Environment Variable
401+
KB_org_killbill_persistent_bus_${instanceName}_claim_time |Specifies the duration for which an entry is marked as claimed before it becomes eligible to be reclaimed for processing. |5m |Config File/Environment Variable
402402
|org.killbill.persistent.bus.${instanceName}.sleep/
403403
404404
KB_org_killbill_persistent_bus_${instanceName}_sleep |Time in milliseconds to sleep between runs (only valid in STICKY_POLLING, POLLING) |3000 |Config File/Environment Variable
@@ -462,10 +462,10 @@ KB_org_killbill_persistent_bus_${instanceName}_inflight_max |Max number of bus
462462
KB_org_killbill_notificationq_${instanceName}_claimed |Number of notifications to fetch at once |10 |Config File/Environment Variable
463463
|org.killbill.notificationq.${instanceName}.queue.mode/
464464
465-
KB_org_killbill_notificationq_${instanceName}_queue_mode |How entries are put in the queue |STICKY_POLLING |Config File/Environment Variable
465+
KB_org_killbill_notificationq_${instanceName}_queue_mode |How entries are put in the queue |POLLING |Config File/Environment Variable
466466
|org.killbill.notificationq.${instanceName}.claim.time/
467467
468-
KB_org_killbill_notificationq_${instanceName}_claim_time |Claim time |5m |Config File/Environment Variable
468+
KB_org_killbill_notificationq_${instanceName}_claim_time |Specifies the duration for which an entry is marked as claimed before it becomes eligible to be reclaimed for processing. |5m |Config File/Environment Variable
469469
|org.killbill.notificationq.${instanceName}.sleep/
470470
471471
KB_org_killbill_notificationq_${instanceName}_sleep |Time in milliseconds to sleep between runs |3000 |Config File/Environment Variable

userguide/platform/userguide_deployment.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,9 +107,9 @@ Events are moved from the `bus_events` to the `bus_events_history` as they are p
107107

108108
The bus event can be run in multiple modes (`instanceName` below is either `main` or `external`):
109109

110-
* *POLLING*: the bus will poll the database for new available entries and dispatch them across the nodes.
110+
* *POLLING* (default mode): the bus will poll the database for new available entries and dispatch them across the nodes.
111111
* *STICKY_POLLING*: the bus will poll the database for new available entries and dispatch them to the same node that created the entry.
112-
* *STICKY_EVENTS* (default mode): in that mode, the bus now behaves as a blocking queue where entries are dispatched as soon as they have been committed to disk. This is a much more efficient mechanism both in terms of latency (because entries are picked up right away) and throughput (because there is no time for entries to accumulate).
112+
* *STICKY_EVENTS* : in that mode, the bus now behaves as a blocking queue where entries are dispatched as soon as they have been committed to disk. This is a much more efficient mechanism both in terms of latency (because entries are picked up right away) and throughput (because there is no time for entries to accumulate).
113113

114114
In a cloud environment, where nodes are more prone to appear and disappear, the following choices are available:
115115

0 commit comments

Comments
 (0)