You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
refactor(interactive): Refactoring Wal parser and writer for GraphDB (#4504)
- Extract two interfaces`IWalWriter` and `IWalParser` to decouple
wal-related implementation from GraphDB.
- Provide local-file based WalWriter and WalParser.
- Introducing configuration `wal_uri`, which is by default set to
`{GRAPH_DATA_DIR}/wal`
Copy file name to clipboardExpand all lines: docs/flex/interactive/configuration.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -115,6 +115,7 @@ In this following table, we use the `.` notation to represent the hierarchy with
115
115
| log_level | INFO | The level of database log, INFO/WARNING/ERROR/FATAL | 0.0.1 |
116
116
| verbose_level | 0 | The verbose level of database log, should be a int | 0.0.3 |
117
117
| compute_engine.thread_num_per_worker | 1 | The number of threads will be used to process the queries. Increase the number can benefit the query throughput | 0.0.1 |
118
+
| compute_engine.wal_uri | file://{GRAPH_DATA_DIR}/wal | The location where Interactive will store and access WALs. `GRAPH_DATA_DIR` is a placeholder that will be populated by Interactive. | 0.5 |
118
119
| compiler.planner.is_on | true | Determines if query optimization is enabled for compiling Cypher queries | 0.0.1 |
119
120
| compiler.planner.opt | RBO | Specifies the optimizer to be used for query optimization. Currently, only the Rule-Based Optimizer (RBO) is supported | 0.0.1 |
120
121
| compiler.planner.rules.FilterMatchRule | N/A | An optimization rule that pushes filter (`Where`) conditions into the `Match` clause | 0.0.1 |
@@ -125,6 +126,7 @@ In this following table, we use the `.` notation to represent the hierarchy with
125
126
| http_service.max_content_length | 1GB | The maximum length of a http request that admin http service could handle | 0.5 |
126
127
| storage.string_default_max_length | 256 | The default maximum size for a string field | 0.5 |
127
128
129
+
128
130
#### TODOs
129
131
130
132
We currently only allow service configuration during instance deployment. In the near future, we will support:
0 commit comments