Skip to content

Commit

Permalink
best practices
Browse files Browse the repository at this point in the history
  • Loading branch information
bucanero committed Oct 24, 2023
1 parent 22db8c2 commit c3de968
Show file tree
Hide file tree
Showing 2 changed files with 66 additions and 0 deletions.
65 changes: 65 additions & 0 deletions docs/bos/queryapi/best-practices.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
---
id: best-practices
title: Indexing best practices
sidebar_label: Best Practices
---

QueryAPI indexing development best practices

## Indexing development

QueryAPI indexing development best practices

1. Start from a simple [`indexingLogic.js`](index-function.md) to get blockchain data dumped in a database, in a raw form. For example, start by getting the [FunctionCall](../../2.develop/contracts/actions.md#function-call)'s arguments from the smart contract that you want to index. Then, use the [GraphQL playground](index-function.md#mutations-in-graphql) to understand the raw dump and further analyze the data.

![Playground](/docs/assets/QAPIScreen.gif)


2. Once you have figured out a good logic to process the raw data, test the processing logic by [enabling debug mode](index-function.md#local-debug-mode) in the `indexingLogic.js` editor, and set a list of block heights that contains different cases that your processing logic must handle.

![QueryAPI Dashboard](/docs/assets/QAPIdebug.png)


3. Once your index logic extracts all data correctly as expected, fork the indexer, create new tables in a schema to organize structured data, and update the indexer logic to process and store structured data.

:::tip
Check the [next section](#) to learn how to design optimal database schemas for your indexer.
:::

4. Make sure to `try {} catch {}` exceptions while processing each block. In the `catch` section, log exceptional blocks and debug them by enabling debug mode. (set the block `height` of the problematic blocks, and run a local debug)

```js
try {
console.log("Creating a PostSnapshot");
const mutationData = {
post_snapshot,
};
await context.graphql(
`
mutation CreatePostSnapshot($post_snapshot: bo_near_devhub_v17_post_snapshots_insert_input!) {
insert_bo_near_devhub_v17_post_snapshots_one(object: $post_snapshot) {post_id, block_height}
}
`,
mutationData
);
console.log(
`Post Snapshot with post_id ${post_id} at block_height ${block_height} has been added to the database`
);
return null;
} catch (e) {
console.log(
`Error creating Post Snapshot with post_id ${post_id} at block_height ${block_height}: ${e}`
);
return e;
}
```

5. You may have to do several iterations to fix all bugs in your indexer to process all the blocks correctly. In this case, you can fork the indexer, update the schema and `indexingLogic`, and try again. The new indexer can be named `YourIndexName_v2`, `YourIndexerName_v3`, `..._v4`, and so on.

6. Remember to clean out old, unused indexers. If you get `YourIndexerName_v8` to work, it’s helpful to delete `..._v7`, `..._v6`, so they can free resources taken from QueryAPI workers.

7. Whenever you add any changes to either the database schema or the `indexerLogic`, it’s a good idea to fork and deploy a new indexer. If not, your new indexing logic will re-run on old blocks, and if you don’t handle re-indexing in your `indexingLogic.js`, the same old data will be inserted again into the database, bringing further errors.


## Design an optimal database schema

1 change: 1 addition & 0 deletions website/sidebars.json
Original file line number Diff line number Diff line change
Expand Up @@ -700,6 +700,7 @@
"href": "/bos/queryapi/intro#known-limitations"
},
"bos/community/indexers",
"bos/queryapi/best-practices",
"bos/queryapi/index-functions",
"bos/queryapi/context-object",
{
Expand Down

0 comments on commit c3de968

Please sign in to comment.