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

update QueryApi limitations #1510

Merged
merged 2 commits into from
Oct 2, 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: 2 additions & 1 deletion docs/bos/queryapi/intro.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,11 +70,12 @@ You're free to review the JavaScript code of the indexer function, or check the
- If you have an indexer whose schema needs to change you may need to create a new indexer and do historical backfill on that new indexer again.
- No way to stop your indexer or restart it truncating all tables.
- Historical backfill works in parallel to the real-time indexing.
- Historical processing won't happen in order. (it will happen at the same time as top of network)
- Keep that in mind just to be sure that you don't have unintended side effects.
- Pagoda currently doesn't charge for storage of your indexer code and data as well as running the indexer, but we will introduce this soon.

:::tip Join the Beta

If you would like to be part of the closed beta please [fill out this form](https://near.org/dev-queryapi.dataplatform.near/widget/NearQueryApi) or [reach out on Telegram](https://nearbuilders.com/tg-data) for access.

:::
:::
5 changes: 5 additions & 0 deletions website/sidebars.json
Original file line number Diff line number Diff line change
Expand Up @@ -692,6 +692,11 @@
},
"bos/queryapi/intro",
"bos/queryapi/how-it-works",
{
"type": "link",
"label": "Limitations",
"href": "/bos/queryapi/intro#known-limitations"
},
"bos/community/indexers",
"bos/queryapi/index-functions",
"bos/queryapi/context-object",
Expand Down
Loading