-
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
Rework of IdMapping toward explicit Id-kinds #1970
Conversation
…tated Ids instead of guessing the used Ids Also refactors reading of IdMapping to use Headers and not indices, we don't need insane performance here anyway
…m/bakdata/conquery into feature/external-headers-reworked
Also expose available FormatColumns under FontendConfig
...end/src/main/java/com/bakdata/conquery/apiv1/query/concept/specific/external/CQExternal.java
Outdated
Show resolved
Hide resolved
.../src/main/java/com/bakdata/conquery/apiv1/query/concept/specific/external/DateSetColumn.java
Outdated
Show resolved
Hide resolved
...d/src/main/java/com/bakdata/conquery/apiv1/query/concept/specific/external/FormatColumn.java
Outdated
Show resolved
Hide resolved
backend/src/main/java/com/bakdata/conquery/apiv1/query/concept/specific/external/IdColumn.java
Outdated
Show resolved
Hide resolved
backend/src/main/java/com/bakdata/conquery/models/config/FrontendConfig.java
Outdated
Show resolved
Hide resolved
backend/src/main/java/com/bakdata/conquery/models/identifiable/mapping/EntityIdMap.java
Outdated
Show resolved
Hide resolved
backend/src/main/java/com/bakdata/conquery/models/identifiable/mapping/EntityIdMap.java
Outdated
Show resolved
Hide resolved
try { | ||
execution.initExecutable(datasets, config); | ||
}catch (Exception e){ | ||
log.error("Failed to initialize Query[{}]", execution.getId(), e); | ||
|
||
//TODO we don't want to store completely faulty queries but is that right like this? | ||
datasets.getMetaStorage().removeExecution(execution.getId()); | ||
throw e; | ||
} |
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.
Du hast in ManagedExecution schon ein try-catch, aber schluckst die Exception dort
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.
Öhm jetzt sehe ich ManagedExecution nicht mehr in den Änderungen. hast du die reverted?
backend/src/main/java/com/bakdata/conquery/resources/admin/rest/AdminDatasetProcessor.java
Show resolved
Hide resolved
backend/src/test/java/com/bakdata/conquery/integration/common/LoadingUtil.java
Show resolved
Hide resolved
…m/bakdata/conquery into feature/external-headers-reworked
also implement resolving of DateFormat
…d' into feature/localized-date # Conflicts: # backend/src/main/java/com/bakdata/conquery/io/result/excel/ResultExcelProcessor.java # backend/src/main/java/com/bakdata/conquery/models/externalservice/ResultType.java # docs/Config JSON.md # docs/REST API JSONs.md
Feature/localized date
Also refactors reading of IdMapping to use Headers and not indices, we don't need insane performance here anyway