-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: Add project report in README.md; Move project proposal to `docs…
…`. (#16) Co-authored-by: LinZhihao-723 <[email protected]>
- Loading branch information
1 parent
a304e18
commit ab6f529
Showing
4 changed files
with
424 additions
and
37 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,28 @@ | ||
# log-surgeon: A performant log parsing library | ||
Project Link: [Homepage][home-page] | ||
|
||
Video Demo Link: [Video Demo][video-demo] | ||
|
||
--- | ||
|
||
## Team Members | ||
- Student 1: Siwei (Louis) He, 1004220960 | ||
- Student 2: Zhihao Lin, 1005071299 | ||
- Student 1: Siwei (Louis) He, 1004220960, [email protected] | ||
- Student 2: Zhihao Lin, 1005071299, [email protected] | ||
|
||
--- | ||
|
||
## Introduction | ||
|
||
`log-surgeon` is a library for high-performance parsing of unstructured text | ||
logs implemented using Rust. | ||
|
||
--- | ||
|
||
## Motivation | ||
Today's large technology companies generate logs the magnitude of petabytes per day as a critical | ||
source for runtime failure diagnostics and data analytics. In a real-world production environment, | ||
logs can be split into two categories: unstructured logs and structured logs, where unstructured logs | ||
usually consist of a timestamp and a raw text message (i.e.,[Hadoop logs][hadoop-logs]), and | ||
logs can be split into two categories: unstructured logs and structured logs, where unstructured | ||
logs usually consist of a timestamp and a raw text message (i.e.,[Hadoop logs][hadoop-logs]), and | ||
structured logs are normally JSON records (i.e., [mongoDB logs][mongodb-logs]). [CLP][github-clp], | ||
is a distributed system designed to compress, search, and analyze large-scale log data. It provides | ||
solutions for both unstructured and structured logs, as discussed in its | ||
|
@@ -76,7 +83,9 @@ Our project, [log-surgeon-rust][home-page], is designed to improve CLP's parsing | |
safe and high-performant regular expression engine specialized for unstructured logs, allowing users | ||
to extract named variables from raw text log messages efficiently according to user-defined schema. | ||
|
||
## Objective and Key Features | ||
--- | ||
|
||
## Objective | ||
The objective of this project is to fill the gap explained in the motivation above in the current | ||
Rust ecosystem. We shall deliver a high-performance and memory-safe log parsing library using Rust. | ||
The project should consist of the core regex engine, the parser, and the user-oriented log parsing | ||
|
@@ -87,49 +96,136 @@ User-defined schemas will be described in regular expressions, and the underlyin | |
the schema regular expressions into abstract syntax trees (AST), convert ASTs into non-deterministic | ||
finite automata ([NFA][wiki-nfa]), and merge all NFAs into one large deterministic finite automata | ||
([DFA][wiki-dfa]). This single-DFA design will ensure the execution time is bounded by the length of | ||
the input stream. If time allows, we will even implement [tagged DFA][wiki-tagged-dfa] to make | ||
the schema more powerful. | ||
the input stream. | ||
|
||
The parser has two components: | ||
- The schema parser, which is an implementation of [LALR parser][wiki-lalr], parses user-input | ||
schema into regex AST. | ||
- The log parser, which operates similarly to a simple compiler, uses a lexer to process the input | ||
text and emits tokens, and makes decisions based on emitted tokens using the core regex engine. | ||
The actual log parser should operate similarly to a simple compiler: it uses a lexer to process the | ||
input character stream and emits tokens according to the user-defined schema, and makes decisions | ||
based on emitted tokens to construct parsed log events. | ||
|
||
The log parsing interface will provide user programmatic APIs to: | ||
- Specify inputs (variable schemas) to configure the regex engine | ||
- Feed input stream to the log parser using the configured regex engine | ||
- Specify inputs (variable schemas) to configure the log parser | ||
- Feed input log stream to the log parser | ||
- Retrieve outputs (parsed log events structured according to the user schema) from the parser | ||
|
||
[Zhihao Lin][github-zhihao] will be working on the parser implementation. | ||
--- | ||
|
||
## Features | ||
As a log parsing library, log-surgeon provides the following features that differ from general text | ||
parsers: | ||
- **Advanced Log Parsing Capabilities:** | ||
- Extracts variable values such as log levels and user-defined variables, regardless of their | ||
position within log events. | ||
- Utilizes regular expressions tailored to each variable type rather than for entire log events. | ||
- Supports parsing of multi-line log events, delimited by timestamps. | ||
|
||
- **Customizable Stream Support:** | ||
- Enables integration with user-defined stream types through the `log_surgeon::lexer::LexerStream` | ||
trait. | ||
|
||
- **Flexible Parsing APIs:** | ||
- A **low-level API** for streaming lexer-generated tokens. | ||
- A **high-level API** that structures tokens into parsed log events for easier consumption. | ||
|
||
As the library prioritizes log parsing, the regex engine is not part of the default API. To access | ||
regex-specific functionality, enable the `regex-engine` feature in the Cargo configuration. This | ||
feature provides APIs for: | ||
- Converting [regex_syntax::ast::Ast][regex-syntax-ast-Ast] into an NFA. | ||
- Merging multiple NFAs into a single DFA. | ||
- Simulating a DFA with character streams or strings. | ||
|
||
--- | ||
|
||
## Architecture Overview | ||
![log-surgeon-arch-overview](docs/src/overall-arch-diagram.png) | ||
|
||
--- | ||
|
||
## User's Guide | ||
log-surgeon is a Rust library for high-performance parsing of unstructured text logs. It is being | ||
shipped as a Rust crate and can be included in your Rust project by adding the following line to | ||
your `Cargo.toml` file: | ||
```toml | ||
[dependencies] | ||
log-surgeon = { git = "https://github.com/Toplogic-Inc/log-surgeon-rust", branch = "main" } | ||
``` | ||
|
||
Example usage of the library can be found in the examples directory of the repository. You can use | ||
the following code to confirm that you successfully included the library and check the version of | ||
the library: | ||
```rust | ||
extern crate log_surgeon; | ||
|
||
fn main() { | ||
println!("You are using log-surgeon version: {}", log_surgeon::version()); | ||
} | ||
``` | ||
|
||
## Reproducibility Guide | ||
There are several regression tests in the `tests` directory of the repository as well as in the | ||
individual components of the project. You can run the tests to ensure that the library is working | ||
as expected. The tests include testing the AST to NFA conversion, the NFA to DFA conversion, the | ||
DFA simulation on the input stream, and the correct passing of unstructured logs given input file | ||
and log searching schema. | ||
|
||
To run the tests, you can use the following command: | ||
```shell | ||
cargo test | ||
``` | ||
|
||
There are also example usage of the library in the `examples` directory of the repository. You can | ||
run the examples to see how the library can be used or be reproduced in a real-world scenario. Assume | ||
you are in the root directory of the repository, you can run the following command to change your | ||
directory to the examples directory and run the example: | ||
```shell | ||
cd examples | ||
cargo run | ||
``` | ||
The example uses the repository relative path to include the dependency. If you want to include the | ||
library in your project, you can follow the user's guide above where you should specify the git URL | ||
to obtain the latest version of the library. | ||
|
||
--- | ||
|
||
## Contributions by each team member | ||
1. **[Louis][github-siwei]** | ||
- Implemented the draft version of the AST-to-NFA conversion. | ||
- Implemented the conversion from one or more NFAs to a single DFA. | ||
- Implemented the simulation of the DFA on the input stream. | ||
|
||
|
||
2. **[Zhihao][github-zhihao]** | ||
- Implemented the final version of AST-to-NFA conversion. | ||
- Implemented the schema parser. | ||
- Implemented the lexer. | ||
- Implemented the log parser. | ||
|
||
Both members contributed to the overall architecture, unit testing, integration testing, and library | ||
finalization. Both members reviewed the other's implementation through GitHub's Pull Request. | ||
|
||
[Siwei (Louis) He][github-siwei] will be working on the core regex engine implementation. | ||
--- | ||
|
||
Both will be working on the log parsing interface. | ||
## Lessons learned and concluding remarks | ||
This project provided us with an excellent opportunity to learn about the Rust programming language. | ||
We gained hands-on experience with Rust's borrowing system, which helped us write safe and reliable | ||
code. | ||
|
||
One will review the other's implementation through GitHub's Pull Request for the purpose of the | ||
correctness and efficiency. | ||
While we successfully completed the project, we identified areas for improvement. First, we could | ||
have invested more time in the research and design phase. A clearer consensus on the AST-to-NFA | ||
conversion design could have reduced the time spent on iterations during implementation. | ||
|
||
## Tentative Plan and Status | ||
1. **Louis** | ||
Second, due to time constraints, we couldn’t fully optimize the library’s performance. While the | ||
core functionality is implemented, there’s significant room for improvement. We have many ideas for | ||
optimization but lacked the time to execute them. | ||
|
||
| Time | Tentative Schedule | Status | | ||
|-----------------------|---------------------------------------------|-------------| | ||
| Oct. 18th ~ Oct. 25th | Complete AST common structs for the project | Done | | ||
| Oct. 25th ~ Nov. 8th | Complete NFA structs and research | On track | | ||
| Nov. 1st ~ Nov. 8th | Implement AST to NFA translation | Not started | | ||
| Nov. 8th ~ Nov. 15th | Implement AST to NFA translation | Not started | | ||
| Nov. 15th ~ Nov. 22nd | Complete DFA structs and research | Not started | | ||
| Nov. 22nd ~ Nov. 29th | Implement NFA to DFA translation | Not started | | ||
| Nov. 29th ~ Dec. 6th | Stages integration and final reporting | Not started | | ||
Overall, the project is a great learning experience. We have learned a lot about Rust, how to ship a | ||
Rust crate, and how everything works behind the regular expression processing. We are proud filling | ||
the gap in the Rust ecosystem where there is no high-performance unstructured log parsing library. | ||
|
||
2. **Zhihao** | ||
The future work: | ||
- Improve DFA simulation performance. | ||
- Implement [tagged-DFA][wiki-tagged-dfa] to support more powerful variable extraction. | ||
- Optimize the lexer to emit tokens based on buffer views, reducing internal string copying. | ||
|
||
| Time | Tentative Schedule | Status | | ||
|-----------------------|-------------------------------------------------------------|-------------| | ||
| Nov. 1st ~ Nov. 15th | Implement LALR parser for schema parsing and AST generation | Not started | | ||
| Nov. 15th ~ Nov. 29nd | Implement lexer for input stream processing | Not started | | ||
| Nov. 29nd ~ Dec. 6th | Formalize log parsing APIs | Not started | | ||
|
||
[clp-paper]: https://www.usenix.org/system/files/osdi21-rodrigues.pdf | ||
[clp-s-paper]: https://www.usenix.org/system/files/osdi24-wang-rui.pdf | ||
|
@@ -139,7 +235,8 @@ correctness and efficiency. | |
[hadoop-logs]: https://zenodo.org/records/7114847 | ||
[home-page]: https://github.com/Toplogic-Inc/log-surgeon-rust | ||
[mongodb-logs]: https://zenodo.org/records/11075361 | ||
[regex-syntax-ast-Ast]: https://docs.rs/regex-syntax/latest/regex_syntax/ast/enum.Ast.html | ||
[wiki-dfa]: https://en.wikipedia.org/wiki/Deterministic_finite_automaton | ||
[wiki-lalr]: https://en.wikipedia.org/wiki/LALR_parser | ||
[wiki-nfa]: https://en.wikipedia.org/wiki/Nondeterministic_finite_automaton | ||
[wiki-tagged-dfa]: https://en.wikipedia.org/wiki/Tagged_Deterministic_Finite_Automaton | ||
[video-demo]: TODO |
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,145 @@ | ||
# log-surgeon: A performant log parsing library | ||
Project Link: [Homepage][home-page] | ||
|
||
## Team Members | ||
- Student 1: Siwei (Louis) He, 1004220960 | ||
- Student 2: Zhihao Lin, 1005071299 | ||
|
||
## Introduction | ||
|
||
`log-surgeon` is a library for high-performance parsing of unstructured text | ||
logs implemented using Rust. | ||
|
||
|
||
## Motivation | ||
Today's large technology companies generate logs the magnitude of petabytes per day as a critical | ||
source for runtime failure diagnostics and data analytics. In a real-world production environment, | ||
logs can be split into two categories: unstructured logs and structured logs, where unstructured logs | ||
usually consist of a timestamp and a raw text message (i.e.,[Hadoop logs][hadoop-logs]), and | ||
structured logs are normally JSON records (i.e., [mongoDB logs][mongodb-logs]). [CLP][github-clp], | ||
is a distributed system designed to compress, search, and analyze large-scale log data. It provides | ||
solutions for both unstructured and structured logs, as discussed in its | ||
[2021's OSDI paper][clp-paper] and [2024's OSDI paper][clp-s-paper]. | ||
|
||
CLP has been deployed in many large-scale production software systems in thousands of cloud servers | ||
and commercial electric vehicles. Throughout the deployment experiences, an interesting issue has | ||
been found. Consider the following log event: | ||
```text | ||
2022-10-10 12:30:02 1563 1827 I AppControl: Removed item: AppOpItem(Op code=1, UID=1000) | ||
``` | ||
This is an unstructured log event collected from the Android system on a mobile device. It can be | ||
manually structured in the following way: | ||
```JSON | ||
{ | ||
"timestamp": "2022-10-10 12:30:02", | ||
"PID": 1563, | ||
"TID": 1827, | ||
"priority": "I", | ||
"tag": "AppControl", | ||
"record": { | ||
"action": "Removed item", | ||
"op_code": 1, | ||
"UID": 1000 | ||
} | ||
} | ||
``` | ||
Intuitively, the structured version makes it easier to query relevant data fields. For example, if | ||
an application wants to query `UID=1000`, it can take advantage of the tree-style key-value pair | ||
structure that JSON format provides. Otherwise, it might need a complicated regular expression to | ||
extract the number from the raw-text log message. Unfortunately, it is impossible to deprecate | ||
unstructured logging infrastructures in any real-world software systems for the following reasons: | ||
- Unstructured logs are more run-time-efficient: it does not introduce overhead of structuring data. | ||
- Legacy issues: real-world software systems use countless software components; some | ||
may not be compatible with structured logging infrastructure. | ||
|
||
Hence, the high-level motivation of our project has been formed: how to improve the analyzability of | ||
unstructured logs to make it as usable as structured logs? The scope of this problem is vast, | ||
and we will focus on one aspect: log parsing. CLP has introduced an innovative way of handling | ||
unstructured logs. The basic idea behind is to find the static text and variables in a raw text log | ||
message, where the static text is like a format string. For instance, the above log event can be | ||
interpreted as the following: | ||
```Python | ||
print( | ||
f"{timestamp}, {pid}, {tid}, {priority}, {tag}: Removed item: AppOpItem(Op code={op}, UID={uid})" | ||
) | ||
``` | ||
`timestamp`, `pid`, `tid`, `priority`, `tag`, `op`, and `uid` are all variables. This provides | ||
some simple data structuring, however, it has a few limitations: | ||
- CLP's heuristic parser cannot parse logs based on user-defined schema. For example, | ||
`"Removed item"` above may be a variable, but CLP's heuristic parser cannot handle that. | ||
- CLP's heuristic parser cannot parse complicated substrings, i.e., a substring described by the | ||
regular expression `capture:((?<letterA>a)*)|(((?<letterC>c)|(?<letterD>d)){0,10})`. | ||
- The parsed variables are unnamed. For example, users cannot name the 7th variable to be `"uid"` in | ||
the above example. | ||
|
||
Our project, [log-surgeon-rust][home-page], is designed to improve CLP's parsing features. It is a | ||
safe and high-performant regular expression engine specialized for unstructured logs, allowing users | ||
to extract named variables from raw text log messages efficiently according to user-defined schema. | ||
|
||
## Objective and Key Features | ||
The objective of this project is to fill the gap explained in the motivation above in the current | ||
Rust ecosystem. We shall deliver a high-performance and memory-safe log parsing library using Rust. | ||
The project should consist of the core regex engine, the parser, and the user-oriented log parsing | ||
interface. | ||
|
||
The core regex engine is designed for high-performance schema matching and variable extraction. | ||
User-defined schemas will be described in regular expressions, and the underlying engine will parse | ||
the schema regular expressions into abstract syntax trees (AST), convert ASTs into non-deterministic | ||
finite automata ([NFA][wiki-nfa]), and merge all NFAs into one large deterministic finite automata | ||
([DFA][wiki-dfa]). This single-DFA design will ensure the execution time is bounded by the length of | ||
the input stream. If time allows, we will even implement [tagged DFA][wiki-tagged-dfa] to make | ||
the schema more powerful. | ||
|
||
The parser has two components: | ||
- The schema parser, which is an implementation of [LALR parser][wiki-lalr], parses user-input | ||
schema into regex AST. | ||
- The log parser, which operates similarly to a simple compiler, uses a lexer to process the input | ||
text and emits tokens, and makes decisions based on emitted tokens using the core regex engine. | ||
|
||
The log parsing interface will provide user programmatic APIs to: | ||
- Specify inputs (variable schemas) to configure the regex engine | ||
- Feed input stream to the log parser using the configured regex engine | ||
- Retrieve outputs (parsed log events structured according to the user schema) from the parser | ||
|
||
[Zhihao Lin][github-zhihao] will be working on the parser implementation. | ||
|
||
[Siwei (Louis) He][github-siwei] will be working on the core regex engine implementation. | ||
|
||
Both will be working on the log parsing interface. | ||
|
||
One will review the other's implementation through GitHub's Pull Request for the purpose of the | ||
correctness and efficiency. | ||
|
||
## Tentative Plan and Status | ||
1. **Louis** | ||
|
||
| Time | Tentative Schedule | Status | | ||
|-----------------------|---------------------------------------------|-------------| | ||
| Oct. 18th ~ Oct. 25th | Complete AST common structs for the project | Done | | ||
| Oct. 25th ~ Nov. 8th | Complete NFA structs and research | On track | | ||
| Nov. 1st ~ Nov. 8th | Implement AST to NFA translation | Not started | | ||
| Nov. 8th ~ Nov. 15th | Implement AST to NFA translation | Not started | | ||
| Nov. 15th ~ Nov. 22nd | Complete DFA structs and research | Not started | | ||
| Nov. 22nd ~ Nov. 29th | Implement NFA to DFA translation | Not started | | ||
| Nov. 29th ~ Dec. 6th | Stages integration and final reporting | Not started | | ||
|
||
2. **Zhihao** | ||
|
||
| Time | Tentative Schedule | Status | | ||
|-----------------------|-------------------------------------------------------------|-------------| | ||
| Nov. 1st ~ Nov. 15th | Implement LALR parser for schema parsing and AST generation | Not started | | ||
| Nov. 15th ~ Nov. 29nd | Implement lexer for input stream processing | Not started | | ||
| Nov. 29nd ~ Dec. 6th | Formalize log parsing APIs | Not started | | ||
|
||
[clp-paper]: https://www.usenix.org/system/files/osdi21-rodrigues.pdf | ||
[clp-s-paper]: https://www.usenix.org/system/files/osdi24-wang-rui.pdf | ||
[github-clp]: https://github.com/y-scope/clp | ||
[github-siwei]: https://github.com/Louis-He | ||
[github-zhihao]: https://github.com/LinZhihao-723 | ||
[hadoop-logs]: https://zenodo.org/records/7114847 | ||
[home-page]: https://github.com/Toplogic-Inc/log-surgeon-rust | ||
[mongodb-logs]: https://zenodo.org/records/11075361 | ||
[wiki-dfa]: https://en.wikipedia.org/wiki/Deterministic_finite_automaton | ||
[wiki-lalr]: https://en.wikipedia.org/wiki/LALR_parser | ||
[wiki-nfa]: https://en.wikipedia.org/wiki/Nondeterministic_finite_automaton | ||
[wiki-tagged-dfa]: https://en.wikipedia.org/wiki/Tagged_Deterministic_Finite_Automaton |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.