-
Notifications
You must be signed in to change notification settings - Fork 207
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MAINT: deprecate pipeline_configurations with extension (#4428)
* MAINT: deprecate-pipeline_configurations with extension Signed-off-by: George Chen <[email protected]>
- Loading branch information
1 parent
8255920
commit 2e8ea82
Showing
9 changed files
with
65 additions
and
10 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
11 changes: 11 additions & 0 deletions
11
data-prepper-api/src/test/resources/pipeline_with_depreciated_extension.yaml
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,11 @@ | ||
pipeline_configurations: | ||
test_extension: | ||
test-pipeline: | ||
source: | ||
testSource: null | ||
processor: | ||
- testProcessor: null | ||
sink: | ||
- testSink: null | ||
workers: 8 | ||
delay: 50 |
2 changes: 1 addition & 1 deletion
2
data-prepper-api/src/test/resources/pipeline_with_extension.yaml
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
pipeline_configurations: | ||
extension: | ||
test_extension: | ||
test-pipeline: | ||
source: | ||
|
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
File renamed without changes.
27 changes: 27 additions & 0 deletions
27
...repper-pipeline-parser/src/test/resources/valid_pipeline_configuration_with_extension.yml
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,27 @@ | ||
# this configuration file is solely for testing formatting | ||
extension: | ||
test_extension: | ||
test_attribute: test_string_1 | ||
test-pipeline-1: | ||
source: | ||
file: | ||
path: "/tmp/file-source.tmp" | ||
buffer: | ||
bounded_blocking: #to check non object nodes for plugins | ||
sink: | ||
- pipeline: | ||
name: "test-pipeline-2" | ||
test-pipeline-2: | ||
source: | ||
pipeline: | ||
name: "test-pipeline-1" | ||
sink: | ||
- pipeline: | ||
name: "test-pipeline-3" | ||
test-pipeline-3: | ||
source: | ||
pipeline: | ||
name: "test-pipeline-2" | ||
sink: | ||
- file: | ||
path: "/tmp/todelete.txt" |