- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个包含 1756678 条记录的表 (underground_route
),它定义了不同的 ug 路线。我想查找特定半径内的详细信息。
我为 the_geom
字段创建了一个 GiST 索引 underground_route_the_geom_idx
,如下所示:
select * from pg_indexes where indexname='underground_route_the_geom_idx';
schemaname | tablename | indexname | tablespace | indexdef
------------+-------------------+--------------------------------+------------+--------------------------------------------------------------------------------------------
icw | underground_route | underground_route_the_geom_idx | | CREATE INDEX underground_route_the_geom_idx ON icw.underground_route USING gist (the_geom)
(1 row)
我查询查找 500 米内的所有详细信息:
select unique_id, st_astext(the_geom) as Geom,
construction_status,
unique_id as name,
u_id11 as surface_material,
u_id12 as surrounding_material,
sw_uid22 as undergound_type
from icw.underground_route
where
ST_DWithin(the_geom,ST_GeomFromText('POINT('||28.51104||' '|| 77.09295399999996||')'),500, false) order by unique_id;
此查询需要大约 5995.856 毫秒来提供详细信息,这花费的时间太长了。
QUERY PLAN
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Sort (cost=827467.77..827526.33 rows=23422 width=182) (actual time=5995.826..5995.826 rows=0 loops=1)
Output: unique_id, (st_astext(the_geom)), construction_status, unique_id, u_id11, u_id12, sw_uid22
Sort Key: underground_route.unique_id
Sort Method: quicksort Memory: 25kB
-> Seq Scan on icw.underground_route (cost=0.00..825767.86 rows=23422 width=182) (actual time=5995.818..5995.818 rows=0 loops=1)
Output: unique_id, st_astext(the_geom), construction_status, unique_id, u_id11, u_id12, sw_uid22
Filter: (((underground_route.the_geom)::geography && '0101000020E6100000A6F27684D3823C40108255F5F2455340'::geography) AND ('0101000020E6100000A6F27684D3823C40108255F5F2455340'::geography && _st_expand((underground_route.the_geom)
::geography, '500'::double precision)) AND _st_dwithin((underground_route.the_geom)::geography, '0101000020E6100000A6F27684D3823C40108255F5F2455340'::geography, '500'::double precision, false))
Rows Removed by Filter: 1756678
Planning time: 0.319 ms
Execution time: 5995.856 ms
select * from pg_stat_user_tables where relname='underground_route';
-[ RECORD 1 ]-------+---------------------------------
relid | 1121827
schemaname | icw
relname | underground_route
seq_scan | 3075
seq_tup_read | 5389469844
idx_scan | 34272
idx_tup_fetch | 275507552
n_tup_ins | 21
n_tup_upd | 508
n_tup_del | 5
n_tup_hot_upd | 63
n_live_tup | 1757407
n_dead_tup | 394
n_mod_since_analyze | 20
last_vacuum | 2019-05-01 15:51:05.254495+05:30
last_autovacuum |
last_analyze | 2019-05-06 13:23:09.343957+05:30
last_autoanalyze |
vacuum_count | 3
autovacuum_count | 0
analyze_count | 6
autoanalyze_count | 0
为什么创建索引后仍然使用顺序扫描?我应该怎么做才能加快查询速度?我是否必须调整任何性能参数才能获得索引扫描而不是顺序扫描?
最佳答案
你的问题是ST_DWithin
的第四个参数:
\df st_dwithin
List of functions
Schema | Name | Result data type | Argument data types | Type
--------+------------+------------------+---------------------------------------------------------------------------------------+------
public | st_dwithin | boolean | geography, geography, double precision | func
public | st_dwithin | boolean | geography, geography, double precision, boolean | func
public | st_dwithin | boolean | geom1 geometry, geom2 geometry, double precision | func
public | st_dwithin | boolean | rast1 raster, nband1 integer, rast2 raster, nband2 integer, distance double precision | func
public | st_dwithin | boolean | rast1 raster, rast2 raster, distance double precision | func
public | st_dwithin | boolean | text, text, double precision | func
(6 rows)
ST_DWithin
的版本具有第四个boolean
参数(use_spheroid
)将geography
作为参数。
这意味着当函数被调用时,您的geometry
被转换为geograhy
。你可以在执行计划中看到:
(underground_route.the_geom)::geography
但是索引没有在那个表达式上定义,所以不能使用。
您必须像这样创建索引:
CREATE INDEX ON gis USING gist((g::geography));
关于postgresql - ST_DWithin 耗时较长(超过6000ms),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56003953/
我使用这个 cmd 应用程序 https://github.com/tokland/youtube-upload 上传 50 个视频后,我收到此错误: [RequestError] Server re
尝试将 docker 容器提交到镜像时出现错误: [root@dockerregistry /]# docker commit da4180ab1536 dockerregistry:5000/myi
我只是想知道这样做会更好吗: if((fd = open(filename, O_RDWR)) == -1) { fprintf(stderr, "open [ %s ]\n", strerror(e
我在我的开发机器(单个笔记本)中使用 Elasticsearch 1.4.4。一切都设置为默认值,因为我从未更改过任何设置。 当我启动它时,我通常会收到以下消息: [2015-10-27 09:38:
我收到错误 Lock wait timeout exceeded;尝试重新启动事务。这是什么原因,如何解决?仅供引用:MySQL 配置文件中的 innodb_lock_wait_timeout = 1
我对 Slack 中的 block 功能有疑问。有人设法构建 3 列而不是 2 列吗? 我凭直觉尝试了以下代码,但它不起作用: { "blocks": [ {
div 中的内容超过由 css 决定的固定大小。 #fixeddiv { position: fixed; margin: auto; max-height: 300px
我想将 EditText 字段限制为 150 个字符,我可以很容易地做到这一点。但是,当用户试图超过该限制时,我还需要通过键入(即第 151 个字符)或粘贴超过 150 个字符来提醒用户。 解决这个问
我目前正在使用此代码并排记录两个窗口: ffmpeg -f gdigrab -framerate 30 -i title="" -f gdigrab -framerate 30 -i title=""
我在几个包含长字符串的单元格上使用嵌套的 SUBSTITUE 函数,并定期更新 SUBSTITUE fx,这导致我将其复制并粘贴到所有需要它的单元格中。问题是,我的 SUBSTITUTE 列表会随着时
我创建了一个标题 div,如下所示:
Here is the demo link 您怎么看,页面中只有 8 个广告可见,但我有 14 个广告。我已阅读有关广告限制的信息 here但不明白是不是我的情况?有人可以给我确切的答案,为什么我看不
我的非常简单的算法 - C 中的快速排序有问题。它非常有效(随机化大约 0.1 秒并检查列表是否已排序)但是当我想要对超过 500k 的元素进行排序时它会崩溃。不幸的是,我需要对它们进行更多排序,因为
我成功解决了一个关于 Hackerrank 的问题,它通过了所有测试用例,但我得到了一个错误,超过了时间限制。我猜如果我优化我的代码它会工作,但我想不出任何方法来使我的代码更有效率。 问题是: 对大小
你会如何用 包围下面的文字3 个反引号 ```使用 tpope 的 Vim Surround . 我所能做的就是 1 个反引号 使用 S`在视觉模式下: 最佳答案 这不是你问的,但这可以在没有环绕的情
我目前有一个模拟账户。我正在尝试为我的雇主使用 SwifType 制作 POC。我们有一个非常大的数据库,每 1 小时索引一次,并创建一个 JSON 文件。我认为与 Elastic 的集成将非常容易,
我为一个大约有 100 到 120 名成员的小型组织维护网站。 每个月,我们都会发送一封电子邮件,通知我们的成员我们将在即将举行的 session 中讨论的主题。 我正在尝试使用我们的网站为我们提供一
这个问题已经有答案了: How to automatically input an array formula as string with more than 255 characters in l
我有一个在 JBoss 6.1 中运行的 JSF 应用程序,它使用内部Tomcat Servlet 容器。 我已经通过apache commons文件上传实现了上传。我想防止上传过大的文件并设置了属性
当我尝试在 PyMySQL 上执行查询时,出现以下错误: pymysql.err.InternalError: (1205, 'Lock wait timeout exceeded; try rest
我是一名优秀的程序员,十分优秀!