|
POST
|
The organization I used to work for initially had instability problems with ArcGIS Enterprise 11.x until we analyzed memory utilization of the ArcGIS Enterprise processes and subprocesses. It turns out the ArcGIS Pro runtime used in ArcGIS Enterprise 11.x results in ArcSOC.exe processes having about 50% increase in total memory footprint. I say total memory footprint because it wasn't more RAM being used but more virtual address space by the processes. It turns out we were hitting or nearly hitting the committed memory limit of the server, and the entire ArcGIS Enterprise framework would become unstable at that point. Once it became unstable, the only option to stabilize it was to stop the ArcGIS Server Windows service and restart it. I suggest you monitor the Committed memory usage of the server, and not just RAM. If you are getting over 90% committed memory for any period of time, I would update the virtual memory (page file) settings on the server.
... View more
05-12-2025
04:36 AM
|
2
|
7
|
5602
|
|
POST
|
If you are able to post any of the data, that would help community members provide more in-depth responses. If you can't share any of the data, can you truncate the tables and at least share an empty SQLite package that has the schema?
... View more
05-10-2025
09:59 AM
|
0
|
0
|
3029
|
|
POST
|
Given it has been nearly 6 years since ArcGIS Pro 2.4 was released, I would take any documentation and comments from back then with a grain of salt, even if they were accurate/correct at the time. The "memory" workspace has continually, albeit slowly, improved over the releases. For all intents and purposes, "in_memory" is now a legacy artifact that should not be used.
... View more
04-22-2025
07:25 AM
|
1
|
0
|
2950
|
|
POST
|
Attaching screenshots of code and errors, instead of putting the text of code and errors into the thread, will definitely reduce the number of people that will even bother to look at your question. If you are asking people for help, make it as easy as possible for them to know your issue. Taking the error messages at face value, you need to pass POINT_X instead of CENTROID_X, POINT_Y instead of CENTROID_Y. Although the documentation is a bit unclear regarding centroids, since you are working with points it is much clearer to use POINT instead of CENTROID.
... View more
04-18-2025
12:49 PM
|
1
|
0
|
2972
|
|
POST
|
I managed dozens of ArcGIS Server deployments, stand-alone and federated. Generally, the default works for a vast majority of services, but there are a few where the value has to be increased. Typically the reason the service crashes is due to overly dense geometries being serialized by someone scraping the API to download the data. Typically we will try doubling it once (128 MB) to see if that resolves the matter. If not, we double it again (256 MB), and if that doesn't work then we start alternating between reducing record count by half and doubling the javaHeapSize. So, if 256 MB doesn't work then we cut the max record count to 1000 (the old default for over a decade). If that doesn't work we try increasing heap again to 512 MB and finally cutting max record count to 500. My general belief is that a service needing a javaHeapSize greater than 512 MB probably needs to have its data restructured on the back end. I can't think of any instances where I have allowed a javaHeapSize greater than 512 MB.
... View more
04-10-2025
08:39 AM
|
2
|
1
|
3268
|
|
POST
|
Sometimes chasing the answer isn't worth the effort. If creating a new geodatabase and copying everything into it works, why not just start using that GDB and delete the old one? If the 2.75 GB file keeps coming back, then it is likely worth troubleshooting.
... View more
04-02-2025
04:52 PM
|
0
|
0
|
1773
|
|
POST
|
Question asked and answered at arcgis pro - Using Arcade to make Null Geometry - GIS SE.
... View more
03-31-2025
06:40 AM
|
1
|
0
|
852
|
|
POST
|
Look at the layer's property page, it states "Max Record Count: 2000", which is typical. You will need to make multiple calls to retrieve all of the data. You should read the REST API documentation about how to use the Result Offset and Result Record Count parameters.
... View more
03-27-2025
10:04 AM
|
5
|
0
|
2474
|
|
POST
|
Although George's guess of "enterprise" is reasonable, my money is on "esri," with a very small chance "enhanced." The earliest mentions of "multiversioned views" that I recall are from ArcGIS 9.2, which coincidentally the ArcGIS 9.2 Desktop Help is still available online (kudos to Esri for keeping the historical record alive online). From ArcGIS Desktop Help 9.2 - Using multiversioned views: What are multiversioned views? Multiversioned views incorporate database views, stored procedures, triggers, and functions to access a specified version of data in a geodatabase table using structured query language (SQL). In the early days, the documentation suggested using either a "mv_" prefix or "_mv" suffix: At a command prompt, execute the sdetable function to create a multiversioned view. sdetable –o create_mv_view –T permits_mv –t permits –i 4400 –D code –u sarja –p not4u The "mv" prefix or suffix made sense given the name of the feature was "multiversioned view." However, around that same time "mv" started becoming associated with "materialized views." As important as geodatabases may be to us GIS users, the non-spatial use of databases dominates the spatial use of databases, so most people in the database world would associate "mv" with "materialized view" and not "multiversioned view." There was a brief period after transitioning from "mv" where Esri adopted "vw," which is a standard suffix or prefix for any database view. I believe it was also around this same time that Esri moved away from "multiversioned views" and starting use just "versioned views." Although "vv" is a logical abbreviation for "versioned view," my guess is people didn't like it because it might be too easy for people to confuse "vv" for "w". Similar to Esri JSON, Esri JS, and other standard terms that Esri prefixes with their name, my guess is that "e" in "evw" is for Esri. Also, the change from "SDE" to "Enterprise geodatabase (EGDB)" came many years after the switch to "evw" so I don't think the word "enterprise" was the motivation.
... View more
03-25-2025
08:51 AM
|
4
|
0
|
1919
|
|
POST
|
It can be simplified a bit more even. The [PtZ] doesn't have to be stored in a separate variable, it is already a variable: def FindLabel([PtZ]):
return [PtZ].split('.')[1]
... View more
03-17-2025
10:17 AM
|
4
|
1
|
1336
|
|
POST
|
If you shared some of the code samples you tried along with the errors or unexpected results, people could comment on why the code samples aren't working for you. Also, sharing either example or sample data along with expected results helps people give better answers.
... View more
03-11-2025
06:19 AM
|
0
|
4
|
2826
|
|
POST
|
If the software is consistently telling you the token is invalid, there is likely something wrong with either the credentials or how the token is being generated. Unless you provide more information about how you setup the "simple basic API key" and how exactly you are using the key to generate a token, there isn't much for anyone to comment on here.
... View more
03-11-2025
06:09 AM
|
0
|
0
|
13774
|
|
POST
|
It would be helpful to share a specific example of text and code and the result. I can't say I completely understand the steps you are taking, so I can't offer any specific feedback.
... View more
03-05-2025
06:44 AM
|
0
|
0
|
802
|
|
POST
|
I tested your code on several file and mobile geodatabases on my machine, and the Walk code was almost an order of magnitude faster for all cases. I am not sure why it is slower in your tests on your machine. Can you run the tests not using a Notebook.
... View more
02-27-2025
07:41 AM
|
0
|
0
|
4840
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 3 weeks ago | |
| 2 | 07-06-2026 12:29 PM | |
| 1 | 07-06-2026 12:00 PM | |
| 2 | 06-05-2026 10:30 AM | |
| 1 | 05-29-2026 08:22 AM |
| Online Status |
Offline
|
| Date Last Visited |
Friday
|