-
-
Notifications
You must be signed in to change notification settings - Fork 757
/
c11_Batching.java
79 lines (68 loc) · 2.7 KB
/
c11_Batching.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
import org.junit.jupiter.api.*;
import reactor.core.publisher.Flux;
import reactor.test.StepVerifier;
import java.time.Duration;
/**
* Another way of controlling amount of data flowing is batching.
* Reactor provides three batching strategies: grouping, windowing, and buffering.
*
* Read first:
*
* https://projectreactor.io/docs/core/release/reference/#advanced-three-sorts-batching
* https://projectreactor.io/docs/core/release/reference/#which.window
*
* Useful documentation:
*
* https://projectreactor.io/docs/core/release/reference/#which-operator
* https://projectreactor.io/docs/core/release/api/reactor/core/publisher/Mono.html
* https://projectreactor.io/docs/core/release/api/reactor/core/publisher/Flux.html
*
* @author Stefan Dragisic
*/
public class c11_Batching extends BatchingBase {
/**
* To optimize disk writing, write data in batches of max 10 items, per batch.
*/
@Test
public void batch_writer() {
//todo do your changes here
Flux<Void> dataStream = null;
dataStream();
writeToDisk(null);
//do not change the code below
StepVerifier.create(dataStream)
.verifyComplete();
Assertions.assertEquals(10, diskCounter.get());
}
/**
* You are implementing a command gateway in CQRS based system. Each command belongs to an aggregate and has `aggregateId`.
* All commands that belong to the same aggregate needs to be sent sequentially, after previous command was sent, to
* prevent aggregate concurrency issue.
* But commands that belong to different aggregates can and should be sent in parallel.
* Implement this behaviour by using `GroupedFlux`, and knowledge gained from the previous exercises.
*/
@Test
public void command_gateway() {
//todo: implement your changes here
Flux<Void> processCommands = null;
inputCommandStream();
sendCommand(null);
//do not change the code below
Duration duration = StepVerifier.create(processCommands)
.verifyComplete();
Assertions.assertTrue(duration.getSeconds() <= 3, "Expected to complete in less than 3 seconds");
}
/**
* You are implementing time-series database. You need to implement `sum over time` operator. Calculate sum of all
* metric readings that have been published during one second.
*/
@Test
public void sum_over_time() {
Flux<Long> metrics = metrics()
//todo: implement your changes here
.take(10);
StepVerifier.create(metrics)
.expectNext(45L, 165L, 255L, 396L, 465L, 627L, 675L, 858L, 885L, 1089L)
.verifyComplete();
}
}