risingwave_connector/connector_common/
mod.rs1mod mqtt_common;
18pub use mqtt_common::{MqttCommon, QualityOfService as MqttQualityOfService};
19
20mod common;
21pub use common::{
22 AwsAuthProps, AwsPrivateLinkItem, DISABLE_DEFAULT_CREDENTIAL, KafkaCommon,
23 KafkaConnectionProps, KafkaPrivateLinkCommon, KinesisCommon, MongodbCommon, NatsCommon,
24 NatsConnectionProps, PRIVATE_LINK_BROKER_REWRITE_MAP_KEY, PRIVATE_LINK_TARGETS_KEY,
25 PulsarCommon, PulsarOauthCommon, RdKafkaPropertiesCommon, SHARED_NATS_CLIENT,
26};
27mod connection;
28pub use connection::{
29 ConfluentSchemaRegistryConnection, Connection, ElasticsearchConnection, IcebergConnection,
30 KafkaConnection, SCHEMA_REGISTRY_CONNECTION_TYPE, read_kafka_log_level, validate_connection,
31};
32pub use iceberg::compaction::{IcebergCommittedSnapshot, IcebergSinkCompactionUpdate};
33
34mod iceberg;
35#[cfg(not(madsim))]
36mod maybe_tls_connector;
37pub mod postgres;
38
39pub use iceberg::{
40 IcebergCatalogKind, IcebergCatalogRuntime, IcebergCommon, IcebergTableIdentifier,
41 ResolvedIcebergCatalogConfig, iceberg_java_catalog_props_from_options,
42};
43pub use postgres::{
44 PgConnectionConfig, PostgresExternalTable, SslMode, TcpKeepaliveConfig, create_pg_client,
45 create_pg_client_from_properties, discover_pgvector_dimensions,
46 pg_connection_config_from_properties,
47};
48
49#[cfg(test)]
50mod common_test;