-
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.
[libbeat][reader] - Adding support for parquet reader (#35183)
* initial commit for s3 parquet support * updated changelog * added license updates * updated notice and go mod/sum * removed libgering panic * added parquet benchmark tests * updated osquery package due to update in dependant thrift package * added parquet reader with benchmark tests and implemented that reader in awss3 package * addressed linting errors * refactored parquet reader, added tests and benchmarks and addressed pr comments * addressed pr comments * resolved merged conflicts * updated notice * added more parquet file tests with json comparisons, addressed pr comments * removed commented codeS * removed bad imports & cleaned up tests * updated notice * added graceful closures with err checks in test * added graceful closures with err checks in test * removed s3 parquet implementation from this PR * removed s3 parquet implementation from this PR * Update filebeat.yml * Update filebeat.yml * updated notice * addressed PR suggestions * addressed PR comments * updated godoc comment * addressed PR comments, switched path with filebath * updated CODEOWNERS and addressed PR comments * addressed PR comments, added a rand seeding process * fixed test seed value to 1 * updated comments * removed defers in loops * updated notice * updated godoc comments as suggested * updated changelog * Update x-pack/libbeat/reader/parquet/parquet.go Co-authored-by: subham sarkar <[email protected]> --------- Co-authored-by: subham sarkar <[email protected]>
- Loading branch information
1 parent
0a51801
commit 742a370
Showing
17 changed files
with
9,063 additions
and
4,408 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
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
Large diffs are not rendered by default.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,7 @@ | |
"BSD-2-Clause", | ||
"BSD-2-Clause-FreeBSD", | ||
"BSD-3-Clause", | ||
"CC0-1.0", | ||
"Elastic", | ||
"ISC", | ||
"MIT", | ||
|
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.