buffer size

3201
3
11-02-2014 08:49 PM
jayasudha
New Contributor III


Hello experts.

ESRI has suggested to alter MINBUFSIZE and MAXBUFSIZE in SERVER_CONFIG to improve loading performance.

We load thousands of shape files  from ArcGIS 10.1 direct connect to Oracle 11g.

How to calculate the required value for this buffer size required ?

Thanks

0 Kudos
3 Replies
VinceAngelo
Esri Esteemed Contributor

You probably want to be careful about optimizing your configuration for upload, since that generally impairs query performance.  It's okay at initial population, but not for a production database.  I'm mostly involved in loading, and I've never changed those parameters.  That sort of tuning is usually empirical anyway, so you're not going to find concrete formulas.

- V

0 Kudos
jayasudha
New Contributor III

Is this tuning applicable to direct connect ?

If yes, the memory consumed from local machine where ArcGIS is installed or takes memory from server machine where Oracle is installed.  

0 Kudos
VinceAngelo
Esri Esteemed Contributor

Both Direct Connect and application server connections use the documented parameters (unless otherwise indicated by the documentation).

The transfer buffers exist in both the client and server DLL.  With Direct Connect, both exist on the client (in different threads).  The memory consumed by ArcGIS transfer buffers is likely to be on par with that reserved by Oracle (or any RDBMS) for clients.  You would need to research the database utilization in database documentation.

- V