support for programmatic ingest from url#1568
Merged
rfecher merged 5 commits intolocationtech:masterfrom Jun 7, 2019
Merged
Conversation
jdgarrett
requested changes
Jun 5, 2019
| public class IngestFormatPluginOptions extends DefaultPluginOptions implements PluginOptions { | ||
|
|
||
| private static final Logger LOGGER = LoggerFactory.getLogger(LocalFileIngestDriver.class); | ||
| private static final Logger LOGGER = LoggerFactory.getLogger(LocalFileIngestCLIDriver.class); |
Contributor
There was a problem hiding this comment.
Logger should use IngestFormatPluginOptions.class.
| e.getValue().createLocalFileIngestPlugin(e.getValue().createOptionsInstances())); | ||
| } | ||
| return retVal; | ||
| } |
Contributor
There was a problem hiding this comment.
This can be a bit cleaner with Java8 streams: return getPluginProviderRegistry().entrySet().stream().collect( Collectors.toMap( Entry::getKey, e -> e.getValue().createLocalFileIngestPlugin(e.getValue().createOptionsInstances())));
| @@ -0,0 +1,96 @@ | |||
| package org.locationtech.geowave.core.store.ingest; | |||
| @@ -0,0 +1,51 @@ | |||
| package org.locationtech.geowave.core.ingest; | |||
| @@ -0,0 +1,58 @@ | |||
| package org.locationtech.geowave.core.ingest; | |||
| @@ -0,0 +1,15 @@ | |||
| package org.locationtech.geowave.core.store.ingest; | |||
| @@ -0,0 +1,108 @@ | |||
| package org.locationtech.geowave.core.store.ingest; | |||
| if (urlHandlerList == null) { | ||
| final Iterator<IngestUrlHandlerSpi> handlers = | ||
| new SPIServiceRegistry(IngestUrlHandlerSpi.class).load(IngestUrlHandlerSpi.class); | ||
| urlHandlerList = new ArrayList<>(); |
Contributor
There was a problem hiding this comment.
Could be just Lists.newArrayList(handlers);
| @@ -0,0 +1,7 @@ | |||
| package org.locationtech.geowave.core.store.ingest; | |||
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
No description provided.