@@ -330,19 +330,19 @@ jobs:
330330 example_jvm_args=""
331331 ;;
332332 "07_stackoverflow_tables_oltp.py")
333- example_args="--dataset stackoverflow-tiny --db arcadedb --threads 1 --transactions 1000 --batch-size 500 --mem-limit 2g --run-label ci07"
334- example_name="$example (stackoverflow-tiny, arcadedb , minimal oltp)"
333+ example_args="--dataset stackoverflow-tiny --db arcadedb_sql --threads 1 --transactions 1000 --batch-size 500 --mem-limit 2g --run-label ci07"
334+ example_name="$example (stackoverflow-tiny, arcadedb_sql , minimal oltp)"
335335 timeout_duration=900
336336 example_jvm_args=""
337337 ;;
338338 "08_stackoverflow_tables_olap.py")
339- example_args="--dataset stackoverflow-tiny --db arcadedb --threads 1 --batch-size 500 --query-runs 1 --query-order fixed --mem-limit 2g --run-label ci08"
340- example_name="$example (stackoverflow-tiny, arcadedb , minimal olap)"
339+ example_args="--dataset stackoverflow-tiny --db arcadedb_sql --threads 1 --batch-size 500 --query-runs 1 --query-order fixed --mem-limit 2g --run-label ci08"
340+ example_name="$example (stackoverflow-tiny, arcadedb_sql , minimal olap)"
341341 timeout_duration=900
342342 example_jvm_args=""
343343 ;;
344344 "09_stackoverflow_graph_oltp.py")
345- example_args="--dataset stackoverflow-tiny --db arcadedb --arcadedb-oltp-language cypher --threads 1 --transactions 1000 --batch-size 500 --mem-limit 2g --run-label ci09"
345+ example_args="--dataset stackoverflow-tiny --db arcadedb_cypher --threads 1 --transactions 1000 --batch-size 500 --mem-limit 2g --run-label ci09"
346346 example_name="$example (stackoverflow-tiny graph oltp, arcadedb cypher, minimal)"
347347 timeout_duration=900
348348 example_jvm_args=""
@@ -354,21 +354,21 @@ jobs:
354354 example_jvm_args=""
355355 ;;
356356 "11_vector_index_build.py")
357- example_args="--backend arcadedb --dataset stackoverflow-tiny --threads 1 --mem-limit 2g --batch-size 500 --max-connections 16 --beam-width 100 --quantization NONE --run-label ci11_arcadedb "
358- example_name="$example (vector build, arcadedb backend, minimal)"
357+ example_args="--backend arcadedb_sql --dataset stackoverflow-tiny --threads 1 --mem-limit 2g --batch-size 500 --max-connections 16 --beam-width 100 --quantization NONE --run-label ci11_arcadedb_sql "
358+ example_name="$example (vector build, arcadedb_sql backend, minimal)"
359359 timeout_duration=1200
360360 example_jvm_args=""
361361 ;;
362362 "12_vector_search.py")
363- db_path=$(find ./my_test_databases -maxdepth 1 -type d -name 'backend=arcadedb_dataset =stackoverflow-tiny_*run=ci11_arcadedb ' | head -n 1)
363+ db_path=$(find ./my_test_databases -maxdepth 1 -type d -name 'backend=arcadedb_sql_dataset =stackoverflow-tiny_*run=ci11_arcadedb_sql ' | head -n 1)
364364 if [ -z "$db_path" ]; then
365365 echo "❌ Missing build output for 12_vector_search.py. Ensure 11_vector_index_build.py ran first." | tee -a $results_file
366366 failed=$((failed + 1))
367367 echo ""
368368 continue
369369 fi
370- example_args="--backend arcadedb --dataset stackoverflow-tiny --db-path $db_path --overquery-factors 1 --k 10 --query-limit 100 --query-runs 1 --query-order fixed --threads 1 --mem-limit 2g --run-label ci12_arcadedb "
371- example_name="$example (vector search, arcadedb backend, minimal)"
370+ example_args="--backend arcadedb_sql --dataset stackoverflow-tiny --db-path $db_path --overquery-factors 1 --k 10 --query-limit 100 --query-runs 1 --query-order fixed --threads 1 --mem-limit 2g --run-label ci12_arcadedb_sql "
371+ example_name="$example (vector search, arcadedb_sql backend, minimal)"
372372 timeout_duration=1200
373373 example_jvm_args=""
374374 ;;
0 commit comments