Skip to content

Commit d36f751

Browse files
Use character replacements for trademarks
1 parent 88af8f0 commit d36f751

Some content is hidden

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

46 files changed

+86
-86
lines changed

docs-src/pulsar-sink-core/modules/ROOT/pages/cfgPulsarColumnWritetimeTimestamp.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
:page-tag: pulsar-connector,dev,develop,pulsar
44

5-
In the Apache Pulsar topic mapping, you can optionally specify which column should be used to note the timestamp when the Pulsar-produced record was inserted into any of the xref:index.adoc#supported-databases[supported databases].
5+
In the Apache Pulsar(TM) topic mapping, you can optionally specify which column should be used to note the timestamp when the Pulsar-produced record was inserted into any of the xref:index.adoc#supported-databases[supported databases].
66

77
The mapping setting provides a special property, `__timestamp`.
88
The format is:

docs-src/pulsar-sink-core/modules/ROOT/pages/cfgPulsarConfigTasksMax.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
:page-tag: pulsar-connector,admin,manage,pulsar
44

5-
For information on configuring parallelism for the DataStax Apache Pulsar Connector, see xref:opsPulsarScaling.adoc[].
5+
For information on configuring parallelism for the DataStax Apache Pulsar(TM) Connector, see xref:opsPulsarScaling.adoc[].

docs-src/pulsar-sink-core/modules/ROOT/pages/cfgPulsarConfigureErrorHandling.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
:page-tag: pulsar-connector,admin,manage,pulsar
44

5-
The DataStax Apache Pulsar Connector provides an optional parameter, `ignoreErrors`.
5+
The DataStax Apache Pulsar(TM) Connector provides an optional parameter, `ignoreErrors`.
66
When set to `true`, it allows the connector to continue processing records even after an error occurred on the prior record.
77

88
[#ignoreErrors]

docs-src/pulsar-sink-core/modules/ROOT/pages/cfgPulsarDisplayingTopic.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
:page-tag: pulsar-connector,dev,develop,pulsar
44

5-
You can use the Apache Pulsar `pulsar-client` command line client to examine the structure of Pulsar messages for a topic.
5+
You can use the Apache Pulsar(TM) `pulsar-client` command line client to examine the structure of Pulsar messages for a topic.
66

77
link:https://pulsar.apache.org/docs/en/reference-cli-tools/#consume/[]
88

docs-src/pulsar-sink-core/modules/ROOT/pages/cfgPulsarJsonMessageSchema.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
:page-tag: pulsar-connector,dev,develop,pulsar
44

5-
The DataStax Apache Pulsar Connector supports mapping JSON messages with or without a schema.
5+
The DataStax Apache Pulsar(TM) Connector supports mapping JSON messages with or without a schema.
66
In this example, the key is regular JSON without schema.
77
The value is also JSON but contains a schema and a payload.
88
The type of the payload is Map and the connector is able to access the individual fields of that map.
@@ -65,7 +65,7 @@ cqlsh -e "CREATE TABLE stocks_keyspace.stocks_table ( \
6565
nodetool describering -- keyspace\_name
6666
----
6767

68-
. In the DataStax Apache Pulsar Connector configuration file:
68+
. In the DataStax Apache Pulsar(TM) Connector configuration file:
6969

7070
.. Add the topic name to xref:cfgRefPulsarDseTable.adoc#topics[topics].
7171
.. Define the topic-to-table map xref:cfgRefPulsarDseTable.adoc#prefix[prefix].

docs-src/pulsar-sink-core/modules/ROOT/pages/cfgPulsarMapAvroMessages.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
:page-tag: pulsar-connector,dev,develop,pulsar,avro
44

5-
The DataStax Apache Pulsar Connector supports mapping individual fields from https://avro.apache.org/docs/1.8.1/gettingstartedjava.html[Avro] formatted key or values.
5+
The DataStax Apache Pulsar(TM) Connector supports mapping individual fields from https://avro.apache.org/docs/1.8.1/gettingstartedjava.html[Avro] formatted key or values.
66

77
In this example, the key is a basic string and the value is Avro format.
88
The Pulsar topic name is `users_topic` and have the following records:

docs-src/pulsar-sink-core/modules/ROOT/pages/cfgPulsarMapJson.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
:page-tag: pulsar-connector,dev,develop,pulsar,json
44

5-
When the data format for the key or value is JSON, the DataStax Apache Pulsar Connector mapping can include individual fields in the JSON structure.
5+
When the data format for the key or value is JSON, the DataStax Apache Pulsar(TM) Connector mapping can include individual fields in the JSON structure.
66

77
NOTE: JSON records in Pulsar can also have a schema associated with them.
88

docs-src/pulsar-sink-core/modules/ROOT/pages/cfgPulsarMapKeyPair.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ cqlsh -e "CREATE TABLE world_table (recordid int PRIMARY KEY, continent text);"
4242
nodetool describering -- keyspace_name
4343
----
4444

45-
. In the DataStax Apache Pulsar Connector configuration file:
45+
. In the DataStax Apache Pulsar(TM) Connector configuration file:
4646
.. Add the topic name to xref:cfgRefPulsarDseTable.adoc#topics[topics].
4747
.. Define the topic-to-table map xref:cfgRefPulsarDseTable.adoc#prefix[prefix].
4848
.. Define the xref:cfgRefPulsarDseTable.adoc#mapping[field-to-column map].

docs-src/pulsar-sink-core/modules/ROOT/pages/cfgPulsarMapMultipleTables.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
:page-tag: pulsar-connector,dev,develop,pulsar
44

5-
The DataStax Apache Pulsar Connector allows for mapping a single topic to multiple tables for a single connector instance.
5+
The DataStax Apache Pulsar(TM) Connector allows for mapping a single topic to multiple tables for a single connector instance.
66

77
In the example `stocks_topic`, the key is a basic string and the value is regular JSON.
88

docs-src/pulsar-sink-core/modules/ROOT/pages/cfgPulsarMapTopicTable.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22

33
:page-tag: pulsar-connector,dev,develop,pulsar
44

5-
DataStax Apache Pulsar Connector has a simple yet powerful syntax for mapping fields from a Pulsar record to columns in a xref:index.adoc#supported-databases[supported database] table. An instance of the DataStax Apache Pulsar Connector can capture multiple topics and supports mapping a single topic to one or more tables.
5+
DataStax Apache Pulsar(TM) Connector has a simple yet powerful syntax for mapping fields from a Pulsar record to columns in a xref:index.adoc#supported-databases[supported database] table. An instance of the DataStax Apache Pulsar(TM) Connector can capture multiple topics and supports mapping a single topic to one or more tables.
66

7-
== DataStax Apache Pulsar Connector topic mapping
7+
== DataStax Apache Pulsar(TM) Connector topic mapping
88

9-
DataStax Apache Pulsar Connector supports topic-to-table mappings with xref:index.adoc#supported-databases[supported databases]:
9+
DataStax Apache Pulsar(TM) Connector supports topic-to-table mappings with xref:index.adoc#supported-databases[supported databases]:
1010

1111
* xref:cfgPulsarDisplayingTopic.adoc[] Display messages to determine the data structure of the topic messages.
1212
* xref:cfgPulsarMapKeyPair.adoc[] Create a topic-table map for Pulsar messages that only contain a key and value in each record.

0 commit comments

Comments
 (0)