Commit 697dd40
authored
Overhaul partition handling (#82)
* GH-75 initial commit for overhauling partition handling
* GH-75 initial commit for overhauling partition handling
* GH-75 add optimization for locking and introduce partition lock table
* GH-75 add more comments and fix tests in core module
* GH-75 add outbox.rebalance-interval to spring-configuration-metadata
* GH-75 add integration tests and improved partition handling
* GH-75 fix tests
* GH-75 remove lock entity and schemas
* GH-75 separate integration tests
* GH-75 add tests
* GH-75 fix run configs [skip ci]
* GH-75 cleanup and improve logging and introduce separate ThreadPoolTaskExecutors for heartbeat and rebalancing
* GH-75 refactored partition handling
* GH-75 cleanup and some more tests
* GH-75 linting
* GH-75 add flyway schema migrations to examples remove oracle support and add some tests
* GH-75 remove pessimistic locking and add comments about potential SqlExceptionHelper messages in log
---------
Authored-by: Roland Beisel <info@rolandbeisel.de>1 parent d62217e commit 697dd40
File tree
110 files changed
+2795
-2075
lines changed- .run
- namastack-outbox-core/src
- main
- kotlin/io/namastack/outbox
- instance
- partition
- retry
- resources/META-INF
- test/kotlin/io/namastack/outbox
- partition
- namastack-outbox-examples
- namastack-outbox-example-h2/src/main/resources
- db/migration
- namastack-outbox-example-mariadb/src/main/resources
- db/migration
- namastack-outbox-example-mysql/src/main
- kotlin/io/namastack/demo/customer
- resources
- db/migration
- namastack-outbox-example-oracle
- gradle/wrapper
- src/main
- kotlin/io/namastack/demo
- customer
- resources
- namastack-outbox-example-postgresql/src/main/resources
- db/migration
- namastack-outbox-example-sqlserver/src/main
- kotlin/io/namastack/demo/customer
- resources
- db/migration
- namastack-outbox-integration-tests
- src/test
- kotlin/io/namastack/outbox
- resources
- namastack-outbox-jpa/src
- main
- kotlin/io/namastack/outbox
- resources/schema
- h2
- mariadb
- mysql
- oracle
- postgres
- sqlserver
- test/kotlin/io/namastack/outbox
- namastack-outbox-metrics/src
- main/kotlin/io/namastack/outbox
- test/kotlin/io/namastack/outbox
- namastack-outbox-performance-tests
- gradle
- wrapper
- namastack-outbox-performance-test-executor
- src/test
- kotlin/io/namastack/performance
- resources
- namastack-outbox-performance-test-processor
- src/main
- kotlin/io/namastack/performance
- resources
- namastack-outbox-performance-test-producer
- src/main
- kotlin/io/namastack/performance
- resources
- namastack-outbox-performance-test
- gradle/wrapper
Some content is hidden
Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
110 files changed
+2795
-2075
lines changedLines changed: 2 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | | - | |
3 | | - | |
| 2 | + | |
| 3 | + | |
4 | 4 | | |
5 | 5 | | |
6 | 6 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
3 | 3 | | |
4 | 4 | | |
5 | 5 | | |
6 | | - | |
| 6 | + | |
7 | 7 | | |
8 | 8 | | |
9 | 9 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
3 | 3 | | |
4 | 4 | | |
5 | 5 | | |
6 | | - | |
| 6 | + | |
7 | 7 | | |
8 | 8 | | |
9 | 9 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
3 | 3 | | |
4 | 4 | | |
5 | 5 | | |
6 | | - | |
| 6 | + | |
7 | 7 | | |
8 | 8 | | |
9 | 9 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
3 | | - | |
| 3 | + | |
4 | 4 | | |
5 | 5 | | |
6 | 6 | | |
| |||
Lines changed: 57 additions & 13 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
3 | 6 | | |
4 | 7 | | |
5 | 8 | | |
| |||
14 | 17 | | |
15 | 18 | | |
16 | 19 | | |
| 20 | + | |
17 | 21 | | |
18 | 22 | | |
19 | 23 | | |
| |||
40 | 44 | | |
41 | 45 | | |
42 | 46 | | |
43 | | - | |
| 47 | + | |
44 | 48 | | |
45 | | - | |
46 | | - | |
47 | | - | |
| 49 | + | |
| 50 | + | |
48 | 51 | | |
49 | 52 | | |
50 | 53 | | |
| |||
56 | 59 | | |
57 | 60 | | |
58 | 61 | | |
| 62 | + | |
59 | 63 | | |
60 | 64 | | |
61 | 65 | | |
62 | 66 | | |
63 | 67 | | |
| 68 | + | |
| 69 | + | |
| 70 | + | |
| 71 | + | |
| 72 | + | |
| 73 | + | |
| 74 | + | |
| 75 | + | |
| 76 | + | |
| 77 | + | |
| 78 | + | |
| 79 | + | |
| 80 | + | |
| 81 | + | |
| 82 | + | |
| 83 | + | |
| 84 | + | |
| 85 | + | |
| 86 | + | |
| 87 | + | |
| 88 | + | |
| 89 | + | |
| 90 | + | |
| 91 | + | |
| 92 | + | |
| 93 | + | |
| 94 | + | |
| 95 | + | |
| 96 | + | |
| 97 | + | |
| 98 | + | |
| 99 | + | |
| 100 | + | |
| 101 | + | |
64 | 102 | | |
65 | 103 | | |
66 | 104 | | |
| |||
91 | 129 | | |
92 | 130 | | |
93 | 131 | | |
94 | | - | |
95 | | - | |
| 132 | + | |
| 133 | + | |
| 134 | + | |
| 135 | + | |
96 | 136 | | |
97 | 137 | | |
98 | 138 | | |
99 | | - | |
100 | | - | |
| 139 | + | |
| 140 | + | |
| 141 | + | |
| 142 | + | |
| 143 | + | |
| 144 | + | |
| 145 | + | |
| 146 | + | |
| 147 | + | |
| 148 | + | |
101 | 149 | | |
102 | 150 | | |
103 | 151 | | |
104 | 152 | | |
105 | 153 | | |
106 | 154 | | |
107 | 155 | | |
108 | | - | |
109 | 156 | | |
110 | 157 | | |
111 | 158 | | |
| |||
118 | 165 | | |
119 | 166 | | |
120 | 167 | | |
121 | | - | |
122 | 168 | | |
123 | 169 | | |
124 | | - | |
125 | | - | |
| 170 | + | |
126 | 171 | | |
127 | 172 | | |
128 | 173 | | |
129 | 174 | | |
130 | 175 | | |
131 | 176 | | |
132 | | - | |
133 | 177 | | |
134 | 178 | | |
135 | 179 | | |
| |||
Lines changed: 4 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
69 | 69 | | |
70 | 70 | | |
71 | 71 | | |
72 | | - | |
| 72 | + | |
| 73 | + | |
| 74 | + | |
73 | 75 | | |
74 | 76 | | |
75 | 77 | | |
76 | | - | |
| 78 | + | |
77 | 79 | | |
78 | 80 | | |
79 | 81 | | |
| |||
0 commit comments