Details

    Description

      To test S3 Storage engine the following main steps should be performed:

      1. Install libcurl and libxml2-devel libs.
      2. Build MariaDB from the `maria-s3` repository in the mariadb server repo.
      3. Run mysql-test/mtr-aws for `s3` suite.
      4. Run `s3.no_s3` as usual mtr.

      Additional tasks:

      • Create more tests for s3.
      • Do test with big tables.
      • Run complex queries with join with 2,3,4 tables.
      • Do self joins.
      • Test replication when table is created in s3 and data is read from s3. In this case the data is 'shared' so the slave should just instantiate the table, not create it.

      Attachments

        Issue Links

          Activity

            The status as of 10.05.2019:

            Env: Centos 7.

            `s3` suite has passed. Run command:

            ./mtr --suite s3 --force --big-test --max-test-fail=0 --timer --timestamp --timediff --mysqld="--s3-bucket=storage-engine" --mysqld="--s3-access-key=*******" --mysqld="--s3-secret-key=*******" --mysqld="--s3-region=eu-north-1"
            

            There were some issues to build and compile it:

            1. To make this "cmake -DPLUGIN_S3=YES" works I had to install gnutls and mhash-devel.

            2. When I run "make" I got "error: ‘for’ loop initial declarations are only allowed in C99".
            LinuxJedi has fixed it with this patch:

            diff --git a/storage/maria/CMakeLists.txt b/storage/maria/CMakeLists.txt
            index bf980e3383d..e73c4dcdf3b 100644
            --- a/storage/maria/CMakeLists.txt
            +++ b/storage/maria/CMakeLists.txt
            @@ -105,6 +105,14 @@ OPTION(USE_ARIA_FOR_TMP_TABLES "Use Aria for temporary tables" ON)
             #
             INCLUDE (CheckIncludeFiles)
             
            +if (CMAKE_VERSION VERSION_LESS "3.1")
            +  if (CMAKE_C_COMPILER_ID STREQUAL "GNU")
            +    set (CMAKE_C_FLAGS "-std=gnu99 ${CMAKE_C_FLAGS}")
            +  endif ()
            +else ()
            +  set (CMAKE_C_STANDARD 99)
            +endif ()
            +
             SET(S3_SOURCES ha_s3.cc s3_func.c
                 libmarias3/src/debug.c libmarias3/src/error.c libmarias3/src/marias3.c
                 libmarias3/src/request.c libmarias3/src/response.c)
            

            See appropriate PR for it: https://github.com/MariaDB/server/pull/1300

            stepan.patryshev Stepan Patryshev (Inactive) added a comment - - edited The status as of 10.05.2019: Env: Centos 7. `s3` suite has passed. Run command: ./mtr --suite s3 --force --big-test --max-test-fail=0 --timer --timestamp --timediff --mysqld="--s3-bucket=storage-engine" --mysqld="--s3-access-key=*******" --mysqld="--s3-secret-key=*******" --mysqld="--s3-region=eu-north-1" There were some issues to build and compile it: 1. To make this "cmake -DPLUGIN_S3=YES" works I had to install gnutls and mhash-devel. 2. When I run "make" I got "error: ‘for’ loop initial declarations are only allowed in C99". LinuxJedi has fixed it with this patch: diff --git a/storage/maria/CMakeLists.txt b/storage/maria/CMakeLists.txt index bf980e3383d..e73c4dcdf3b 100644 --- a/storage/maria/CMakeLists.txt +++ b/storage/maria/CMakeLists.txt @@ -105,6 +105,14 @@ OPTION(USE_ARIA_FOR_TMP_TABLES "Use Aria for temporary tables" ON) # INCLUDE (CheckIncludeFiles) +if (CMAKE_VERSION VERSION_LESS "3.1") + if (CMAKE_C_COMPILER_ID STREQUAL "GNU") + set (CMAKE_C_FLAGS "-std=gnu99 ${CMAKE_C_FLAGS}") + endif () +else () + set (CMAKE_C_STANDARD 99) +endif () + SET(S3_SOURCES ha_s3.cc s3_func.c libmarias3/src/debug.c libmarias3/src/error.c libmarias3/src/marias3.c libmarias3/src/request.c libmarias3/src/response.c) See appropriate PR for it: https://github.com/MariaDB/server/pull/1300

            In the end we fixed it by removing the C99 compiler mode requirement in libMariaS3 instead so that PR was closed. The fix will be to have the libmarias3 submodule in MariaDB point to the latest libmarias3 version once it is released (still some minor changes to go in).

            LinuxJedi Andrew Hutchings (Inactive) added a comment - In the end we fixed it by removing the C99 compiler mode requirement in libMariaS3 instead so that PR was closed. The fix will be to have the libmarias3 submodule in MariaDB point to the latest libmarias3 version once it is released (still some minor changes to go in).

            Items to test:

            1. RENAME TABLE and DROP TABLE.
            1.1. Create a table S3Table with MyISAM engine.
            1.2. ALTER TABLE S3Table engine=s3;
            1.3. SHOW CREATE TABLE S3Table;
            1.4. ALTER TABLE S3Table RENAME TO NewS3Table; # should be ok
            1.5. SHOW CREATE TABLE NewS3Table; # should be ok
            1.6. SHOW CREATE TABLE S3Table; # should be error: not found such table
            1.7. DROP TABLE NewS3Table; # should be ok
            1.8. SHOW CREATE TABLE NewS3Table; # should be error: not found such table

            2. Test with big tables.
            2.1. create table BigTable (id bigint unsigned, b int, primary key (id)) engine=MyISAM;
            2.2. insert into BigTable select seq, -mod(seq, 1000) from seq_1_to_10000000000;
            2.3. alter table BigTable engine=s3;
            2.4. Select from the beginning, the middle and the end of the table.
            2.5. alter table BigTable engine=MyISAM;
            2.6. Update some rows from the beginning, the middle and the end of the table.
            2.7. Delete some rows from the beginning, the middle and the end of the table.
            2.8. Add some rows.
            2.9. alter table BigTable engine=s3;
            2.10. Select for updated and not updated rows from the beginning, the middle and the end of the table.
            2.11. Select for deleted rows from the beginning, the middle and the end of the table. Should not find them.
            2.12. Select for the newly added rows.
            2.13. alter table BigTable engine=MyISAM;
            2.14. Add rows with id from deleted rows on the step 2.7.
            2.15. alter table BigTable engine=s3;
            2.16. Select for the newly added rows.

            3. Use sysbench in read-only mode to ensure that all read operation works.

            4. Run some complex queries with join with 2,3,4 tables.

            5. Do self joins.

            6. Port the following MTR tests from suite/engines/funcs test suite:

            comment_column.test
            comment_column2.test
            comment_index.test
            comment_table.test
            crash_manycolumns_number.test
            crash_manycolumns_string.test
            crash_manyindexes_number.test
            crash_manyindexes_string.test
            crash_manytables_number.test
            crash_manytables_string.test
            date_function.test
            db_alter_character_set.test
            db_alter_character_set_collate.test
            db_alter_collate_ascii.test
            db_alter_collate_utf8.test
            fu_aggregate_avg_number.test
            fu_aggregate_count_number.test
            fu_aggregate_max_number.test
            fu_aggregate_max_subquery.test
            fu_aggregate_min_number.test
            fu_aggregate_sum_number.test
            general_no_data.test
            general_not_null.test
            general_null.test
            jp_comment_column.test
            jp_comment_index.test
            jp_comment_older_compatibility1.test
            jp_comment_table.test
            ld_all_number_string_calendar_types.test
            ld_bit.test
            ld_enum_set.test
            ld_less_columns.test
            ld_more_columns_truncated.test
            ld_null.test
            ld_quote.test
            ld_simple.test
            ld_starting.test
            ld_unique_error1.test
            ld_unique_error1_local.test
            ld_unique_error2.test
            ld_unique_error2_local.test
            ld_unique_error3.test
            ld_unique_error3_local.test
            ps_number_length.test
            ps_number_null.test
            ps_string_not_null.test
            ps_string_null.test
            se_join_cross.test
            se_join_default.test
            se_join_inner.test
            se_join_left.test
            se_join_left_outer.test
            se_join_natural_left.test
            se_join_natural_left_outer.test
            se_join_natural_right.test
            se_join_natural_right_outer.test
            se_join_right.test
            se_join_right_outer.test
            se_join_straight.test
            se_rowid.test
            se_string_distinct.test
            se_string_from.test
            se_string_groupby.test
            se_string_having.test
            se_string_limit.test
            se_string_orderby.test
            se_string_union.test
            se_string_where.test
            se_string_where_and.test
            se_string_where_or.test
            sq_all.test
            sq_any.test
            sq_corr.test
            sq_error.test
            sq_exists.test
            sq_from.test
            sq_in.test
            sq_row.test
            sq_scalar.test
            sq_some.test

            7. Test replication when table is created in s3 and data is read from s3. In this case the data is 'shared' so the slave should just instantiate the table, not create it.

            stepan.patryshev Stepan Patryshev (Inactive) added a comment - - edited Items to test: 1. RENAME TABLE and DROP TABLE. 1.1. Create a table S3Table with MyISAM engine. 1.2. ALTER TABLE S3Table engine=s3; 1.3. SHOW CREATE TABLE S3Table; 1.4. ALTER TABLE S3Table RENAME TO NewS3Table; # should be ok 1.5. SHOW CREATE TABLE NewS3Table; # should be ok 1.6. SHOW CREATE TABLE S3Table; # should be error: not found such table 1.7. DROP TABLE NewS3Table; # should be ok 1.8. SHOW CREATE TABLE NewS3Table; # should be error: not found such table 2. Test with big tables. 2.1. create table BigTable (id bigint unsigned, b int, primary key (id)) engine=MyISAM; 2.2. insert into BigTable select seq, -mod(seq, 1000) from seq_1_to_10000000000; 2.3. alter table BigTable engine=s3; 2.4. Select from the beginning, the middle and the end of the table. 2.5. alter table BigTable engine=MyISAM; 2.6. Update some rows from the beginning, the middle and the end of the table. 2.7. Delete some rows from the beginning, the middle and the end of the table. 2.8. Add some rows. 2.9. alter table BigTable engine=s3; 2.10. Select for updated and not updated rows from the beginning, the middle and the end of the table. 2.11. Select for deleted rows from the beginning, the middle and the end of the table. Should not find them. 2.12. Select for the newly added rows. 2.13. alter table BigTable engine=MyISAM; 2.14. Add rows with id from deleted rows on the step 2.7. 2.15. alter table BigTable engine=s3; 2.16. Select for the newly added rows. 3. Use sysbench in read-only mode to ensure that all read operation works. 4. Run some complex queries with join with 2,3,4 tables. 5. Do self joins. 6. Port the following MTR tests from suite/engines/funcs test suite: comment_column.test comment_column2.test comment_index.test comment_table.test crash_manycolumns_number.test crash_manycolumns_string.test crash_manyindexes_number.test crash_manyindexes_string.test crash_manytables_number.test crash_manytables_string.test date_function.test db_alter_character_set.test db_alter_character_set_collate.test db_alter_collate_ascii.test db_alter_collate_utf8.test fu_aggregate_avg_number.test fu_aggregate_count_number.test fu_aggregate_max_number.test fu_aggregate_max_subquery.test fu_aggregate_min_number.test fu_aggregate_sum_number.test general_no_data.test general_not_null.test general_null.test jp_comment_column.test jp_comment_index.test jp_comment_older_compatibility1.test jp_comment_table.test ld_all_number_string_calendar_types.test ld_bit.test ld_enum_set.test ld_less_columns.test ld_more_columns_truncated.test ld_null.test ld_quote.test ld_simple.test ld_starting.test ld_unique_error1.test ld_unique_error1_local.test ld_unique_error2.test ld_unique_error2_local.test ld_unique_error3.test ld_unique_error3_local.test ps_number_length.test ps_number_null.test ps_string_not_null.test ps_string_null.test se_join_cross.test se_join_default.test se_join_inner.test se_join_left.test se_join_left_outer.test se_join_natural_left.test se_join_natural_left_outer.test se_join_natural_right.test se_join_natural_right_outer.test se_join_right.test se_join_right_outer.test se_join_straight.test se_rowid.test se_string_distinct.test se_string_from.test se_string_groupby.test se_string_having.test se_string_limit.test se_string_orderby.test se_string_union.test se_string_where.test se_string_where_and.test se_string_where_or.test sq_all.test sq_any.test sq_corr.test sq_error.test sq_exists.test sq_from.test sq_in.test sq_row.test sq_scalar.test sq_some.test 7. Test replication when table is created in s3 and data is read from s3. In this case the data is 'shared' so the slave should just instantiate the table, not create it.

            I tried to perform a test with a big table, but instead of 10Gb table I tested it with 110Gb one by mistake. And I've found an issue MENT-129: Engine cannot be altered to S3 from MyISAM for a 110Gb table.

            stepan.patryshev Stepan Patryshev (Inactive) added a comment - I tried to perform a test with a big table, but instead of 10Gb table I tested it with 110Gb one by mistake. And I've found an issue MENT-129 : Engine cannot be altered to S3 from MyISAM for a 110Gb table.

            People

              elenst Elena Stepanova
              stepan.patryshev Stepan Patryshev (Inactive)
              Votes:
              0 Vote for this issue
              Watchers:
              5 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved:

                Git Integration

                  Error rendering 'com.xiplink.jira.git.jira_git_plugin:git-issue-webpanel'. Please contact your Jira administrators.