Skip to content

Commit 5c1455e

Browse files
authored
update pipe.md (#2414)
* Update 4.pipe.md * Update 4.pipe.md
1 parent 18f5f3c commit 5c1455e

File tree

2 files changed

+2
-6
lines changed
  • docs-2.0-en/3.ngql-guide/5.operators
  • docs-2.0-zh/3.ngql-guide/5.operators

2 files changed

+2
-6
lines changed

docs-2.0-en/3.ngql-guide/5.operators/4.pipe.md

+1-3
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,7 @@ In NebulaGraph, pipes will affect the performance. Take `A | B` as an example, t
3939

4040
1. Pipe operators operate synchronously. That is, the data can enter the pipe clause as a whole after the execution of clause `A` before the pipe operator is completed.
4141

42-
2. Pipe operators need to be serialized and deserialized, which is executed in a single thread.
43-
44-
3. If `A` sends a large amount of data to `|`, the entire query request may be very slow. You can try to split this statement.
42+
2. If `A` sends a large amount of data to `|`, the entire query request may be very slow. You can try to split this statement.
4543

4644
1. Send `A` from the application,
4745

docs-2.0-zh/3.ngql-guide/5.operators/4.pipe.md

+1-3
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,7 @@ nebula> GO FROM "player100" OVER follow \
3939

4040
1. 管道是同步操作。也即需要管道之前的子句`A`执行完毕后,数据才能整体进入管道子句。
4141

42-
2. 管道本身是需要序列化和反序列化的,这个是单线程执行的。
43-
44-
3. 如果`A`发大量数据给 `|`,整个查询请求的总体时延可能会非常大。此时可以尝试拆分这个语句:
42+
2. 如果`A`发大量数据给 `|`,整个查询请求的总体时延可能会非常大。此时可以尝试拆分这个语句:
4543

4644
1. 应用程序发送`A`
4745

0 commit comments

Comments
 (0)