Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft improvements to Using the DMT (#892) #898

Merged
merged 6 commits into from
Nov 21, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# These owners will be the default owners for everything in
# the repo
* @Serdaro @rebekah-lawrence
Binary file added docs/modules/ROOT/images/dmt_diagram.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/modules/ROOT/images/serialization2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion docs/modules/ROOT/pages/faq.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ For example, you can execute the below command on one member (i.e. listening on

And you can execute the below command on the other member.

`iperf -c` *`<IP address>`* `-d -p 5701`
`iperf -c *``<IP address>``* -d -p 5701`

The output should include connection information, such as the IP addresses, transfer speed and bandwidth.
Otherwise, if the output says `No route to host`, it means a network connection problem exists.
Expand Down
4 changes: 2 additions & 2 deletions docs/modules/data-structures/pages/ringbuffer.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -295,9 +295,9 @@ hazelcast:
----
====

The following are the explanations for the Ringbuffer store configuration elements:
The following are the configuration elements and their descriptions:

* `class-name: Name of the Ringbuffer store factory class.
* `class-name`: Name of the Ringbuffer store factory class.

[[configuring-ringbuffer-in-memory-format]]
== Configuring Ringbuffer In-Memory Format
Expand Down
2 changes: 1 addition & 1 deletion docs/modules/integrate/pages/kafka-connect-connectors.adoc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
= Kafka Connect Source Connectors
:description: pass:q[With a Kafka Connect Source connector, you can reliably import data from an external system, such as a database, key-value store, search index, or file system, directly into a Hazelcast data pipeline. The data is available for stream processing. *No Kafka cluster is required*.]
:page-beta: true
:page-beta: false

{description}

Expand Down
403 changes: 320 additions & 83 deletions docs/modules/migrate/pages/data-migration-tool.adoc

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/modules/query/pages/predicate-overview.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ xref:sql-overview.adoc[] for more information.

SQL-like predicates support the following syntax:

**AND/OR:** `<expression> AND <expression> AND <expression>... `
**AND/OR:** `<expression> AND <expression> AND <expression>...`

* `active AND age>30`
* `active=false OR age = 45 OR name = 'Joe'`
Expand Down
2 changes: 1 addition & 1 deletion docs/modules/sql/pages/create-data-connection.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ If a data connection of the same name has been configured programmatically or in
|Unique name for the data connection.

|`TYPE` `connection_type`
|The type of data connection required to connect to the external system. The following types of connection are supported: `JDBC`, `Kafka`, `Mongo` (Beta), `HZ`. All connection types are case-insensitive.
|The type of data connection required to connect to the external system. The following types of connection are supported: `JDBC`, `Kafka`, `Mongo`, `HZ`. All connection types are case-insensitive.

|`NOT SHARED`
|Every time you issue a query against a SQL mapping, a new physical connection to the external system is created.
Expand Down
2 changes: 1 addition & 1 deletion docs/modules/sql/pages/mapping-to-jdbc.adoc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
= Mapping to JDBC
:description: To query external JDBC data stores, you can create a mapping to them with the JDBC connector.
:page-beta: true
:page-beta: false

{description}

Expand Down
2 changes: 1 addition & 1 deletion docs/modules/sql/pages/mapping-to-mongo.adoc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
= Mapping to MongoDB
:description: To query MongoDB data connections, you can create a mapping to them with the Mongo connector.
:page-beta: true
:page-beta: false

{description}

Expand Down
Loading