Skip to content

Commit b750d77

Browse files
committed
Use version 0.9 for versioning object
1 parent 6c3159e commit b750d77

File tree

30 files changed

+299
-318
lines changed

30 files changed

+299
-318
lines changed

docs/reference/rest-api.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ curl -XPOST http://localhost:7280/api/v1/indexes --data @index_config.json -H "C
257257

258258
```json title="index_config.json
259259
{
260-
"version": "0.8",
260+
"version": "0.9",
261261
"index_id": "hdfs-logs",
262262
"doc_mapping": {
263263
"field_mappings": [
@@ -355,7 +355,7 @@ curl -XPUT http://localhost:7280/api/v1/indexes/hdfs-logs --data @updated_index_
355355

356356
```json title="updated_index_update.json
357357
{
358-
"version": "0.8",
358+
"version": "0.9",
359359
"index_id": "hdfs-logs",
360360
"doc_mapping": {
361361
"field_mappings": [
@@ -513,7 +513,7 @@ GET /api/v1/indexes/stackoverflow/splits?offset=0&limit=10
513513
"split_state": "Published",
514514
"update_timestamp": 1695642901,
515515
"publish_timestamp": 1695642901,
516-
"version": "0.7",
516+
"version": "0.9",
517517
"split_id": "01HB632HD8W6WHNM7CZFH3KG1X",
518518
"index_uid": "stackoverflow:01HB6321TDT3SP58D4EZP14KSX",
519519
"partition_id": 0,
@@ -617,7 +617,7 @@ curl -XPOST http://localhost:7280/api/v1/indexes/my-index/sources --data @source
617617

618618
```json title="source_config.json
619619
{
620-
"version": "0.8",
620+
"version": "0.9",
621621
"source_id": "kafka-source",
622622
"source_type": "kafka",
623623
"params": {
@@ -664,7 +664,7 @@ curl -XPOST http://localhost:7280/api/v1/indexes/my-index/sources --data @source
664664

665665
```json title="source_config.json
666666
{
667-
"version": "0.8",
667+
"version": "0.9",
668668
"source_id": "kafka-source",
669669
"source_type": "kafka",
670670
"params": {

quickwit/quickwit-cli/src/cli_doc_ext.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ quickwit run --service metastore --config=./config/quickwit.yaml
232232
# Open a new terminal and run:
233233
cat << EOF > wikipedia-kafka-source.json
234234
{
235-
"version": "0.7",
235+
"version": "0.9",
236236
"source_id": "kafka-source",
237237
"source_type": "kafka",
238238
"params": {

quickwit/quickwit-config/resources/tests/index_config/hdfs-logs-create-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: 0.8
1+
version: 0.9
22

33
doc_mapping:
44
field_mappings:

quickwit/quickwit-config/resources/tests/index_config/hdfs-logs.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Comments are supported.
22
{
3-
"version": "0.7",
3+
"version": "0.9",
44
"index_id": "hdfs-logs",
55
"index_uri": "s3://quickwit-indexes/hdfs-logs",
66
"doc_mapping": {

quickwit/quickwit-config/resources/tests/index_config/hdfs-logs.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version = "0.7"
1+
version = "0.9"
22
index_id = "hdfs-logs"
33
index_uri = "s3://quickwit-indexes/hdfs-logs"
44

quickwit/quickwit-config/resources/tests/index_config/hdfs-logs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: 0.8
1+
version: 0.9
22
index_id: hdfs-logs
33
index_uri: s3://quickwit-indexes/hdfs-logs
44

quickwit/quickwit-config/resources/tests/index_config/minimal-hdfs-logs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: 0.8
1+
version: 0.9
22

33
index_id: hdfs-logs
44
index_uri: s3://quickwit-indexes/hdfs-logs

quickwit/quickwit-config/resources/tests/index_config/partial-hdfs-logs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: 0.8
1+
version: 0.9
22

33
index_id: hdfs-logs
44
index_uri: s3://quickwit-indexes/hdfs-logs

quickwit/quickwit-config/resources/tests/node_config/quickwit.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Comments are supported.
22
{
3-
"version": "0.7",
3+
"version": "0.9",
44
"cluster_id": "quickwit-cluster",
55
"node_id": "my-unique-node-id",
66
"enabled_services": [

quickwit/quickwit-config/resources/tests/node_config/quickwit.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version = "0.7"
1+
version = "0.9"
22

33
cluster_id = "quickwit-cluster"
44
node_id = "my-unique-node-id"

0 commit comments

Comments
 (0)