Skip to content

Commit

Permalink
Remove toss and update yaml (#1853)
Browse files Browse the repository at this point in the history
  • Loading branch information
foesa-yang authored Jan 11, 2023
1 parent 0b7499b commit 74a1d34
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,6 @@ EdgeA_Out and EdgeA_In are stored in storage layer with opposite directions, con

Like EdgeA_Out and EdgeA_In, NebulaGraph redundantly stores the information of each edge, which doubles the actual capacities needed for edge storage. The key corresponding to the edge occupies a small hard disk space, but the space occupied by Value is proportional to the length and amount of the property value. Therefore, it will occupy a relatively large hard disk space if the property value of the edge is large or there are many edge property values.

<!-- To ensure the final consistency of the two key-value pairs when operating on edges, enable the [TOSS function](../../5.configurations-and-logs/1.configurations/3.graph-config.md ). After that, the operation will be performed in Partition x first where the out-edge is located, and then in Partition y where the in-edge is located. Finally, the result is returned. -->

### Partition algorithm

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

- Optimized the job manager. [#4446](https://github.com/vesoft-inc/nebula/pull/4446) [#4442](https://github.com/vesoft-inc/nebula/pull/4442) [#4444](https://github.com/vesoft-inc/nebula/pull/4444) [#4460](https://github.com/vesoft-inc/nebula/pull/4460) [#4500](https://github.com/vesoft-inc/nebula/pull/4500) [#4633](https://github.com/vesoft-inc/nebula/pull/4633) [#4654](https://github.com/vesoft-inc/nebula/pull/4654) [#4663](https://github.com/vesoft-inc/nebula/pull/4663) [#4722](https://github.com/vesoft-inc/nebula/pull/4722) [#4742](https://github.com/vesoft-inc/nebula/pull/4742)

- Added flags of experimental features, <!-- `enable_toss` for `TOSS` and -->`enable_data_balance` for `BALANCE DATA`. [#4728](https://github.com/vesoft-inc/nebula/pull/4728)
- Added flags of experimental features, `enable_data_balance` for `BALANCE DATA`. [#4728](https://github.com/vesoft-inc/nebula/pull/4728)

- Stats log print to console when the process is started. [#4550](https://github.com/vesoft-inc/nebula/pull/4550)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Most configurations are the same as the configurations of [Storage Service](../.
| Name | Default value | Description |
| :----------- | :----------------------- | :------------------ |
| `daemonize` | `true` | When set to `true`, the process is a daemon process. |
| `pid_file` | `pids_listener/nebula-storaged.pid` | The file that records the process ID. |
| `pid_file` | `pids/nebula-metad-listener.pid` | The file that records the process ID. |
| `meta_server_addrs` | - | IP addresses and ports of all Meta services. Multiple Meta services are separated by commas. |
| `local_ip` | - | The local IP address of the Listener service. |
| `port` | - | The listening port of the RPC daemon of the Listener service. |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -131,15 +131,6 @@ For more information about audit log, see [Audit log](../2.log-management/audit-
| ------------------- | ------------------------ | ------------------------------------------ |
|`enable_experimental_feature`|`false`| Specifies the experimental feature. Optional values are `true` and `false`. For currently supported experimental features, see below.|
|`enable_data_balance`|`true`|Whether to enable the [BALANCE DATA](../../8.service-tuning/load-balance.md) feature. Only works when `enable_experimental_feature` is `true`. |
<!-- |`enable_toss`|`false`|Whether to enable the TOSS feature. The TOSS (Transaction on Storage Side) feature is used to ensure the final consistency of the `INSERT`, `UPDATE`, `UPSERT`, or `DELETE` operations on edges (because one edge logically corresponds to two key-value pairs on the hard disk). After the TOSS function is enabled, the time delay of related operations will be increased by about one time.<br>Only works when `enable_experimental_feature` is `true`.| -->


<!-- ### Experimental features
| Name | Description |
| ------------------- | ------------------------------------------|
| TOSS | The TOSS (Transaction on Storage Side) function is used to ensure the final consistency of the `INSERT`, `UPDATE`, `UPSERT`, or `DELETE` operations on edges (because one edge logically corresponds to two key-value pairs on the hard disk). After the TOSS function is enabled, the time delay of related operations will be increased by about one time. | -->


{{ ent.ent_begin }}
## Black box configurations
Expand Down
1 change: 0 additions & 1 deletion docs-2.0/reuse/source-monitoring-metrics.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,6 @@
| `num_sync_data` | The number of times the Storage service synchronizes data from the Drainer. |
| `num_sync_data_errors` | The number of errors that occur when the Storage service synchronizes data from the Drainer. |
| `sync_data_latency_us` | The latency of the Storage service synchronizing data from the Drainer. |
<!-- | `add_edges_atomic_latency_us` | The latency of adding atomic edge after TOSS is enabled. | -->


### Graph space
Expand Down

0 comments on commit 74a1d34

Please sign in to comment.