2

I'm looking for a Big Data solution for storing records with geographical locations (Lat/Lng), and then performing a proximity search.

For instance, storing all buildings in a database, and then querying it for the buildings closest to the user's current location.

I expect a large amount of entities with a lot of insertions, so this has to be a Big Data solution.

Thanks!

Dor Rotman
  • 1,511
  • 1
  • 15
  • 27

1 Answers1

1

I would suggest you PostgreSQL with PostGIS. PostgreSQL is known as very good for handling large datasets. And, it is open source.

nadya
  • 240
  • 1
  • 2
  • 10