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
It's possible to setup a mode for redpanda to start. Currently we support the mode `dev-container`.
10
+
Redpanda supports a `dev-container` mode with preset configuration for development and test environments.
11
11
12
-
To set up the mode `dev-container` run:
12
+
Run the following command to start Redpanda in `dev-container` mode:
13
13
14
14
[,bash]
15
15
----
16
16
rpk redpanda start --mode dev-container
17
17
----
18
18
19
-
Mode uses well-known configuration properties for development or tests
20
-
environments:
19
+
This mode bundles the following flags and cluster properties:
21
20
22
21
Bundled flags:
23
22
24
-
* `--overprovisioned`
23
+
* xref:reference:rpk/rpk-redpanda/rpk-redpanda-mode.adoc#development-mode[`--overprovisioned`] (disables thread affinity and other production guards; see xref:reference:rpk/rpk-redpanda/rpk-redpanda-mode.adoc#development-mode[`rpk redpanda mode`] for details)
25
24
* `--reserve-memory 0M`
26
25
* `--check=false`
27
26
* `--unsafe-bypass-fsync`
@@ -35,7 +34,7 @@ Bundled cluster properties:
35
34
* `topic_partitions_per_shard: 1000`
36
35
* `fetch_reads_debounce_timeout: 10`
37
36
38
-
After redpanda starts you can modify the cluster properties using:
37
+
After Redpanda starts, you can modify cluster properties by running:
0 commit comments