Streaming Sui data with Goldsky
Overview
Goldsky is a high-performance data indexing provider for Sui that makes it easy to extract, transform, and load on-chain data to power both application and analytics use cases via Mirror (real-time data replication pipelines).
Scope
Goldsky has partnered with Sui to make our product available to the ecosystem and provide dedicated support for Sui data indexing. The full scope of our partnership (which products are enabled, what partner-exclusive benefit is available, and who this benefit is available to) is outlined below.
Mirror | |
---|---|
Enablement | Yes |
Benefit | 10% discount on Pipeline workers and events written |
Availability | All developers |
Where perks are available to projects specified by the chain ecosystem, please reach out to their developer relations team for an access code and link to private signup form. Where perks are openly available to all developers, please contact sales@goldsky.com to apply the applicable partnership perks to your project.
Getting started
To use Goldsky, you’ll need to create an account, install the CLI, and log in.
Mirror
Mirror pipelines allow users to replicate data into their own infrastructure (any of the supported sinks) in real time. The supported data sources are the following direct indexing datasets: checkpoints, packages, transactions, epochs and events.
For a complete overview of how to deploy Mirror pipelines, including a video walkthrough, check the Create a Pipeline. Below, we will look at a few of the different ways by which you can deploy Mirror pipelines; Here, we’ll be streaming the sui.transactions
direct indexing dataset into a PostgreSQL database.
Remember to first create a Secret in order for Mirror to be able to write the data into the database of your choice.
Pipelines can be deployed on Goldsky in 3 ways:
- Using the Pipeline Builder in the Goldsky dashboard:
- Select
Direct Indexing
as data source filter on Sui and selectEnriched Transactions
as dataset. - Follow the default options in the next steps and choose your pre-configured sink.
- Deploy pipeline.
- Select
- Using the interactive CLI:
- Enter command
goldsky pipeline create <pipeline-name>
. - This will kick off a guided flow with the first step to choose the dataset type. Choose
Direct Indexing
. - Next, select
Sui
as chain with the enter key, thenRaw Transactions
as the dataset by pressing space on the selected dataset which you can select using the up and down arrow keys. We will process historical data so selectProcess all historical data
by pressing the enter key. This is the same as the yaml config setting ofstart_at: earliest
. If you prefer to only ingest data starting when your pipeline is deployed, selectProcess data from the time this pipeline is created
instead, this is equivalent to the yaml config settingstart_at: latest
. - When asked to choose another source, choose
No
by pressing enter. - Add your pre-configured sink. In this example case, we chose PostgreSQL and as a next step we selected the database schema.
- Pipeline will be deployed automatically.
- Enter command
- Using a pipeline configuration file:
- This makes it easier to set up complex pipelines involving multiple sources, multiple sinks, and more complex, SQL-based transformations. For the full reference documentation on, click here.
- As in the previous steps, we’ll be deploying a pipeline to stream Sui transactions. Unlike the other methods, we have added a transformation to only select specific data attributes from the whole dataset. This is the configuration file:
- Add your corresponding secret name and run
goldsky pipeline apply sui-transactions.yaml
to deploy the pipeline.
Getting support
Can't find what you're looking for? Reach out to us at support@goldsky.com for help.