Instructions on how to verify your S3 configuration using tools like `aria_s3_copy` and the `mysql-test-run` suite to ensure proper connectivity.
If you can't get the S3 storage engine to work, here are some steps to help verify where the problem could be.
In most cases the problem is to correctly set the S3 connection variables.
Key are:
: The AWS access key to access your data
: The AWS secret key to access your data
: The AWS bucket where your data should be stored. All MariaDB table data is stored in this bucket.
: The AWS region where your data should be stored.
There are several ways to ensure you get them right, detailed in the following sections.
is a tool that allows you to copy tables to and from S3. It's useful for testing the connection as it allows you to specify all s3 options on the command line.
Execute the following sql commands to create a trivial sql table:
Now you can use the tool to copy this to S3 from your shell/the command line:
As you can see from the above, is using the current directory as the database name.
You can also set the options in your my.cnf file to avoid some typing.
One can use the to run all default S3 test against your S3 storage.
To do that you have to locate the mysql-test directory in your system andcd to it.
The config file for the S3 test system can be found at suite/s3/my.cnf.
To enable testing you have to edit this file and add the s3 connection options to the end of the file. It should look something like this after editing:
You must give values for s3-access-key, s3-secret-key and s3-region that reflects your S3 provider. The s3-bucket name is defined by your administrator.
If you are not using Amazon Web Services as your S3 provider you must also specify s3-hostname and possibly changes3-protocol-version to "Original".
Now you can test the configuration:
Note that there may be more tests in your output as we are constantly adding more tests to S3 when needed.
One can use the s3_debug variable to get a trace of the S3 engines interaction with the S3 storage. The trace is sent to the error log.
Here follows one example on can use to get a trace if ALTER TABLE .. ENGINE=S3 fails:
If you have problems deciper the trace, you can always create a ticket on and explain the problem you have, including any errors. Don't forget to include the trace!
When you got the connection to work, you should add the options to your global my.cnf file. Now you can start testing S3 from your by converting some existing table to S3 with .
This page is licensed: CC BY-SA / Gnu FDL
s3_host_name: Hostname for the S3 service.
s3_provider: Enable S3 provider specific compatibility tweaks. "Default", "Amazon", or "Huawei".
s3_protocol_version: Protocol used to communicate with S3. One of "Amazon" or "Original"
USE test;
CREATE TABLE s3_test (a INT) ENGINE=aria row_format=page transactional=0;
INSERT INTO s3_test VALUES (1),(2);
FLUSH TABLES s3_test;shell> cd mariadb-data-directory/test
shell> aria_s3_copy --op=to --verbose --force --**other*options* s3_test.frm
Copying frm file s3_test.frm
Copying aria table: test.s3_test to s3
Creating aria table information test/s3_test/aria
Copying index information test/s3_test/index
Copying data information test/s3_test/data!include include/default_mysqld.cnf
!include include/default_client.cnf
[mysqld.1]
s3=ON
#s3-host-name=s3.amazonaws.com
#s3-protocol-version=Amazon
s3-bucket=MariaDB
s3-access-key=
s3-secret-key=
s3-region=shell> cd **mysql-test** directory
shell> ./mysql-test-run --suite=s3
...
s3.no_s3 [ pass ] 5
s3.alter [ pass ] 11073
s3.arguments [ pass ] 2667
s3.basic [ pass ] 2757
s3.discovery [ pass ] 7851
s3.select [ pass ] 1325
s3.unsupported [ pass ] 363USE test;
CREATE TABLE s3_test (a INT) ENGINE=aria row_format=page transactional=0;
INSERT INTO s3_test VALUES (1),(2);
SET @@global.s3_debug=1;
ALTER TABLE s3_test ENGINE=S3;
SET @@global.s3_debug=0;