-
Notifications
You must be signed in to change notification settings - Fork 12
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
Feature/untangle dataset registry and meta storage #3502
Merged
thoniTUB
merged 5 commits into
develop
from
feature/untangle-datasetRegistry-and-MetaStorage
Jul 25, 2024
Merged
Changes from 4 commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
ffe1edc
remove dependence of DatasetRegistry on MetaStorage
thoniTUB 56e5ea5
simplify InternalObjectMapperCreator#init by pushing metaStorage to c…
thoniTUB ca8b0eb
revert record conversion is IdRefrenceTest because jackson fails
thoniTUB 699f25a
small clean up to trigger CI
thoniTUB 0dc7571
Merge branch 'develop' into feature/untangle-datasetRegistry-and-Meta…
thoniTUB 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
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 |
---|---|---|
|
@@ -11,13 +11,9 @@ | |
import com.bakdata.conquery.models.execution.ManagedExecution; | ||
import com.bakdata.conquery.models.forms.configs.FormConfig; | ||
import com.bakdata.conquery.models.identifiable.CentralRegistry; | ||
import com.bakdata.conquery.models.identifiable.ids.specific.FormConfigId; | ||
import com.bakdata.conquery.models.identifiable.ids.specific.GroupId; | ||
import com.bakdata.conquery.models.identifiable.ids.specific.ManagedExecutionId; | ||
import com.bakdata.conquery.models.identifiable.ids.specific.RoleId; | ||
import com.bakdata.conquery.models.identifiable.ids.specific.UserId; | ||
import com.bakdata.conquery.models.worker.DatasetRegistry; | ||
import com.bakdata.conquery.models.worker.Namespace; | ||
import com.bakdata.conquery.models.identifiable.ids.specific.*; | ||
import com.fasterxml.jackson.databind.DeserializationContext; | ||
import com.fasterxml.jackson.databind.JsonMappingException; | ||
import com.fasterxml.jackson.databind.ObjectMapper; | ||
import com.google.common.base.Preconditions; | ||
import com.google.common.collect.ImmutableList; | ||
|
@@ -34,8 +30,6 @@ public class MetaStorage extends ConqueryStorage implements Injectable { | |
protected final CentralRegistry centralRegistry = new CentralRegistry(); | ||
private final StoreFactory storageFactory; | ||
|
||
@Getter | ||
protected final DatasetRegistry<? extends Namespace> datasetRegistry; | ||
Comment on lines
-37
to
-38
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @awildturtok this went away |
||
private IdentifiableStore<ManagedExecution> executions; | ||
private IdentifiableStore<FormConfig> formConfigs; | ||
private IdentifiableStore<User> authUser; | ||
|
@@ -47,8 +41,8 @@ public void openStores(ObjectMapper mapper) { | |
authRole = storageFactory.createRoleStore(centralRegistry, "meta", this, mapper); | ||
authGroup = storageFactory.createGroupStore(centralRegistry, "meta", this, mapper); | ||
// Executions depend on users | ||
executions = storageFactory.createExecutionsStore(centralRegistry, datasetRegistry, "meta", mapper); | ||
formConfigs = storageFactory.createFormConfigStore(centralRegistry, datasetRegistry, "meta", mapper); | ||
executions = storageFactory.createExecutionsStore(centralRegistry, "meta", mapper); | ||
formConfigs = storageFactory.createFormConfigStore(centralRegistry, "meta", mapper); | ||
|
||
} | ||
|
||
|
@@ -196,4 +190,8 @@ public void addFormConfig(FormConfig formConfig) { | |
public MutableInjectableValues inject(MutableInjectableValues values) { | ||
return values.add(MetaStorage.class, this); | ||
} | ||
|
||
public static MetaStorage get(DeserializationContext ctxt) throws JsonMappingException { | ||
return (MetaStorage) ctxt.findInjectableValue(MetaStorage.class.getName(), null, null); | ||
} | ||
} |
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
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.
würde es sich anbieten die CentralRegistry umzubennen, wenn sie hier nur für die MetaIds verantwortlich ist?
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.
also => Registry
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.
Ich würde davon absehen, da die CentralRegistry mit dem Caching verschwindet