-
Notifications
You must be signed in to change notification settings - Fork 96
138 lines (130 loc) · 4.94 KB
/
manual-all-engines-benchmark.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
name: Manual All Engines Default Benchmarks
on:
push:
branches:
- "master"
pull_request:
types:
- opened
- reopened
workflow_dispatch:
jobs:
elasticsearchBenchmark:
if: >
(
startsWith(github.event.head_commit.modified, 'engine/clients/elasticsearch') ||
startsWith(github.event.head_commit.modified, 'engine/servers/elasticsearch') ||
startsWith(github.event.head_commit.modified, 'engine/base_client/')
)
name: benchmark - elasticsearch-default - random-100 - against elasticsearch-single-node-ci
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v3
- uses: ./.github/workflows/actions/run-engine-benchmark
with:
engine: "elasticsearch-default"
dataset: "random-100"
compose_file: "engine/servers/elasticsearch-single-node-ci/docker-compose.yaml"
milvusBenchmark:
if: >
(
startsWith(github.event.head_commit.modified, 'engine/clients/milvus') ||
startsWith(github.event.head_commit.modified, 'engine/servers/milvus') ||
startsWith(github.event.head_commit.modified, 'engine/base_client/')
)
name: benchmark - milvus-default - random-100 - against milvus-single-node
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v3
- uses: ./.github/workflows/actions/run-engine-benchmark
with:
engine: "milvus-default"
dataset: "random-100"
compose_file: "engine/servers/milvus-single-node/docker-compose.yaml"
opensearchBenchmark:
if: >
(
startsWith(github.event.head_commit.modified, 'engine/clients/opensearch') ||
startsWith(github.event.head_commit.modified, 'engine/servers/opensearch') ||
startsWith(github.event.head_commit.modified, 'engine/base_client/')
)
name: benchmark - opensearch-default - glove-25-angular - against opensearch-single-node-ci
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v3
- uses: ./.github/workflows/actions/run-engine-benchmark
with:
engine: "opensearch-default"
dataset: "glove-25-angular"
compose_file: "engine/servers/opensearch-single-node-ci/docker-compose.yaml"
pgvectorBenchmark:
if: >
(
startsWith(github.event.head_commit.modified, 'engine/clients/pgvector') ||
startsWith(github.event.head_commit.modified, 'engine/servers/pgvector') ||
startsWith(github.event.head_commit.modified, 'engine/base_client/')
)
name: benchmark - pgvector-default - random-100 - against pgvector-single-node
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v3
- uses: ./.github/workflows/actions/run-engine-benchmark
with:
engine: "pgvector-default"
dataset: "random-100"
compose_file: "engine/servers/pgvector-single-node/docker-compose.yaml"
qdrantBenchmark:
if: >
(
startsWith(github.event.head_commit.modified, 'engine/clients/qdrant') ||
startsWith(github.event.head_commit.modified, 'engine/servers/qdrant') ||
startsWith(github.event.head_commit.modified, 'engine/base_client/')
)
name: benchmark - qdrant-default - random-100 - against qdrant-single-node
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v3
- uses: ./.github/workflows/actions/run-engine-benchmark
with:
engine: "qdrant-default"
dataset: "random-100"
compose_file: "engine/servers/qdrant-single-node/docker-compose.yaml"
redisBenchmark:
if: >
(
startsWith(github.event.head_commit.modified, 'engine/clients/redis') ||
startsWith(github.event.head_commit.modified, 'engine/servers/redis') ||
startsWith(github.event.head_commit.modified, 'engine/base_client/')
)
name: benchmark - redis-default - random-100 - against redis-single-node
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v3
- uses: ./.github/workflows/actions/run-engine-benchmark
with:
engine: "redis-default"
dataset: "random-100"
compose_file: "engine/servers/redis-single-node/docker-compose.yaml"
weaviateBenchmark:
if: >
(
startsWith(github.event.head_commit.modified, 'engine/clients/weaviate') ||
startsWith(github.event.head_commit.modified, 'engine/servers/weaviate') ||
startsWith(github.event.head_commit.modified, 'engine/base_client/')
)
name: benchmark - weaviate-default - random-100 - against weaviate-single-node
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v3
- uses: ./.github/workflows/actions/run-engine-benchmark
with:
engine: "weaviate-default"
dataset: "random-100"
compose_file: "engine/servers/weaviate-single-node/docker-compose.yaml"