diff options
author | Monty <monty@mariadb.org> | 2019-04-15 18:16:02 +0300 |
---|---|---|
committer | Monty <monty@mariadb.org> | 2019-05-23 02:28:23 +0300 |
commit | ab38b7511bad8cc03a67f0d43e7169e6dfcac9fa (patch) | |
tree | 85488af3e151ca542ddc415625d589d3069983ec /BUILD | |
parent | 2ca2dcac6ab75b6bda74280dfa9b7a1a2cb069fc (diff) | |
download | mariadb-git-ab38b7511bad8cc03a67f0d43e7169e6dfcac9fa.tar.gz |
MDEV-17841 S3 storage engine
A read-only storage engine that stores it's data in (aws) S3
To store data in S3 one could use ALTER TABLE:
ALTER TABLE table_name ENGINE=S3
libmarias3 integration done by Sergei Golubchik
libmarias3 created by Andrew Hutchings
Diffstat (limited to 'BUILD')
-rw-r--r-- | BUILD/FINISH.sh | 2 | ||||
-rwxr-xr-x | BUILD/SETUP.sh | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/BUILD/FINISH.sh b/BUILD/FINISH.sh index 447eae0a65f..c58e9effa4c 100644 --- a/BUILD/FINISH.sh +++ b/BUILD/FINISH.sh @@ -42,6 +42,8 @@ cd ./libmariadb git submodule update cd ../storage/rocksdb/rocksdb git submodule update +cd ../../maria/libmarias3 +git submodule update cd ../../.." fi commands="$commands diff --git a/BUILD/SETUP.sh b/BUILD/SETUP.sh index 6cf2a18404c..79290f20015 100755 --- a/BUILD/SETUP.sh +++ b/BUILD/SETUP.sh @@ -194,7 +194,7 @@ base_configs="--prefix=$prefix --enable-assembler " base_configs="$base_configs --with-extra-charsets=complex " base_configs="$base_configs --enable-thread-safe-client " base_configs="$base_configs --with-big-tables $maintainer_mode" -base_configs="$base_configs --with-plugin-aria --with-aria-tmp-tables" +base_configs="$base_configs --with-plugin-aria --with-aria-tmp-tables --with-plugin-s3=STATIC" # Following is to get tokudb to work base_configs="$base_configs --with-jemalloc=NO" |