Open1
firebolt-coreを触ってみる

ArgoCDでデプロイ
参考: Deployment on k8s
Helm Chart
Example curl
$ curl -s "http://localhost:3473" --data-binary "select 42";
?column?
int
42
Response Style
-
TabSeparatedWithNamesAndTypes
: default -
JSON Compact
: -
JSON_CompactLimited
: limited 10,000 rows -
JSONLines_Compact
: chunked versin ofJSON_CompactLimited
JSON Compact
$ curl -s "http://localhost:3473/?output_format=JSON_Compact" --data-binary "select 42";
?column?
int
42
{
"query":
{
"query_id": "3fd26ae5-b088-4a6d-bb49-93d09983cec3",
"request_id": "e2b8c039-b82a-413c-bd0f-cfa0fbf1a27c",
"query_label": null
},
"meta":
[
{
"name": "?column?",
"type": "int"
}
],
"data":
[
[42]
],
"rows": 1,
"statistics":
{
"elapsed": 0.00182,
"rows_read": 1,
"bytes_read": 1,
"time_before_execution": 0.000381456,
"time_to_execute": 0.000165333,
"scanned_bytes_cache": 0,
"scanned_bytes_storage": 0
}
}
firebolt CLI