Skip to content

Commit 19bbc19

Browse files
committed
Add support for the data loader image in the makefile
1 parent a922b5b commit 19bbc19

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?=
@@ -177,6 +178,7 @@ endif
177178
--fdb-image="$(FDB_IMAGE)" \
178179
--sidecar-image="$(SIDECAR_IMAGE)" \
179180
--operator-image="$(OPERATOR_IMAGE)" \
181+
--data-loader-image=$(DATA_LOADER_IMAGE) \
180182
--registry="$(REGISTRY)" \
181183
--fdb-version="$(FDB_VERSION)" \
182184
--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)