issue_owner_repo
listlengths
2
2
issue_body
stringlengths
0
262k
issue_title
stringlengths
1
1.02k
issue_comments_url
stringlengths
53
116
issue_comments_count
int64
0
2.49k
issue_created_at
stringdate
1999-03-17 02:06:42
2025-06-23 11:41:49
issue_updated_at
stringdate
2000-02-10 06:43:57
2025-06-23 11:43:00
issue_html_url
stringlengths
34
97
issue_github_id
int64
132
3.17B
issue_number
int64
1
215k
[ "opensearch-project", "data-prepper" ]
**Is your feature request related to a problem? Please describe.** S3 Scan has `start_time`, `end_time`, and `range` at the global level for s3 scan, and not for each individual bucket **Describe the solution you'd like** change the current configuration of this ``` s3: codec: newline: a...
S3 Scan Configuration Improvement
https://api.github.com/repos/opensearch-project/data-prepper/issues/2737/comments
1
2023-05-23T15:09:43Z
2023-06-26T16:11:42Z
https://github.com/opensearch-project/data-prepper/issues/2737
1,722,280,463
2,737
[ "opensearch-project", "data-prepper" ]
**Is your feature request related to a problem? Please describe.** Pull based sources (S3, OpenSearch) collect data in temporary buffer (`BufferAccumulator`) prior to writing the data to Data Prepper buffer. This code is an exact copy and this will have us supporting the same class in multiple places. We will likely e...
Common Buffer Accumulator
https://api.github.com/repos/opensearch-project/data-prepper/issues/2736/comments
0
2023-05-23T15:08:14Z
2023-05-23T16:50:50Z
https://github.com/opensearch-project/data-prepper/issues/2736
1,722,277,831
2,736
[ "opensearch-project", "data-prepper" ]
**Is your feature request related to a problem? Please describe.** S3 Scan configuration requires both start and end time to be able to use the scan feature ``` s3: codec: newline: aws: region: "us-west-2" sts_role_arn: "arn:aws:iam::123456789012:role/s3-role" scan: ...
S3 Scan Requires start and end time
https://api.github.com/repos/opensearch-project/data-prepper/issues/2735/comments
2
2023-05-23T15:06:41Z
2023-06-26T16:11:43Z
https://github.com/opensearch-project/data-prepper/issues/2735
1,722,275,117
2,735
[ "opensearch-project", "data-prepper" ]
**Is your feature request related to a problem? Please describe.** The new S3 sink should be able to notify the end-to-end acknowledgement framework that an event is complete. **Describe the solution you'd like** Notify the end-to-end acknowledgements when events are flushed to S3.
Support end-to-end acknowledgements in the S3 sink
https://api.github.com/repos/opensearch-project/data-prepper/issues/2732/comments
0
2023-05-22T23:14:37Z
2023-05-31T21:30:44Z
https://github.com/opensearch-project/data-prepper/issues/2732
1,720,785,623
2,732
[ "opensearch-project", "data-prepper" ]
**Is your feature request related to a problem? Please describe.** A Data Prepper administrator can change the log4j file. But it is not possible to override the value. **Describe the solution you'd like** Allow setting the configuration file via `JAVA_OPTS`. See the following: ``` env JAVA_OPTS="-Dlog4j.c...
Support overriding the Log4j configuration file location
https://api.github.com/repos/opensearch-project/data-prepper/issues/2720/comments
1
2023-05-19T19:03:29Z
2023-05-31T21:29:27Z
https://github.com/opensearch-project/data-prepper/issues/2720
1,717,692,014
2,720
[ "opensearch-project", "data-prepper" ]
**Is your feature request related to a problem? Please describe.** Users of Data Prepper should be able to reference or key off elements (fields & metadata) within an event in a unified way through pipeline configurations. Currently users can reference fields within an event like `${foo}` and expressions reference fie...
Unified mechanism to reference elements within an Event from the pipeline configuration
https://api.github.com/repos/opensearch-project/data-prepper/issues/2719/comments
3
2023-05-19T18:23:28Z
2023-05-19T19:24:06Z
https://github.com/opensearch-project/data-prepper/issues/2719
1,717,647,336
2,719
[ "opensearch-project", "data-prepper" ]
**Describe the bug** Address comments in PR# 2673 https://github.com/opensearch-project/data-prepper/pull/2673 - Consumers - Indentation issues - Remove group_name - Pipeline name - we can get that from PipelineDescription - Broker URL – This is not working when I change the URL to confluent cloud.....
[BUG] Address comments in PR #2673
https://api.github.com/repos/opensearch-project/data-prepper/issues/2713/comments
1
2023-05-18T15:39:23Z
2023-06-28T11:10:58Z
https://github.com/opensearch-project/data-prepper/issues/2713
1,715,849,291
2,713
[ "opensearch-project", "data-prepper" ]
**Describe the bug** The S3 Scan integration tests do not work. **To Reproduce** Run: ``` ./gradlew :data-prepper-plugins:s3-source:integrationTest -Dtests.s3source.region=YOUR_REGION -Dtests.s3source.bucket=YOUR_BUCKET -Dtests.s3source.account=YOUR_ACCOUNT -Dtests.s3source.queue.url=YOUR_QUEUE_URL ``` ...
[BUG] S3 Scan integration tests do not run
https://api.github.com/repos/opensearch-project/data-prepper/issues/2709/comments
3
2023-05-17T22:57:02Z
2023-07-24T18:18:30Z
https://github.com/opensearch-project/data-prepper/issues/2709
1,714,753,908
2,709
[ "opensearch-project", "data-prepper" ]
**Is your feature request related to a problem? Please describe.** For pull based sources that perform bulk reading like S3 scan or the OpenSearch source that is in PR. As a user, I would like a mechanism to track which data has been read and processed. This could include if data is dropped, a node in my data prepper ...
Audit Logs
https://api.github.com/repos/opensearch-project/data-prepper/issues/2705/comments
1
2023-05-17T15:09:39Z
2023-05-17T21:05:46Z
https://github.com/opensearch-project/data-prepper/issues/2705
1,714,126,576
2,705
[ "opensearch-project", "data-prepper" ]
**Is your feature request related to a problem? Please describe.** Currently ExpressionEvaluator is defined with generic type with evaluator function returning different types (see below) ``` public interface ExpressionEvaluator<T> { ... T evaluate(final String statement, final Event context); ...
DataPrepper ExpressionEvaluator should not be type specific
https://api.github.com/repos/opensearch-project/data-prepper/issues/2703/comments
0
2023-05-16T23:36:21Z
2023-05-19T17:02:58Z
https://github.com/opensearch-project/data-prepper/issues/2703
1,712,871,303
2,703
[ "opensearch-project", "data-prepper" ]
**Is your feature request related to a problem? Please describe.** The current `json` codec supports parsing JSON arrays. However, many users would like to parse ndjson formatted files. ``` {"key": "value1"} {"key": "value2"} {"key": "value3"} {"key": "value4"} ``` **Describe the solution you'd like** ...
Support ndjson with a codec
https://api.github.com/repos/opensearch-project/data-prepper/issues/2700/comments
1
2023-05-16T18:27:09Z
2024-05-14T19:10:02Z
https://github.com/opensearch-project/data-prepper/issues/2700
1,712,525,544
2,700
[ "opensearch-project", "data-prepper" ]
**Describe the bug** A clear and concise description of what the bug is. **To Reproduce** Steps to reproduce the behavior: 1. Create an S3 pipeline with json codec 3. Upload a test file with just a json item not in an array. Ex: `{"foo": "bar"}` 4. Verify the S3 source read the data in the logs ``` INFO org....
[BUG] S3 source silently drops data with files contain a single JSON element
https://api.github.com/repos/opensearch-project/data-prepper/issues/2699/comments
9
2023-05-16T15:15:09Z
2023-05-30T18:34:56Z
https://github.com/opensearch-project/data-prepper/issues/2699
1,712,235,395
2,699
[ "opensearch-project", "data-prepper" ]
**Is your feature request related to a problem? Please describe.** There is a lot of activity in Data Prepper, and not all of it is ready for production. I'd like to be able to get these features out to users in an experimental form than try to hide or remove them, or use feature branches. **Describe the solution...
Add experimental feature concept
https://api.github.com/repos/opensearch-project/data-prepper/issues/2695/comments
0
2023-05-15T19:57:43Z
2025-01-15T17:27:36Z
https://github.com/opensearch-project/data-prepper/issues/2695
1,710,734,602
2,695
[ "opensearch-project", "data-prepper" ]
**Describe the bug** DataPrepper expression fails to recognize some valid floating point numbers. `12345.678` is not recognized as float **Expected behavior** Expected behavior is to recognize it as valid float point number
DataPrepper expression fails to recognize some valid floating point numbers
https://api.github.com/repos/opensearch-project/data-prepper/issues/2691/comments
0
2023-05-13T21:38:16Z
2023-05-15T17:59:27Z
https://github.com/opensearch-project/data-prepper/issues/2691
1,708,747,510
2,691
[ "opensearch-project", "data-prepper" ]
**Is your feature request related to a problem? Please describe.** Currently `add_entries` processor adds new fields to an `Event`. We need the ability to add entries to event's metadata. **Describe the solution you'd like** Suggest the following change to `add_entries` processor ``` processor - add_entrie...
Add support for adding metadata entries as part of add_entries processor
https://api.github.com/repos/opensearch-project/data-prepper/issues/2687/comments
0
2023-05-12T21:34:40Z
2023-05-19T17:39:02Z
https://github.com/opensearch-project/data-prepper/issues/2687
1,708,241,514
2,687
[ "opensearch-project", "data-prepper" ]
**Is your feature request related to a problem? Please describe.** Add support to allow expressions returning String type. Also add string operations, like string concatenation using "+" as operator **Describe the solution you'd like** Suggested grammar change for supporting String Expressions ``` stringExpres...
Add support for String Expressions in DataPrepper Expression
https://api.github.com/repos/opensearch-project/data-prepper/issues/2686/comments
2
2023-05-12T21:30:27Z
2023-06-05T20:42:43Z
https://github.com/opensearch-project/data-prepper/issues/2686
1,708,235,485
2,686
[ "opensearch-project", "data-prepper" ]
**Is your feature request related to a problem? Please describe.** Add support for Arithmetic expressions in DataPrepper expression. Some discussion is in previous RFC https://github.com/opensearch-project/data-prepper/issues/1005. **Describe the solution you'd like** Suggested grammar for supporting full A...
Add support for Arithmetic expressions in DataPrepper expression
https://api.github.com/repos/opensearch-project/data-prepper/issues/2685/comments
1
2023-05-12T21:27:14Z
2023-05-26T00:37:22Z
https://github.com/opensearch-project/data-prepper/issues/2685
1,708,231,405
2,685
[ "opensearch-project", "data-prepper" ]
**Is your feature request related to a problem? Please describe.** Pipeline users want to read data from SQS Queue **Describe the solution you'd like** Create SQS Source plugin which will read all events from SQS queue URL’s with provided batch size. This plugin should be able to accept AWS Key’s and work with...
SQS Source / Input plugin
https://api.github.com/repos/opensearch-project/data-prepper/issues/2679/comments
6
2023-05-11T15:14:39Z
2023-06-28T15:02:27Z
https://github.com/opensearch-project/data-prepper/issues/2679
1,706,030,208
2,679
[ "opensearch-project", "data-prepper" ]
**Is your feature request related to a problem? Please describe.** Data Prepper supports end-to-end acknowledgments, but sinks must honor these. The new S3 sink being worked by #1048 should acknowledge when events are sent to S3. **Describe the solution you'd like** Implement end-to-end acknowledgements for...
Support end-to-end acknowledgments in the S3 sink
https://api.github.com/repos/opensearch-project/data-prepper/issues/2674/comments
0
2023-05-10T15:18:39Z
2023-05-10T15:24:09Z
https://github.com/opensearch-project/data-prepper/issues/2674
1,704,167,023
2,674
[ "opensearch-project", "data-prepper" ]
**Is your feature request related to a problem? Please describe.** Add Entries processor should support adding entries based on expressions, especially expressions with functions For example, ``` processor: - add_entries: ...
Add support for expressions in add_entries processor
https://api.github.com/repos/opensearch-project/data-prepper/issues/2672/comments
1
2023-05-10T04:55:18Z
2023-05-23T20:31:03Z
https://github.com/opensearch-project/data-prepper/issues/2672
1,703,123,279
2,672
[ "opensearch-project", "data-prepper" ]
## CVE-2021-22096 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>spring-core-5.3.0.jar</b></p></summary> <p>Spring Core</p> <p>Library home page: <a href="https://github.com/spring-...
CVE-2021-22096 (Medium) detected in spring-core-5.3.0.jar
https://api.github.com/repos/opensearch-project/data-prepper/issues/2671/comments
0
2023-05-09T21:15:58Z
2023-05-22T17:34:54Z
https://github.com/opensearch-project/data-prepper/issues/2671
1,702,767,281
2,671
[ "opensearch-project", "data-prepper" ]
## CVE-2021-22060 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>spring-core-5.3.0.jar</b></p></summary> <p>Spring Core</p> <p>Library home page: <a href="https://github.com/spring-...
CVE-2021-22060 (Medium) detected in spring-core-5.3.0.jar
https://api.github.com/repos/opensearch-project/data-prepper/issues/2670/comments
0
2023-05-09T21:15:56Z
2023-05-22T17:34:53Z
https://github.com/opensearch-project/data-prepper/issues/2670
1,702,767,227
2,670
[ "opensearch-project", "data-prepper" ]
**Is your feature request related to a problem? Please describe.** Change JsonStringBuilder in JacksonEvent to be non static for ease-of-use **Describe the solution you'd like** From ease-of-use perspective it is easier to write like `event.jsonBuilder().includeTags("tags").toJsonString()` instead of current way...
Event Tags : Change JsonStringBuilder in JacksonEvent to be non static for ease-of-use
https://api.github.com/repos/opensearch-project/data-prepper/issues/2665/comments
0
2023-05-09T15:19:44Z
2023-05-09T22:45:22Z
https://github.com/opensearch-project/data-prepper/issues/2665
1,702,258,848
2,665
[ "opensearch-project", "data-prepper" ]
## Background Data Prepper currently has a `stdout` sink, which is quite rudimentary. It lacks a few things that would be helpful for a more robust solution. * The output is not formatted like Data Prepper log lines and thus can be hard to grok. * You cannot tell the difference between output from different pipe...
Log sink for logging events in the normal logger
https://api.github.com/repos/opensearch-project/data-prepper/issues/2662/comments
0
2023-05-09T13:55:38Z
2023-05-12T18:49:34Z
https://github.com/opensearch-project/data-prepper/issues/2662
1,702,093,393
2,662
[ "opensearch-project", "data-prepper" ]
**Describe the bug** Running Data Prepper with a bad username/password combination yields the following error. ``` 2023-05-08T19:29:16,393 [main] ERROR org.opensearch.dataprepper.plugins.sink.opensearch.OpenSearchSink - Failed to initialize OpenSearch sink. 2023-05-08T19:29:16,393 [Thread-2] ERROR org.opensearc...
[BUG] Failing to connect to an OpenSearch cluster with a bad username/password gives unhelpful error
https://api.github.com/repos/opensearch-project/data-prepper/issues/2657/comments
2
2023-05-08T19:33:22Z
2023-06-05T15:16:47Z
https://github.com/opensearch-project/data-prepper/issues/2657
1,700,810,346
2,657
[ "opensearch-project", "data-prepper" ]
**Is your feature request related to a problem? Please describe.** Pipeline creation should succeed even when sinks are not ready. Currently, DataPrepper waits for all sinks to be ready for 10 minutes (hard-coded) and if all sinks are not ready in that time, the pipeline creation fails We should allow pipeline cre...
Pipeline creation should succeed even when sinks are not ready
https://api.github.com/repos/opensearch-project/data-prepper/issues/2656/comments
2
2023-05-08T18:19:42Z
2023-05-22T17:03:19Z
https://github.com/opensearch-project/data-prepper/issues/2656
1,700,707,220
2,656
[ "opensearch-project", "data-prepper" ]
**Describe the bug** Data Prepper is showing an error that looks like the following: ``` [security_exception] authentication/authorization failure ``` **Expected behavior** Data Prepper used to have a clearer error: ``` [security_exception] no permissions for [indices:admin/get] and User [name=arn:aws...
[BUG] Unhelpful error message when failing to authenticate with Amazon OpenSearch Service
https://api.github.com/repos/opensearch-project/data-prepper/issues/2655/comments
4
2023-05-08T15:27:29Z
2023-06-05T15:16:47Z
https://github.com/opensearch-project/data-prepper/issues/2655
1,700,472,256
2,655
[ "opensearch-project", "data-prepper" ]
**Describe the bug** When running multiple workers, there is a bug which occurs occasionally in 2.2.0. ``` 2023-05-05T17:08:33,800 [raw-pipeline-sink-worker-6-thread-3] ERROR org.opensearch.dataprepper.pipeline.common.PipelineThreadPoolExecutor - Pipeline [raw-pipeline] process worker encountered a fatal excepti...
[BUG] Receiving exception in OpenSearch sink
https://api.github.com/repos/opensearch-project/data-prepper/issues/2654/comments
1
2023-05-08T15:22:12Z
2023-05-12T18:55:04Z
https://github.com/opensearch-project/data-prepper/issues/2654
1,700,464,810
2,654
[ "opensearch-project", "data-prepper" ]
**Is your feature request related to a problem? Please describe.** OpenSearch Sink retry mechanism uses hard-coded values for initial delay, max delay. And does not use jitter. Allow these parameters to be configurable. **Describe the solution you'd like** Provide options under opensearch to configure these values...
Allow open search sink retry mechanism configurable
https://api.github.com/repos/opensearch-project/data-prepper/issues/2650/comments
0
2023-05-05T21:31:42Z
2023-05-10T21:05:04Z
https://github.com/opensearch-project/data-prepper/issues/2650
1,698,217,881
2,650
[ "opensearch-project", "data-prepper" ]
**Is your feature request related to a problem? Please describe.** Data Prepper users have ability to load objects from S3 that do not have an SQS notification but missing End to end acknowledgment **Describe the solution you'd like** The pipeline author should be able to have end to end acknowledgment for S3 Sc...
S3 Source - Implement End to End Ack
https://api.github.com/repos/opensearch-project/data-prepper/issues/2649/comments
1
2023-05-05T21:11:42Z
2023-08-16T22:26:50Z
https://github.com/opensearch-project/data-prepper/issues/2649
1,698,202,766
2,649
[ "opensearch-project", "data-prepper" ]
**Is your feature request related to a problem? Please describe.** Currently, user can configure Grok Processor with `pattern_directories` to load pattern files only from local file system. ``` processor: - grok: patterns_directories: ["path/to/patterns_folder", "path/to/extra_patterns_folder"] matc...
Support loading Grok patterns from S3
https://api.github.com/repos/opensearch-project/data-prepper/issues/2646/comments
3
2023-05-05T15:05:19Z
2023-10-23T18:35:32Z
https://github.com/opensearch-project/data-prepper/issues/2646
1,697,777,822
2,646
[ "opensearch-project", "data-prepper" ]
**Is your feature request related to a problem? Please describe.** Currently OpenSearch supports exponential backoff with optional max-retries as retry mechanism. This is not very useful because the sleep time between the retries becomes exceedingly high some retries. Here is the wait times (in milliseconds) before e...
Improve OpenSearch retry mechanism
https://api.github.com/repos/opensearch-project/data-prepper/issues/2641/comments
2
2023-05-04T21:23:25Z
2023-06-05T20:41:48Z
https://github.com/opensearch-project/data-prepper/issues/2641
1,696,723,877
2,641
[ "opensearch-project", "data-prepper" ]
**Is your feature request related to a problem? Please describe.** I'd like to create conditionals based on the length of a string. **Describe the solution you'd like** Provide a function to get the length of a string from a key. ``` length("/log_level") > 10 ``` **Describe alternatives you've consider...
Support getting the length of a string in expressions
https://api.github.com/repos/opensearch-project/data-prepper/issues/2639/comments
2
2023-05-04T19:13:21Z
2023-06-05T20:43:53Z
https://github.com/opensearch-project/data-prepper/issues/2639
1,696,559,176
2,639
[ "opensearch-project", "data-prepper" ]
null
Allow injecting configurations into data-prepper-config.yaml
https://api.github.com/repos/opensearch-project/data-prepper/issues/2638/comments
0
2023-05-04T19:01:25Z
2023-08-30T17:31:07Z
https://github.com/opensearch-project/data-prepper/issues/2638
1,696,542,034
2,638
[ "opensearch-project", "data-prepper" ]
null
Create support for extension-related objects which can be loaded by other Data Prepper plugins
https://api.github.com/repos/opensearch-project/data-prepper/issues/2637/comments
0
2023-05-04T19:01:23Z
2023-05-24T21:22:56Z
https://github.com/opensearch-project/data-prepper/issues/2637
1,696,541,982
2,637
[ "opensearch-project", "data-prepper" ]
null
Create starting point interfaces for extensions
https://api.github.com/repos/opensearch-project/data-prepper/issues/2636/comments
0
2023-05-04T19:01:20Z
2023-05-24T21:22:55Z
https://github.com/opensearch-project/data-prepper/issues/2636
1,696,541,918
2,636
[ "opensearch-project", "data-prepper" ]
Not sure where to ask this as it seems the engagement is low on forums like StackOverflow. I am looking to make the move from ELK to OpenSearch. The purpose is solely for application log aggregation. I can not find a simple example of how to do this however...the example discussed here https://opensearch.org/docs/l...
Log ingestion example does not work
https://api.github.com/repos/opensearch-project/data-prepper/issues/2640/comments
4
2023-05-03T22:55:46Z
2023-05-10T21:04:43Z
https://github.com/opensearch-project/data-prepper/issues/2640
1,696,614,085
2,640
[ "opensearch-project", "data-prepper" ]
Having a hard time building an example that ships and parses application logs. This example in the documentation seems old: https://opensearch.org/docs/1.2/observability-plugin/log-analytics/ The docker-compose.yml no longer includes a data-prepper component. it's unclear what else needs to be updated, but the com...
Update Examples
https://api.github.com/repos/opensearch-project/data-prepper/issues/2630/comments
0
2023-05-03T17:50:12Z
2023-05-05T02:15:54Z
https://github.com/opensearch-project/data-prepper/issues/2630
1,694,532,494
2,630
[ "opensearch-project", "data-prepper" ]
## Background We have several issues that call for using functions in Data Prepper. These include the following: * A `getTags()` function - #629 * #1998 * Possibly a CIDR function as noted in #2625 * #2639 ## Solution Provide an ability to use functions in Data Prepper expressions. Functions should be...
Support functions in Data Prepper expressions
https://api.github.com/repos/opensearch-project/data-prepper/issues/2626/comments
0
2023-05-02T22:31:56Z
2023-05-11T19:47:06Z
https://github.com/opensearch-project/data-prepper/issues/2626
1,693,178,814
2,626
[ "opensearch-project", "data-prepper" ]
**Is your feature request related to a problem? Please describe.** There are use cases where the IP address associated with an event needs to be checked against some given CIDR blocks to determine the further processing actions for the event. **Describe the solution you'd like** Support a `ip_in` operator in an D...
Support checking if an IP address is in a CIDR block
https://api.github.com/repos/opensearch-project/data-prepper/issues/2625/comments
1
2023-05-02T20:49:14Z
2023-05-24T15:56:17Z
https://github.com/opensearch-project/data-prepper/issues/2625
1,693,081,466
2,625
[ "opensearch-project", "data-prepper" ]
**Is your feature request related to a problem? Please describe.** Many use-cases seek to parse out User-Agent headers to get useful metadata before saving to OpenSearch. This can include the type of browser, version information of the browser, the operation system, version information for the operating system, and ...
Support parsing User-Agent fields
https://api.github.com/repos/opensearch-project/data-prepper/issues/2618/comments
2
2023-05-01T19:16:05Z
2023-05-19T20:23:00Z
https://github.com/opensearch-project/data-prepper/issues/2618
1,691,230,296
2,618
[ "opensearch-project", "data-prepper" ]
## CVE-2022-45688 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>json-20180130.jar</b></p></summary> <p>JSON is a light-weight, language independent, data interchange format. See ht...
CVE-2022-45688 (High) detected in json-20180130.jar
https://api.github.com/repos/opensearch-project/data-prepper/issues/2615/comments
0
2023-05-01T16:15:11Z
2023-05-04T15:18:16Z
https://github.com/opensearch-project/data-prepper/issues/2615
1,691,020,701
2,615
[ "opensearch-project", "data-prepper" ]
**Is your feature request related to a problem? Please describe.** As a user of processors, I would like to only run processors conditionally based on the Events using the Data Prepper expression syntax **Describe the solution you'd like** Add conditional support to the following processors ``` * grok * parse...
Add conditional support to commonly used processors
https://api.github.com/repos/opensearch-project/data-prepper/issues/2613/comments
0
2023-05-01T16:07:58Z
2023-05-03T15:50:05Z
https://github.com/opensearch-project/data-prepper/issues/2613
1,691,012,191
2,613
[ "opensearch-project", "data-prepper" ]
**Describe the bug** OpenSearch ingestion failures are being obscured by the OpenSearch sink logging. I encountered this due to a mappings exception from OpenSearch. DataPrepper only logged: ``` WARN org.opensearch.dataprepper.plugins.sink.opensearch.OpenSearchSink - Document [******] has failure. ``` The OpenS...
[BUG] OpenSearch sink obscuring ingestion exceptions
https://api.github.com/repos/opensearch-project/data-prepper/issues/2612/comments
2
2023-05-01T15:30:21Z
2024-02-12T11:11:33Z
https://github.com/opensearch-project/data-prepper/issues/2612
1,690,962,891
2,612
[ "opensearch-project", "data-prepper" ]
**Is your feature request related to a problem? Please describe.** Presently, the `s3` source parses SQS messages for when S3 writes directly to the SQS queue. However, in some cases (e.g. fan-out pattern), an architecture has S3 events go to SNS, and then SNS to SQS. When this happens, the message is wrapped in ano...
Support SNS messages in S3 SQS queues
https://api.github.com/repos/opensearch-project/data-prepper/issues/2604/comments
1
2023-04-28T21:44:00Z
2023-05-08T18:27:40Z
https://github.com/opensearch-project/data-prepper/issues/2604
1,689,163,431
2,604
[ "opensearch-project", "data-prepper" ]
**Describe the bug** I see that the OpenSearch sink handles retries recursively. ``` at org.opensearch.dataprepper.plugins.sink.opensearch.OpenSearchSink.logFailure(OpenSearchSink.java:310) at org.opensearch.dataprepper.plugins.sink.opensearch.OpenSearchSink$$Lambda$1222/0x0000000800829c40.accept(Unknown So...
[BUG] Retries should not happen recursively
https://api.github.com/repos/opensearch-project/data-prepper/issues/2599/comments
0
2023-04-26T23:15:38Z
2023-05-02T23:05:30Z
https://github.com/opensearch-project/data-prepper/issues/2599
1,685,863,458
2,599
[ "opensearch-project", "data-prepper" ]
**Describe the bug** Data Prepper is no longer processing data. There appears to be data stuck in the buffer. Buffer metrics are reporting bufferUsage of 75%. RecordsInFlight are 250,000 and records in buffer are 687,000+. The last message in my logs is ``` 2023-04-25T20:42:43.344 WARN org.opensearch.dataprepper...
[BUG] Data Prepper hung with data stuck in buffer
https://api.github.com/repos/opensearch-project/data-prepper/issues/2598/comments
1
2023-04-26T18:42:58Z
2023-04-26T23:10:32Z
https://github.com/opensearch-project/data-prepper/issues/2598
1,685,529,426
2,598
[ "opensearch-project", "data-prepper" ]
**Describe the bug** Writing to the OpenSearch sink may encounter failures. These were originally provided after the final failure occurred. The recent change to the failure handling overwrites the error message masking it from the operator. This makes it difficult to debug failure scenarios: ``` WARN org.opensearc...
[BUG] OpenSearch Sink failures are masked by max retry in the logs
https://api.github.com/repos/opensearch-project/data-prepper/issues/2597/comments
2
2023-04-26T18:02:14Z
2023-05-02T23:05:29Z
https://github.com/opensearch-project/data-prepper/issues/2597
1,685,480,128
2,597
[ "opensearch-project", "data-prepper" ]
There does not seem to be a way to specify an s3 source to delete files after processing. Currently logstash supports a parameter in the s3 input called [delete](https://www.elastic.co/guide/en/logstash/current/plugins-inputs-s3.html#plugins-inputs-s3-delete) that you can set to `true` and then the s3 source file is...
s3 source: delete after processing
https://api.github.com/repos/opensearch-project/data-prepper/issues/2596/comments
5
2023-04-26T11:59:22Z
2023-07-20T19:28:27Z
https://github.com/opensearch-project/data-prepper/issues/2596
1,684,885,192
2,596
[ "opensearch-project", "data-prepper" ]
**Is your feature request related to a problem? Please describe.** At present we are testing data-prepper in a k8s environment, for a new piece of work we are looking at. The current issue we are having is a heap issue (I will raise another issue for this), that when we run out of heap space all our pipelines shutd...
Process Termination on Pipeline Shutdown
https://api.github.com/repos/opensearch-project/data-prepper/issues/2595/comments
4
2023-04-25T19:31:40Z
2023-04-25T21:48:38Z
https://github.com/opensearch-project/data-prepper/issues/2595
1,683,741,762
2,595
[ "opensearch-project", "data-prepper" ]
## CVE-2023-2251 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>yaml-1.10.2.tgz</b></p></summary> <p>JavaScript parser and stringifier for YAML</p> <p>Library home page: <a href="http...
CVE-2023-2251 (High) detected in yaml-1.10.2.tgz - autoclosed
https://api.github.com/repos/opensearch-project/data-prepper/issues/2594/comments
1
2023-04-25T16:36:36Z
2023-05-01T16:15:15Z
https://github.com/opensearch-project/data-prepper/issues/2594
1,683,504,768
2,594
[ "opensearch-project", "data-prepper" ]
## Problem Data Prepper pipeline configurations require configuring OpenSearch sinks in multiple locations. For example, in the standard trace analytics pipeline, I may have the following configured twice ``` sink: - opensearch: hosts: ["https://localhost:9200"] username: admin ...
Shared OpenSearch configurations
https://api.github.com/repos/opensearch-project/data-prepper/issues/2590/comments
0
2023-04-24T19:07:57Z
2023-04-24T19:09:00Z
https://github.com/opensearch-project/data-prepper/issues/2590
1,681,863,886
2,590
[ "opensearch-project", "data-prepper" ]
# Problem Currently, two `opensearch` sinks which write to the same OpenSearch cluster have no coordination between them. If one of the sinks is experiencing increased error rates, there is no way to notify the other sinks to attempt to backoff as well. Additionally, other pipeline components which use OpenSearch...
OpenSearch sink coordination
https://api.github.com/repos/opensearch-project/data-prepper/issues/2589/comments
2
2023-04-24T18:59:15Z
2023-09-19T16:35:43Z
https://github.com/opensearch-project/data-prepper/issues/2589
1,681,848,962
2,589
[ "opensearch-project", "data-prepper" ]
## Problem The term pipeline component refers to a source, buffer, processor, or sink. Today, Data Prepper plugins only support creating pipeline components. (Or in some cases, sub-configurations within a component.) The `opensearch` sink is an example of component plugin. Data Prepper creates an instance of this cl...
Plugin extensions beyond pipeline components
https://api.github.com/repos/opensearch-project/data-prepper/issues/2588/comments
0
2023-04-24T18:47:06Z
2024-01-19T22:38:28Z
https://github.com/opensearch-project/data-prepper/issues/2588
1,681,832,469
2,588
[ "opensearch-project", "data-prepper" ]
**Is your feature request related to a problem? Please describe.** Some Data Prepper APIs continue to use either the low-level rest-client or the rest high-level client. These are incompatible with Amazon OpenSearch Serverless. **Describe the solution you'd like** Support OpenSearch Serverless by updating all ...
Support OpenSearch Serverless in all requests
https://api.github.com/repos/opensearch-project/data-prepper/issues/2587/comments
0
2023-04-24T18:33:00Z
2023-05-10T21:02:19Z
https://github.com/opensearch-project/data-prepper/issues/2587
1,681,815,506
2,587
[ "opensearch-project", "data-prepper" ]
**Is your feature request related to a problem? Please describe.** Currently the Log source has [Throttling Strategy](https://github.com/opensearch-project/data-prepper/blob/main/data-prepper-plugins/http-source/src/main/java/org/opensearch/dataprepper/plugins/source/loghttp/LogThrottlingStrategy.java) when the queue....
Add Throttling Strategy to all the OTEL sources
https://api.github.com/repos/opensearch-project/data-prepper/issues/2582/comments
0
2023-04-23T16:54:26Z
2023-04-25T15:54:52Z
https://github.com/opensearch-project/data-prepper/issues/2582
1,680,092,735
2,582
[ "opensearch-project", "data-prepper" ]
**Describe the bug** I have added the dlq to OpenSearch sink. And when I used "error/" as the key_path_prefix, the full output file of dlq is 'error//dlq-v2-test-pipeline-opensearch-2023-...' which contains an extra unexpected `/` in between. Note that / still is a valid key in Amazon S3. **To Reproduce** S...
[BUG] Invalid key prefix format for dlq
https://api.github.com/repos/opensearch-project/data-prepper/issues/2581/comments
12
2023-04-23T06:35:43Z
2023-05-25T18:08:22Z
https://github.com/opensearch-project/data-prepper/issues/2581
1,679,884,401
2,581
[ "opensearch-project", "data-prepper" ]
**Describe the bug** The release build's smoke tests fail consistently. However, I can run them locally with success. **To Reproduce** Steps to reproduce the behavior: 1. Run a release build GHA **Expected behavior** The tests pass (perhaps with a re-run failed jobs) **Sample run** https://githu...
[BUG] Smoke tests fail in GitHub Actions
https://api.github.com/repos/opensearch-project/data-prepper/issues/2579/comments
0
2023-04-23T00:42:34Z
2023-04-23T01:10:10Z
https://github.com/opensearch-project/data-prepper/issues/2579
1,679,798,099
2,579
[ "opensearch-project", "data-prepper" ]
**Is your feature request related to a problem? Please describe.** As a user of data prepper, I would like to be able to validate my pipeline configurations without having to start the entirety of data prepper with multiple servers and without having to use real permissions for opensearch, s3, etc. **Describe the ...
Validate data prepper configurations without running Data Prepper
https://api.github.com/repos/opensearch-project/data-prepper/issues/2573/comments
4
2023-04-21T22:03:51Z
2025-04-17T19:15:58Z
https://github.com/opensearch-project/data-prepper/issues/2573
1,679,149,967
2,573
[ "opensearch-project", "data-prepper" ]
**Is your feature request related to a problem? Please describe.** Need a processor which does similar to what OTEL tail sampling processor does. More details can be found at - https://github.com/open-telemetry/opentelemetry-collector-contrib/blob/main/processor/tailsamplingprocessor/README.md Basic functionality i...
Add tail sampling processor
https://api.github.com/repos/opensearch-project/data-prepper/issues/2572/comments
3
2023-04-21T21:07:42Z
2023-05-04T20:26:14Z
https://github.com/opensearch-project/data-prepper/issues/2572
1,679,103,478
2,572
[ "opensearch-project", "data-prepper" ]
**Is your feature request related to a problem? Please describe.** The Data Prepper tar.gz distributions are only for x86 architectures currently. As Data Prepper is written in Java it should be able to run on ARM. The distribution which is bundled with a JDK needs to have an ARM distribution. **Describe the solu...
ARM distributions via tar.gz
https://api.github.com/repos/opensearch-project/data-prepper/issues/2571/comments
4
2023-04-21T20:51:40Z
2024-04-17T23:02:02Z
https://github.com/opensearch-project/data-prepper/issues/2571
1,679,082,674
2,571
[ "opensearch-project", "data-prepper" ]
## Problem Presently Data Prepper pipeline definitions must have AWS IAM credential configurations for most AWS authentication. This presents a few problems: * Different pipeline components have copied-and-pasted configurations resulting in duplicate configuration. * Pipeline authors may have to change multip...
Make AWS credential management available in data-prepper-config.yaml
https://api.github.com/repos/opensearch-project/data-prepper/issues/2570/comments
3
2023-04-21T20:30:37Z
2024-06-18T19:38:18Z
https://github.com/opensearch-project/data-prepper/issues/2570
1,679,048,737
2,570
[ "opensearch-project", "data-prepper" ]
**Describe the bug** Failures in the `s3` source related to authentication tend to require user intervention. Because of this, the backoff for situations with authentication issues is more aggressive than it needs to be. This produces a number of unnecessary logs before the user can respond. **Expected behavio...
[BUG] S3 source backoff is still quite aggressive
https://api.github.com/repos/opensearch-project/data-prepper/issues/2568/comments
5
2023-04-21T16:22:27Z
2023-04-24T14:16:55Z
https://github.com/opensearch-project/data-prepper/issues/2568
1,678,783,495
2,568
[ "opensearch-project", "data-prepper" ]
**Describe the bug** I was following the log ingestion example in the repo and found that a few key steps make the readme incomplete. They are: 1. No instructions on how to set a custom opensearch config. This is useful if i want to play around with other config options from opensearch 2. The default auth credenti...
[BUG] log ingestion example missing information
https://api.github.com/repos/opensearch-project/data-prepper/issues/2567/comments
3
2023-04-21T06:38:19Z
2024-01-22T16:54:45Z
https://github.com/opensearch-project/data-prepper/issues/2567
1,677,922,368
2,567
[ "opensearch-project", "data-prepper" ]
**Describe the bug** The S3 Select functionality runs out of memory on large files. **To Reproduce** Configure to use a large CSV file which does not support batching, for example, with compression. **Expected behavior** Data Prepper should add data to buffer as received rather than populate a large list...
[BUG] S3 Select for large files
https://api.github.com/repos/opensearch-project/data-prepper/issues/2559/comments
1
2023-04-20T16:31:18Z
2023-04-24T14:43:54Z
https://github.com/opensearch-project/data-prepper/issues/2559
1,677,054,403
2,559
[ "opensearch-project", "data-prepper" ]
**Describe the bug** We had a GitHub Action fail with: ``` PipelinesWithAcksIT > two_pipelines_with_multiple_records() FAILED java.lang.NullPointerException at PipelinesWithAcksIT.java:100 ``` https://github.com/opensearch-project/data-prepper/actions/runs/4749652084/jobs/8437118038?pr=2549 This corr...
[BUG] End-to-end acknowledgement integration test is failing
https://api.github.com/repos/opensearch-project/data-prepper/issues/2551/comments
1
2023-04-20T02:22:16Z
2023-05-01T17:39:07Z
https://github.com/opensearch-project/data-prepper/issues/2551
1,675,886,338
2,551
[ "opensearch-project", "data-prepper" ]
**Describe the bug** Data Prepper GitHub Actions builds are failing with: ``` Could not determine the dependencies of task ':data-prepper-api:spotlessCheck'. > Could not create task ':data-prepper-api:spotlessJavaCheck'. You can use '--warning-mode all' to show the individual deprecation warnings and determine...
[BUG] Building failing unable to find Maven repository artifacts
https://api.github.com/repos/opensearch-project/data-prepper/issues/2548/comments
1
2023-04-20T01:27:48Z
2023-04-20T15:26:18Z
https://github.com/opensearch-project/data-prepper/issues/2548
1,675,848,082
2,548
[ "opensearch-project", "data-prepper" ]
## CVE-2023-26048 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>jetty-server-11.0.12.jar</b></p></summary> <p>The core jetty server artifact.</p> <p>Library home page: <a href="htt...
CVE-2023-26048 (Medium) detected in jetty-server-11.0.12.jar - autoclosed
https://api.github.com/repos/opensearch-project/data-prepper/issues/2533/comments
5
2023-04-19T16:12:11Z
2023-10-26T18:28:50Z
https://github.com/opensearch-project/data-prepper/issues/2533
1,675,222,254
2,533
[ "opensearch-project", "data-prepper" ]
## CVE-2023-26049 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Libraries - <b>jetty-http-11.0.12.jar</b>, <b>jetty-server-11.0.12.jar</b></p></summary> <p> <details><summary><b>jetty-http-11.0...
CVE-2023-26049 (Medium) detected in jetty-http-11.0.12.jar, jetty-server-11.0.12.jar - autoclosed
https://api.github.com/repos/opensearch-project/data-prepper/issues/2532/comments
5
2023-04-19T16:12:09Z
2023-10-26T18:28:43Z
https://github.com/opensearch-project/data-prepper/issues/2532
1,675,222,191
2,532
[ "opensearch-project", "data-prepper" ]
**Is your feature request related to a problem? Please describe.** Currently, users configure `route` component and `routes` in sink in the pipeline YAML. This might not look very clear for users on what actually is happening with routes since both `route` and `routes` are list and can be plural. For example, ``` ...
Make conditional routing yaml configurations user friendly
https://api.github.com/repos/opensearch-project/data-prepper/issues/2520/comments
0
2023-04-18T19:51:40Z
2023-04-20T02:01:01Z
https://github.com/opensearch-project/data-prepper/issues/2520
1,673,740,996
2,520
[ "opensearch-project", "data-prepper" ]
**Is your feature request related to a problem? Please describe.** Data Prepper currently have multple plugins related to OTel but we don't follow any standard naming convention. For example, `otel_trace_source` and `otel_metrics_source`. Also, having processor keyword in a processor plugin is redundant. For e...
Consistency in OTel plugin names
https://api.github.com/repos/opensearch-project/data-prepper/issues/2515/comments
4
2023-04-17T23:00:43Z
2023-04-20T15:54:45Z
https://github.com/opensearch-project/data-prepper/issues/2515
1,672,083,831
2,515
[ "opensearch-project", "data-prepper" ]
**Describe the bug** The CSV codec will skip some rows of data without any metrics, only logging. **Expected behavior** I'd like a more robust error handling situation. In the meantime though, failing fast is better than difficult to detect data drops.
[BUG] S3 source CSV codec drops data without metrics
https://api.github.com/repos/opensearch-project/data-prepper/issues/2512/comments
0
2023-04-17T21:27:14Z
2023-04-19T01:32:40Z
https://github.com/opensearch-project/data-prepper/issues/2512
1,671,994,170
2,512
[ "opensearch-project", "data-prepper" ]
**Is your feature request related to a problem? Please describe.** As a user, I would like to be able to determine the key of the event to be written to the OpenSearch Sink. **Describe the solution you'd like** The OpenSearch Sink will provide an option `document_root_key` which will determine the contents of the...
Indexing into the event to create the document for the OpenSearch Sink
https://api.github.com/repos/opensearch-project/data-prepper/issues/2511/comments
0
2023-04-17T21:26:23Z
2023-04-17T21:27:12Z
https://github.com/opensearch-project/data-prepper/issues/2511
1,671,992,992
2,511
[ "opensearch-project", "data-prepper" ]
**Is your feature request related to a problem? Please describe.** Currently, if you want to rename a plugin it has to be a breaking change and there is no easy way to do it. **Describe the solution you'd like** We can achieve this by adding `deprecatedName` to existing `DataPrepperPlugin` annotation (credits: @d...
Allow changing plugin names without breaking changes
https://api.github.com/repos/opensearch-project/data-prepper/issues/2504/comments
1
2023-04-17T03:33:27Z
2023-04-18T02:10:08Z
https://github.com/opensearch-project/data-prepper/issues/2504
1,670,342,385
2,504
[ "opensearch-project", "data-prepper" ]
### Discussed in https://github.com/opensearch-project/data-prepper/discussions/2499 <div type='discussions-op-text'> <sup>Originally posted by **ccntechgit** April 15, 2023</sup> OCP 4.12 Deployed data-prepper:2 in my namespace using the unchanged k8s deployment-template file "data-prepper-k8s.yaml" Contain...
data-prepper crashing on openshift
https://api.github.com/repos/opensearch-project/data-prepper/issues/2500/comments
0
2023-04-16T16:15:01Z
2023-04-24T17:07:41Z
https://github.com/opensearch-project/data-prepper/issues/2500
1,670,032,504
2,500
[ "opensearch-project", "data-prepper" ]
**Is your feature request related to a problem? Please describe.** Currently, when end to end acknowledgements are enabled for S3 Source, an acknowledgement set is created per SQS message (Which is good/correct) but also deletes each SQS message separately when acknowledgements were received. The deletions (upon rec...
Improve SQS message delete performance when e2e acks enabled
https://api.github.com/repos/opensearch-project/data-prepper/issues/2498/comments
0
2023-04-15T00:26:23Z
2023-04-17T14:40:31Z
https://github.com/opensearch-project/data-prepper/issues/2498
1,669,074,762
2,498
[ "opensearch-project", "data-prepper" ]
**Is your feature request related to a problem? Please describe.** Data Prepper deletes SQS messages for S3 events after writing to the buffer. However, if the events are not sent to the OpenSearch sink, this is not ideal behavior. It means that Data Prepper will not retry these objects and the messages will not go ...
End-to-end acknowledgements for S3 source
https://api.github.com/repos/opensearch-project/data-prepper/issues/2496/comments
1
2023-04-14T20:01:22Z
2023-04-21T16:24:30Z
https://github.com/opensearch-project/data-prepper/issues/2496
1,668,884,467
2,496
[ "opensearch-project", "data-prepper" ]
## CVE-2023-20863 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>spring-expression-5.3.26.jar</b></p></summary> <p>Spring Expression Language (SpEL)</p> <p>Library home page: <a href=...
CVE-2023-20863 (High) detected in spring-expression-5.3.26.jar
https://api.github.com/repos/opensearch-project/data-prepper/issues/2492/comments
0
2023-04-14T11:57:59Z
2023-04-20T14:46:01Z
https://github.com/opensearch-project/data-prepper/issues/2492
1,668,118,410
2,492
[ "opensearch-project", "data-prepper" ]
**Is your feature request related to a problem? Please describe.** As a user of the s3 source with sqs, I have messages/objects that differentiates in size. This means that there is not an optimal visibility timeout for the SQS queue, as too small a timeout cause issues with large messages, and too large a timeout cou...
Support dynamically changing the visibility timeout for S3 Source with SQS queue
https://api.github.com/repos/opensearch-project/data-prepper/issues/2485/comments
2
2023-04-13T18:21:49Z
2023-11-08T17:10:32Z
https://github.com/opensearch-project/data-prepper/issues/2485
1,666,922,300
2,485
[ "opensearch-project", "data-prepper" ]
**Is your feature request related to a problem? Please describe.** The s3 source visibility timeout defaults to 30 seconds in both SQS and Data Prepper. However, if the visibility timeout is changed on the SQS queue, and not configured in the S3 Source, the default of 30 seconds is still overridden in the call to pull...
S3 Source SQS queue visibility timeout is overridden when it is not configured
https://api.github.com/repos/opensearch-project/data-prepper/issues/2484/comments
4
2023-04-13T17:01:05Z
2023-06-13T18:52:29Z
https://github.com/opensearch-project/data-prepper/issues/2484
1,666,791,576
2,484
[ "opensearch-project", "data-prepper" ]
**Describe the bug** A clear and concise description of what the bug is. **To Reproduce** Steps to reproduce the behavior: 1. cd examples/trace-analytics-sample-app 2. docker-compose up 3. The app stopped, error message is `Waiting for databaseService to be ready` **Expected behavior** databaseService start...
[BUG] AttributeError: 'NoneType' object has no attribute 'message_types_by_name' with Trace Analytics Sample App
https://api.github.com/repos/opensearch-project/data-prepper/issues/2477/comments
0
2023-04-12T09:40:44Z
2023-04-13T02:03:15Z
https://github.com/opensearch-project/data-prepper/issues/2477
1,664,210,560
2,477
[ "opensearch-project", "data-prepper" ]
**Describe the bug** S3 source with csv codec is not paring the csv file accurately. It appends an additional space before the first key. **To Reproduce** Steps to reproduce the behavior: 1. create pipeline with S3 source and csv codec 2. ingest some csv data Pipeline config: ``` log-pipeline: source: ...
[BUG] S3 source csv codec parsing
https://api.github.com/repos/opensearch-project/data-prepper/issues/2471/comments
1
2023-04-10T19:54:20Z
2023-04-11T05:42:52Z
https://github.com/opensearch-project/data-prepper/issues/2471
1,661,273,254
2,471
[ "opensearch-project", "data-prepper" ]
**Describe the bug** when integrating with fluent-bit, there is missing metric data points occasionally. **To Reproduce** Steps to reproduce the behavior: A cloudformation template: ``` AWSTemplateFormatVersion: "2010-09-09" Description: "Template to deploy and monitor Data Prepper on ECS Fargate tasks" Resou...
[BUG] Missing datapoints in EMFLoggingMeterRegistry
https://api.github.com/repos/opensearch-project/data-prepper/issues/2469/comments
3
2023-04-10T17:43:45Z
2023-04-21T16:32:44Z
https://github.com/opensearch-project/data-prepper/issues/2469
1,661,115,927
2,469
[ "opensearch-project", "data-prepper" ]
**Describe the bug** I receive the below error ``` 2023-04-07T14:45:33,589 [main] INFO org.opensearch.dataprepper.DataPrepperArgumentConfiguration - Command line args: /usr/share/data-prepper/pipelines,/usr/share/data-prepper/config/data-prepper-config.yaml ...
Data-Prepper not using pipelines.yaml
https://api.github.com/repos/opensearch-project/data-prepper/issues/2461/comments
4
2023-04-07T15:11:33Z
2023-09-01T15:48:15Z
https://github.com/opensearch-project/data-prepper/issues/2461
1,658,913,466
2,461
[ "opensearch-project", "data-prepper" ]
**Is your feature request related to a problem? Please describe.** A clear and concise description of what the problem is. Ex. It would be nice to have [...] **Describe the solution you'd like** A clear and concise description of what you want to happen. **Describe alternatives you've considered (Optional)** A...
Add exemplars into metrics generated for ingesting traces
https://api.github.com/repos/opensearch-project/data-prepper/issues/2456/comments
4
2023-04-06T20:08:00Z
2023-04-24T16:05:01Z
https://github.com/opensearch-project/data-prepper/issues/2456
1,657,975,602
2,456
[ "opensearch-project", "data-prepper" ]
**Is your feature request related to a problem? Please describe.** Data Prepper should report metrics when SQS messages fail to delete. Additionally, SQS can return a success code and have some failed messages. Data Prepper should handle this. https://docs.aws.amazon.com/AWSSimpleQueueService/latest/APIReferen...
Improve error reporting with S3 source and SQS deletes
https://api.github.com/repos/opensearch-project/data-prepper/issues/2449/comments
0
2023-04-05T14:56:52Z
2023-04-05T20:58:07Z
https://github.com/opensearch-project/data-prepper/issues/2449
1,655,789,967
2,449
[ "opensearch-project", "data-prepper" ]
**Is your feature request related to a problem? Please describe.** I want to be able to read [Avro](https://avro.apache.org/docs/) files from S3 objects and create new Data Prepper events from them. **Describe the solution you'd like** Implement a new input codec using the work planned for #1532.
Support parsing Avro files from S3 (and other sources)
https://api.github.com/repos/opensearch-project/data-prepper/issues/2446/comments
1
2023-04-04T13:28:03Z
2023-08-18T18:00:51Z
https://github.com/opensearch-project/data-prepper/issues/2446
1,653,894,756
2,446
[ "opensearch-project", "data-prepper" ]
**Is your feature request related to a problem? Please describe.** I may need to read [Parquet](https://github.com/apache/parquet-format)-formatted files from S3 buckets. **Describe the solution you'd like** Using the generic source codecs provided in #1532, have a `parquet` codec. **Describe alternatives y...
Support parsing Parquet formatted files from S3 (and other sources)
https://api.github.com/repos/opensearch-project/data-prepper/issues/2445/comments
2
2023-04-04T13:26:25Z
2023-07-26T16:48:51Z
https://github.com/opensearch-project/data-prepper/issues/2445
1,653,890,749
2,445
[ "opensearch-project", "data-prepper" ]
**Describe the bug** Opensearch dashboards not displaying the traces at the observability traces window when the raw-pipeline is configured with index_type: custom Versions of software's in use are Dataprepper: 2.1 OpenSearch and OpenSearch-Dashboards: 2.6 Below is the configured pipelines.yml ``` entry...
[BUG] Opensearch dashboards not displaying the traces at the observability traces window when the raw-pipeline is configured with index_type: custom
https://api.github.com/repos/opensearch-project/data-prepper/issues/2443/comments
4
2023-04-04T05:13:22Z
2023-10-15T20:31:31Z
https://github.com/opensearch-project/data-prepper/issues/2443
1,653,186,078
2,443
[ "opensearch-project", "data-prepper" ]
**Describe the bug** The running java process does not get killed when data prepper itself terminates. This is problematic when running data prepper inside of a docker container using kubernetes HorizontalPodAutoscaler to control data prepper. Right now data prepper will terminate for some reason however the container...
[BUG] Java process does not get killed when data prepper itself terminates
https://api.github.com/repos/opensearch-project/data-prepper/issues/2441/comments
3
2023-04-03T19:57:28Z
2023-05-05T02:15:42Z
https://github.com/opensearch-project/data-prepper/issues/2441
1,652,682,721
2,441
[ "opensearch-project", "data-prepper" ]
**Is your feature request related to a problem? Please describe.** Adding metrics based on the response code for the S3 PutObject call would be useful. This would give easier insight into the types of failures the DLQ Writer is experiencing. **Describe the solution you'd like** Metrics for: - Auth issues - Acce...
S3 DLQ Writer response code metrics
https://api.github.com/repos/opensearch-project/data-prepper/issues/2440/comments
0
2023-04-03T17:26:28Z
2023-04-05T21:01:45Z
https://github.com/opensearch-project/data-prepper/issues/2440
1,652,475,406
2,440
[ "opensearch-project", "data-prepper" ]
**Describe the bug** `jacocoTestCoverageVerification` is only run on [coreProjects](https://github.com/opensearch-project/data-prepper/blob/main/build-resources.gradle#L6). This leads a false sense of high test coverage for our plugins. For example. The opensearch plugin has a code coverage of 75% with a requirement o...
[BUG] jacocoTestCoverageVerification is not enforced for plugins
https://api.github.com/repos/opensearch-project/data-prepper/issues/2427/comments
0
2023-03-31T18:24:36Z
2023-04-04T13:49:29Z
https://github.com/opensearch-project/data-prepper/issues/2427
1,649,826,205
2,427
[ "opensearch-project", "data-prepper" ]
**Is your feature request related to a problem? Please describe.** As a user of data prepper, I would like the ability to add new Event entries dynamically from existing Event entries. Given the following Event ``` { "key_one": "value_one", "key_two": "value_two" } ``` I would like to transform the Ev...
Ability to combine multiple Event keys into one new Event key
https://api.github.com/repos/opensearch-project/data-prepper/issues/2424/comments
5
2023-03-30T19:44:37Z
2023-04-14T20:28:05Z
https://github.com/opensearch-project/data-prepper/issues/2424
1,648,209,788
2,424
[ "opensearch-project", "data-prepper" ]
**Describe the bug** The [Grok Debugger](https://grokdebug.herokuapp.com/) is down. **To Reproduce** Steps to reproduce the behavior: 1. Go to https://grokdebug.herokuapp.com/ **Expected behavior** I expect the Grok Debugger to be available to use. **Screenshots** Not necessary. **Environment (please c...
[BUG] Grok Debugger is down
https://api.github.com/repos/opensearch-project/data-prepper/issues/2423/comments
2
2023-03-30T19:18:10Z
2023-04-05T21:02:45Z
https://github.com/opensearch-project/data-prepper/issues/2423
1,648,178,434
2,423
[ "opensearch-project", "data-prepper" ]
**Is your feature request related to a problem? Please describe.** SQS throws an AccessDeniedException when KMS SSE is enabled. `2023-03-23T06:56:51,165 [Thread-7] ERROR org.opensearch.dataprepper.plugins.source.SqsWorker - Error reading from SQS: The ciphertext refers to a customer master key that does not exist,...
Support KMS encryption for SQS
https://api.github.com/repos/opensearch-project/data-prepper/issues/2422/comments
1
2023-03-30T16:58:20Z
2023-03-30T19:12:23Z
https://github.com/opensearch-project/data-prepper/issues/2422
1,647,984,490
2,422
[ "opensearch-project", "data-prepper" ]
**Is your feature request related to a problem? Please describe.** Pipeline author wants to read Read Parquet files on AWS S3 with Snappy Compression. Currently S3 (via abstract files source) only supports gzip **Describe the solution you'd like** Build in support for other compression such as: - Snappy ...
Snappy Compression support
https://api.github.com/repos/opensearch-project/data-prepper/issues/2420/comments
0
2023-03-30T15:17:12Z
2023-04-05T20:58:25Z
https://github.com/opensearch-project/data-prepper/issues/2420
1,647,834,811
2,420
[ "opensearch-project", "data-prepper" ]
## CVE-2023-1370 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>json-smart-2.4.7.jar</b></p></summary> <p>JSON (JavaScript Object Notation) is a lightweight data-interchange format. I...
CVE-2023-1370 (High) detected in json-smart-2.4.7.jar
https://api.github.com/repos/opensearch-project/data-prepper/issues/2418/comments
0
2023-03-30T14:51:23Z
2023-04-20T14:46:01Z
https://github.com/opensearch-project/data-prepper/issues/2418
1,647,789,019
2,418
[ "opensearch-project", "data-prepper" ]
**Describe the bug** Trying to copy the value from a key with a "/" on the name **To Reproduce** Steps to reproduce the behavior: Use the following processor with docker image 2.1.1: ``` processor: - copy_values: entries: - from_key: "/kubernetes/labels/app/kubernetes/io~1name" to_key:...
[BUG] Use Json Pointer syntax on copy_values processor "from_key"
https://api.github.com/repos/opensearch-project/data-prepper/issues/2416/comments
3
2023-03-29T17:18:32Z
2023-06-05T19:48:57Z
https://github.com/opensearch-project/data-prepper/issues/2416
1,646,219,929
2,416
[ "opensearch-project", "data-prepper" ]
**Is your feature request related to a problem? Please describe.** Data Prepper can either be run as a single instance, or as two or more instances that essentially make up a cluster of data prepper instances. When configuring the `data-prepper-config.yaml` there are certain settings that only apply in a multi-nod...
No clear indication of single node vs. multi node data prepper cluster
https://api.github.com/repos/opensearch-project/data-prepper/issues/2413/comments
0
2023-03-29T05:24:37Z
2023-03-29T05:27:19Z
https://github.com/opensearch-project/data-prepper/issues/2413
1,645,057,851
2,413
[ "opensearch-project", "data-prepper" ]
**Is your feature request related to a problem? Please describe.** Data Prepper has many push based sources, such as `http`, `otel_trace_source`, etc. Distributing data between multiple instances of data prepper can easily be solved with a load balancer. However, pull based sources of Data Prepper do not have a Dat...
Source Coordination in Data Prepper
https://api.github.com/repos/opensearch-project/data-prepper/issues/2412/comments
0
2023-03-29T04:51:16Z
2023-08-10T23:06:09Z
https://github.com/opensearch-project/data-prepper/issues/2412
1,645,028,458
2,412