log4netでAzureログをAzureStorageのWADLogsTableに吐き出しております。
私は古いログ(Entity)を削除したく、以下のスクリプトを作成し実行しました。
ところがエラーが発生しエンティティを削除できませんでした。
# 指定したAzureサブスクリプションを選択 Select-AzureSubscription -SubscriptionName $SubscriptionName Get-AzureSubscription # ストレージアカウントへの接続コンテキスト生成 $context = New-AzureStorageContext -StorageAccountName $storageAccountName -StorageAccountKey $storageAccessKey # テーブル名 $tableName = "WADLogsTable" $table = Get-AzureStorageTable –Name $tableName -Context $context # TimeStampを使用してフィルターする $query = New-Object Microsoft.WindowsAzure.Storage.Table.TableQuery # フィルター設定 $query.FilterString = "Timestamp le datetime'2016-07-17T15:00:00'" # フィルター結果 $entities = $table.CloudTable.ExecuteQuery($query) if ($entities -ne $null){ Write-Output "START DELETE..." # フィルターして取得したエンティティを削除 $table.CloudTable.Execute([Microsoft.WindowsAzure.Storage.Table.TableOperation]::Delete($entities)) Write-Output "COMPLETED DELETE" }else{ Write-Output "Retrieved Entity is empty" }
どうやらエラーの原因は、
$table.CloudTable.Execute([Microsoft.WindowsAzure.Storage.Table.TableOperation]::Delete($entities))
Delete()の引数の型がDynamicTableEntityになっていることでした。
Delete()の引数の型はITableEntityでなくてはいけないのですが、
今回のようにクエリでエンティティを絞り込み、その結果を削除したい場合は
どのようにすればいいのでしょうか?

回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。