Select to view content in your preferred language

CloseDatabase hanging on 64 bit Linux when same File Geodatabase opened twice

3835
12
01-30-2013 04:35 PM
SimonWood
New Contributor
Hi,

Came across what looks to be a linux 64-bit specific bug when opening the same gdb twice (using different FileGDBAPI::Geodatabase instances) simultaneously - the CloseDatabase call is never returning.

Ive attached some code to reproduce this (just need to modify the path to the gdb to point to something valid).

On the same linux rhel6 (64 bit) machine, this code:
* works fine when built as 32-bit
* hangs forever on the first CloseDatabase call (debugger shows it is stuck in FileGDBAPI::Geodatabase::CloseGeodatabase() ), when built as 64-bit.

Its based on one of the samples, so Im just using "make" to build 64-bit and "make ARCH=32" to build 32-bit.. And Im using v1.3 of the API, but also happens with earlier versions.


I assume this is a fundamentally supported thing to do (?) - I can't see anything in the docs to the contrary..


Thanks,

Regards,
Simon
0 Kudos
12 Replies
VinceAngelo
Esri Esteemed Contributor
What do you gain by opening the same geodatabase twice in the same application?
Multiple queries and/or inserts from a single connection are supported (though multi-
threaded access is not).  Given the additional overhead, I'd think this would be a
practice to avoid, just on general principle.

- V
0 Kudos
SimonWood
New Contributor
Hi,

Yep there is no specific reason to open the same geodatabase more than once... really just a consequence of the implementation (fitting the FileGDB API into existing data structures made this easiest thing to do).

I will add in some reference counting code to handle this in my particular context.

Thanks.
Simon
0 Kudos
SimonWood
New Contributor
Although having done that, it would still be good to avoid the hanging in this scenario to prevent occurences that are difficult to detect in client code (ie its not necessarily easy to resolve two paths to the same underlying file due to things like symbolic links, relative paths, alternative mount points, exotic file systems etc etc).

Cheers,
Simon
0 Kudos
DavidSousa
New Contributor III
I can't imagine why this would only be happening on 64 bit Linux.  There have been some investigations into this issue, but I don't think any insight has yet been gained.

Having said that, you shouldn't have to resort to ref-counting of the geodatabase object in your application.  We are already doing that for you.  In general, the geodatabase depends on the single instance model for objects of various types.  For example, this includes the geodatabase and table objects.  When a call is made to open a geodatabase or table, we first search an object cache to see if that object has already been instantiated.  If so, rather than re-instantiating the same object, we add-ref the existing object and return a reference to it.  This avoids needless overhead, but also ensures that the internal state of the object remains consistent.
0 Kudos
ViksitAgarwal
New Contributor
I too observed this issue, but on Windows-7 64-bit OS with C++ FileGDB 1.3 VS 2010 API.  I have a class that has Geodatabase as the member variable where in destructor of my class I am trying to close the Geodatabase and it gets destroyed when the instance of my class goes out of scope.  I designed my class assuming that each Geodatabase object is independent and can be used independently in their independent multiple threads.  But the above replies reveals that Geodatabase objects are pointing to the same memory internally, and hence leading to problems in our code. I think the same holds good for Table object as well.  If the internal implementation of Geodatabase wants to reuse the same instance and using reference counting internally, then it seems there is a bug in Geodatabase implementation that destructing or closing one instance is causing problems in other instance.  This problem is more evident in 64-bit. 

Any help or suggestions on this issue would be of great help.  Otherwise I need to use my own reference counting mechanism as used by simonwood74.
0 Kudos
VinceAngelo
Esri Esteemed Contributor
The library is documented as being NOT thread-safe.  You'll need to structure
your multi-threaded code to take this into account.

- V
0 Kudos
DaveBrann
New Contributor
The library is documented as being NOT thread-safe.  You'll need to structure
your multi-threaded code to take this into account.

- V


Sorry, I have search the entire File Geodatabase API documentation and can find no text that states the FGDB API is not thread safe.  Can you point me to it, please?

Thanks,
Dave
0 Kudos
LanceShipman
Esri Regular Contributor
It is in the Unix read me file, but is missing from all of the others. It's been added in for the next release.
0 Kudos
DaveBrann
New Contributor
Thanks for the reply.

The UNIX README states "3) There is no multi-threading support at this time.".   But this is a little vague to me.   Does that mean an app can only have a single thread accessing the FGDB API?   Therefore, effectively have an STA environment for accessing the API?

What I would like to do is have several worker threads, such that each worker independently creates the Geodatabase object over an FGDB database, and create an EnumRows, iterates over the table rows, and then deleted all objects it created.   The above discussion indicates there is a problem doing this at the Geodatabase object level.   But could I have a locking mechanism to ensure only one thread accesses the Geodatabase object at a time?   This won't work if the Geodatabase uses thread local storage or is a COM object that requires and STA thread, I suppose. 

Thanks,
Dave
0 Kudos