You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/shared/influxdb3-query-guides/snapshots/snowflake.md
+9-3Lines changed: 9 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -166,6 +166,8 @@ Use the {{% product-name %}} HTTP API to export snapshots and check status.
166
166
167
167
#### Example: Export a snapshot
168
168
169
+
This example demonstrates how to export a snapshot of your data from InfluxDB to an Iceberg table using the HTTP API.
170
+
169
171
-**Method**: `POST`
170
172
-**Endpoint**: `/snapshots/export`
171
173
-**Request body**:
@@ -176,17 +178,21 @@ Use the {{% product-name %}} HTTP API to export snapshots and check status.
176
178
"table": "bar"
177
179
}
178
180
```
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.
179
182
180
183
#### Example: Check snapshot status
181
184
185
+
This example shows how to check the status of an ongoing or completed snapshot export using the HTTP API.
186
+
182
187
-**Method**: `GET`
183
188
-**Endpoint**: `/snapshots/status`
184
189
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
+
185
192
## Considerations and limitations
186
193
194
+
When exporting data from InfluxDB to an Iceberg table, keep the following considerations and limitations in mind:
195
+
187
196
-**Data consistency**: Ensure that the exported data in the Iceberg table is consistent with the source data in InfluxDB.
188
197
-**Performance**: Query performance may vary based on data size and query complexity.
189
198
-**Feature support**: Some advanced features of InfluxDB may not be fully supported in Snowflake through Iceberg integration.
0 commit comments