-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
cfr: Add software tests for
sys-import
- Loading branch information
Showing
7 changed files
with
106 additions
and
5 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,21 @@ | ||
# CFR Backlog | ||
|
||
## Iteration +1 | ||
- sys-export: Does the program need capabilities to **LIMIT** cardinality | ||
on `sys-export` operations, for example, when they are super large? | ||
- sys-import: Accept target database schema. | ||
- Combine with `ctk wtf info` | ||
- Software tests | ||
- Converge output into tar archive | ||
- Combine with `ctk wtf info` | ||
- On sys-export, add it to the CFR package | ||
- After sys-import, use it to access the imported data | ||
|
||
## Iteration +2 | ||
- Cluster name muss in `cfr/<name>/sys/<timestamp>`, für multi-tenancy operations. | ||
- sys-export: Does the program need capabilities to **LIMIT** cardinality | ||
on `sys-export` operations, for example, when they are super large? | ||
- sys-import: Accept target database schema. | ||
|
||
## Iteration +3 | ||
- Wie komme ich ans `crate.yaml`? | ||
- Wie komme ich an die Logfiles? `docker log`? | ||
- Use OpenTelemetry traces in one way or another? | ||
|
||
## Done | ||
- Cluster name muss in `cfr/<name>/sys/<timestamp>`, für multi-tenancy operations. |
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 @@ | ||
{"id":"0","job_id":"3cd98282-50f6-c25d-c69e-90eeea6d7afc","name":"collect","node":{"name":"Testa del Rutor","id":"sy7vpr9mSzS4RMwKJTxWkA"},"started":1713399434586,"used_bytes":0} |
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,8 @@ | ||
CREATE TABLE IF NOT EXISTS "sys-operations" ( | ||
id STRING, | ||
job_id STRING, | ||
name STRING, | ||
node OBJECT, | ||
started TIMESTAMP, | ||
used_bytes LONG | ||
); |
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