Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
54 commits
Select commit Hold shift + click to select a range
d39be36
Add sidecardb module
rohit-nayak-ps Oct 12, 2022
02f31d1
Remove metadata tables from init_db.sql
rohit-nayak-ps Oct 12, 2022
e3d099d
Init sidecard db in EnsureConnectionAndDB, common entry point for all…
rohit-nayak-ps Oct 12, 2022
6b3f648
Disable withddl if new init mechanism is enabled
rohit-nayak-ps Oct 18, 2022
acf8a56
Fix vttablet help output
rohit-nayak-ps Oct 18, 2022
b7d8a07
Remove references to metadata tables
rohit-nayak-ps Oct 18, 2022
8fbc92c
Adding super read only user during tablet init
rsajwani Nov 14, 2022
e0e2f3f
Merge remote-tracking branch 'upstream/main' into Issue#10363_II
rsajwani Nov 15, 2022
afd71fb
add new init sql file for unit test
rsajwani Nov 15, 2022
483ef1e
enable super-readonly by default
rsajwani Nov 22, 2022
3ba27f2
Merge remote-tracking branch 'upstream/main' into Issue#10363_II
rsajwani Nov 22, 2022
0b09532
Fixing some arrangement for super-read-only
rsajwani Nov 24, 2022
48fa50c
Fix end to end tests
rsajwani Dec 1, 2022
13e53fe
fix rpc_replication issue
rsajwani Dec 6, 2022
a23fd9e
Merge remote-tracking branch 'upstream/main' into Issue#10363_II
rsajwani Dec 6, 2022
b7dac35
Add sidecardb module
rohit-nayak-ps Oct 12, 2022
7950c3c
Remove metadata tables from init_db.sql
rohit-nayak-ps Oct 12, 2022
18693db
Init sidecard db in EnsureConnectionAndDB, common entry point for all…
rohit-nayak-ps Oct 12, 2022
cbd2948
Disable withddl if new init mechanism is enabled
rohit-nayak-ps Oct 18, 2022
68541ed
Fix vttablet help output
rohit-nayak-ps Oct 18, 2022
26bf2e9
Remove references to metadata tables
rohit-nayak-ps Oct 18, 2022
d34e1ce
Fix logic for schema init
rohit-nayak-ps Dec 6, 2022
e1939cd
Fix unit test failures
rohit-nayak-ps Dec 6, 2022
596d7b5
Fix more tests
rohit-nayak-ps Dec 6, 2022
0279861
Fix logic to get initvtschema flag. Disable local metadata test.
rohit-nayak-ps Dec 7, 2022
a123d6d
Fix more tests
rohit-nayak-ps Dec 8, 2022
27a206f
Fix more tests
rohit-nayak-ps Dec 8, 2022
cc9f312
Fix more tests
rohit-nayak-ps Dec 8, 2022
ff323fa
Fixing backup tests
rsajwani Dec 7, 2022
3377060
Merge remote-tracking branch 'origin/rn-tablet-init-refactor' into Is…
rsajwani Dec 9, 2022
f1278c9
fixing error with spacing in init sql file
rsajwani Dec 9, 2022
59dffe3
vtgate end to end fixes
rsajwani Dec 10, 2022
624ff5c
some more test fixes
rsajwani Dec 10, 2022
b7b6f5b
fixing flag tests and more
rsajwani Dec 12, 2022
f127ef0
fixing schema sql
rsajwani Dec 14, 2022
a78d0c8
moving cluster test to self hosted
rsajwani Dec 15, 2022
a4cd687
Merge remote-tracking branch 'upstream/main' into Issue#10363_II
rsajwani Dec 15, 2022
4f5152a
Introducing delay between commands
rsajwani Dec 15, 2022
0f91915
reverting some changes
rsajwani Dec 15, 2022
c705fc8
revert change to vtctlbackup
rsajwani Dec 15, 2022
ddd2548
add schema update only for primary
rsajwani Dec 15, 2022
0d9092f
fixing unit tests
rsajwani Dec 16, 2022
089988d
Merge remote-tracking branch 'upstream/main' into Issue#10363_II
rsajwani Dec 16, 2022
835b3ee
Add sidecardb module
rohit-nayak-ps Oct 12, 2022
fd932fa
Updated schema_migrations schema
rohit-nayak-ps Dec 16, 2022
2ad4bc3
fixing vttest server test cases
rsajwani Dec 17, 2022
3ee0429
changing downgrade upgrade test
rsajwani Dec 20, 2022
428d633
correcting some path in workflow
rsajwani Dec 20, 2022
bdd8658
more fixes for downgrad upgrade test
rsajwani Dec 20, 2022
739297e
some test fixes
rsajwani Dec 20, 2022
2d88f57
upgrade downgrad orignal test
rsajwani Dec 21, 2022
9a75087
fixing more downgrad upgrade test
rsajwani Dec 21, 2022
f9797bb
fixing reparent upgrade downgrade test
rsajwani Dec 22, 2022
0b98e80
Merge remote-tracking branch 'upstream/main' into Issue#10363_II
rsajwani Dec 22, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# DO NOT MODIFY: THIS FILE IS GENERATED USING "make generate_ci_workflows"

ARG bootstrap_version=14
ARG image="vitess/bootstrap:${bootstrap_version}-mysql80"

