Skip to content

Commit 9ac94c1

Browse files
committed
Add support for the data loader image in the makefile
1 parent 8313e41 commit 9ac94c1

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

e2e/Makefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ STORAGE_ENGINE?=
2828
DUMP_OPERATOR_STATE?=true
2929
SEAWEEDFS_IMAGE?=chrislusf/seaweedfs:3.73
3030
NODE_SELECTOR?=
31+
DATA_LOADER_IMAGE?=
3132
# Defines the cloud provider used for the underlying Kubernetes cluster. Currently only kind is support, other cloud providers
3233
# should still work but this test framework has no special cases for those.
3334
CLOUD_PROVIDER?=
@@ -167,6 +168,7 @@ endif
167168
--fdb-image="$(FDB_IMAGE)" \
168169
--sidecar-image="$(SIDECAR_IMAGE)" \
169170
--operator-image="$(OPERATOR_IMAGE)" \
171+
--data-loader-image=$(DATA_LOADER_IMAGE) \
170172
--registry="$(REGISTRY)" \
171173
--fdb-version="$(FDB_VERSION)" \
172174
--cleanup=$(CLEANUP) \

e2e/fixtures/fdb_data_loader.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -348,7 +348,7 @@ func (config *WorkloadConfig) setDefaults() {
348348
}
349349

350350
if config.BatchSize == 0 {
351-
config.BatchSize = 50
351+
config.BatchSize = 1000
352352
}
353353

354354
if config.ValueSize == 0 {

0 commit comments

Comments
 (0)