-
Notifications
You must be signed in to change notification settings - Fork 4.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
kafka broker filter: move to contrib
Part of #14078 Signed-off-by: Matt Klein <mklein@lyft.com>
- Loading branch information
1 parent
5789537
commit 9b25b11
Showing
109 changed files
with
382 additions
and
433 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 6 additions & 6 deletions
12
...ce/extensions/filters/network/kafka/BUILD → contrib/kafka/filters/network/source/BUILD
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...ns/filters/network/kafka/broker/config.cc → ...a/filters/network/source/broker/config.cc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
...ons/filters/network/kafka/broker/config.h → ...ka/filters/network/source/broker/config.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...ns/filters/network/kafka/broker/filter.cc → ...a/filters/network/source/broker/filter.cc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...ers/network/kafka/kafka_request_parser.cc → ...rs/network/source/kafka_request_parser.cc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
...ns/filters/network/kafka/kafka_response.h → ...a/filters/network/source/kafka_response.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...rs/network/kafka/kafka_response_parser.cc → ...s/network/source/kafka_response_parser.cc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...rs/network/kafka/mesh/abstract_command.cc → ...s/network/source/mesh/abstract_command.cc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 2 additions & 1 deletion
3
...ers/network/kafka/mesh/abstract_command.h → ...rs/network/source/mesh/abstract_command.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
47 changes: 47 additions & 0 deletions
47
contrib/kafka/filters/network/source/mesh/command_handlers/BUILD
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
load( | ||
"//bazel:envoy_build_system.bzl", | ||
"envoy_cc_library", | ||
"envoy_contrib_package", | ||
) | ||
|
||
licenses(["notice"]) # Apache 2 | ||
|
||
envoy_contrib_package() | ||
|
||
# Handlers for particular Kafka requests that are used by Kafka-mesh filter. | ||
|
||
envoy_cc_library( | ||
name = "metadata_lib", | ||
srcs = [ | ||
"metadata.cc", | ||
], | ||
hdrs = [ | ||
"metadata.h", | ||
], | ||
tags = ["skip_on_windows"], | ||
deps = [ | ||
"//contrib/kafka/filters/network/source:kafka_request_parser_lib", | ||
"//contrib/kafka/filters/network/source:kafka_response_parser_lib", | ||
"//contrib/kafka/filters/network/source/mesh:abstract_command_lib", | ||
"//contrib/kafka/filters/network/source/mesh:upstream_config_lib", | ||
"//source/common/common:minimal_logger_lib", | ||
], | ||
) | ||
|
||
envoy_cc_library( | ||
name = "api_versions_lib", | ||
srcs = [ | ||
"api_versions.cc", | ||
], | ||
hdrs = [ | ||
"api_versions.h", | ||
], | ||
tags = ["skip_on_windows"], | ||
deps = [ | ||
"//contrib/kafka/filters/network/source:kafka_request_parser_lib", | ||
"//contrib/kafka/filters/network/source:kafka_response_parser_lib", | ||
"//contrib/kafka/filters/network/source:tagged_fields_lib", | ||
"//contrib/kafka/filters/network/source/mesh:abstract_command_lib", | ||
"//source/common/common:minimal_logger_lib", | ||
], | ||
) |
6 changes: 3 additions & 3 deletions
6
...fka/mesh/command_handlers/api_versions.cc → ...rce/mesh/command_handlers/api_versions.cc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...afka/mesh/command_handlers/api_versions.h → ...urce/mesh/command_handlers/api_versions.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...k/kafka/mesh/command_handlers/metadata.cc → .../source/mesh/command_handlers/metadata.cc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
...rk/kafka/mesh/command_handlers/metadata.h → ...k/source/mesh/command_handlers/metadata.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.