FROM "${image}"

USER root

# Re-copy sources from working tree
RUN rm -rf /vt/src/vitess.io/vitess/*
COPY . /vt/src/vitess.io/vitess

# Set the working directory
WORKDIR /vt/src/vitess.io/vitess

# Fix permissions
RUN chown -R vitess:vitess /vt

USER vitess

# Set environment variables
ENV VTROOT /vt/src/vitess.io/vitess
# Set the vtdataroot such that it uses the volume mount
ENV VTDATAROOT /vt/vtdataroot

# create the vtdataroot directory
RUN mkdir -p $VTDATAROOT

# install goimports
RUN go install golang.org/x/tools/cmd/goimports@latest

# sleep for 50 minutes
CMD sleep 3000
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,7 @@ jobs:
# Increase our open file descriptor limit as we could hit this
ulimit -n 65536
cat <<-EOF>>./config/mycnf/mysql80.cnf

innodb_buffer_pool_dump_at_shutdown=OFF
innodb_buffer_pool_in_core_file=OFF
innodb_buffer_pool_load_at_startup=OFF
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,7 @@ jobs:
# Increase our open file descriptor limit as we could hit this
ulimit -n 65536
cat <<-EOF>>./config/mycnf/mysql80.cnf

innodb_buffer_pool_dump_at_shutdown=OFF
innodb_buffer_pool_in_core_file=OFF
innodb_buffer_pool_load_at_startup=OFF
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,7 @@ jobs:
# Increase our open file descriptor limit as we could hit this
ulimit -n 65536
cat <<-EOF>>./config/mycnf/mysql80.cnf

innodb_buffer_pool_dump_at_shutdown=OFF
innodb_buffer_pool_in_core_file=OFF
innodb_buffer_pool_load_at_startup=OFF
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,7 @@ jobs:
# Increase our open file descriptor limit as we could hit this
ulimit -n 65536
cat <<-EOF>>./config/mycnf/mysql80.cnf

innodb_buffer_pool_dump_at_shutdown=OFF
innodb_buffer_pool_in_core_file=OFF
innodb_buffer_pool_load_at_startup=OFF
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,7 @@ jobs:
# Increase our open file descriptor limit as we could hit this
ulimit -n 65536
cat <<-EOF>>./config/mycnf/mysql80.cnf

innodb_buffer_pool_dump_at_shutdown=OFF
innodb_buffer_pool_in_core_file=OFF
innodb_buffer_pool_load_at_startup=OFF
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,7 @@ jobs:
# Increase our open file descriptor limit as we could hit this
ulimit -n 65536
cat <<-EOF>>./config/mycnf/mysql80.cnf

innodb_buffer_pool_dump_at_shutdown=OFF
innodb_buffer_pool_in_core_file=OFF
innodb_buffer_pool_load_at_startup=OFF
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/cluster_endtoend_vreplication_v2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,7 @@ jobs:
# Increase our open file descriptor limit as we could hit this
ulimit -n 65536
cat <<-EOF>>./config/mycnf/mysql80.cnf

innodb_buffer_pool_dump_at_shutdown=OFF
innodb_buffer_pool_in_core_file=OFF
innodb_buffer_pool_load_at_startup=OFF
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,7 @@ jobs:
# Increase our open file descriptor limit as we could hit this
ulimit -n 65536
cat <<-EOF>>./config/mycnf/mysql80.cnf

innodb_buffer_pool_dump_at_shutdown=OFF
innodb_buffer_pool_in_core_file=OFF
innodb_buffer_pool_load_at_startup=OFF
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,7 @@ jobs:
# Increase our open file descriptor limit as we could hit this
ulimit -n 65536
cat <<-EOF>>./config/mycnf/mysql80.cnf

innodb_buffer_pool_dump_at_shutdown=OFF
innodb_buffer_pool_in_core_file=OFF
innodb_buffer_pool_load_at_startup=OFF
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,7 @@ jobs:
# Increase our open file descriptor limit as we could hit this
ulimit -n 65536
cat <<-EOF>>./config/mycnf/mysql80.cnf

innodb_buffer_pool_dump_at_shutdown=OFF
innodb_buffer_pool_in_core_file=OFF
innodb_buffer_pool_load_at_startup=OFF
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/unit_test_mariadb103.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,4 +110,8 @@ jobs:
if: steps.skip-workflow.outputs.skip-workflow == 'false' && steps.changes.outputs.unit_tests == 'true'
timeout-minutes: 30
run: |

# mariadb103
export MYSQL_FLAVOR="MariaDB103"

eatmydata -- make unit_test
1 change: 1 addition & 0 deletions .github/workflows/unit_test_mysql57.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,4 +116,5 @@ jobs:
if: steps.skip-workflow.outputs.skip-workflow == 'false' && steps.changes.outputs.unit_tests == 'true'
timeout-minutes: 30
run: |

eatmydata -- make unit_test
1 change: 1 addition & 0 deletions .github/workflows/unit_test_mysql80.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,4 +113,5 @@ jobs:
if: steps.skip-workflow.outputs.skip-workflow == 'false' && steps.changes.outputs.unit_tests == 'true'
timeout-minutes: 30
run: |

eatmydata -- make unit_test
Loading