mirror of
https://github.com/MariaDB/server.git
synced 2025-01-28 17:54:16 +01:00
MDEV-22980: Allow plugin-maturity=alpha so S3 plugin loads
Verified by running before and after: mariadb --skip-column-names -e "select plugin_name, plugin_status, plugin_type, plugin_library, plugin_license from information_schema.all_plugins order by plugin_name, plugin_library" Nothing else but exactly this line changed so there are no side effects: -S3 NOT INSTALLED STORAGE ENGINE ha_s3.so GPL +S3 ACTIVE STORAGE ENGINE ha_s3.so GPL Also enrich config file with link to KB and unify option syntax and standard comments.
This commit is contained in:
parent
a0518ed998
commit
afbd61811f
1 changed files with 18 additions and 8 deletions
|
@ -1,12 +1,22 @@
|
|||
[mariadbd]
|
||||
#
|
||||
# Uncomment line to enable
|
||||
#
|
||||
#plugin-maturity = alpha
|
||||
|
||||
[mariadb]
|
||||
plugin-load-add=ha_s3
|
||||
#
|
||||
# Uncomment line to enable
|
||||
#
|
||||
#plugin-load-add = ha_s3
|
||||
|
||||
#
|
||||
# Uncomment and configure the S3 engine
|
||||
# Uncomment to configure the S3 engine
|
||||
# See all options at https://mariadb.com/kb/en/s3-storage-engine/
|
||||
#
|
||||
#s3-host-name=s3.amazonaws.com
|
||||
#s3-protocol-version=Amazon
|
||||
#s3-bucket=...
|
||||
#s3-access-key=...
|
||||
#s3-secret-key=...
|
||||
#s3-region=eu-north-1
|
||||
#s3-host-name = s3.amazonaws.com
|
||||
#s3-protocol-version = Amazon
|
||||
#s3-bucket = ...
|
||||
#s3-access-key = ...
|
||||
#s3-secret-key = ...
|
||||
#s3-region = eu-north-1
|
||||
|
|
Loading…
Add table
Reference in a new issue