-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #49 from gleanerio/df-dev
@valentinedwv Thanks for all the great feedback and code review!
- Loading branch information
Showing
45 changed files
with
85,908 additions
and
513 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 +1 @@ | ||
2.0.8-development | ||
2.0.18-df-development |
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,36 @@ | ||
# 1. Record architecture decisions | ||
|
||
Date: 08-23-2023 | ||
|
||
## Status | ||
|
||
Proposed | ||
|
||
## Context | ||
|
||
There are some conventions used in the levering of an object store by GleanerIO. | ||
This ADR scopes the naming conventions used both by Gleaner and Nabu. | ||
|
||
Some of these conventions have implications on the behavior of the code. For | ||
example, the URN generation leverages the path structure to establish the | ||
urn structure (see 0001-URN-decision.md). | ||
|
||
Though the resulting URN is abstracted from the object prefix value, that prefix | ||
is still used in the initial formation. | ||
|
||
* graphs/ | ||
* graphs/archive | ||
* graphs/latest | ||
* graphs/summary | ||
* summoned/ | ||
* prov/ | ||
* milled/ | ||
* orgs/ | ||
* reports/ | ||
* scheduler/ | ||
|
||
## Decision | ||
|
||
|
||
## Consequences | ||
|
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,77 @@ | ||
direction: right | ||
|
||
|
||
gi: Get Image(s) { | ||
style.fill: "#e0a3ff" | ||
width: 200 | ||
height: 150 | ||
} | ||
|
||
g: Gleaner Harvest { | ||
style.fill: honeydew | ||
width: 200 | ||
height: 150 | ||
} | ||
|
||
data: Data Graph { | ||
dr: Build Release Graph { | ||
style.fill: "#f4a261" | ||
width: 300 | ||
} | ||
udr: Load Release Graph { | ||
style.fill: "#f4a261" | ||
width: 300 | ||
} | ||
|
||
dp: Prune { | ||
style.fill: "#f4a261" | ||
width: 300 | ||
} | ||
} | ||
|
||
org: Organization Graph { | ||
or: Prefix Load Graph { | ||
style.fill: "#f4a261" | ||
width: 300 | ||
} | ||
|
||
# uor: Load Release Graph { | ||
# style.fill: "#f4a261" | ||
# width: 300 | ||
# } | ||
|
||
# op: Prune { | ||
# style.fill: "#f4a261" | ||
# width: 300 | ||
# } | ||
|
||
# org.or -> org.uor -> org.op | ||
|
||
} | ||
|
||
prov: Provenance Graph { | ||
pr: Build Release Graph { | ||
style.fill: "#f4a261" | ||
width: 300 | ||
} | ||
dpg: Clear Current Graph{ | ||
style.fill: "#f4a261" | ||
width: 300 | ||
} | ||
upr: Load Release Graph { | ||
style.fill: "#f4a261" | ||
width: 300 | ||
} | ||
dpp: Delete Generated Data Graphs { | ||
style.fill: "#f4a261" | ||
width: 300 | ||
} | ||
} | ||
|
||
gi -> g | ||
g -> org.or | ||
g -> data.dr | ||
g -> prov.pr | ||
|
||
data.dr -> data.udr -> data.dp | ||
prov.pr -> prov.dpg -> prov.upr -> prov.dpp |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,11 +1,12 @@ | ||
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> | ||
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> | ||
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#> | ||
|
||
SELECT (COUNT( DISTINCT ?g) AS ?graphs) | ||
|
||
SELECT (COUNT(DISTINCT ?graph) AS ?namedGraphsCount) | ||
(COUNT(*) AS ?triplesCount) | ||
WHERE { | ||
graph ?g { | ||
?s ?p ?o | ||
GRAPH ?graph { | ||
?subject ?predicate ?object | ||
} | ||
} | ||
|
||
|
||
|
||
SELECT (COUNT(DISTINCT ?graph) AS ?namedGraphsCount)(COUNT(*) AS ?triplesCount)WHERE {GRAPH ?graph {?subject ?predicate ?object}} |
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
Oops, something went wrong.