-
Notifications
You must be signed in to change notification settings - Fork 434
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
GEOMESA-3426 FSDS - Support path filtering for converter queries #3245
Conversation
Reminding myself to update the docs |
...-fs-storage-api/src/main/scala/org/locationtech/geomesa/fs/storage/api/StorageMetadata.scala
Outdated
Show resolved
Hide resolved
...s-storage-api/src/main/scala/org/locationtech/geomesa/fs/storage/api/PathFilterFactory.scala
Outdated
Show resolved
Hide resolved
fb05e71
to
a530c4c
Compare
a530c4c
to
d2e3424
Compare
val pathFiltering = Option(context.conf.get(PathFilterName)).flatMap { name => | ||
val factory = PathFilteringFactory.load(NamedOptions(name, pathFilteringOpts.toMap)) | ||
if (factory.isEmpty) { | ||
logger.warn(s"Failed to load ${classOf[PathFiltering].getName} for config '$name'") |
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.
do you think a warning is ok here, or should we throw an error? i worry people might not notice the warning, and then get worse performance but since things still work correctly they might not realize the mistake
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.
lgtm otherwise!
@elahrvivaz I've tested with real data on my end and it seems to be working expected. Could we also get this in a 5.0.x release? |
thanks for remembering the docs! |
No description provided.