-
Notifications
You must be signed in to change notification settings - Fork 3.8k
Synchronization of lookups during startup of druid processes #4758
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
Changes from all commits
5d41b29
8f2a360
317e4e3
6eaffd4
a3bfc31
6731438
4a11a49
f3ad262
e9b3ddc
756098b
1db8914
727a706
263dfdc
6d9278f
e5fe3c2
361d255
ce32e04
99c6f60
9876ae0
c7ecfdc
2ea72af
1cb6627
bff5b09
fc9d53e
37ae0c9
eae35a5
24eb9fb
f80fbd9
7e788fa
8aa5d4f
840c644
f9465d1
ef3ead5
2bf45e1
2529959
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -24,7 +24,6 @@ | |
| import io.druid.guice.annotations.ExtensionPoint; | ||
| import io.druid.java.util.common.Cacheable; | ||
| import io.druid.query.lookup.LookupExtractionFn; | ||
| import io.druid.query.lookup.RegisteredLookupExtractionFn; | ||
|
|
||
| import javax.annotation.Nullable; | ||
|
|
||
|
|
@@ -41,7 +40,6 @@ | |
| @JsonSubTypes.Type(name = "timeFormat", value = TimeFormatExtractionFn.class), | ||
| @JsonSubTypes.Type(name = "identity", value = IdentityExtractionFn.class), | ||
| @JsonSubTypes.Type(name = "lookup", value = LookupExtractionFn.class), | ||
| @JsonSubTypes.Type(name = "registeredLookup", value = RegisteredLookupExtractionFn.class), | ||
|
Contributor
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. why is this removed?
Contributor
Author
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. I had to move this to https://github.com/a2l007/druid/blob/8f2a360119be5d619a2bc0d57976f483faaad610/server/src/main/java/io/druid/query/lookup/LookupModule.java#L89 as part of the refactoring. |
||
| @JsonSubTypes.Type(name = "substring", value = SubstringDimExtractionFn.class), | ||
| @JsonSubTypes.Type(name = "cascade", value = CascadeExtractionFn.class), | ||
| @JsonSubTypes.Type(name = "stringFormat", value = StringFormatExtractionFn.class), | ||
|
|
||
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.
why is this removed?
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.
I had to move this to https://github.com/a2l007/druid/blob/8f2a360119be5d619a2bc0d57976f483faaad610/server/src/main/java/io/druid/query/lookup/LookupModule.java#L89
as part of the refactoring.