Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
64 commits
Select commit Hold shift + click to select a range
6252d13
Subscription: implement IoTConsensus-based subscription
DanielWang2035 Mar 2, 2026
36e3491
fix some issues
DanielWang2035 Mar 3, 2026
8d2ba7d
support seek and WAL retention
DanielWang2035 Mar 6, 2026
0e3b768
refactor
DanielWang2035 Mar 16, 2026
b3c39ff
Merge branch 'master' into consensus-subscription
DanielWang2035 Mar 16, 2026
932617e
refactor
DanielWang2035 Mar 20, 2026
8ba8165
fix
DanielWang2035 Mar 28, 2026
658f0a6
fix
DanielWang2035 Apr 5, 2026
ae9d722
fix part1
DanielWang2035 Apr 6, 2026
e3eedcf
fix part2
DanielWang2035 Apr 6, 2026
a861944
fix part3.1
DanielWang2035 Apr 6, 2026
5a4f7da
fix part3.2
DanielWang2035 Apr 7, 2026
8e53fc6
fix part4.1
DanielWang2035 Apr 7, 2026
32e6d11
merge master
DanielWang2035 Apr 7, 2026
2794d31
fix seek
DanielWang2035 Apr 7, 2026
6f98bd6
fix test
DanielWang2035 Apr 8, 2026
0fbc551
refactor thread model
DanielWang2035 Apr 9, 2026
774427b
add time based retention and column pattern
DanielWang2035 Apr 16, 2026
db92a35
clean old epoch
DanielWang2035 Apr 16, 2026
6e86c0b
add config for consensus subscription
DanielWang2035 Apr 17, 2026
8b275b1
fix comments
DanielWang2035 Apr 17, 2026
c29f262
merge master
DanielWang2035 Apr 17, 2026
cd8edaf
remove some tests
DanielWang2035 Apr 18, 2026
db22cf3
add check for non-IoTConsensus
DanielWang2035 Apr 18, 2026
ff5ff9c
refactor IT
DanielWang2035 Apr 18, 2026
f14cc8f
Merge branch 'master' into consensus-subscription
DanielWang2035 Apr 18, 2026
d92f451
fix review
DanielWang2035 Apr 19, 2026
0447dd1
fix UT & IT
DanielWang2035 Apr 20, 2026
9a47d5d
Merge branch 'master' into consensus-subscription
DanielWang2035 Apr 20, 2026
bae094f
fix comments
DanielWang2035 Apr 21, 2026
8263b0d
fix comments
DanielWang2035 Apr 27, 2026
ef6c909
remove writerEpoch field & unify the order of fields
DanielWang2035 May 7, 2026
80364f3
merge master
DanielWang2035 May 7, 2026
39467c0
fix test
DanielWang2035 May 7, 2026
a4756cf
spotless
DanielWang2035 May 7, 2026
807ab3a
fix IT
DanielWang2035 May 7, 2026
b69a7b5
remove special logic of CONTINUOUS_SAME_SEARCH_INDEX_SEPARATOR_NODE
DanielWang2035 May 14, 2026
0fbba3f
make partial commit responses explicit
DanielWang2035 May 14, 2026
c70bacc
keep processor-buffered messages pinned until release
DanielWang2035 May 14, 2026
77961df
make manual close safe with processor buffers
DanielWang2035 May 14, 2026
43cd5be
tolerate non-owning providers during consensus seek
DanielWang2035 May 15, 2026
ada74c9
Merge branch 'master' into consensus-subscription
DanielWang2035 May 15, 2026
739e308
fix UT
DanielWang2035 May 15, 2026
3d2dbf7
fix IT
DanielWang2035 May 15, 2026
de3d167
refactor progress persist
DanielWang2035 May 17, 2026
ad1a609
merge master
DanielWang2035 May 17, 2026
94faf00
spotless
DanielWang2035 May 17, 2026
38fcc6b
fix some issues
DanielWang2035 May 18, 2026
f393fa2
fix some issues
DanielWang2035 May 18, 2026
c616e59
extract some logic into broker interface
DanielWang2035 May 18, 2026
f42f19e
fix ColumnAlignProcessor
DanielWang2035 May 18, 2026
f361474
simplify some concepts
DanielWang2035 May 18, 2026
9da9880
fix some naming and comments
DanielWang2035 May 18, 2026
b6efcb1
fix some issues
DanielWang2035 May 19, 2026
4968e1d
fix some issues
DanielWang2035 May 20, 2026
ef45738
Merge branch 'master' into consensus-subscription
DanielWang2035 May 20, 2026
3103685
rename
DanielWang2035 May 20, 2026
410aa89
Avoided persisting writer.meta on every successful write & Grouped ad…
DanielWang2035 May 20, 2026
2cda962
rename
DanielWang2035 May 20, 2026
becf7f3
fix
DanielWang2035 May 20, 2026
566ea99
fix
DanielWang2035 May 20, 2026
5ea4280
Merge upstream master into consensus-subscription
VGalaxies Jun 3, 2026
aa6810e
Refine subscription broker routing
VGalaxies Jun 3, 2026
75bacb1
Fix consensus subscription replay dedup
VGalaxies Jun 4, 2026
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
13 changes: 13 additions & 0 deletions example/session/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,17 @@
<version>${project.version}</version>
</dependency>
</dependencies>
<!-- TODO: remove below -->
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>11</source>
<target>11</target>
</configuration>
</plugin>
</plugins>
</build>

Copilot AI Mar 2, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This module overrides the example parent’s compiler level (example/pom.xml sets source/target=8) to Java 11. That can break building examples under the project’s expected Java version and makes the module inconsistent with other examples. Prefer inheriting the parent compiler settings (or updating the parent if the whole examples tree should move to 11) instead of overriding in this module.

Suggested change
<!-- TODO: remove below -->
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>11</source>
<target>11</target>
</configuration>
</plugin>
</plugins>
</build>

Copilot uses AI. Check for mistakes.
</project>
Loading
Loading