Commit Graph

1191 Commits

Author SHA1 Message Date
Chris Cranford
2479d811fb DBZ-7018 Allow SQL statements greater than 40kb
In some corner cases, users may have unusually large SQL statements that
need to be buffered due to the number of columns paired with the data in
those columns. Previously we capped this to 4000*10 or 40kb primarily to
address situations with LOB operations that could lead to OOM scenarios.
The new code rather logs a warning when exceeding 100kb and hard faults
ony when the connector sees Integer.MAX_VALUE number of SQL lines for a
single SQL buffer.
2023-10-13 08:40:34 -04:00
Chris Cranford
472d010f7c DBZ-7006 Properly handle escaped CLOB single-quotes 2023-10-11 14:39:12 +02:00
Chris Cranford
e2b871ae7b DBZ-6975 Correctly handle escaped single-quotes in UNISTR arguments 2023-10-11 14:37:44 +02:00
Chris Cranford
67ede63ccc DBZ-6899 Add test-excludes for XStream 2023-10-04 13:47:43 -04:00
Chris Cranford
a3b51b48b9 DBZ-6899 Refactor Oracle streamings metrics 2023-10-04 13:47:43 -04:00
Debezium Builder
40a8f4026d [maven-release-plugin] prepare for next development iteration 2023-10-03 14:18:54 +00:00
Debezium Builder
412c6f7979 [maven-release-plugin] prepare release v2.4.0.Final 2023-10-03 14:18:54 +00:00
Roman Kudryashov
98c426dec4 DBZ-3642 CloudEventsConverter can retrieve metadata info from headers 2023-09-26 13:06:09 +02:00
Debezium Builder
cc1de0aa51 [maven-release-plugin] prepare for next development iteration 2023-09-22 09:00:45 +00:00
Debezium Builder
6809978083 [maven-release-plugin] prepare release v2.4.0.CR1 2023-09-22 09:00:45 +00:00
Jiri Pechanec
bbc8b5b4d6 DBZ-6945 DROP event does not contain table structure 2023-09-22 10:45:00 +02:00
rkerner
6d3528d4fb DBZ-4395 Add connector specific Debezium Connect REST Extension/s and move logic from UI backend to the Debezium Connect REST Extension (part 2 of the re-architecturing/re-factoring)
DBZ-6761 Add "validate connection" endpoints in connector specific Connect REST extensions

