Skip to content

(DOCSP-48448-v112) Backport #216

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

Merged
merged 1 commit into from
Jun 4, 2025
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
10 changes: 5 additions & 5 deletions source/introduction/data-formats.txt
Original file line number Diff line number Diff line change
Expand Up @@ -146,9 +146,9 @@ Avro Schema
Avro schema is a JSON-based schema definition syntax. Avro schema supports the
specification of the following groups of data types:

- `Primitive Types <https://avro.apache.org/docs/current/spec.html#schema_primitive>`__
- `Complex Types <https://avro.apache.org/docs/current/spec.html#schema_complex>`__
- `Logical Types <https://avro.apache.org/docs/current/spec.html#Logical+Types>`__
- `Primitive Types <https://avro.apache.org/docs/++version++/specification/#primitive-types>`__
- `Complex Types <https://avro.apache.org/docs/++version++/specification/#complex-types>`__
- `Logical Types <https://avro.apache.org/docs/++version++/specification/#logical-types>`__

.. warning:: Unsupported Avro Types

Expand Down Expand Up @@ -194,7 +194,7 @@ You use Avro schema when you
:ref:`define a schema for a {+source-connector+} <source-specify-avro-schema>`.

For a list of all Avro schema types, see the
`Apache Avro specification <https://avro.apache.org/docs/current/spec.html>`__.
`Apache Avro specification <https://avro.apache.org/docs/++version++/specification/>`__.

.. _kafka-df-avro-encoding:

Expand All @@ -220,7 +220,7 @@ Avro converter, see the :ref:`Converters <avro-converter-sample-properties>`
guide.

To learn more about Avro binary encoding, see
`this section of the Avro specification <https://avro.apache.org/docs/current/spec.html#Data+Serialization+and+Deserialization>`__.
`this section of the Avro specification <https://avro.apache.org/docs/++version++/specification/#data-serialization-and-deserialization>`__.

.. _kafka-db-byte-arrays:

Expand Down
10 changes: 5 additions & 5 deletions source/source-connector/usage-examples/schema.txt
Original file line number Diff line number Diff line change
Expand Up @@ -85,18 +85,18 @@ using the following data types:
- Description

* - **name**
- `string <https://avro.apache.org/docs/current/spec.html#schema_primitive>`__
- `string <https://avro.apache.org/docs/++version++/specification/#primitive-types>`__
- | Name of the customer

* - **visits**
- `array <https://avro.apache.org/docs/current/spec.html#Arrays>`__
of `timestamps <https://avro.apache.org/docs/current/spec.html#Timestamp+%28millisecond+precision%29>`__
- `array <https://avro.apache.org/docs/++version++/specification/#arrays>`__
of `timestamps <https://avro.apache.org/docs/++version++/specification/#timestamps>`__
- Dates the customer visited

* - **goods_purchased**
- `map <https://avro.apache.org/docs/current/spec.html#Maps>`__
- `map <https://avro.apache.org/docs/++version++/specification/#maps>`__
of string (the assumed type) to
`integer <https://avro.apache.org/docs/current/spec.html#schema_primitive>`__
`integer <https://avro.apache.org/docs/++version++/specification/#primitive-types>`__
values
- Names of goods and quantity of each item the customer purchased

Expand Down
Loading