laptop and a wrench

不具合

The ArcGIS API for Python export() or delete() call creates occasional ghost indexes on ArcGIS Online.

最後に公開された状態: September 23, 2021 ArcGIS Online
不具合 ID 番号 BUG-000119033
送信されましたDecember 26, 2018
最終更新日December 20, 2023
適用対象ArcGIS Online
見つかったバージョンN/A
オペレーティング システムWindows OS
オペレーティング システムのバージョン10.0 64 Bit
ステータスUnder Consideration

対処法

The script calls the following functions:

 

exported_backup_feature = backup_feature.export(backup_feature.title,

                            'File Geodatabase', parameters=None, wait='True')

fgdb = gis.content.get(exported_backup_feature['exportItemId']) # backup_feature ID

fgdb.download(save_path=output_folder)

fgdb.delete()

 

By amending the order of functions called, and calling delete on the output of fgbd.export(), running the script does not produce ghost indexes. Below are the amended script calls:

fgdb = gis.content.get('<itemID>')

toExport = fgdb.export('name','File Geodatabase')

toExport.download(save_path=r"FIlePath")

toExport.delete()

再現の手順

不具合 ID: BUG-000119033

ソフトウェア:

  • ArcGIS Online

バグのステータスが変更されたときに通知を受け取る

Esri Support アプリのダウンロード

このトピックについてさらに調べる

ArcGIS エキスパートのサポートを受ける

テクニカル サポートへのお問い合わせ

Esri Support アプリのダウンロード

ダウンロード オプションに移動