-
Notifications
You must be signed in to change notification settings - Fork 24.8k
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
Remove vector tile feature flag #76068
Conversation
Pinging @elastic/es-analytics-geo (Team:Analytics) |
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.
Could you also remove it from
elasticsearch/x-pack/plugin/vector-tile/build.gradle
Lines 44 to 53 in e93db2a
if (BuildParams.isSnapshotBuild() == false) { | |
systemProperty 'es.vector_tile_feature_flag_registered', 'true' | |
} | |
} | |
tasks.named("test").configure { | |
if (BuildParams.isSnapshotBuild() == false) { | |
systemProperty 'es.vector_tile_feature_flag_registered', 'true' | |
} | |
} |
ouch, I missed that. I removed it. |
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!
Vector tile development is completed and this feature is ready to be released on 7.15. It is initially release as an experimental feature. In particular this new feature introduces a new endpoint for generating vector tiles from geospatial data stored in Elasticsearch. This is a functionality that is interesting for any application that wants to render geospatial information stored in Elasticsearch on a map. The basic way to call this new end point looks like: ``` GET {index}/_mvt/{geo_field}/{z}/{x}/{y} ``` The return of this call is a vector tile as defined in the [MapBox vector tile specification](https://github.com/mapbox/vector-tile-spec/tree/master/2.1) so it can be easily render by any map supporting this format.
Vector tile development is completed and this feature is ready to be released on 7.15. It is initially release as an experimental feature. In particular this new feature introduces a new endpoint for generating vector tiles from geospatial data stored in Elasticsearch. This is a functionality that is interesting for any application that wants to render geospatial information stored in Elasticsearch on a map. The basic way to call this new end point looks like: ``` GET {index}/_mvt/{geo_field}/{z}/{x}/{y} ``` The return of this call is a vector tile as defined in the [MapBox vector tile specification](https://github.com/mapbox/vector-tile-spec/tree/master/2.1) so it can be easily render by any map supporting this format. Co-authored-by: Ignacio Vera <iverase@gmail.com>
Vector tile development is completed and this feature is ready to be released on 7.15. It is initially release as an experimental feature.
In particular this new feature introduces a new endpoint for generating vector tiles from geospatial data stored in Elasticsearch. This is a functionality that is interesting for any application that wants to render geospatial information stored in Elasticsearch on a map. The basic way to call this new end point looks like:
The return of this call is a vector tile as defined in the MapBox vector tile specification so it can be easily render by any map supporting this format.