Тёмный

Faster geospatial queries in MySQL 

PlanetScale
Подписаться 38 тыс.
Просмотров 20 тыс.
50% 1

Опубликовано:

 

1 окт 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 143   
@TravisNorthcutt
@TravisNorthcutt Год назад
Good to know this function has the optional radius argument so we can still use it when we go to Mars
@PlanetScale
@PlanetScale Год назад
MultiPlanetScale
@20toninho
@20toninho Год назад
i really like the way how he teaches ...
@PlanetScale
@PlanetScale Год назад
🫡 thank you!
@ZacZajdel
@ZacZajdel Год назад
These videos by Aaron are so informative. I look forward to every single one and learn so much along the way. PlanetScale give this man a raise 😅🎉
@aarondfrancis
@aarondfrancis Год назад
You're kind to say so. Thank you so much Zac! Forwarding that last part to my boss
@Maazin5
@Maazin5 Год назад
If you're wondering how he got the 4 values on lines 6 and 8 at 7:00, use these formulas: LAT +/- (180/pi)*(1.05 miles / 3958.71 miles) and LON +/- (180/pi)*(1.05 miles / 3958.71 miles) / cos(pi * LAT / 180)
@SriTejaChilakapati
@SriTejaChilakapati Год назад
Also, do note that these values are not universal. It depends on where your point of interest actually is located. Specifically how far it is from the equator.
@ambuj.k
@ambuj.k Год назад
I had once used haversine formula for one of my freelance projects and didn't realize how much performance I left on the table after watching this video. Please keep making this awesome content!
@ahmad-murery
@ahmad-murery Год назад
It's always good idea to reduce the number of rows needed to be filtered using an expensive function beforehand. Keep it up, Aaron!
@JakobTheCoder
@JakobTheCoder 5 месяцев назад
Such a good video, thank you, Aaron
@hans-joergwahmkow2621
@hans-joergwahmkow2621 Год назад
I knew the trick with the bounding box. What I didn't know was that MySQL has that nice function. So I always did that calculation in my applications. Still learning new things every day. Keeps the job exciting. ;-)
@PlanetScale
@PlanetScale Год назад
> Still learning new things every day. Keeps the job exciting. ;-) Honestly this is such a good perspective. Thank you for the thoughtful comment
@rafaelhernand3z
@rafaelhernand3z Год назад
Excellently explained 🎉 Great videos with clear explanations. Do you offer consulting? I'm running into a time series issue with timezones and I'd be willing to book a consultation to get an understanding of how to best approach the problem.
@rafaelacioly3252
@rafaelacioly3252 Год назад
Amazing video! It would be great to see how to calculate the box and how to use the "Point" column as well :)
@MatthiasFeist-de
@MatthiasFeist-de Год назад
A follow up video about the spatial column type and the geospatial functions would be awesome.
@PlanetScale
@PlanetScale Год назад
Absolutely! On my list. I feel like this video could've been an hour long 😅 More to come
@KyleMcNally
@KyleMcNally Год назад
@@PlanetScaleI store my lat and lng as GEOMETRY, but I still pull them out using X() and Y() to do some work. video wanted!
@johnypatera160
@johnypatera160 9 месяцев назад
Nice video Aaron, but: You should use “Restaurant” condition from the very beginning, because in that case initial query will take less then ~2.2s. So it its a bit misleading and can lower value of otherwise very informative video. #feedback #keepGoing
@zsoltk6145
@zsoltk6145 2 месяца назад
How do you guarantee that the bounding box condition is determined by the engine, before the costly distance calculation is even performed? Do the order of the WHERE conditions that matters?
@kayodionizio2886
@kayodionizio2886 7 месяцев назад
i have an applicatipion that save your geolocation position when you check in... isn't best to use decimal for EXAT location? and how much long should be this numbers?
@fededelsur4306
@fededelsur4306 5 месяцев назад
amazing explanation ! love this video and of course thanks!
@pflasterstrips7254
@pflasterstrips7254 8 месяцев назад
hmmm, i wonder how you could boost performance by putting the points in a grid to quickly decide handle grid squares that are entirely in the circle
@MichaelWilding-n2w
@MichaelWilding-n2w 2 месяца назад
This video was great! I actually will try to implement this because even though the geolocation functions I do have are for Admin only, it would be great to release to the wild and have users have access to it with speed.
@Ceyesse
@Ceyesse Год назад
Is there a way to select all the points in a 1 hour radius, instead of 1 mile radius ?
@PlanetScale
@PlanetScale Год назад
Unfortunately not. You'd need to calculate drive times for that, and that's beyond the scope of a database.
@nathanbrown2640
@nathanbrown2640 Год назад
I'm guessing you will want to do the time calculation outside of the database, as suggested. That calculation is probably expensive, so the fewer times you have to run that, the better... Hey presto! Another reason to use a bounding box! Decide what is the max distance you could travel in 1 hour from your location in each direction. Add & subtract from your centre, and that becomes a new bounding box.
@invinciblemode
@invinciblemode Год назад
When you explicitly converted from metres to miles, I had to unsubscribe. Sorry man 😂
@PlanetScale
@PlanetScale Год назад
Other than that part what'd you think?
@invinciblemode
@invinciblemode Год назад
@@PlanetScale awesome video! Love the incremental approach to optimising queries.
@PlanetScale
@PlanetScale Год назад
@@invinciblemode great! glad to hear it
@Formula7Driver
@Formula7Driver 10 месяцев назад
I felt so smart when I figured this out on my own a couple of years ago
@ricohumme4328
@ricohumme4328 Месяц назад
I wish, I truly wish, I found this video sooner than today
@Alekzv9
@Alekzv9 Год назад
This is a really fun problem, reminds me one of my first tasks as a developer 7 years ago. Although I did it in SQLServer
@PlanetScale
@PlanetScale Год назад
I feel like every developer has been asked to do this at some point!
@medilies
@medilies Год назад
Why not group LONG and LAT in one POINT type column
@PlanetScale
@PlanetScale Год назад
You can! I mention that at the end. I'll have to do another full video on that, as it's a big topic.
@quillaja
@quillaja 10 месяцев назад
Why are you storing your "point" in 2 different fields? Just use the POINT column type and add (spatial) index on that. Then buffer on your geometries of interest, and select those that intersect with the buffer. Done.
@Tbagstealer
@Tbagstealer 7 месяцев назад
Could you expand on bigger on your geometries of interest?
@jogindersingh9096
@jogindersingh9096 8 месяцев назад
What editor/IDE are you using?
@alexrimui
@alexrimui 6 месяцев назад
This really helped me at work today. Thanks.
@BrunoGabrielAraujoLebtag
@BrunoGabrielAraujoLebtag 10 месяцев назад
I don't speak meters... Muricas
@AlexCernat
@AlexCernat 11 месяцев назад
excelent video, "bounding rectangle" is an excellent way to speed up such kind of queries (personally I just "assumed" that earth is "flat", so euclidian distance ftw :-P - of course, it's not correct, but it was about closest locations, not all location in a range, so ... trading some accuracy to performance) what I didn't understand from your video is why do you need some extra distance offset, shouldn't be the rectangle just tangent to the circle in all four points? (or maybe I make the same mistake thinking 2D, but the earth is 3D?)
@PlanetScale
@PlanetScale 11 месяцев назад
Haha I made the square a little bigger because I was afraid I was gonna do it wrong! It's probably fine to do it tangentially, but I got scared 😂
@nomadshiba
@nomadshiba Год назад
pratically open world chunks
@BanAaron
@BanAaron Год назад
The earth is flat. Disliked, didn't comment, unsubscribed
@PlanetScale
@PlanetScale Год назад
Even set your name to "Ban Aaron," good commitment to the bit! (My name is Aaron)
@erikgurney306
@erikgurney306 9 месяцев назад
32 second mark is legendary
@yangsui1301
@yangsui1301 Год назад
I really like the way you explain to people, especially adding some funny stuff in the middle XD Keep going Aaron!
@PlanetScale
@PlanetScale Год назад
Thank you! Trying my best 🫡
@hrd1711
@hrd1711 9 месяцев назад
Good video. You might also want to look into Geohash where you can represent every coordinate with a string. You can then index that column with a string and use like % query.
@AngelEduardoLopezZambrano
@AngelEduardoLopezZambrano Год назад
Shout out to the flat earthers that didn't like this video 0:33
@svoloSlovakia
@svoloSlovakia 10 месяцев назад
which editor/ide are you using?
@InfinityFnatic
@InfinityFnatic Год назад
Cool video! I like the minimal and focused presentation style and the usage of the simple UI. It looks very focused and doesn't distract from what you are trying to do. I've never had a chance to use planetscale but I will keep on watching your videos.
@PlanetScale
@PlanetScale Год назад
These are a ton of work, so I really appreciate the kind feedback!
@Mempler
@Mempler Год назад
Correct, earth is not flat. It is donut shaped!!
@PlanetScale
@PlanetScale Год назад
oh no
@osamaa.h.altameemi5592
@osamaa.h.altameemi5592 7 месяцев назад
fantastic video but if we use a composite index on "x" , "y" and change the query to be where x>x1 and yy2 that should work and make full use of the composite index on (x,y). Again thx for the fantastic video
@nishatsayyed8326
@nishatsayyed8326 Год назад
This is the type of quality in any tutorial. Looking forward to a LOT of these. Thanks ❤
@PlanetScale
@PlanetScale Год назад
We've only just begun 😎 Thanks for the kind words!
@j4ggi
@j4ggi Год назад
> 2:45 you had π km distance and you converted that to miles. wtf
@aarondfrancis
@aarondfrancis Год назад
Did I do it wrong? Or you just prefer meters?
@j4ggi
@j4ggi Год назад
@@aarondfrancis I just meant you had such a nice number of km (3.1415...) between two first points and you promptly got rid of it. but I'm just joking - apologies if that wasn't clear. Great video in general - not many people know you can deal with spatial data on the db side at all, not to mention how to do it efficiently. Thanks mate and keep it up
@SAsquirtle
@SAsquirtle 10 месяцев назад
guys don't pause at 0:01
@tunmis3
@tunmis3 Год назад
Could someone please explain why he said he wouldn't use MySQL for driving directions? @11:30 Because that's exactly what I wanted my app to do and is the reason I clicked on this video 😂
@PlanetScale
@PlanetScale Год назад
This is able to calculate the distance between two points in a straight line, which doesn't always correspond with roads or driving time. If two points are one mile apart, but there is a mountain or lake between them, that will dramatically change the travel time! You'd need a navigation API for that. Something that can tell you where roads are.
@tunmis3
@tunmis3 Год назад
@@PlanetScale Thank you Perhaps I'll look into using the Google maps API
@coordinates_
@coordinates_ 7 месяцев назад
sorry, what's the name of the sql too you're using please
@coordinates_
@coordinates_ 7 месяцев назад
found it, in your mysql tuts...
@tash1coder
@tash1coder 10 месяцев назад
wow! gonna use the same concept to improve job search by lat,long in my current project. Such a simple idea but a huge improvement. thank you man.
@osama6795
@osama6795 10 месяцев назад
good explanation but im not getting the most accurate result the same as it is in google maps
@PlanetScale
@PlanetScale 10 месяцев назад
Google Maps measures by driving distance typically. This is "as the crow flies"
@anmai3805
@anmai3805 Год назад
This is a beneficial video. Hope you can upload more videos on this subject. Keep going !!!
@nikhilpsathyanathan
@nikhilpsathyanathan 10 месяцев назад
New to me
@TWPO
@TWPO Год назад
Excellent! You communicate concepts extremely well
@PlanetScale
@PlanetScale Год назад
Thank you! I really enjoy teaching
@dimitridovgan6364
@dimitridovgan6364 Год назад
Very interesting topic! Thank you very much!
@njdarda
@njdarda Год назад
the earth is not flat? and to think that I trusted this guy!
@PlanetScale
@PlanetScale Год назад
To be fair I do know more about databases than celestial bodies, so stay tuned for more database content
@eddie10
@eddie10 10 месяцев назад
Excellent video! Thank you! 🚀
@Ceyesse
@Ceyesse Год назад
Is there a way to select all the points in a 1 hour radius, instead of 1 mile radius ?
@jhechtf
@jhechtf 9 месяцев назад
"see if i can explain it to you very quickly" "... what the f--" "okay, new plan" every damn video you get a chuckle out of me.
@PlanetScale
@PlanetScale 9 месяцев назад
Haha that's the goal! 🥰
@TheMoonWatcher
@TheMoonWatcher Год назад
I wonder if you would be able to gain some performance if you use a spatial index and compound index by doing a sub-query/join 🤔 Or having the sub-query would negate any potential gains from using a spatial index.
@PlanetScale
@PlanetScale Год назад
Interesting question... I think I'll do another video geo stuff. There's a lot more here to explore
@i000alen
@i000alen Год назад
"because I don't speak meters" lmao😂
@keenoogodlike
@keenoogodlike Год назад
Very useful feature I just know. I must try it
@sohailyunusmogambo
@sohailyunusmogambo 11 месяцев назад
Why no mention of geohash?
@PlanetScale
@PlanetScale 11 месяцев назад
They aren't super common, even if they are neat
@lavisharma3210
@lavisharma3210 Год назад
What db client/tool is that ?
@PlanetScale
@PlanetScale Год назад
TablePlus!
@creativenull
@creativenull Год назад
I read your post on this before! Really glad to see a video on it nicely explained :D
@c01nd01r
@c01nd01r Год назад
> 0:33 Dislike, unsubscribe
@PlanetScale
@PlanetScale Год назад
FlatPlanetScale
@becelli
@becelli Год назад
@@PlanetScale You can't spell planet scale without plane
@erlanggafauzanrezaganie9595
great content, hoping there is new contnt about performance
@akam9919
@akam9919 Год назад
the earth is flat
@PlanetScale
@PlanetScale Год назад
Big if true (it's not)
@sanyokes
@sanyokes Год назад
This is the most useful and interesting video I have seen in the last few days. Amazing and insightful
@PlanetScale
@PlanetScale Год назад
Thank you! We'll keep 'em coming 💪
@meetpithadia746
@meetpithadia746 Год назад
We need an entire MySQL course from scratch from Aaron
@PlanetScale
@PlanetScale Год назад
Boy do I have good news for you PlanetScale.com/mysql
@AlexCastroDev
@AlexCastroDev Год назад
My new research
@danielkirsch4351
@danielkirsch4351 Год назад
Great video, clear explanations - this gets me looking forward to learn more about MySQL geospatial capabilities. I wanted to ask what MySQL client are you using - it looks like it may run queries instantly as you type, almost like hmr- is that so?
@danielkirsch4351
@danielkirsch4351 Год назад
TablePlus looks like 👍
@PlanetScale
@PlanetScale Год назад
beat me to it! TablePlus indeed
@federico.magnani
@federico.magnani Год назад
Incredibly clear and useful!
@leotravel85
@leotravel85 Год назад
wtf is a mile
@PlanetScale
@PlanetScale Год назад
~3576.32 cubits
@leotravel85
@leotravel85 Год назад
@@PlanetScale already forgot it lol
@nathanbrown2640
@nathanbrown2640 Год назад
@PlanetScale, just as you created your compund type_lon index, I wondered: "Could we create a compound index with truncated values of our latitude and longitude?" It would be like indexing all points by with map grid square they fall into. Then our 'bounding box' redundant query becomes 'the point falls into one of the 4/8/16 grid squares' A bit more work perhaps in query design to calculate what the valid grid squares would be, but perhaps that would allow for the index reducing down to just the bounding box contents more immediately, rather than still reading all of our long rectangle?
@nathanbrown2640
@nathanbrown2640 Год назад
Answering my own question: yes! I work with UK postcode data occasionally, and adding an generated column and then indexing it improved the speed for finding postcodes nearby by a further MASSIVE factor: alter table postcodes add column gridsquare varchar(15) GENERATED ALWAYS AS (CONCAT(TRUNCATE(latitude, 2), ":", TRUNCATE(longitude, 2))) STORED; alter table postcodes add index gridsquare_index (gridsquare); My performance improvement is hard to work out as it got vanishingly small: Find all postcodes within 10km of one point: 1452 postcodes returned - using no bounding box: 0.4 seconds - using bounding box and index: 0.1 seconds - using gridsquares:
@PlanetScale
@PlanetScale Год назад
Yes! You can absolutely do that. I originally wrote an article with that method, but it didn't make the video: aaronfrancis.com/2021/efficient-distance-querying-in-my-sql Perhaps the next one 🤔
@PlanetScale
@PlanetScale Год назад
Bravo on the explanation 👏👏 This is delightful
@nathanbrown2640
@nathanbrown2640 Год назад
​@@PlanetScale Thank you! Ooh, I didn't realise you had an article on it too! And compliment right back at you - it's a really well explained article! And, yes, that's so clear that by tranching one of the variables, we can make a compound index that is SOOO much better! (For others who haven't read the article - and btw, REALLY do! - the idea is to create a new column rounding each decimal to the nearest 0.001, thereby allowing you to query for specific starts of the decimal like 'it must be 30.254 or 30.255' as a way of indexing bounding boxes and getting another performance boost! It's really neat and Aaron explains it very nicely!) Also, I didn't know that MySQL `IN` was so much more optimised than `BETWEEN` - perhaps another weird one for humans vs computers! Is there any benefit then to making the index ENTIRELY from tranched values - would it be quicker? Or is the point of an index that we don't want to have so many rows with the same index and so reduce its power/versatility for other query patterns? (I feel like I have only started scratching the surface of the power of indexes recently, so I'm intrigued by how to get more out of them!)
@jameslucas5590
@jameslucas5590 Год назад
I live in SA. very cool.
@huuhhhhhhh
@huuhhhhhhh Год назад
This is gold
@RandomGeometryDashStuff
@RandomGeometryDashStuff Год назад
05:20 how would bouding box look if it contains north or south pole?
@PlanetScale
@PlanetScale Год назад
That's... a great question. I don't know! I'd have to research
@nathanbrown2640
@nathanbrown2640 Год назад
I think your longitude wouldn't matter - so just set a maximum latitude if you are looking around the north pole, and a minimum latitude if looking around the south pole? Though I'm imagining the centre point is at the poles, but if you are 0.5miles south of the North Pole... not a clue! Yes, time to get researching!
@wwilson69
@wwilson69 Год назад
Converts meters to miles. * close the tab
@aarondfrancis
@aarondfrancis Год назад
Thanks for the comment! Every little thing helps 🤗
@MrJellekeulemans
@MrJellekeulemans Год назад
To find the closest point you can probably just use pythagoras right? Unless you need to find points on the other half of the earth, this will work just fine.
@PlanetScale
@PlanetScale Год назад
I don't know enough about GIS to say, but even over several miles I think it would get inaccurate quickly
@musicmaker368
@musicmaker368 11 месяцев назад
For short distances like across a large city. But it will become quite inaccurate if need say 100 miles
@MrJellekeulemans
@MrJellekeulemans 11 месяцев назад
The earth is a sphere, so no matter in which direction you travel a 100 miles, you always follow the same curvature. So, it doesn't matter if you just use Pythagoras's theorem instead right? You only need a calculated distance when you want to select it or compare it to some arbitrary value. Otherwise I think it's safe to use a heuristic.
@quillaja
@quillaja 10 месяцев назад
If your "points" are in longitude-latitude where units are degrees, then you'll get the "distance" in degrees as well. The distance per degree latitude changes as a function of longitude, so accurate conversion isn't simple. That's why the haversine formula exists.
@MrJellekeulemans
@MrJellekeulemans 10 месяцев назад
@@quillaja I understand that the haversine formula calculates the accurate distance between two points, but I think that when only comparing the distance, you can use a heuristic like pythaghoras
@Laflamablanca969
@Laflamablanca969 Год назад
Damn your videos are so good
@PlanetScale
@PlanetScale Год назад
These comments are wonderful to read. Thank you so much
@jessieonfly
@jessieonfly Год назад
Can you share the test data?
@PlanetScale
@PlanetScale Год назад
Unfortunately I can't. There might be some open data sets with lat/lon pairs though!
@sirhenrystalwart8303
@sirhenrystalwart8303 Год назад
Why do you make the bounding box larger than the circle? I would have expected the box have sides of length 2*r, and thus perfectly bound the circle.
@PlanetScale
@PlanetScale Год назад
Honestly, just to be kinda safe? I don't think the bounding box calculation I used is done on a sphere, but rather on a plane. So to take into account the haversine deal, I just bumped it up a bit. The worst possible thing would be for my redundant condition not to be redundant after all, but rather filter out some things that should be there.
@der.Schtefan
@der.Schtefan Год назад
A bunch of POIs? A speckle of POIs? A murder of POIs? A database table of POIs?
@raphaelmobistacla2236
@raphaelmobistacla2236 Год назад
The highest point of this video was "... since I don't speak meters.".
@sanathkumaru6358
@sanathkumaru6358 Год назад
This is God level content!!!!.Glad that i stumbled upon the video.Made my day❤
@PlanetScale
@PlanetScale Год назад
Thank you so much! Lots more to come
Далее
Faster database indexes (straight from the docs)
13:28
Просмотров 126 тыс.
Pagination in MySQL - offset vs. cursor
13:20
Просмотров 58 тыс.
Вопрос Ребром - Серго
43:16
Просмотров 738 тыс.
Faster than a regular database index
13:39
Просмотров 20 тыс.
You don't need NoSQL (use MySQL)
31:26
Просмотров 75 тыс.
Using MySQL to stop freeloaders (in only 8 minutes)
8:17
I've been using Redis wrong this whole time...
20:53
Просмотров 360 тыс.
Geohash: the algorithm inside and out - Part 1
15:37
Tips for handling timezones in Postgres
14:02
Просмотров 6 тыс.
Storing feature flags as JSON (with indexing)
14:10
Просмотров 22 тыс.
RAND is too slow (in MySQL)
17:32
Просмотров 13 тыс.