Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[connector-cdc-postgres] support read partition table #8399

Open
wants to merge 33 commits into
base: dev
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
478e6a3
[connector-cdc-postgres] support read partition table
Dec 29, 2024
9cff46a
[connector-cdc-postgres] support read partition table
Dec 29, 2024
357c77a
[connector-cdc-postgres] support read partition table
Dec 30, 2024
e3bb350
[connector-cdc-postgres] support read partition table
Dec 30, 2024
93f23ad
[connector-cdc-postgres] support read partition table
Dec 30, 2024
77271ba
[connector-cdc-postgres] support read partition table
Dec 30, 2024
d22323d
[connector-cdc-postgres] support read partition table
Dec 30, 2024
39b4f91
[connector-cdc-postgres] support read partition table
Dec 30, 2024
5a6f0e5
Merge branch 'apache:dev' into dev
fanxishu Jan 2, 2025
8a41277
[connector-cdc-postgres] support read partition table
Jan 2, 2025
84d46d9
Merge branch 'dev' of https://github.com/fanxishu/seatunnel into dev
Jan 2, 2025
2de9085
Merge branch 'apache:dev' into dev
fanxishu Jan 5, 2025
32ab654
Merge branch 'apache:dev' into dev
fanxishu Jan 7, 2025
c26ad91
Merge branch 'apache:dev' into dev
fanxishu Jan 8, 2025
cb6b56a
[connector-cdc-postgres] support read partition table
Jan 9, 2025
215268e
[connector-cdc-postgres] support read partition table
Jan 9, 2025
fba3c75
[connector-cdc-postgres] support read partition table
Jan 9, 2025
cc10ba3
[connector-cdc-postgres] support read partition table
Jan 10, 2025
2748beb
Merge branch 'apache:dev' into dev
fanxishu Jan 10, 2025
5a12300
[connector-cdc-postgres] support read partition table
Jan 10, 2025
5102b78
[connector-cdc-postgres] support read partition table
Jan 10, 2025
c8a879e
[connector-cdc-postgres] support read partition table
Jan 10, 2025
f57b97f
[connector-cdc-postgres] support read partition table
Jan 10, 2025
becab95
[Feature][Imap] Support for persistent cluster map without loading i…
Jan 12, 2025
0b71525
[Feature][Imap] Support for persistent cluster map without loading i…
Jan 12, 2025
f1a8e50
[Feature][Imap] Support for persistent cluster map without loading i…
Jan 12, 2025
9231a47
[Feature][Imap] Support for persistent cluster map without loading i…
Jan 12, 2025
ad7750f
The reason for the inquiry is that the previous code submission has n…
Jan 12, 2025
186c592
The reason for the inquiry is that the previous code submission has n…
Jan 12, 2025
4d83a04
The reason for the inquiry is that the previous code submission has n…
Jan 12, 2025
b92dba8
Merge branch 'apache:dev' into dev
fanxishu Jan 17, 2025
024b048
Merge branch 'apache:dev' into dev
fanxishu Jan 20, 2025
41f8726
Merge branch 'apache:dev' into dev
fanxishu Jan 23, 2025
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
Prev Previous commit
Next Next commit
The reason for the inquiry is that the previous code submission has n…
…ot yet been approved.
  • Loading branch information
Xishu Fan committed Jan 12, 2025
commit 4d83a041e7e1302af4901a22bcdc07f4b4e56aac
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,7 @@ public class ServerConfigOptions {
.intType()
.defaultValue(1440)
.withDescription("The expire time of history jobs.time unit minute");

public static final Option<ScheduleStrategy> JOB_SCHEDULE_STRATEGY =
Options.key("job-schedule-strategy")
.enumType(ScheduleStrategy.class)
Expand Down
Loading