Skip to content
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

database crashes when a large number was entered as target id #32

Closed
jaapdekker opened this issue May 9, 2011 · 10 comments
Closed

database crashes when a large number was entered as target id #32

jaapdekker opened this issue May 9, 2011 · 10 comments

Comments

@jaapdekker
Copy link

with a normal number it's fast 4860887 152ms
with a larger number it becomes slow 34860887 19435ms
with an even larger number it crashes the database 134860887 after 28 seconds it crashed the database

I could reproduce it both under linux/postgres9 and windows/postgres8.4
under windows the timings are different 300 ms ,1500 ms ,250 ms the first two gave a result and the third also caused the database to crash

The SQL of the network used for testing is below. For the first two tests the number 134860887 is changed

DROP TABLE IF EXISTS network;
CREATE TABLE network (id integer PRIMARY KEY, source integer, target integer, cost float);
INSERT INTO network(id,source,target,cost) VALUES
(134034453,4401484,4401467,1491.35562366006),
(134034463,4401489,4401485,12.1046145920234),
(134034458,4401487,4401477,177.374061187772),
(134095663,4401465,4401476,2014.71852797927),
(134034459,4401485,4401487,201.968135582698),
(134095834,4401478,4401465,293.089423713387),
(134034461,4401488,4401489,418.687894948968),
(629678698,4415069,134860887,3776.78929640359),
(134034456,4401477,4401481,491.242305990214),
(134095832,4401482,4401487,76.1157555542275),
(134034465,4401490,4401489,1956.98967514724),
(134034454,4401483,4401486,1356.25190452873),
(134034462,4401487,4401478,17.2205341642897),
(134095833,4401477,4401478,2014.66722340654),
(134034455,4401485,4401483,53.5613132396201),
(134034467,4401488,4417647,2597.20106449741),
(134034452,4401483,4401467,350.071683838508),
(134034446,4401481,4401476,568.270689073724),
(134072383,4416226,4401482,322.141177736713),
(134034447,4401482,4401481,1522.8331095897),
(134034466,4401486,4401490,610.880612548267),
(134034468,4417647,4401486,507.803184036552),
(134034464,4401490,4401485,149.914370088613);
DROP INDEX IF EXISTS idx_network_source;
DROP INDEX IF EXISTS idx_network_target;
CREATE INDEX idx_network_source ON network(source);
CREATE INDEX idx_network_target ON network(target);
SELECT * FROM shortest_path('SELECT id, source, target, cost FROM network', 4401489, 4401483, false, false)

@ghost ghost assigned antonpa Jul 6, 2011
@YenTheFirst
Copy link

I think I've found the same issue, I can reproduce a crash with the following line:
SELECT driving_distance(E'select 1 as id, 1000000000 as source, 1000000001 as target, 0.9::float8 as cost, 0.8::float8 as reverse_cost', 1000000000, 0.5, True, True);

for driving_distance, at least, the issue is that the boost graph library's adjancey_list, vector implementation, is allocating way too much memory.

on the large numbers where it goes slow, what does your memory usage look like?

@woodbri
Copy link
Contributor

woodbri commented May 9, 2013

This should be made into a test case for branch sew-devel-2_0

@woodbri
Copy link
Contributor

woodbri commented May 15, 2013

I can confirm this crashes 2.0 or pg 9.2.

@woodbri
Copy link
Contributor

woodbri commented May 15, 2013

This does not crash trsp.

pgr_test=# SELECT * FROM turn_restrict_shortest_path(
'SELECT id, source, target, cost FROM network', 
4401489, 4401483, false, false, null) ;

 seq |   id1   |    id2    |       cost
-----+---------+-----------+------------------
   0 | 4401489 | 134034463 | 12.1046145920234
   1 | 4401485 | 134034455 | 53.5613132396201
   2 | 4401483 |        -1 |                0
(3 rows)

This will probably crash any of our boost implementations based on the way a graph is defined, because if I remember correctly, boost uses the vertex id to index into an array. I'll ask for more info on the boost list.

@woodbri
Copy link
Contributor

woodbri commented May 15, 2013

Response from Boost list.

On Wed, 15 May 2013, Stephen Woodbridge wrote:

Hi all,

I'm trying to understand/fix some bugs in pgRouting that use the boost libraries. I know C not not C++, so I can understand most of the more C-ish parts. We have an old bug that I believe is caused when we add an edge and it has large vertex ids or when there is a large number between the min and max vertex numbers.

We currently identify the min id number and down shift the ids by that, but that does not help if I add an edge (1)->(100000000). I could renumber all the nodes and then un-renumber them when done if I have to.

For adjacency lists with vecS as the vertex container type (the default), there is an assumption that vertex numbers are in the range 0...num_vertices(g)-1 (inclusive). Thus, if you want to use a vertex number 10000, your graph will need to have at least 10001 vertices (before you add the edge). There are several data structures in the graph class that whose sizes are proportional to the number of vertices, so using very large vertex numbers can end up eating large amounts of memory. There should not be any limits on vertex counts other than available memory; the vertex index type is usually size_t or some other large-enough type if I remember correctly.

Questions:

  1. is this a known limitiation in Boost graph?

We have run it with larger numbers of vertices before (but more often with compressed_sparse_row_graph), so it should not be a limitation.

  1. is there a different type of adjacency list mechanism that does not have this issue

