Skip to content

Commit 99b423b

Browse files
kgolubictonijurjevic96as51340antoniofilipovickatarinasupe
authored
[main < memgraph-2-19] Memgraph 2.19 documentation (#893)
* Update README.md * Added description for hiding sensitive information under database-man… (#873) * Docs improvements (#799) * Add NuRaft log file flag (#816) * Add health checks docs (#833) * Update HA examples * Add NuRaft log file env (#848) * Add leader/follower role (#857) Co-authored-by: Antonio Filipovic <[email protected]> * Add coordinator hostname HA configuration option (#860) * First leader * Update pages/clustering/high-availability.mdx Co-authored-by: Katarina Supe <[email protected]> --------- Co-authored-by: Kruno Golubic <[email protected]> Co-authored-by: Katarina Supe <[email protected]> * Add monitoring at runtime docs (#806) * Added description for hiding sensitive information under database-managment/logs * database-less connections update (#853) * Update HA docs * Added link to correct chapter * Fixed issues pointed out in pr * Add comments to PR review --------- Co-authored-by: Andi <[email protected]> Co-authored-by: Kruno Golubic <[email protected]> Co-authored-by: kgolubic <[email protected]> Co-authored-by: Antonio Filipovic <[email protected]> Co-authored-by: Katarina Supe <[email protected]> Co-authored-by: Josipmrden <[email protected]> Co-authored-by: andrejtonev <[email protected]> Co-authored-by: hal-eisen-MG <[email protected]> * TTL docs (#913) * TTL page * Update pages/querying/time-to-live.mdx * Update time-to-live.mdx * Update menu * Enterprise tag and timezone callout * PR comments --------- Co-authored-by: Kruno Golubic <[email protected]> Co-authored-by: kgolubic <[email protected]> * Prehashed password (#950) * new: Add Lab 2.16 release notes and connection types docs (#965) * new: Add Lab 2.16 release notes and connection types docs * fix: Add links to replication and ha * Fix errors in SSO documentation (#968) * Update README.md * Fix mistakes in SSO docs * SSO documentation fix * remove duplicate * Grammar error --------- Co-authored-by: kgolubic <[email protected]> Co-authored-by: Kruno Golubic <[email protected]> * [main < 925-fix-perdiodic-page] Move the example to the bottom of the page (#937) * Move example * Update periodic.mdx * Update periodic.mdx --------- Co-authored-by: hal-eisen-MG <[email protected]> * fix: Apply changes to the Port description --------- Co-authored-by: Ivan Milinović <[email protected]> Co-authored-by: kgolubic <[email protected]> Co-authored-by: Kruno Golubic <[email protected]> Co-authored-by: hal-eisen-MG <[email protected]> * [memgraph-2-19 < memgraph-2-19-relase-notes] Release notes for Memgraph 2.19 (#892) * Update RN * Update release notes * Update release notes * Update release notes * Update RN * Update RN * Update RN * Update RN * Add docs for property compression (#962) * add docs for property compression * add suggestions * LocalDateTime and timezone updates (#946) * LocalDateTime and timezone updates * PR comments --------- Co-authored-by: Kruno Golubic <[email protected]> * [Memgraph-2.19 < Helm chart updates] Add configs and notes (#960) * Add config and enterprise note. * Update naming. * Update release notes * Show active users (#963) * Add active users info * Correct information * PR addressing * PR addressing * Storage info * Empty line --------- Co-authored-by: Kruno Golubic <[email protected]> * Add periodic commit documentation (#935) * Add initial commit * Add periodic commit * Add link * Add link * Add operators * PR addressing * Address PR --------- Co-authored-by: Kruno Golubic <[email protected]> * Update direct download links * Mage Node2Vec update after bumping Gensim version (#967) * update node2vec * Wording changes * Update sitemap * Add Ubuntu 24.04 (#975) * Change wording in show instances part of HA docs (#949) * change wording in show instances part of HA docs * fix wording2 --------- Co-authored-by: Kruno Golubic <[email protected]> * Add ubuntu * Update direct download links * Update direct download links --------- Co-authored-by: Antonio Filipovic <[email protected]> --------- Co-authored-by: tonijurjevic96 <[email protected]> Co-authored-by: Andi <[email protected]> Co-authored-by: Antonio Filipovic <[email protected]> Co-authored-by: Katarina Supe <[email protected]> Co-authored-by: Josipmrden <[email protected]> Co-authored-by: andrejtonev <[email protected]> Co-authored-by: hal-eisen-MG <[email protected]> Co-authored-by: Toni <[email protected]> Co-authored-by: Ivan Milinović <[email protected]> Co-authored-by: David Ivekovic <[email protected]> Co-authored-by: Ante Javor <[email protected]>
1 parent f7dd136 commit 99b423b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+1035
-336
lines changed

pages/advanced-algorithms/available-algorithms/node2vec.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,10 +118,10 @@ The procedure returns calculated embeddings and the corresponding list of embedd
118118
training progresses.
119119
- `sg : {0, 1}` ➡ Training algorithm: 1 for skip-gram; otherwise CBOW.
120120
- `hs : {0, 1}` ➡ If 1, hierarchical softmax will be used for model training. If
121-
0, and `negative` is non-zero, negative sampling will be used.
121+
0, and `negative` is > 0, negative sampling will be used.
122122
- `negative : integer` ➡ If > 0, negative sampling will be used, the integer for
123123
negative specifies how many "noise words" should be drawn (usually
124-
between 5-20). If set to 0, no negative sampling is used.
124+
between 5-20). If set to 0, no negative sampling is used. Either `negative` must be > 0 or `hs` must be set to 1.
125125
- `epochs : integer (default=5)`
126126
- `edge_weight_property : string (default="weight")`
127127

pages/clustering/high-availability.mdx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,7 @@ environment variables or configuration flags:
132132
- coordinator hostname
133133

134134

135+
135136
#### Data instances
136137

137138
Here are the environment variables you need to use to set data instance using only environment variables:

pages/data-migration/best-practices.mdx

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -515,8 +515,15 @@ another one had just started creating. To avoid that,
515515

516516
Matching nodes and then deleting relationships attached to them can consume a
517517
lot of memory in larger datasets (>1M). This is due to the accumulation of
518-
Deltas, which store changes to the graph objects. To avoid this and efficiently
519-
drop the database, first delete all relationships and then all nodes. To delete
518+
Deltas, which store changes to the graph objects.
519+
520+
### Periodic execution
521+
To efficiently keep the memory low during query execution for a single query, refer to
522+
[periodic execution](/querying/read-and-modify-data#periodic-execution).
523+
524+
### Efficiently deleting everything manually
525+
526+
To efficiently drop the database, first delete all relationships and then all nodes. To delete
520527
the relationships, execute the query below repeatedly until the number of
521528
deleted relationships is 100,000.
522529

pages/data-visualization/install-and-connect.mdx

Lines changed: 21 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -83,18 +83,24 @@ If you encounter a security warning while installing Memgraph Lab on Windows, yo
8383

8484
{<h3>Set up connection</h3>}
8585

86-
After you start Memgraph Lab, you should be presented with a login
87-
screen.
86+
After starting Memgraph Lab, you will see the login screen. Follow
87+
these steps to connect:
8888

89-
These are the default settings:
89+
1. Click on "New connection" in the sidebar.
90+
2. Select "Memgraph instance: Connect to a standalone instance".
91+
Feel free to check [other connections types](/data-visualization/user-manual/connection-types).
9092

91-
- Leave the `Username` and `Password` fields **empty**.
92-
- The `Host` field can be either **`localhost`**, **`127.0.0.1`** or
93-
**`0.0.0.0`**, or change it appropriately.
94-
- The `Port` field should be **`7687`**. Every Memgraph instance is listening
95-
on this port by default.
96-
- The `Encrypted` option should be **disabled** and display `SSL Off` by
97-
default.
93+
Now, input the connection information:
94+
95+
- **Host**: Enter `localhost`, `host.docker.internal`, `127.0.0.1`,
96+
`0.0.0.0`, or modify it as needed.
97+
- **Port**: Enter `7687`, which Memgraph uses by default.
98+
- **Database name**: Leave empty unless connecting to a
99+
[multi-tenant Memgraph instance](/database-management/multi-tenancy).
100+
- **Logs port**: Default is `7444`, the port for the web socket
101+
logs.
102+
- **Encrypted**: Ensure this option is disabled by default.
103+
Enable it if your Memgraph has SSL enabled.
98104

99105
{<h3>Connect</h3>}
100106

@@ -235,6 +241,11 @@ Configure Memgraph Lab using the following environment variables when running it
235241
| `ENTERPRISE_LICENSE_ORG_NAME` | Enterprise license organization name. Refer to [documentation](/database-management/enabling-memgraph-enterprise) for details on obtaining and configuring the license | `string` | |
236242
| `ENTERPRISE_LICENSE_KEY` | Enterprise license key. Refer to [documentation](/database-management/enabling-memgraph-enterprise) for details on obtaining and configuring the license | `string` | |
237243
| `KEEP_ALIVE_TIMEOUT_MS` | Max time in milliseconds during which Lab will hold the connection | `integer` | `65000` |
244+
| `LOG_LEVEL` | Set the log level: `debug`, `info`, `warn`, `error`. | `string` | `"info"` |
245+
| `LOG_IS_ENABLED` | Enable or disable logging | `boolean` | `true` |
246+
| `LOG_IS_PRETTY_PRINT` | Pretty print logs and error stacktraces in multi-line JSON format | `boolean` | `true` |
247+
| `LOG_CONTEXT_IS_ENABLED` | Enable or disable logging of context information (e.g., identifiers, input data, output data) | `boolean` | `false` |
248+
| `LOG_STACKTRACE_IS_ENABLED` | Enable or disable error stacktraces in the logs | `boolean` | `false` |
238249
| `MODULE_CONTENT_MAX_LEN` | Max length of a query module content | `integer` | `50000` |
239250
| `MODULE_NAME_MAX_LEN` | Max length of the query module name | `integer` | `1000` |
240251
| `MODULE_VALIDATION_IS_ENABLED` | State of module validation | `boolean` | `false` |

0 commit comments

Comments
 (0)