Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Refactor ingest library to Ingest SDK #1422

Merged
merged 2 commits into from
Mar 14, 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
12 changes: 2 additions & 10 deletions config/sidebars.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,14 +41,6 @@ const sidebars: SidebarsConfig = {
{ type: 'ref', id: 'data/apis/api-providers', label: 'API Providers' }
]
},
{
type: 'category',
label: 'Ingest Library',
link: { type: 'doc', id: 'data/ingest-library/README' },
items: [
{ type: 'ref', id: 'data/ingest-library/examples/README', label: 'Examples' },
],
},
{
type: 'category',
label: 'Indexers',
Expand Down Expand Up @@ -117,11 +109,11 @@ const sidebars: SidebarsConfig = {
ingest: [
{
type: 'category',
label: 'Ingest Library',
label: 'Ingest SDK',
items: [
{
type: "autogenerated",
dirName: "data/ingest-library",
dirName: "data/indexers/build-your-own/ingest-sdk",
},
],
collapsible: false,
Expand Down
2 changes: 1 addition & 1 deletion docs/README.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Information on how to issue assets on the Stellar network and create custom smar

### [Data](./data/README.mdx)

Discover various data availability options: RPC, Hubble, Horizon, Galexie and the Ingest Library.
Discover various data availability options: RPC, Hubble, Horizon, Galexie and the Ingest SDK.

### [Tools](./tools/README.mdx)

Expand Down
11 changes: 0 additions & 11 deletions docs/data/README.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -25,17 +25,6 @@ Connect to the Stellar network in real-time, enabling seamless data retrieval, t
- You want to develop applications that interact with Stellar
- You want real-time data access and transaction submission and processing

## [Ingest Library](./ingest-library/README.mdx)

A Golang SDK which can be used within an application as a programmatic domain model to interact with Stellar network.

**Why Use It:**

- You want rapid development of applications in Golang which can acquire and parse Stellar network data.
- You want an intuitive, compile-time, type-safe application developer experience.
- You want real-time and historical transaction data from Stellar network
- You want to access History Archives to retrieve ledger entries

## [Indexers](./indexers/README.mdx)

Organize and optimize Stellar blockchain data for efficient querying, deeper analysis, and enhanced accessibility.
Expand Down
16 changes: 13 additions & 3 deletions docs/data/indexers/build-your-own/README.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,18 @@ Learn about the services and tools that you can build custom indexing with.

## [Galexie](./galexie/README.mdx)

Galexie is a tool for extracting, processing, exporting Stellar ledger metadata to external storage, and creating a data lake of pre-processed ledger metadata. Galexie is the foundation of the Composable Data Pipeline (CDP) and serves as the first step in extracting raw Stellar ledger metadata and making it accessible. Learn more about CDP’s benefits and applications in [this blog post](https://stellar.org/blog/developers/composable-data-platform).
Galexie is a tool for acquiring Stellar ledger metadata from the network and exporting to external storage,a data lake. Galexie is the foundation of the Composable Data Pipeline (CDP) and serves as the first step in extracting raw Stellar ledger metadata and making it accessible. Learn more about CDP’s benefits and applications in [this blog post](https://stellar.org/blog/developers/composable-data-platform).

## Ingest Library
**Why Use It:**

Placeholder for ingest docs
- You want to maintain a data lake of pre-computed ledger metadata for historical and currently closed network ledgers.

## Ingest SDK

A set of Golang packages which can be used within application as a programmatic domain model to interact with Stellar network.

**Why Use It:**

- You want rapid development of applications in Golang which can acquire and parse ledger meta data and ledger entries from Stellar network.
- You want an intuitive, compile-time, type-safe application developer experience.
- You want to programatically access History Archives to retrieve ledger entries.
Original file line number Diff line number Diff line change
Expand Up @@ -140,4 +140,4 @@ Proceed to the GCP console:

## Next step - Consumer Pipelines

Ledger metadata is now accumulating as files in your GCS bucket, you can start to explore the options for applications to consume this pre-computed network data using the [Ingest Library](/data/ingest-library/README.mdx) to assemble consumer driven data pipelines capable of importing and parsing the data to derive custom, enriched data models. Refer to [GCS bucket consumer pipeline](https://developers.stellar.org/docs/build/apps/ingest-sdk/overview#ledger-metadata-consumer-pipeline) for relevant example code.
Ledger metadata is now accumulating as files in your GCS bucket, you can start to explore the options for applications to consume this pre-computed network data using the [Ingest SDK](../../ingest-sdk/README.mdx) to assemble consumer driven data pipelines capable of importing and parsing the data to derive custom, enriched data models. Refer to [GCS bucket consumer pipeline](https://developers.stellar.org/docs/build/apps/ingest-sdk/overview#ledger-metadata-consumer-pipeline) for relevant example code.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ The [BufferedStorageBackend](https://github.com/stellar/go/blob/master/ingest/le
- **Parallel Downloads**: Downloads multiple ledgers concurrently and buffers them in memory for fast access. This is particularly useful for fetching large historical ledger ranges.
- **Schema-Aware**: Reads multi-ledger files based on the datastore schema, extracting one ledger at a time.
- **Automatic Retries**: Handles request failures by retrying failed requests.
- **XDR Output**: Returns ledger metadata in XDR format, enabling easy integration with other packages in the ingest library (e.g., [processors](https://github.com/stellar/go/tree/master/ingest/processors)).
- **XDR Output**: Returns ledger metadata in XDR format, enabling easy integration with other packages in the ingest sdk (e.g., [processors](https://github.com/stellar/go/tree/master/ingest/processors)).

## Prerequisites

Expand Down
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
---
title: Ingest Library Introduction
title: Ingest SDK
sidebar_position: 0
---

## What is the Ingest Library?
## What is the Ingest SDK?

The library is a programmatic SDK in the Go programming language composed of several packages for acquiring and parsing data from the Stellar network. It provides language level bindings which convert the [binary XDR encoded](https://developers.stellar.org/docs/learn/encyclopedia/data-format/xdr) streams emitted from the network into fluent programmatic data model bindings.
The SDK is composed of several published Golang packages under `github.com/stellar/go` for acquiring and parsing data from the Stellar network. It provides language level bindings which convert the [binary XDR encoded](https://developers.stellar.org/docs/learn/encyclopedia/data-format/xdr) streams emitted from the network into fluent programmatic data model bindings.

## Why use the Ingest Library?
## Why use the Ingest SDK?

Applications can leverage the library to rapidly develop ingestion pipelines capable of acquiring real-time or historical Stellar network data and deriving custom data models. The library enables applications to traverse the hierarchal data structures of the network: [history archives](https://developers.stellar.org/docs/validators/admin-guide/environment-preparation#history-archives), [ledgers](https://developers.stellar.org/docs/learn/fundamentals/stellar-data-structures/ledgers), transactions, operations, ledger state changes, and events.
Applications can leverage the SDK to rapidly develop ingestion pipelines capable of acquiring real-time or historical Stellar network data and deriving custom data models. The SDK enables applications to traverse the hierarchal data structures of the network: [history archives](https://developers.stellar.org/docs/validators/admin-guide/environment-preparation#history-archives), [ledgers](https://developers.stellar.org/docs/learn/fundamentals/stellar-data-structures/ledgers), transactions, operations, ledger state changes, and events.

Use the library for an intuitive, compile-time, type-safe developer experience to work with the main types of network data:
Use the SDK for an intuitive, compile-time, type-safe developer experience to work with the main types of network data:

### Ledger Entries

Expand All @@ -33,6 +33,6 @@ Use the metadata to detect incremental changes in ledger entries that occur as a
- an offer is placed to trade one token for another token at a given price on the dex
- token transfers between accounts and contracts

The library provides packages which clients can use to acquire and parse the metadata in streaming data format, with readers and callback functions.
The SDK provides packages which clients can use to acquire and parse the metadata in streaming data format, with readers and callback functions.

The streams of ledger metadata can be sourced in unbounded fashion as ongoing real-time ledgers close on the Stellar network, and also in a historical replay mode with a bounded range of past ledger sequences.
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ title: Example Usages
sidebar_position: 10
---

This section showcases real-world use cases of the Ingest Library, focusing on key components like `ingest.LedgerTransaction`, `ingest.LedgerChange`, `ingest.LedgerTransactionReader`, and `ingest.ChangeReader`.
This section showcases real-world use cases of the Ingest SDK, focusing on key components like `ingest.LedgerTransaction`, `ingest.LedgerChange`, `ingest.LedgerTransactionReader`, and `ingest.ChangeReader`.

These examples take a Stellar Ledger (`xdr.LedgerCloseMeta`) or a ledger sequence range (start-end) as input. Each of the examples listed here is complete, and can be compiled and run as-is in your IDE/local dev.

## Prerequisites

Some of the examples listed here might invoke the `stellar-core` binary. Refer to the "admin guide" for more details on how to compile `stellar-core` for your platform.

The Ingest library is currently a part of the [Stellar Go Repo](https://github.com/stellar/go), which includes several packages in addition to the ingest library. You will need to include the following in the `go.mod` file in your codebase.
The Ingest SDK is currently a part of the [Stellar Go Repo](https://github.com/stellar/go), which includes several packages in addition to the ingest SDK. You will need to include the following in the `go.mod` file in your codebase.

```
//filename: go.mod
Expand Down
2 changes: 1 addition & 1 deletion docs/tools/sdks/client-sdks.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ This SDK is split up into separate packages, all of which you can find in the [G

- `txnbuild` [SDK](https://github.com/stellar/go/tree/master/txnbuild) | [Docs](https://godoc.org/github.com/stellar/go/txnbuild): enables the construction, signing, and encoding of Stellar transactions.
- `Horizon Client` [SDK](https://github.com/stellar/go/tree/master/clients/horizonclient) | [Docs](https://godoc.org/github.com/stellar/go/clients/horizonclient): provides a web client for interfacing with Horizon server REST endpoints to retrieve ledger information and submit transactions built with `txnbuild`.
- [Ingest Library](/docs/data/ingest-library/README.mdx): acquire and parse data from the Stellar network.
- [Ingest SDK](/docs/data/indexers/build-your-own/ingest-sdk/README.mdx): acquire and parse data from the Stellar network.

## Ruby

Expand Down
5 changes: 0 additions & 5 deletions docusaurus.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -199,11 +199,6 @@ const config: Config = {
docId: "data/apis/migrate-from-horizon-to-rpc/migrate-from-horizon-to-rpc",
label: "Migrate Horizon to RPC",
},
{
type: 'doc',
docId: "data/ingest-library/README",
label: "Ingest Library",
},
{
type: 'doc',
docId: "data/apis/api-providers",
Expand Down