Are you using widely separated vertex numbers (i.e., you use large numbers as vertex IDs but don't actually have a large number of vertices)? If so, you can try using labeled_graph. Otherwise,

  1. currently the code crashes the database backend, ideally I would like to catch any issues in the C++ wrapper, free memory and return an error code to the C caller so we don't kill the server or leak lots of memory.

I suspect you are hitting a buffer overflow here, so that won't be easy to trap. Compiling with _GLIBCXX_DEBUG defined (with GCC) will turn some of those problems into assertion failures, but that still won't help you get an error code. I think the best thing to try would be to fix any overflow issues; you are likely to get an exception if you try to add more vertices or edges than will fit into virtual memory (which probably won't happen, since you will most likely run out of physical memory first, and it's up to your OS what happens in that case).

Here is a link to our boost wrapper code:

https://github.com/pgRouting/pgrouting/blob/develop/src/dijkstra/src/boost_wrapper.cpp

We use that pattern for a lot of functions so if there is a better pattern, I might be able to update most(all?) of the functions that use this.

I see a few potential improvements:

  1. If you have all of the edge properties up front, you can create the adjacency list (or a compressed_sparse_row_graph, which will use less memory) directly using your edges and their properties, rather than adding them one-at-a-time. Even if you do need to use add_edge, you can add the edge properties as a fourth argument to that function. The constructor to adjacency_list to consider using is:
template <class EdgeIterator, class EdgePropertyIterator>
adjacency_list(EdgeIterator first, EdgeIterator last,
               EdgePropertyIterator ep_iter,
               vertices_size_type n,
               edges_size_type m = 0,
               const GraphProperty& p = GraphProperty())
  1. Using a raw pointer as a property map (as on lines 115 and 117) often breaks, especially on Visual C++. The recipe to use for that is:
boost::make_iterator_property_map
  (predecessors.begin(),
   get(boost::vertex_index, graph))
  1. You can use edge_predecessor_recorder as a visitor to Dijkstra's algorithm to get the edges in the path directly from the algorithm, rather than needing to find them yourself. Use http://www.boost.org/doc/libs/1_53_0/libs/graph/doc/bfs_visitor.html as a template for what to do, replacing predecessor_recorder with edge_predecessor_recorder and using a property map that stores edge_descriptors rather than vertex_descriptors.
  2. Including "using namespace boost" and "using namespace std" together is likely to break in the future, since C++11's namespace std includes many of the same names as namespace boost does. Visual C++ has C++11 mode enabled by default in newer versions.

I could really use some help resolving this issue.

Meanwhile, I'm off to write a C main() to run this outside of the database and in gdb to see whats happening.

OK. You might be able to attach to the database server itself with gdb as well, but Valgrind might be a more useful tool for seeing what the problem is.

-- Jeremiah Willcock

@woodbri
Copy link
Contributor

woodbri commented May 15, 2013

I have create a command line test tools in "develop" branch in src/dijkstra/tester/ that can be run in gdb or valgrind to evaluate changes to the boost wrapper.

@ZupoLlask
Copy link

Does this affect pgRouting 2.0?

@woodbri
Copy link
Contributor

woodbri commented Sep 9, 2013

Yes, and it will have to wait for post 2.0 for a fix.

@dkastl dkastl added Bug Report and removed 2.1 labels Mar 23, 2015
@cvvergara
Copy link
Member

pgr_dijstra, pgr_ksp and pgr_dirvingDistance should work with big numbers
Moving the issue to milestone 2.2 for the other functions

@cvvergara
Copy link
Member

I was reading in detail this issue, it mentions functions that we do not support any more like:

  • shortest_path
  • turn_restrict_shortest_path
  • driving_distance

Instead of shortest_path use pgr_dijkstra

SELECT * FROM pgr_dijkstra('SELECT id, source, target, cost FROM network', 4401489, 4401483, false) ;
 seq | path_seq |  node   |   edge    |       cost       |     agg_cost     
-----+----------+---------+-----------+------------------+------------------
   1 |        1 | 4401489 | 134034463 | 12.1046145920234 |                0
   2 |        2 | 4401485 | 134034455 | 53.5613132396201 | 12.1046145920234
   3 |        3 | 4401483 |        -1 |                0 | 65.6659278316435

Instead of driving_distance use pgr_drivingdistance

SELECT * from pgr_drivingdistance('select 1 as id, 1000000000 as source, 1000000001 as target, 0.9::float8 as cost, 0.8::float8 as reverse_cost', 1000000000, 0.5, True);
 seq |    node    | edge | cost | agg_cost 
-----+------------+------+------+----------
   1 | 1000000000 |   -1 |    0 |        0

Instead of turn_restrict_shortest_path use pgr_trsp

SELECT * FROM pgr_trsp(
'SELECT id, source, target, cost FROM network', 
4401489, 4401483, false, false, null) ;
 seq |   id1   |    id2    |       cost       
-----+---------+-----------+------------------
   0 | 4401489 | 134034463 | 12.1046145920234
   1 | 4401485 | 134034455 | 53.5613132396201
   2 | 4401483 |        -1 |                0
(3 rows)

For the queries posted on this issue the functions in V2.1 work.
I am closing this issue.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

7 participants