|
POST
|
@AmyRoust try the following:
# Define the field mapping between the source and target dataframes
field_mapping = {'ID': 'ID_new', 'Name': 'Name_new', 'Value': 'Value_new'}
# Append data with field mapping
feature_layer.edit_features(adds=sdf.to_featureset(), field_mapping=field_mapping)
... View more
11-13-2024
09:58 AM
|
1
|
1
|
3231
|
|
POST
|
The error message "net::ERR_INSUFFICIENT_RESOURCES" in the context of Experience Builder applications typically indicates that the browser is facing resource limitations while trying to load or run the application. This error can occur due to various reasons, such as:
Memory Usage: The browser may be running out of memory to handle the resources required by the Experience Builder application.
Too Many Open Connections: The browser may have reached the limit on the number of open connections needed to load the application components.
Large Application Size: Experience Builder applications with a large number of widgets, complex layouts, or heavy media content can strain browser resources.
Network Issues: Problems with the network connection or server-side issues can also contribute to this error.
Is the problem reproducible on all client machines?
... View more
11-13-2024
05:53 AM
|
0
|
0
|
3411
|
|
POST
|
Yes, you are correct @Clubdebambos, thanks for pointing that out. I went ahead and updated my previous reply.
... View more
11-13-2024
04:24 AM
|
0
|
0
|
3244
|
|
POST
|
Hi @AmyRoust,
You could do something like below:
from arcgis.gis import GIS
# Connect to your GIS
gis = GIS("https://www.arcgis.com", "username", "password")
# Access source feature service
item = gis.content.get("source item id")
feature_layer = item.layers[0]
# Define your query
query = "POPULATION > 10000"
# Query the feature layer and create a spatial dataframe
sdf = feature_layer.query(where=query).sdf
# Calculate the status field
sdf["status field name"] = sdf.calculate("'Not Reviewed'", inplace=True)
# Access the hosted feature service to update
item = gis.content.get("target item id")
feature_layer = item.layers[0]
# Append the data from the spatial dataframe to the hosted feature service
added_features = feature_layer.edit_features(adds=sdf.to_featureset())
... View more
11-12-2024
10:39 AM
|
1
|
2
|
3274
|
|
POST
|
@CameronLacelle when you are viewing the exp application, are there any errors reported in the Network tab of the web browser's Develop Tools (ctrl+shift+I is a shortcut to open this) for the services? You can filter the rest services by searching for /rest/services:
... View more
11-12-2024
08:22 AM
|
0
|
3
|
3464
|
|
POST
|
Hi @CameronLacelle, what version of ArcGIS Enterprise are you running?
I wouldn't think this would be related to additional instances starting up. Dedicated instances, by default, have a minimum of 1 instance running. If there are multiple requests at the same time, it will spin up another instance, which may just take slightly longer. But, the maximum time a client will wait to get a service should be set to 60 seconds by default.
You could check the Statistics in ArcGIS Server Manager > Logs > Statistics. For example, you can review if there are any timeouts, and also the average/max response times. I usually compare the avg response times to the Service Maximum Running Instances. If there are large avg response times, this is a good indication you need to increase the max instances for the service(s).
... View more
11-12-2024
07:23 AM
|
0
|
2
|
3473
|
|
POST
|
Hi @CW-GIS, if you can spin up the other VM where you have an accessible Enterprise, the webgisdr approach should work.
... View more
11-12-2024
07:16 AM
|
0
|
0
|
657
|
|
POST
|
Hi @Alvis_D, it will be best to log a tech support case so they can officially submit this bug. The development team will then be notified to implement a fix.
... View more
11-12-2024
06:03 AM
|
0
|
0
|
10669
|
|
POST
|
Hi @TeresaBartolomei,
Replace print with arcpy.AddMessage. Ex:
arcpy.AddMessage("Nessuna riga selezionata")
... View more
11-12-2024
05:55 AM
|
1
|
2
|
1245
|
|
POST
|
Hi @Yogesh_Chavan, is your geodatabase administrator a user named sde or a login that is mapped to the dbo user in the database that contains the geodatabase? The user must also be added to the processadmin server role to disconnect users.
... View more
11-12-2024
05:51 AM
|
3
|
1
|
2741
|
|
DOC
|
@Henry the layerIndex parameter is a bit confusing. This number will correspond to the order of the layer/table. For example, if I publish a service with a single layer, but say I manually specify the layer index to be 6. The layerIndex in this script will still be 0.
... View more
11-11-2024
04:48 AM
|
0
|
0
|
17010
|
|
POST
|
@LonerockAdmin you verified the user is in an edit session?
... View more
11-07-2024
01:49 PM
|
0
|
1
|
2973
|
|
POST
|
Hi @LonerockAdmin,
Do they have the following enabled for Pro:
If they do, they will need to start editing before Adding Attachments is available.
... View more
11-07-2024
12:48 PM
|
0
|
1
|
2991
|
|
POST
|
Hi @JVig, when you initially joined the additional ArcGIS Server machine, did you have the standby ArcGIS Data Store configured before or after? If it was after, it sounds like ArcGIS Server may be validating connections to both primary and standby data stores. To test further, could temporarily remove the standby data store and try joining the the additional ArcGIS Server machine.
... View more
11-07-2024
12:41 PM
|
0
|
2
|
1755
|
|
DOC
|
@NickMiller2 if you search for item 7e34b118159246ec95be1a2b97350c08 in Portal, are you able to successfully export this hosted feature service to a File Geodatabase?
... View more
11-07-2024
04:04 AM
|
0
|
0
|
35128
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | Wednesday | |
| 4 | 05-07-2020 05:14 PM | |
| 1 | 03-25-2026 04:16 AM | |
| 1 | 03-16-2026 01:00 PM | |
| 1 | 12-22-2025 10:39 AM |
| Online Status |
Offline
|
| Date Last Visited |
yesterday
|