Frage

Ich habe eine SharePoint-Hosted-App 2013, die einen externen ADATA-Inhaltstyp (innerhalb der App selbst) verwendet.Mit kleineren Datenmengen funktioniert es in Ordnung, aber mit größeren Ergebnissen geben die ODATA-Anrufe eine Fehlermeldung darüber, dass er gedrosselt wird. generasacodicetagpre.

Ich las diesen Artikel über Drosselung: http://blogs.msdn.com/bcs/archive/2010/02/16/bcs-pelershell-introduction-und-throttle-management.aspx

Nachdem ich diesen Artikel gelesen habe, habe ich die Drosslung für die ODATA-Größe und das Timeout mit dieser PowerShell deaktiviert: generasacodicetagpre.

Ich habe es auch auch für den WCF-Umfang gelaufen.

Aber ich bekomme immer noch dieselbe Fehlermeldung.Alle Maschinen auf dem Bauernhof wurden nach dem Laufen auch vollständig gestartet.Irgendwelche Ideen, was es sonst dazu verursachen würde, Dinge zu überprüfen, irgendetwas?

War es hilfreich?

Lösung

I know this is an old question, but I recently had the same problem so I thought I'd post my solution for anyone else who finds this post.

Basically, I ran into the exact same problem, I followed the very limited information available and nothing seemed to change. So I opened a support case with Microsoft and this is a known issue. The workaround/correct procedure is to use the -FileBacked parameter on the Get-SPBusinessDataCatalogThrottleConfig command. The documentation on TechNet isn't super helpful for the parameter, stating:

Requests the throttling configuration for file backed metadata catalogs.

So in the case of this question changing the command to be:

$odataRule = Get-SPBusinessDataCatalogThrottleConfig -FileBacked -Scope OData -ThrottleType Size -ServiceApplicationProxy $bdcProxy
Set-SPBusinessDataCatalogThrottleConfig -Identity $odataRule -Enforced:$false

That worked for me.

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit sharepoint.stackexchange
scroll top