-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The corrections were made to reconcile changes made in both the main branch and in the current one. The following problems were addressed: - both branches introduced changes to the Qmeta schema (up to version 10) - a configuration of the worker's result delivery REST service changed in the main branch - class move was made in the feature branch: qdisp::MessageStore -> qmeta::MessageStore
- Loading branch information
1 parent
67df437
commit 7694472
Showing
8 changed files
with
59 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
CREATE TABLE IF NOT EXISTS `chunkMap` ( | ||
`worker` VARCHAR(256) NOT NULL COMMENT 'A unique identifier of a worker hosting the chunk replica', | ||
`database` VARCHAR(256) NOT NULL COMMENT 'The name of a database', | ||
`table` VARCHAR(256) NOT NULL COMMENT 'The name of a table', | ||
`chunk` INT UNSIGNED NOT NULL COMMENT 'The number of a chunk', | ||
`size` BIGINT UNSIGNED NOT NULL COMMENT 'The size of a chunk') | ||
ENGINE = InnoDB | ||
COMMENT = 'Chunk disposition across workers'; | ||
|
||
CREATE TABLE IF NOT EXISTS `chunkMapStatus` ( | ||
`update_time` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'The most recent update time of the map') | ||
ENGINE = InnoDB | ||
COMMENT = 'Satus info on the chunk map'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters