Skip to content

Commit 4b1f3c2

Browse files
MeelahMejstirnaman
authored andcommitted
Adding explanations for examples
1 parent b3d5f81 commit 4b1f3c2

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

content/shared/influxdb3-query-guides/snapshots/snowflake.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -166,6 +166,8 @@ Use the {{% product-name %}} HTTP API to export snapshots and check status.
166166

167167
#### Example: Export a snapshot
168168

169+
This example demonstrates how to export a snapshot of your data from InfluxDB to an Iceberg table using the HTTP API.
170+
169171
- **Method**: `POST`
170172
- **Endpoint**: `/snapshots/export`
171173
- **Request body**:
@@ -176,17 +178,21 @@ Use the {{% product-name %}} HTTP API to export snapshots and check status.
176178
"table": "bar"
177179
}
178180
```
181+
The `POST` request to the `/snapshots/export` endpoint triggers the export of data from the specified namespace and table in InfluxDB to an Iceberg table. The request body specifies the namespace (`foo`) and the table (`bar`) to be exported.
179182

180183
#### Example: Check snapshot status
181184

185+
This example shows how to check the status of an ongoing or completed snapshot export using the HTTP API.
186+
182187
- **Method**: `GET`
183188
- **Endpoint**: `/snapshots/status`
184189

190+
In this example, the GET request to the /snapshots/status endpoint retrieves the status of the snapshot export. This can be used to monitor the progress of the export or verify its completion.
191+
185192
## Considerations and limitations
186193

194+
When exporting data from InfluxDB to an Iceberg table, keep the following considerations and limitations in mind:
195+
187196
- **Data consistency**: Ensure that the exported data in the Iceberg table is consistent with the source data in InfluxDB.
188197
- **Performance**: Query performance may vary based on data size and query complexity.
189198
- **Feature support**: Some advanced features of InfluxDB may not be fully supported in Snowflake through Iceberg integration.
190-
191-
192-

0 commit comments

Comments
 (0)