forked from pyvandenbussche/sparqles
-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: pull OpenLinkSW fork changes #86
Merged
Merged
Changes from 1 commit
Commits
Show all changes
63 commits
Select commit
Hold shift + click to select a range
6f6b5b1
feat: pull OpenLinkSW fork changes
berezovskyi 589bd39
fix: allow coherence to be added gradually to existing instances
berezovskyi 02e9cd7
fix: Avro quirks
berezovskyi 55466da
fix: Avro quirks 2
berezovskyi 448e5d9
fix: Avro quirks 2
berezovskyi cfd15cd
fix: undo unintended change
berezovskyi 5d8adef
fix: more fixes from the fork + make the AEvol code run on IV recalc
berezovskyi f007602
fix: typo
berezovskyi 6575028
chore: switch to GOOGLE code style
berezovskyi b74c8d1
chore: extra logging
berezovskyi 54d717c
fix: use either amonths or index.availability for the index page avai…
berezovskyi b6ff40b
use index.availability, ignore amonths
berezovskyi 044240a
fix: pre-process index.availability
berezovskyi c08efd5
fix: type
berezovskyi 85dcdd1
fix: Index page updates
berezovskyi a9feac7
chore: extra logging
berezovskyi e364bb5
feat: user agent and timeouts
berezovskyi 3dbf7f5
feat: user agent and timeouts
berezovskyi 1c90f4f
feat: user agent and timeouts
berezovskyi 96f05e4
feat: improve scheduling
berezovskyi 5a74dd3
feat: improve scheduling
berezovskyi 1a3c06b
fix: scheduling
berezovskyi f33ba21
feat: new charts on the homepage [WIP]
berezovskyi f0e524a
fix: show new charts on the homepage
berezovskyi e337d87
refactor: schedules, user agents, and log strings
berezovskyi 144a5ea
fix: API discovery template
berezovskyi 7aa98e6
docs: update footer
berezovskyi 82161a4
refactor: better fault handling
berezovskyi 22b649b
refactor: better fault handling
berezovskyi bb4e4be
refactor: better fault handling
berezovskyi 645bdfd
refactor: better fault handling
berezovskyi ad69d7c
refactor: better fault handling
berezovskyi cb4e405
refactor: better fault handling
berezovskyi a25affc
refactor: better fault handling
berezovskyi c750f18
refactor: better fault handling
berezovskyi 36ff8c4
refactor: better fault handling
berezovskyi 5a62cb2
refactor: better fault handling
berezovskyi 4e98c89
refactor: better fault handling
berezovskyi d03f273
refactor: better fault handling
berezovskyi eec7020
refactor: better fault handling
berezovskyi 539b07a
refactor: better fault handling
berezovskyi b79b763
refactor: better fault handling
berezovskyi 371c968
refactor: better fault handling
berezovskyi 4af8ffe
refactor: better fault handling
berezovskyi 2ce1597
refactor: better fault handling
berezovskyi b5aefe0
refactor: better fault handling
berezovskyi 81e4f3b
feat: calculate median threshold
berezovskyi 37f55ea
refactor: better fault handling
berezovskyi 4a526ff
refactor: better fault handling
berezovskyi 6f69761
refactor: better fault handling
berezovskyi b6c4404
fix: safe access
berezovskyi e19556d
fix: safe access
berezovskyi 63a884e
feat: calculate median threshold
berezovskyi 1bc9d2d
fix: median threshold
berezovskyi ef03683
fix: index/avail calc
berezovskyi b2d8d21
wip: use index.avail by default
berezovskyi fcc133e
refactor: better fault handling
berezovskyi 842ce81
refactor: better fault handling
berezovskyi eb27774
refactor: better fault handling
berezovskyi 7e65653
feat: a script to add endpoints from VOID/SD metadata
berezovskyi 26d3142
fix: timestamps in the views
berezovskyi 7965e7b
Update backend/src/main/java/sparqles/analytics/PAnalyser.java
berezovskyi a586f9c
Update backend/src/main/java/sparqles/analytics/IndexViewAnalytics.java
berezovskyi File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
{ | ||
"namespace": "sparqles.avro.calculation", | ||
"type": "record", | ||
"import" : "EndpointResult.avsc", | ||
"name": "CResult", | ||
"fields": [ | ||
{"name": "endpointResult", "type": "sparqles.avro.EndpointResult"}, | ||
{"name": "triples", "type": "long"}, | ||
{"name": "entities", "type": "long"}, | ||
{"name": "classes", "type": "long"}, | ||
{"name": "properties", "type": "long"}, | ||
{"name": "distinctSubjects", "type": "long"}, | ||
{"name": "distinctObjects", "type": "long"}, | ||
{"name": "exampleResources", "type": | ||
{"type": "array", "items": | ||
{ | ||
"name": "uri", "type": "string" | ||
} | ||
} | ||
}, | ||
{"name": "VoID", "type": "string"}, | ||
{"name": "VoIDPart", "type": "boolean"}, | ||
{"name": "SD", "type": "string"}, | ||
{"name": "SDPart", "type": "boolean"}, | ||
{"name": "coherence", "type": "double"}, | ||
{"name": "RS", "type": "double"} | ||
] | ||
} |
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,15 @@ | ||
{ | ||
"namespace": "sparqles.avro.analytics", | ||
"type": "record", | ||
"name": "CalculationView", | ||
"fields": [ | ||
{"name": "endpoint", "type": "sparqles.avro.Endpoint"}, | ||
{"name": "VoID", "type": "boolean"}, | ||
{"name": "VoIDPart", "type": "boolean"}, | ||
{"name": "SD", "type": "boolean"}, | ||
{"name": "SDPart", "type": "boolean"}, | ||
{"name": "coherence", "type": "double"}, | ||
{"name": "RS", "type": "double"}, | ||
{"name": "lastUpdate", "type": "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
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
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,14 @@ | ||
{ | ||
"namespace":"sparqles.avro.performance", | ||
"type":"record", | ||
"name":"Run", | ||
"fields":[ | ||
{"name": "frestout", "type": "long"}, | ||
{"name": "solutions", "type": "int"}, | ||
{"name": "inittime", "type": "long"}, | ||
{"name": "exectime", "type": "long"}, | ||
{"name": "closetime", "type": "long"}, | ||
{"name": "Exception", "type": ["string", "null"]}, | ||
{"name": "exectout", "type": "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
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
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🛠️ Refactor suggestion
Reduce configuration duplication and standardize naming
features
but the log file is namedinteroperability.log
.Consider: