forked from MaterializeInc/materialize
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
doc/user: reorg monitoring docs into "operations" section
This makes space for additional deployment instructions. I also took the opportunity to reformat the monitoring docs to be more consistent with the rest of the documentation.
- Loading branch information
Showing
5 changed files
with
95 additions
and
193 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
title: "Operations" | ||
description: "Find details about running your Materialize instances" | ||
disable_toc: true | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
--- | ||
title: "Deployment" | ||
description: "Find details about running your Materialize instances" | ||
menu: | ||
main: | ||
parent: operations | ||
--- | ||
|
||
_This page is a work in progress and will have more detail in the coming months. | ||
If you have specific questions, feel free to [file a GitHub | ||
issue](https://github.com/MaterializeInc/materialize/issues/new?labels=C-feature&template=feature.md)._ | ||
|
||
## Memory | ||
|
||
Materialize stores the majority of its state in-memory, and works best when the streamed data | ||
can be reduced in some way. For example, if you know that only a subset of your rows and columns | ||
are relevant for your queries, it helps to avoid materializing sources or views until you've | ||
expressed this to the system (we can avoid stashing that data, which can in some cases dramatically | ||
reduce the memory footprint). | ||
|
||
To minimize the chances that Materialize runs out of memory in a production environment, | ||
we recommend you make additional memory available to Materialize via a SSD-backed | ||
swap file or swap partition. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters