I'm fetching the my data from an API and passing the list into my feature layer in ArcGIS Portal. I configured the json data from API to a dictionary like below:
dict = {"attributes":
{"latitude": 33.75, "longitude": -118.25, "country": "US", "harborsize": "L", "label_position": "SW", "port_name": "LOS ANGELES", "short_form": "LAX"},
"geometry": {"x": -13044788.958999995, "y": 3857756.351200014}
}
Then using
feature_layer.edit_features(adds = [dict])
Its worked for features that are below 6k whereas the same query raising an error for 90K records. The error message is following:
Exception: Error performing apply edits operation
(Error Code: 500)
Please let me know if there any way to address this issue.