Skip to content
Snippets Groups Projects
Commit c85271a2 authored by Zhibin Mai's avatar Zhibin Mai
Browse files

Update the doc

parent 2b97d652
No related branches found
No related tags found
1 merge request!486Enable the feature flag for geo-shape decimation by default
......@@ -8,17 +8,18 @@ by implementing Ramer–Douglas–Peucker algorithm:
- Polygon
- MultiPolygon
In order to reduce the risk when extended evaluation of the solution is still on going, a feature flag that is managed by
the Partition Service is applied to the solution.
Here is an example to enable this feature by setting the property "indexer-decimation-enabled" in a given data partition:
The feature is enabled by default for all data partitions. If client does not want the geo-shape to be decimated in their
data partitions, they can disable geo-shape decimation through the Partition Service.
Here is an example to disable this feature by setting the property "indexer-decimation-enabled" in a given data partition:
```
{
"indexer-decimation-enabled": {
"sensitive": false,
"value": "true"
"value": "false"
}
}
```
If the property "indexer-decimation-enabled" is not created or the property value is set to "false" (String type) in the
given data partition, the geo-shape decimation will be ignored.
If the property "indexer-decimation-enabled" is not created or the property value is set to "true" (String type) in the
given data partition, the geo-shape decimation will be enabled.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment