Mit Sammlungen den Überblick behalten
Sie können Inhalte basierend auf Ihren Einstellungen speichern und kategorisieren.
Ressourcenbasierte Preise
Bis 1. Oktober 2018 waren vCPUs und Arbeitsspeicher als eine Einheit in Maschinentyp-SKUs enthalten. Seit 1. Oktober 2018 werden die meisten Maschinentypen als einzelne vCPU- und Arbeitsspeicher-SKUs berechnet. Die Maschinentypen n1-standard, n1-highmem und n1-highcpu werden nicht nach dem Maschinentyp, sondern entsprechend der jeweiligen vCPU- und Arbeitsspeichernutzung mit zwei separaten SKUs abgerechnet.
Diese Änderung vereinfacht die Abrechnung und bietet zusätzliche Einsparungen.
Vordefinierte Maschinentypen funktionieren weiterhin wie gewohnt, aber auf Ihrer Rechnung werden sie als einzelne vCPUs und Arbeitsspeicher ausgewiesen. Dies bedeutet, dass die Rabatte für kontinuierliche Nutzung nicht mehr auf Instanzen desselben Maschinentyps beschränkt sind. Stattdessen erhalten Sie die Rabatte für kontinuierliche Nutzung von Instanzen basierend auf der Verwendung der einzelnen vCPUs und der GB des Arbeitsspeichers, unabhängig vom verwendeten Maschinentyp. Diese zusätzliche Flexibilität ermöglicht höhere Rabatte für kontinuierliche Nutzung als das aktuelle Abrechnungsmodell.
Da vordefinierte Maschinentypen nicht zuvor als einzelne vCPU- und Speicherressourcen in Rechnung gestellt wurden, werden mehrere SKUs zur Beschreibung dieser Elemente hinzugefügt.
Preise
Die Preisübersicht für vCPUs und Arbeitsspeicher in verschiedenen Kategorien von Maschinentypen finden Sie auf der Seite Preise für VM-Instanzen.
Rabatte für kontinuierliche Nutzung
Die Rabatte für kontinuierliche Nutzung vordefinierter Maschinentypen werden genauso angewendet wie für benutzerdefinierte Maschinentypen und Knoten für einzelne Mandanten. Unter Rabatte für kontinuierliche Nutzung finden Sie Beispiele für Rabatte bei ressourcenbasierter Abrechnung.
Abrechnungsexport
Durch diese Änderung werden die von Ihnen genutzten Maschinentypen auf Ihrer Rechnung und im Abrechnungsexport in BigQuery nicht mehr aufgeführt.
Sie können jedoch im Abrechnungsexport in BigQuery weiterhin den Systemlabelschlüssel "key":"compute.googleapis.com/machine_spec" verwenden, um die Maschinentypen der von Ihnen verwendeten VMs abzurufen.
Mit dem folgenden Code können Sie zum Beispiel die Kosten seit 18. September 2018 nach Maschinentyp sortiert abrufen:
SELECT
sku.description as sku_description,
system_labels.value as machine_spec,
SUM(cost) as cost
FROM `project.dataset.table`
LEFT JOIN UNNEST(system_labels) as system_labels
ON system_labels.key = "compute.googleapis.com/machine_spec"
WHERE CAST(DATETIME(usage_start_time, "America/Los_Angeles") AS DATE) >= "2018-09-18"
GROUP BY sku_description, machine_spec;
Ersetzen Sie dabei project_id.dataset_name.table_name durch Ihre Projekt-ID.
Mit den „Pay as you go“-Preisen von Google Cloud bezahlen Sie nur für die Dienste, die Sie nutzen. Wenden Sie sich an unser Vertriebsteam, wenn Sie ein individuelles Angebot für Ihr Unternehmen erhalten möchten.
[[["Leicht verständlich","easyToUnderstand","thumb-up"],["Mein Problem wurde gelöst","solvedMyProblem","thumb-up"],["Sonstiges","otherUp","thumb-up"]],[["Schwer verständlich","hardToUnderstand","thumb-down"],["Informationen oder Beispielcode falsch","incorrectInformationOrSampleCode","thumb-down"],["Benötigte Informationen/Beispiele nicht gefunden","missingTheInformationSamplesINeed","thumb-down"],["Problem mit der Übersetzung","translationIssue","thumb-down"],["Sonstiges","otherDown","thumb-down"]],[],[],[],null,["# Resource-based pricing\n======================\n\nBefore October 1st, 2018, machine type [SKUs](/skus) included vCPUs and memory\nas a single unit. Starting October 1st 2018, most machine types are billed as\nindividual vCPU and memory SKUs. The `n1-standard`, `n1-highmem`, and\n`n1-highcpu` machine types are billed by their individual vCPU and memory\nusage in two separate SKUs rather than billing by each machine type.\n\nThis change provides additional savings and simplicity.\n[Predefined machine types](/compute/docs/machine-resource) continue to function\nas normal, but your bill reports them as individual vCPUs and memory. This\nmeans that the savings for\n[sustained use discounts](/compute/docs/sustained-use-discounts) are no longer\nlimited to instances of the same machine type. Instead, you receive sustained\nuse discounts for instances based on your use of the individual vCPUs and GB\nof memory regardless of the machine type that you use. This additional\nflexibility provides larger sustained use discount savings than the\ncurrent billing model.\n\nSee the pricing for vCPUs and memory on the\n[Compute Engine pricing](/compute/vm-instance-pricing) page.\n\nSKUs for predefined vCPU and memory\n-----------------------------------\n\nBecause predefined machine types were not previously billed as individual\nvCPU and memory resources, several SKUs are added to describe those items. \n\nPricing\n-------\n\nTo see the pricing for the vCPUs and memory in different machine type\ncategories, see the [Compute Engine pricing](/compute/vm-instance-pricing)\npage.\n\nSustained use discounts\n-----------------------\n\nSustained use discounts for predefined machine types function the same\nway that they do for custom machine types and sole-tenant nodes. See\n[Sustained use discounts](/compute/docs/sustained-use-discounts) for\nexamples of sustained use discounts for resource based pricing.\n\nBilling export\n--------------\n\nWith this change, you are no longer be to see the machine types that you\nare using in your invoice and\n[Billing BigQuery export](/billing/docs/how-to/export-data-bigquery).\nHowever,\nyou can still use the `\"key\":\"compute.googleapis.com/machine_spec\"` system\nlabel key in billing BigQuery export to obtain the machine types\nfor the VMs\nthat you are using.\n\nFor example, you can find costs since 18 September 2018 sorted by machine type\nusing the following example: \n\n SELECT\n sku.description as sku_description,\n system_labels.value as machine_spec,\n SUM(cost) as cost\n FROM `project.dataset.table`\n LEFT JOIN UNNEST(system_labels) as system_labels\n ON system_labels.key = \"compute.googleapis.com/machine_spec\"\n WHERE CAST(DATETIME(usage_start_time, \"America/Los_Angeles\") AS DATE) \u003e= \"2018-09-18\"\n GROUP BY sku_description, machine_spec;\n\nReplace `project_id.dataset_name.table_name` with your own exported table.\n\nWhat's next\n-----------\n\n- Read the [Compute Engine documentation](/compute/docs).\n- Get started with [Compute Engine](/compute/docs/quickstarts).\n- Try the [Pricing calculator](/products/calculator).\n- Learn about [Compute Engine solutions and use cases](/architecture?text=Compute Engine).\n- Read [VM instance pricing](/compute/vm-instance-pricing) to see vCPU and memory pricing.\n- Read [Sustained use discounts](/compute/docs/sustained-use-discounts) to see the current process for sustained use discounts.\n\n#### Request a custom quote\n\nWith Google Cloud's pay-as-you-go pricing, you only pay for the services you use. Connect with our sales team to get a custom quote for your organization.\n[Contact sales](/contact?direct=true)"]]