closes to https://issues.redhat.com/browse/DBZ-4395
closes to https://issues.redhat.com/browse/DBZ-6761
2023-09-21 13:29:59 +02:00
mfvitale
68eb4b2df2 DBZ-6828 Process drop table events during blocking snapshot 2023-09-20 08:18:33 +02:00
mfvitale
ae199d2053 DBZ-6828 Blocking snapshot will generate schema events only for signaled tables 2023-09-20 08:18:33 +02:00
Chris Cranford
e282817f5c DBZ-6869 Ignore pending transactions with zero START_SCN
Pending transactions with a START_SCN of 0 are considered transactions
that have started before the oldest available archive log and these
will be ignored as the entire transaction cannot be mined.
2023-09-19 15:42:56 -04:00
Chris Cranford
f429118d98 DBZ-6938 Exclude UNUSED redo logs 2023-09-19 15:36:26 -04:00
Chris Cranford
9039a12731 DBZ-6938 Make retry scn-log-check per redo thread 2023-09-19 15:36:26 -04:00
Chris Cranford
3a729932d3 DBZ-6895 Always dispatch heartbeats on commit and checkpoints 2023-09-19 09:00:26 +02:00
Chris Cranford
9bccb2baaf DBZ-6895 Refactor to use Json deserializers 2023-09-19 09:00:26 +02:00
Chris Cranford
1b31c663ff DBZ-6895 Fix OpenLogReplicator confirmation 2023-09-19 09:00:26 +02:00
Jiri Pechanec
f8e4e589d8 DBZ-6903 Use distinct dir for protobuf generated sources 2023-09-13 11:50:47 -04:00
Debezium Builder
65169a9315 [maven-release-plugin] prepare for next development iteration 2023-09-13 09:41:46 +00:00
Debezium Builder
845e3e9d09 [maven-release-plugin] prepare release v2.4.0.Beta2 2023-09-13 09:41:46 +00:00
Chris Cranford
6e10618c94 DBZ-2543 Checkstyle fixes 2023-09-12 18:20:07 -04:00
Chris Cranford
1d9b81b58c DBZ-2543 Confirm only checkpoints 2023-09-12 18:20:07 -04:00
Chris Cranford
e8e11cd40a DBZ-2543 Fix value converter failures 2023-09-12 18:20:07 -04:00
Chris Cranford
46fa3bef4d DBZ-2543 Refactor value conversion logic 2023-09-12 18:20:07 -04:00
Chris Cranford
ca6ccbcd35 DBZ-2543 Remove unnecessary test class 2023-09-12 18:20:07 -04:00
Chris Cranford
e841e6c74d DBZ-2543 Use protoc plugin setup like PostgreSQL 2023-09-12 18:20:07 -04:00
Chris Cranford
c076d9526b DBZ-2543 Remove vert.x dependency 2023-09-12 18:20:07 -04:00
Chris Cranford
2cae1b396d DBZ-2543 Add OpenLogReplicator configuration properties
Added source, host, and port configurable OpenLogReplicator connector properties.
2023-09-12 18:20:07 -04:00
Chris Cranford
0955d0e7d6 DBZ-2543 Disable XML tests for OpenLogReplicator 2023-09-12 18:20:07 -04:00
Chris Cranford
07c7a8236e DBZ-2543 Disable ROWID tests for OpenLogReplicator 2023-09-12 18:20:07 -04:00
Chris Cranford
a87533e4a8 DBZ-2543 Interval data types support 2023-09-12 18:20:07 -04:00
Chris Cranford
51b95e3bfb DBZ-2543 Add timestamp with local time zone support 2023-09-12 18:20:07 -04:00
Chris Cranford
c9f6f4596e DBZ-2543 Clean-up value resolution logic 2023-09-12 18:20:07 -04:00
Chris Cranford
73aa4a6b35 DBZ-2543 Properly decode non-variable RAW data 2023-09-12 18:20:07 -04:00
Chris Cranford
1e803edee8 DBZ-2543 Cleanup timestamptz parsing and DDL handling 2023-09-12 18:20:07 -04:00
Chris Cranford
d130fde297 DBZ-2543 Improve timestamp handling for precision modes 2023-09-12 18:20:07 -04:00
Chris Cranford
26db0b3961 DBZ-2543 Support timestamps with time zone data types 2023-09-12 18:20:07 -04:00
Chris Cranford
748420605e DBZ-2543 Add support for new db field in streaming events 2023-09-12 18:20:07 -04:00
Chris Cranford
2d4d34428d DBZ-2543 Add some streaming metrics 2023-09-12 18:20:07 -04:00
Chris Cranford
d977e9b0f1 DBZ-2543 Initial OpenLogReplicator adapter 2023-09-12 18:20:07 -04:00
Chris Cranford
dd5f1ac0f9 DBZ-6880 Include details about unsupported operations 2023-09-08 14:16:02 -04:00
Chris Cranford
b5700a62c9 DBZ-6880 Move some Oracle log messages to DEBUG 2023-09-08 14:16:02 -04:00
Chris Cranford
a0c67aa0e8 DBZ-6860 Fix NPE Oracle shouldContinueToUpdateOffsetsEvenWhenTableIsNotChanged 2023-08-31 19:13:55 -04:00
Chris Cranford
6aa6b58fdc DBZ-6859 Restore Oracle connector test suite logging 2023-08-31 17:09:25 -04:00
Debezium Builder
d97a18e8dc [maven-release-plugin] prepare for next development iteration 2023-08-29 11:41:08 +00:00
Debezium Builder
5ce25f2cfe [maven-release-plugin] prepare release v2.4.0.Beta1 2023-08-29 11:41:08 +00:00
Ondrej Babec
f03eda1cc4 DBZ-6827 Testing farm onboarding 2023-08-28 10:39:30 +02:00