Skip to content

docs: Move Join operator to public preview #277

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

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
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
2 changes: 1 addition & 1 deletion apl/tabular-operators/externaldata-operator.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ The `externaldata` operator in APL allows you to retrieve data from external sto
<Note>
The `externaldata` operator currently supports external data sources with a file size of maximum 5 MB.

The `externaldata` operator is currently in public preview. For more information, see [Features states](/getting-started-guide/feature-states).
The `externaldata` operator is currently in public preview. For more information, see [Feature states](/getting-started-guide/feature-states).
</Note>

## For users of other query languages
Expand Down
4 changes: 2 additions & 2 deletions apl/tabular-operators/join-operator.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ This operator is useful when you want to:
- Enrich existing data with supplementary details.

<Note>
The `join` operator is currently in private preview. To try it out, [contact Axiom](https://axiom.co/contact).
The `join` operator is currently in public preview. For more information, see [Feature states](/getting-started-guide/feature-states).

The preview of the `join` operator works with an upper limit of 5,000 events on the left side of the join and 50,000 on the right side of the join.
The preview of the `join` operator works with variable limits depending on the structure of your dataset. For the left side of the join, the limit is 50,000 rows when the dataset has fewer than 100 fields. This limit decreases linearly as the field count increases: 25,000 rows at 200 fields, 12,500 rows at 400 fields, and 10,000 rows at 500+ fields. The right side of the join has a consistent limit of 50,000 rows.
</Note>

## Kinds of join
Expand Down
4 changes: 2 additions & 2 deletions getting-started-guide/feature-states.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ tags:
Each feature of Axiom is in one of the following states:

- **In development:** Axiom is actively building this feature. It’s not available yet but it’s progressing towards Preview.
- **Private preview:** An early-access feature available to selected customers which helps Axiom validate the feature with trusted partners.
- **Private preview:** An early access feature available to selected customers which helps Axiom validate the feature with trusted partners.
- **Public preview:** The feature is available for everyone to try but may have some rough edges. Axiom is gathering feedback before making it GA.
- **Generally available (GA):** The feature is fully released, production-ready, and supported. Feel free to use it in your workflows.
- **Planned end of life:** The feature is scheduled to be retired. It’s still working but you should start migrating to alternative solutions.
Expand All @@ -22,13 +22,13 @@ Private and public preview features are experimental, are not guaranteed to work
Current private preview features:

- [Flow](/process-data/introduction)
- [Join operator](/apl/tabular-operators/join-operator)
- [Progressive query mode](/query-data/explore#query-modes)
- [Send data from Datadog to Axiom](/send-data/datadog)

Current public preview features:
- [Cursor-based pagination](/restapi/pagination)
- [externaldata operator](/apl/tabular-operators/externaldata-operator)
- [Join operator](/apl/tabular-operators/join-operator)
- [Send data from JavaScript app to Axiom using @axiomhq/logging library](/guides/javascript)
- [Send data from Next.js app to Axiom using @axiomhq/nextjs library](/send-data/nextjs)
- [Send data from React app to Axiom using @axiomhq/react library](/send-data/react)
2 changes: 1 addition & 1 deletion guides/javascript.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ The `@axiomhq/logging` library is a logging solution that also serves as the bas
<Note>
The @axiomhq/js and the @axiomhq/logging libraries are part of the Axiom JavaScript SDK, an open-source project and welcomes your contributions. For more information, see the [GitHub repository](https://github.com/axiomhq/axiom-js).

The @axiomhq/logging library is currently in public preview. For more information, see [Features states](/getting-started-guide/feature-states).
The @axiomhq/logging library is currently in public preview. For more information, see [Feature states](/getting-started-guide/feature-states).
</Note>

<Prerequisites />
Expand Down
2 changes: 1 addition & 1 deletion send-data/nextjs.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ To send data from your Next.js app to Axiom, choose one of the following options
- [@axiomhq/nextjs library](#use-axiomhq-nextjs-library)

<Note>
The @axiomhq/nextjs library is currently in public preview. For more information, see [Features states](/getting-started-guide/feature-states).
The @axiomhq/nextjs library is currently in public preview. For more information, see [Feature states](/getting-started-guide/feature-states).
</Note>

The choice between these options depends on your individual requirements:
Expand Down
2 changes: 1 addition & 1 deletion send-data/react.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ This page explains how to use the @axiomhq/react library to send data from your
<Note>
The @axiomhq/react library is part of the Axiom JavaScript SDK, an open-source project and welcomes your contributions. For more information, see the [GitHub repository](https://github.com/axiomhq/axiom-js).

The @axiomhq/react library is currently in public preview. For more information, see [Features states](/getting-started-guide/feature-states).
The @axiomhq/react library is currently in public preview. For more information, see [Feature states](/getting-started-guide/feature-states).
</Note>

<Prerequisites />
Expand Down