Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
30 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
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>
Copy link

Copilot AI Mar 2, 2026

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