-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test: Update e2e tests to use server 7.0
- Loading branch information
Jesse Schmidt
committed
Nov 16, 2023
1 parent
1775df0
commit 4adbbc6
Showing
6 changed files
with
255 additions
and
116 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,94 @@ | ||
# Aerospike Asadm Test Configuration Template | ||
# | ||
# Copyright (c) 2008-2023 Aerospike, Inc. All rights reserved. | ||
# | ||
# Permission is hereby granted, free of charge, to any person obtaining a copy of | ||
# this software and associated documentation files (the "Software"), to deal in | ||
# the Software without restriction, including without limitation the rights to | ||
# use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies | ||
# of the Software, and to permit persons to whom the Software is furnished to do | ||
# so, subject to the following conditions: | ||
# | ||
# The above copyright notice and this permission notice shall be included in all | ||
# copies or substantial portions of the Software. | ||
# | ||
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
# SOFTWARE. | ||
# | ||
|
||
${security_stanza} | ||
|
||
service { | ||
cluster-name 7.x-asadm-test | ||
feature-key-file ${feature_path} | ||
run-as-daemon false | ||
work-directory ${state_directory} | ||
pidfile ${state_directory}/asd.pid | ||
proto-fd-max 1024 | ||
transaction-retry-ms 10000 | ||
transaction-max-ms 10000 | ||
} | ||
|
||
logging { | ||
console { | ||
context any info | ||
context security info | ||
} | ||
file ${log_path} { | ||
context any info | ||
} | ||
} | ||
|
||
mod-lua { | ||
user-path ${udf_directory} | ||
} | ||
|
||
network { | ||
service { | ||
port ${service_port} | ||
address any | ||
access-address ${access_address} | ||
} | ||
|
||
heartbeat { | ||
mode mesh | ||
address any | ||
port ${heartbeat_port} | ||
interval 100 | ||
timeout 3 | ||
connect-timeout-ms 100 | ||
${peer_connection} | ||
} | ||
|
||
fabric { | ||
port ${fabric_port} | ||
address any | ||
} | ||
|
||
info { | ||
port ${info_port} | ||
address any | ||
} | ||
} | ||
|
||
namespace ${namespace} { | ||
replication-factor 2 | ||
default-ttl 0 | ||
storage-engine memory { | ||
file /opt/aerospike/data/test.dat | ||
filesize 1G | ||
} | ||
nsup-period 60 | ||
} | ||
|
||
xdr { | ||
dc DC1 { | ||
namespace ${namespace} { | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.