Skip to content

Commit

Permalink
Source/Destination Kafka: added support for PLAIN authentication (#12134
Browse files Browse the repository at this point in the history
)

* added support for PLAIN authentication for source-kafka and destination-kafka

* update doc

Co-authored-by: marcosmarxm <marcosmarxm@gmail.com>
  • Loading branch information
2 people authored and suhomud committed May 23, 2022
1 parent 1b13bc2 commit 368711b
Show file tree
Hide file tree
Showing 10 changed files with 13 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@
- name: Kafka
destinationDefinitionId: 9f760101-60ae-462f-9ee6-b7a9dafd454d
dockerRepository: airbyte/destination-kafka
dockerImageTag: 0.1.6
dockerImageTag: 0.1.7
documentationUrl: https://docs.airbyte.io/integrations/destinations/kafka
icon: kafka.svg
- name: Kinesis
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1713,7 +1713,7 @@
supportsDBT: false
supported_destination_sync_modes:
- "append"
- dockerImage: "airbyte/destination-kafka:0.1.6"
- dockerImage: "airbyte/destination-kafka:0.1.7"
spec:
documentationUrl: "https://docs.airbyte.io/integrations/destinations/kafka"
connectionSpecification:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,7 @@
- name: Kafka
sourceDefinitionId: d917a47b-8537-4d0d-8c10-36a9928d4265
dockerRepository: airbyte/source-kafka
dockerImageTag: 0.1.4
dockerImageTag: 0.1.5
documentationUrl: https://docs.airbyte.io/integrations/sources/kafka
icon: kafka.svg
sourceType: database
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3913,7 +3913,7 @@
supportsNormalization: false
supportsDBT: false
supported_destination_sync_modes: []
- dockerImage: "airbyte/source-kafka:0.1.4"
- dockerImage: "airbyte/source-kafka:0.1.5"
spec:
documentationUrl: "https://docs.airbyte.io/integrations/sources/kafka"
connectionSpecification:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ ENV APPLICATION destination-kafka

COPY --from=build /airbyte /airbyte

LABEL io.airbyte.version=0.1.6
LABEL io.airbyte.version=0.1.7
LABEL io.airbyte.name=airbyte/destination-kafka
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,8 @@
"GSSAPI",
"OAUTHBEARER",
"SCRAM-SHA-256",
"SCRAM-SHA-512"
"SCRAM-SHA-512",
"PLAIN"
]
},
"sasl_jaas_config": {
Expand Down
2 changes: 1 addition & 1 deletion airbyte-integrations/connectors/source-kafka/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ ENV APPLICATION source-kafka

COPY --from=build /airbyte /airbyte

LABEL io.airbyte.version=0.1.4
LABEL io.airbyte.version=0.1.5
LABEL io.airbyte.name=airbyte/source-kafka
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,8 @@
"GSSAPI",
"OAUTHBEARER",
"SCRAM-SHA-256",
"SCRAM-SHA-512"
"SCRAM-SHA-512",
"PLAIN"
]
},
"sasl_jaas_config": {
Expand Down
1 change: 1 addition & 0 deletions docs/integrations/destinations/kafka.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@ _NOTE_: Some configurations for SSL are not available yet.

| Version | Date | Pull Request | Subject |
| :--- | :--- | :--- | :--- |
| 0.1.7 | 2022-04-19 | [12134](https://github.com/airbytehq/airbyte/pull/12134) | Add PLAN Auth |
| 0.1.6 | 2022-02-15 | [10186](https://github.com/airbytehq/airbyte/pull/10186) | Add SCRAM-SHA-512 Auth |
| 0.1.5 | 2022-02-14 | [10256](https://github.com/airbytehq/airbyte/pull/10256) | Add `-XX:+ExitOnOutOfMemoryError` JVM option |
| 0.1.4 | 2022-01-31 | [\#9905](https://github.com/airbytehq/airbyte/pull/9905) | Fix SASL config read issue |
Expand Down
2 changes: 2 additions & 0 deletions docs/integrations/sources/kafka.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,8 @@ More info about this can be found in the [Kafka consumer configs documentation s

| Version | Date | Pull Request | Subject |
| :------ | :-------- | :------------------------------------------------------| :---------------------------------------- |
| 0.1.5 | 2022-04-19 | [12134](https://github.com/airbytehq/airbyte/pull/12134) | Add PLAN Auth |
| 0.1.4 | 2022-02-15 | [10186](https://github.com/airbytehq/airbyte/pull/10186) | Add SCRAM-SHA-512 Auth |
| 0.1.3 | 2022-02-14 | [10256](https://github.com/airbytehq/airbyte/pull/10256) | Add `-XX:+ExitOnOutOfMemoryError` JVM option |
| 0.1.2 | 2021-12-21 | [8865](https://github.com/airbytehq/airbyte/pull/8865) | Fix SASL config read issue |
| 0.1.1 | 2021-12-06 | [8524](https://github.com/airbytehq/airbyte/pull/8524) | Update connector fields title/description |

0 comments on commit 368711b

Please sign in to comment.