-
Notifications
You must be signed in to change notification settings - Fork 38
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
Add limit to geojson upload API #218
Merged
VijayanB
merged 1 commit into
opensearch-project:main
from
VijayanB:add-limit-to-upload
Feb 15, 2023
Merged
Changes from all commits
Commits
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,6 +17,7 @@ | |
|
||
import org.opensearch.common.ParseField; | ||
import org.opensearch.common.Strings; | ||
import org.opensearch.geospatial.GeospatialParser; | ||
|
||
/** | ||
* UploadGeoJSONRequestContent is the Data model for UploadGeoJSONRequest's body | ||
|
@@ -29,6 +30,10 @@ public final class UploadGeoJSONRequestContent { | |
public static final ParseField FIELD_GEOSPATIAL = new ParseField("field"); | ||
public static final ParseField FIELD_GEOSPATIAL_TYPE = new ParseField("type"); | ||
public static final ParseField FIELD_DATA = new ParseField("data"); | ||
|
||
// Custom Vector Map can support fetching up to 10K Features. Hence, we chose same value as limit | ||
// for upload as well. | ||
public static final int MAX_SUPPORTED_GEOJSON_FEATURE_COUNT = 10_000; | ||
private final String indexName; | ||
private final String fieldName; | ||
private final String fieldType; | ||
|
@@ -61,9 +66,32 @@ public static UploadGeoJSONRequestContent create(Map<String, Object> input) { | |
geoJSONData + " is not an instance of List, but of type [ " + geoJSONData.getClass().getName() + " ]" | ||
); | ||
} | ||
validateFeatureCount(geoJSONData); | ||
return new UploadGeoJSONRequestContent(index, fieldName, fieldType, (List<Object>) geoJSONData); | ||
} | ||
|
||
private static void validateFeatureCount(Object geoJSONData) { | ||
final long featureCount = getFeatureCount(geoJSONData); | ||
if (featureCount > MAX_SUPPORTED_GEOJSON_FEATURE_COUNT) { | ||
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. Also, can we break this down into a separate method like 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. created new method |
||
throw new IllegalArgumentException( | ||
String.format( | ||
Locale.ROOT, | ||
"Received %d features, but, cannot upload more than %d features", | ||
featureCount, | ||
MAX_SUPPORTED_GEOJSON_FEATURE_COUNT | ||
) | ||
); | ||
} | ||
} | ||
|
||
private static long getFeatureCount(Object geoJSONData) { | ||
return ((List<Object>) geoJSONData).stream() | ||
.map(GeospatialParser::toStringObjectMap) | ||
.map(GeospatialParser::getFeatures) | ||
.flatMap(List::stream) | ||
.count(); | ||
} | ||
|
||
private static String validateIndexName(Map<String, Object> input) { | ||
String index = extractValueAsString(input, FIELD_INDEX.getPreferredName()); | ||
if (Strings.hasText(index)) { | ||
|
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
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.
Do you want to add a comment here that why we are setting the max limit to 10_000?
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 added comment close to constant