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
Copy file name to clipboardExpand all lines: docs/flex/interactive/configuration.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,6 +16,8 @@ Below is a list of all configurable items:
16
16
| storedproc-port | 10000 | The port of the interactive stored procedure service | v0.3 |
17
17
| cypher-port | 7687 | The port of the cypher service | v0.3 |
18
18
| config | None | The customized configuration file for engine interactive service | v0.4 |
19
+
| image-tag | latest | The version of the interactive you want to install | v0.5 |
20
+
| set | None | Specify additional properties for Interactive via the command line to override any corresponding settings in the configuration file if they are present | v0.5 |
19
21
<!-- | gremlin-port | None | The port of the gremlin service | v0.3 | -->
20
22
21
23
@@ -121,6 +123,7 @@ In this following table, we use the `.` notation to represent the hierarchy with
121
123
| compiler.query_timeout | 3000000 | The maximum time for compiler to wait engine's reply, in `ms` | 0.0.3 |
122
124
| http_service.sharding_mode | exclusive | The sharding mode for http service, In exclusive mode, one shard is reserved exclusively for service admin request. In cooperative, both query request and admin request could be served by any shard. | 0.5 |
123
125
| http_service.max_content_length | 1GB | The maximum length of a http request that admin http service could handle | 0.5 |
126
+
| storage.string_default_max_length | 256 | The default maximum size for a string field | 0.5 |
In addition to the interactive server, a coordinator server is also deployed. The coordinator server functions similarly to the `ApiServer` for k8s, enabling users to engage with the GraphScope platform via a streamlined and standardized set of APIs.
26
26
```
27
27
28
+
```{note}
29
+
By default, the latest version of Interactive is used. To specify a fixed version, use the --image-tag option. For example `gsctl instance deploy --type interactive --image-tag v0.31.0`.
30
+
```
31
+
28
32
<!-- 2. Gremlin service is disabled by default, To enable it, try specifying the Gremlin port, see [Service-Accessibility](./installation.md#service-accessibility) -->
0 commit comments