Commit graph

23 commits

Author SHA1 Message Date
fox.cpp
a4b4706dbb
module: Allow config blocks to have more than one name
This allows more readable configuration files without additional
explanations in cases where a single module is used for multiple
purposes.

Also cleans up certain problems with modules that rely on block
names having certain semantics (e.g. endpoint modules).
2019-08-27 19:39:49 +03:00
fox.cpp
d1df9f60be
queue: Fix race-conditions in queue tests
Improper queue initialization by filling fields manually instead of
calling NewQueue resulted in Queue objects created in tests having
no workersStop channel (nil), making Queue.Close no-op. This caused
race-conditions because test code assumes that Queue.Close will wait
for queue goroutines to stop before returning.

Queue late-initialization logic is factored out into Queue.start
function. Now newTestQueueDir calls NewQueue, modifies fields of
returned object and calls Queue.start.
2019-08-27 02:06:13 +03:00
fox.cpp
67a20b5d7d
queue: Print a useful log message when message is removed 2019-08-25 23:37:13 +03:00
fox.cpp
bd918fb4d9
all: Rename module and update imports 2019-08-25 20:32:53 +03:00
fox.cpp
36df546193 Rename DeliveryContext to MsgMetadata, update docs
The name "context" is also used for several other entities. This is
simply confusing. We are getting rid of that fancy word and will leave
it only for context.Context.

Additionally, with the introduction of the new interfaces for most
stuff DeliveryContext struct is no longer used to pass arbitrary
data between modules, it now contains mostly message meta-data and
a few flags, though the latter is now discouraged because it may
lead to problems with concurrency.

Additionally, documentation for some fields in the structure was wrong.

The field DeliveryID is simply renamed to ID for clarity.
2019-08-25 20:23:13 +03:00
fox.cpp
466defa99a queue: Fix the wrong use of Ctx.Header field
Ctx.Header will removed after all code is updated to use new interfaces.
2019-08-25 20:23:13 +03:00
fox.cpp
d07d656472 buffer: Move to a separate package
The module package is meant for interfaces implemented by modules and is
not a catch-all for all utilities.
2019-08-25 20:23:13 +03:00
fox.cpp
f426aa4855 queue: Fix a few linter warnings 2019-08-25 20:23:13 +03:00
fox.cpp
dfeddffec7 queue: Rewrite to implement new delivery target interface
Since queue was too tightly coupled to the old interface. This commit
is basically the ground-up rewrite. I took this chance to add proper
tests and create a cleaner implementation in general.

Below is the list of small modifications to the overall queue design.

* Successful field is removed from PartialError since it turned out to
be redundant.

* testerLog utility is updated to be more useful with t.Parallel()
(used for queue log). Wrapping t.Log makes testing framework associate
log output with tests and output it in right order.

* Message header is now stored in a separate file. This is done instead
of implementing hacks for module.FileBuffer to skip header on each Open.

* Queue.Close now properly waits for workers to stop. It caused problems
with tests where I call Close while queue is attempting delivery.

* Previous failures are stored in QueueMetadata for future use in
bounce messages.
2019-08-25 20:23:13 +03:00
fox.cpp
cfea080b4c Clean up inline module initialization
It was quickly hacked in, built on the pile of broken abstractions
and was source of several bugs.

This commit is almost full rewrite of most functions in config.go.
2019-08-25 20:23:13 +03:00
fox.cpp
47ae6e30c5 Remove most of the old code message dispatching code 2019-08-25 20:23:13 +03:00
fox.cpp
94202a22a6
More pedantic error handling in some places 2019-06-04 16:56:21 +03:00
fox.cpp
d5297903d7
Fix typos fround by misspell 2019-06-01 18:23:38 +03:00
fox.cpp
e349371542 Rework message body handling in pipeline code 2019-06-01 17:36:00 +03:00
fox.cpp
3c8a43578d
Hide some log messages when debug is off
They are barely useful and only flood logs.
2019-05-28 22:00:20 +03:00
fox.cpp
2a4fc99d6b queue: Disallow inline definition without explicit location 2019-05-13 19:37:59 +03:00
fox.cpp
2c54f91047 Allow to define module instances "inline" (see #42) 2019-05-13 19:37:59 +03:00
fox.cpp
0abd78d1e1 queue: Use DeliveryID instead UUIDs 2019-05-05 20:13:22 +03:00
fox.cpp
ed2854f0c9 Adjust retry time to fit RFC 5321 recommendations
Retry in 30 minutes, then scale retry time exponentally up to 2.6 days.
Giving 5 days for 8 retries in total.
2019-05-05 19:29:12 +03:00
fox.cpp
5b861c053c Address PR feedback
/state_directory/configuration_block_name =>
$MADDYSTATE/<configuration_block_name>

Typo: tmeporarly => temporarly

TimeWheel.Stop => TimeWheel.Close

Fix leaked os.File for messages on error (extract logic into separate
function and use defer).

Fix retry time scaling, it is now just q.initialRetryTime with
TriesCount = 1, as it should be.

Fix type assertion in meta-data serialization, IPAddr => TCPAddr.
2019-05-05 19:29:12 +03:00
fox.cpp
78c5bb4a0f queue: Fix maxTries handling 2019-05-05 19:29:12 +03:00
fox.cpp
712c5ae2b0 queue: Interpret location relative to state directory 2019-05-05 19:29:12 +03:00
fox.cpp
0f790d6912 Implement basic queue with on-disk serialization 2019-05-05 19:29:12 +03:00