Skip to content

Commit

Permalink
Remove unnecessary trailing spaces.
Browse files Browse the repository at this point in the history
  • Loading branch information
kirkrodrigues committed May 2, 2024
1 parent b18345f commit e04db2d
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions docs/src/user-guide/quick-start-cluster-setup/multi-node.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,17 +134,17 @@ cases, see the [SeaweedFS docs][seaweedfs-docs].
weed master -port 9333
weed filer -port 8888 -master "localhost:9333"
```

3. Start one or more volume servers on one or more hosts.

{style=lower-alpha}
1. Create a directory where you want SeaweedFS to store data.
2. Start the volume server:

```bash
weed volume -mserver "<master-host>:9333" -dir <storage-dir> -max 0
```

* `<master-host>` is the hostname/IP of the master host.
* `<storage-dir>` is the directory where you want SeaweedFS to store data.
4. Start a FUSE mount on every host that you want to run a CLP worker:
Expand Down
2 changes: 1 addition & 1 deletion docs/src/user-guide/quick-start-search/ui-search.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Searching from the UI

CLP includes a web interface available at [http://localhost:4000](http://localhost:4000) by default
(if you changed `webui.host` or `webui.port` in `etc/clp-config.yml`, use the new values).
(if you changed `webui.host` or `webui.port` in `etc/clp-config.yml`, use the new values).

:::{image} clp-search-ui.png
:::
Expand Down
10 changes: 5 additions & 5 deletions docs/src/user-guide/reference-json-search-syntax.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ syntax above only works for values that are strings.

:::{caution}
CLP doesn't currently support the `?` wildcard (which matches any single character) _except_ in
values containing multiple words. This limitation will be addressed in a future version of CLP.
values containing multiple words. This limitation will be addressed in a future version of CLP.
:::

### Wildcards in keys
Expand Down Expand Up @@ -152,7 +152,7 @@ key1: value1 AND (key2: valueA OR key2: valueB) AND NOT key3: value3

There are three supported boolean operators:

* `AND` - the expressions on _both_ sides of the operator must be true.
* `AND` - the expressions on _both_ sides of the operator must be true.
* `OR` - the expressions on _either_ side of the operator must be true.
* `NOT` - the expression after the operator must _not_ be true.

Expand Down Expand Up @@ -218,17 +218,17 @@ There are a few notable differences between CLP's search syntax and KQL:
* When querying for multiple kv-pairs in an array, CLP does not guarantee that all kv-pairs are in
the same object, whereas KQL does.
* For example, in CLP, the query `a: {"b": 0, "c": 0}` will match log events like

```json
{"a": [{"b": 0}, {"c": 0}]}
```

and

```json
{"a": [{"b": 0, "c": 0}]}
```

Whereas with KQL, the query would only match the second log event.

[kql]: https://www.elastic.co/guide/en/kibana/current/kuery-query.html

0 comments on commit e04db2d

Please sign in to comment.