Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ISC Open Source Projects
Kea
Commits
fe5cacaf
Commit
fe5cacaf
authored
Jun 23, 2016
by
Tomek Mrugalski
🛰
Browse files
[master] Missing script for soft-wipe capability for Cassandra added
This is a leftover from github21_cherry merge.
parent
9dbc009e
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/share/database/scripts/cql/Makefile.am
View file @
fe5cacaf
...
...
@@ -5,3 +5,5 @@ sqlscripts_DATA = dhcpdb_create.cql
sqlscripts_DATA
+=
dhcpdb_drop.cql
EXTRA_DIST
=
${sqlscripts_DATA}
noinst_EXTRA_DIST
=
soft_wipe.cql
src/share/database/scripts/cql/soft_wipe.cql
0 → 100644
View file @
fe5cacaf
-- Copyright (C) 2016 Internet Systems Consortium.
--
-- This Source Code Form is subject to the terms of the Mozilla Public
-- License, v. 2.0. If a copy of the MPL was not distributed with this
-- file, You can obtain one at http://mozilla.org/MPL/2.0/.
-- This is the soft wipe script for CQL (Cassandra). This capability may be
-- used when running Cassandra unit-tests.
--
-- In some deployments (e.g. in case of Tomek's dev system) Cassandra tests take
-- a very long time to execute. This was traced back to slow table/indexes
-- creation/deletion. With full wipe and recreation of all structures, it
-- took over 60 seconds for each test to execute. To avoid this problem, a
-- feature called soft-wipe has been implemented. If enabled, it does not
-- remove the structures, just the data from essential tables. To enable
-- it set KEA_TEST_CASSANDRA_WIPE environment variable to 'soft'. Make sure
-- that the database schema is set up properly before running in soft-wipe
-- mode.
TRUNCATE TABLE lease4;
TRUNCATE TABLE lease6;
TRUNCATE TABLE hosts;
TRUNCATE TABLE dhcp4_options;
TRUNCATE TABLE dhcp6_options;
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment