Skip to content

Commit c4de3b3

Browse files
emaxerrnoclaude
andcommitted
db2: register connector and update component metadata
Adds db2_cdc to the enterprise component bundle and registers it in the component info CSV (enterprise, not cloud-safe). Wires into the integration test packages list. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 852a55f commit c4de3b3

4 files changed

Lines changed: 17 additions & 0 deletions

File tree

cmd/tools/integration/packages.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
{"path":"./internal/impl/couchbase"},
1717
{"path":"./internal/impl/cyborgdb","skip":true},
1818
{"path":"./internal/impl/cypher","skip":true},
19+
{"path":"./internal/impl/db2","timeout":"30m"},
1920
{"path":"./internal/impl/elasticsearch/v8"},
2021
{"path":"./internal/impl/elasticsearch/v9"},
2122
{"path":"./internal/impl/gcp"},

internal/plugins/info.csv

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ csv ,input ,csv ,certified ,n
6767
csv ,scanner ,csv ,certified ,n ,y ,y ,
6868
cyborgdb ,output ,cyborgdb ,community ,n ,y ,y ,
6969
cypher ,output ,cypher ,community ,n ,n ,n ,not yet certified for cloud
70+
db2_cdc ,input ,db2_cdc ,enterprise ,n ,n ,n ,requires IBM libdb2.so / libdb2.dylib / db2cli.dll or equivalent on system where this connector runs
7071
decompress ,processor ,decompress ,certified ,n ,y ,y ,
7172
decompress ,scanner ,decompress ,certified ,n ,y ,y ,
7273
dedupe ,processor ,dedupe ,certified ,n ,y ,y ,

public/components/all/package.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ import (
1717
_ "github.com/redpanda-data/connect/v4/public/components/community"
1818

1919
// Import all enterprise components.
20+
_ "github.com/redpanda-data/connect/v4/public/components/db2"
2021
_ "github.com/redpanda-data/connect/v4/public/components/gateway"
2122
_ "github.com/redpanda-data/connect/v4/public/components/gcp/enterprise"
2223
_ "github.com/redpanda-data/connect/v4/public/components/google"

public/components/db2/package.go

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
// Copyright 2026 Redpanda Data, Inc.
2+
//
3+
// Licensed as a Redpanda Enterprise file under the Redpanda Community
4+
// License (the "License"); you may not use this file except in compliance with
5+
// the License. You may obtain a copy of the License at
6+
//
7+
// https://github.com/redpanda-data/connect/blob/main/licenses/rcl.md
8+
9+
package db2
10+
11+
import (
12+
// Bring in the internal plugin definitions.
13+
_ "github.com/redpanda-data/connect/v4/internal/impl/db2"
14+
)

0 commit comments

Comments
 (0)