Closed k1995 closed 3 months ago
社区论坛原链接 https://discuss.nebula-graph.com.cn/t/topic/15886
It's works well when there is only one geo index in the tag, but there will be problems when adding other indexes
Linux 5.15.153.1-microsoft-standard-WSL2 #1 SMP Fri Mar 29 23:14:13 UTC 2024 x86_64 x86_64 x86_64 GNU/Linux
Steps to reproduce the behavior:
CREATE SPACE `test` (partition_num = 10, replica_factor = 1, charset = utf8, collate = utf8_bin, vid_type = FIXED_STRING(32));
CREATE TAG `event` ( `gps` geography(point) NULL, `background_id` int64 NULL) ttl_duration = 0, ttl_col = "";
CREATE TAG INDEX `event_bg_idx` ON `event` ( `background_id`); CREATE TAG INDEX `event_gps_idx` ON `event` ( `gps`);
INSERT VERTEX event (gps) VALUES "1":(ST_GeogFromText("POINT(107.09271891276 34.356034884983)"));
LOOKUP ON event WHERE ST_DWithin(event.gps, ST_GeogFromText("POINT(107.09271891271 54.356034884983)"), 10) YIELD id(VERTEX) as node
Storage Error: RPC failure, probably timeout
社区论坛原链接 https://discuss.nebula-graph.com.cn/t/topic/15886
It's works well when there is only one geo index in the tag, but there will be problems when adding other indexes
Linux 5.15.153.1-microsoft-standard-WSL2 #1 SMP Fri Mar 29 23:14:13 UTC 2024 x86_64 x86_64 x86_64 GNU/Linux
Steps to reproduce the behavior:
Storage Error: RPC failure, probably timeout