Apigee verwendet Cassandra-Datenbanken zum Speichern der meisten Daten, einschließlich Daten für
Proxys, Caches und Tokens.
Die Verdichtung ist ein Standardprozess zur Reduzierung der Datenmenge.
die in Datenbanken gespeichert sind, was für die
Datenbanken effizient ausgeführt werden. Cassandra unterstützt verschiedene Verdichtungsstrategien. Apigee
empfiehlt allen Kunden von Edge for Private Cloud, ihre Cassandra-Cluster mit der
LeveledCompactionStrategy
anstelle der Standardstrategie
SizeTieredCompactionStrategy
für alle Spaltenfamilien. LeveledCompactionStrategy
bietet bessere Leistung, bessere Laufwerksauslastung, effizientere
und benötigt weniger freien Speicherplatz als SizedTieredCompactionStrategy
.
Mit allen neuen Installationen von Apigee 4.51.00 oder höher wird Cassandra automatisch eingerichtet
mit LeveledCompactionStrategy
. Falls Sie jedoch eine ältere Version
Apigee oder
Wenn Sie von einer älteren Version auf Apigee 4.51.00 aktualisiert haben, wird in Ihrer Version möglicherweise noch Cassandra verwendet.
mit SizeTieredCompactionStrategy
.
Um herauszufinden, welche Verdichtungsstrategie Ihre Version von Cassandra verwendet, lesen Sie den
Abschnitt Verdichtungsstrategie prüfen.
Auf dieser Seite wird erläutert, wie Sie die Verdichtungsstrategie
LeveledCompactionStrategy
Vorbereitung
Vorhandene Verdichtungsstrategie prüfen
Um die vorhandene Verdichtungsstrategie für Spaltenfamilien zu prüfen, folgen Sie der Anleitung unter
Verdichtungsstrategie prüfen Wenn die Verdichtungsstrategie
ist bereits LeveledCompactionStrategy
, müssen Sie die restlichen Schritte nicht ausführen
Anleitung auf dieser Seite.
Sicherung
Da eine geänderte Verdichtungsstrategie einen vollständigen Verdichtungszyklus in C*-Knoten auslöst. könnte es Ihnen Latenzen aufgrund der Last von Verdichtungen und gleichzeitigem Anwendungstraffic. Rollback dieser Änderung erforderlich sein, um Cassandra-Knoten aus Sicherungen wiederherzustellen. Weitere Informationen finden Sie unter Wie zu sichern, um zu erfahren, wie Sie Ihre Daten sichern können, bevor Sie die Verdichtungsstrategie ändern.
Verdichtungsdurchsatz
Nachdem die Verdichtungsstrategie in LeveledCompactionStrategy
geändert wurde, können Verdichtungen noch
lange gedauert. Je nach Größe der Datenverdichtung kann die Laufzeit variieren. Während der Verdichtung
verbraucht Cassandra möglicherweise mehr Systemressourcen. Um sicherzustellen, dass die Verdichtung nicht viel in Anspruch nimmt
der API-Laufzeitanfragen gestört werden könnte, empfehlen wir, Limits für
Verdichtungsdurchsatz.
Führen Sie den folgenden nodetool
-Befehl auf jedem der Knoten aus, um den Verdichtungsdurchsatz bis zum Maximum festzulegen.
mit 128 MB auf allen C*-Knoten:
nodetool setcompactionthroughput 128
Größe von VMs für Verdichtungen festlegen
Achten Sie darauf, dass C*-Knoten genügend CPU-/Arbeitsspeicherressourcen haben, bevor Sie diese Änderung ausführen. Stellen Sie sicher, dass Keine C*-Knoten arbeiten mit mehr als 25% der CPU-Auslastung, bevor diese Änderung ausgeführt wird.
Nach einer Änderung der Verdichtungsstrategie wird erwartet, dass ein vollständiger Verdichtungszyklus ausgeführt wird. wird empfohlen, die Verdichtungsstrategie bei geringem Traffic zu ändern.
Gestaffelte Ausführungen
Möglicherweise können Sie den Wechsel aller Knoten nicht innerhalb eines Tages abschließen, insbesondere wenn Sie große Cassandra-Cluster, da die Indizes auf jedem Knoten einzeln neu erstellt werden müssen. Sie könnten die Verdichtungsstrategie für jeweils ein Schema oder eine Spaltenfamilie (Tabelle). Ändern Sie dazu die Spaltenfamilie, um die Verdichtungsstrategie zu ändern und dann alle Indizes in der Tabelle neu zu erstellen (falls vorhanden) auf allen Knoten. Wiederholen Sie dann das obige Verfahren für jede Tabelle oder jeden Schlüsselbereich. Solche Ausführungen für eine Tabelle oder einen Schlüsselbereich kann für die Ausführung über verschiedene Tage aufgeschlüsselt werden.
Um beispielsweise die Verdichtungsstrategie der Spaltenfamilie oauth_20_access_tokens
in
kms
-Schema können Sie Folgendes tun:
- Ändern Sie die Tabelle, um die Verdichtungsstrategie zu ändern:
ALTER TABLE kms.oauth_20_access_tokens WITH compaction = {'class' : 'LeveledCompactionStrategy'};
- Erstellen Sie alle Indizes nur dieser Tabelle neu:
nodetool rebuild_index kms oauth_20_access_tokens oauth_20_access_tokens_app_id_idx nodetool rebuild_index kms oauth_20_access_tokens oauth_20_access_tokens_client_id_idx nodetool rebuild_index kms oauth_20_access_tokens oauth_20_access_tokens_refresh_token_idx
Änderung der Verdichtungsstrategie
Grundsätzlich besteht das Ändern der Verdichtungsstrategie in zwei Schritten:
- Verdichtungsstrategie jeder Tabelle ändern
- Erstellen Sie alle Indexe auf jedem Knoten einzeln neu.
Tabelle ändern, um eine neue Verdichtungsstrategie festzulegen
Führen Sie die folgenden CQL-Befehle (Cassandra Query Language) auf einem beliebigen Cassandra-Knoten aus und ändern Sie dabei
Strategie für eins
jeweils per Tastendruck. Sie können CQLs über die cql
-Eingabeaufforderung ausführen. Zum Aufrufen der
cql
-Prompt:
/opt/apigee/apigee-cassandra/bin/cqlsh `hostname -i`
Die Antwort sieht in etwa so aus:
Connected to apigee at XX.XX.XX.XX:9042. [cqlsh 5.0.1 | Cassandra 2.1.16 | CQL spec 3.2.1 | Native protocol v3] Use HELP for help. cqlsh>
Führen Sie die folgenden CQLs aus, um die Verdichtungsstrategie zu ändern:
- CQLs zum Ändern der Verdichtungsstrategie für den Schlüsselraum
kms
:ALTER TABLE kms.organizations WITH compaction = {'class' : 'LeveledCompactionStrategy'}; ALTER TABLE kms.maps WITH compaction = {'class' : 'LeveledCompactionStrategy'}; ALTER TABLE kms.apps WITH compaction = {'class' : 'LeveledCompactionStrategy'}; ALTER TABLE kms.app_credentials WITH compaction = {'class' : 'LeveledCompactionStrategy'}; ALTER TABLE kms.api_products WITH compaction = {'class' : 'LeveledCompactionStrategy'}; ALTER TABLE kms.apiproducts_appslist WITH compaction = {'class' : 'LeveledCompactionStrategy'}; ALTER TABLE kms.api_resources WITH compaction = {'class' : 'LeveledCompactionStrategy'}; ALTER TABLE kms.app_end_user WITH compaction = {'class' : 'LeveledCompactionStrategy'}; ALTER TABLE kms.oauth_20_authorization_codes WITH compaction = {'class' : 'LeveledCompactionStrategy'}; ALTER TABLE kms.oauth_20_access_tokens WITH compaction = {'class' : 'LeveledCompactionStrategy'}; ALTER TABLE kms.oauth_10_request_tokens WITH compaction = {'class' : 'LeveledCompactionStrategy'}; ALTER TABLE kms.oauth_10_access_tokens WITH compaction = {'class' : 'LeveledCompactionStrategy'}; ALTER TABLE kms.oauth_10_verifiers WITH compaction = {'class' : 'LeveledCompactionStrategy'}; ALTER TABLE kms.app_enduser_tokens WITH compaction = {'class' : 'LeveledCompactionStrategy'};
- CQLs zum Ändern der Verdichtungsstrategie für den Schlüsselraum
user_settings
:ALTER TABLE user_settings.user_settings WITH compaction = {'class' : 'LeveledCompactionStrategy'};
- CQLs zum Ändern der Verdichtungsstrategie für den Schlüsselraum
keyvaluemap
:ALTER TABLE keyvaluemap.keyvaluemaps_r21 WITH compaction = {'class' : 'LeveledCompactionStrategy'};
- CQLs zum Ändern der Verdichtungsstrategie für den Schlüsselraum
devconnect
:ALTER TABLE devconnect.developers WITH compaction = {'class' : 'LeveledCompactionStrategy'}; ALTER TABLE devconnect.companies WITH compaction = {'class' : 'LeveledCompactionStrategy'}; ALTER TABLE devconnect.company_developers WITH compaction = {'class' : 'LeveledCompactionStrategy'};
- CQLs zum Ändern der Verdichtungsstrategie für den Schlüsselraum
counter
:ALTER TABLE counter.counters_current_version WITH compaction = {'class' : 'LeveledCompactionStrategy'}; ALTER TABLE counter.counters_with_expiry WITH compaction = {'class' : 'LeveledCompactionStrategy'}; ALTER TABLE counter.counters WITH compaction = {'class' : 'LeveledCompactionStrategy'}; ALTER TABLE counter.key_timestamp_count WITH compaction = {'class' : 'LeveledCompactionStrategy'}; ALTER TABLE counter.timestamp_key WITH compaction = {'class' : 'LeveledCompactionStrategy'}; ALTER TABLE counter.period_timestamp WITH compaction = {'class' : 'LeveledCompactionStrategy'}; ALTER TABLE counter.gateway_quota WITH compaction = {'class' : 'LeveledCompactionStrategy'};
- CQLs zum Ändern der Verdichtungsstrategie für den Schlüsselraum
cache
:ALTER TABLE cache.cache_entries WITH compaction = {'class' : 'LeveledCompactionStrategy'}; ALTER TABLE cache.cache_sequence_id_r24 WITH compaction = {'class' : 'LeveledCompactionStrategy'};
- CQLs zum Ändern der Verdichtungsstrategie für den Schlüsselraum
ax_custom_report_model
:ALTER TABLE ax_custom_report_model.report_description WITH compaction = {'class' : 'LeveledCompactionStrategy'}; ALTER TABLE ax_custom_report_model.report_id_lookup WITH compaction = {'class' : 'LeveledCompactionStrategy'}; ALTER TABLE ax_custom_report_model.org_metadata WITH compaction = {'class' : 'LeveledCompactionStrategy'}; ALTER TABLE ax_custom_report_model.org_report_lookup WITH compaction = {'class' : 'LeveledCompactionStrategy'}; ALTER TABLE ax_custom_report_model.report_created_view WITH compaction = {'class' : 'LeveledCompactionStrategy'}; ALTER TABLE ax_custom_report_model.report_viewed_view WITH compaction = {'class' : 'LeveledCompactionStrategy'};
- CQLs zum Ändern der Verdichtungsstrategie für den Schlüsselraum
auth
:ALTER TABLE auth.totp WITH compaction = {'class' : 'LeveledCompactionStrategy'};
- CQLs zum Ändern der Verdichtungsstrategie für den Schlüsselraum
audit
:ALTER TABLE audit.audits WITH compaction = {'class' : 'LeveledCompactionStrategy'}; ALTER TABLE audit.audits_ref WITH compaction = {'class' : 'LeveledCompactionStrategy'};
- CQLs zum Ändern der Verdichtungsstrategie für den Schlüsselraum
apprepo
:ALTER TABLE apprepo.organizations WITH compaction = {'class' : 'LeveledCompactionStrategy'}; ALTER TABLE apprepo.environments WITH compaction = {'class' : 'LeveledCompactionStrategy'}; ALTER TABLE apprepo.apiproxies WITH compaction = {'class' : 'LeveledCompactionStrategy'}; ALTER TABLE apprepo.apiproxy_revisions WITH compaction = {'class' : 'LeveledCompactionStrategy'}; ALTER TABLE apprepo.api_proxy_revisions_r21 WITH compaction = {'class' : 'LeveledCompactionStrategy'};
- CQLs zum Ändern der Verdichtungsstrategie für den Schlüsselraum
apimodel
:ALTER TABLE apimodel.apis WITH compaction = {'class' : 'LeveledCompactionStrategy'}; ALTER TABLE apimodel.apis_revision WITH compaction = {'class' : 'LeveledCompactionStrategy'}; ALTER TABLE apimodel.resource WITH compaction = {'class' : 'LeveledCompactionStrategy'}; ALTER TABLE apimodel.method WITH compaction = {'class' : 'LeveledCompactionStrategy'}; ALTER TABLE apimodel.revision_counters WITH compaction = {'class' : 'LeveledCompactionStrategy'}; ALTER TABLE apimodel.template_counters WITH compaction = {'class' : 'LeveledCompactionStrategy'}; ALTER TABLE apimodel.template WITH compaction = {'class' : 'LeveledCompactionStrategy'}; ALTER TABLE apimodel.credentials WITH compaction = {'class' : 'LeveledCompactionStrategy'}; ALTER TABLE apimodel.credentialsv2 WITH compaction = {'class' : 'LeveledCompactionStrategy'}; ALTER TABLE apimodel.schemas WITH compaction = {'class' : 'LeveledCompactionStrategy'}; ALTER TABLE apimodel.security WITH compaction = {'class' : 'LeveledCompactionStrategy'}; ALTER TABLE apimodel.template_auth WITH compaction = {'class' : 'LeveledCompactionStrategy'};
- CQLs zum Ändern der Verdichtungsstrategie für den Schlüsselraum
identityzone
:ALTER TABLE identityzone.IdentityZones WITH compaction = {'class' : 'LeveledCompactionStrategy'}; ALTER TABLE identityzone.OrgToIdentityZone WITH compaction = {'class' : 'LeveledCompactionStrategy'};
- CQLs zum Ändern der Verdichtungsstrategie für den Schlüsselraum
dek
:ALTER TABLE dek.keys WITH compaction = {'class' : 'LeveledCompactionStrategy'};
- CQLs zum Ändern der Verdichtungsstrategie für den Schlüsselraum
analytics
:ALTER TABLE analytics.custom_aggregates_defn WITH compaction = {'class' : 'LeveledCompactionStrategy'}; ALTER TABLE analytics.custom_rules_defn WITH compaction = {'class' : 'LeveledCompactionStrategy'}; ALTER TABLE analytics.custom_aggregates_defn_updates WITH compaction = {'class' : 'LeveledCompactionStrategy'}; ALTER TABLE analytics.custom_rules_defn_updates WITH compaction = {'class' : 'LeveledCompactionStrategy'};
Indexe neu erstellen
Sie müssen diesen Schritt nach der Änderung der Verdichtungsstrategie ausführen. Führen Sie folgenden Befehl aus:
nodetool
-Befehle nacheinander auf jedem Cassandra-Knoten nacheinander.
Führen Sie die folgenden nodetool
-Befehle aus, um Indexe neu zu erstellen:
- Erstellen Sie die Indexe für den Schlüsselraum
kms
neu:nodetool rebuild_index kms maps maps_organization_name_idx nodetool rebuild_index kms apps apps_app_family_idx nodetool rebuild_index kms apps apps_app_id_idx nodetool rebuild_index kms apps apps_app_type_idx nodetool rebuild_index kms apps apps_name_idx nodetool rebuild_index kms apps apps_organization_name_idx nodetool rebuild_index kms apps apps_parent_id_idx nodetool rebuild_index kms apps apps_parent_status_idx nodetool rebuild_index kms apps apps_status_idx nodetool rebuild_index kms app_credentials app_credentials_api_products_idx nodetool rebuild_index kms app_credentials app_credentials_organization_app_id_idx nodetool rebuild_index kms app_credentials app_credentials_organization_name_idx nodetool rebuild_index kms api_products api_products_organization_name_idx nodetool rebuild_index kms app_end_user app_end_user_app_id_idx nodetool rebuild_index kms oauth_20_authorization_codes oauth_20_authorization_codes_client_id_idx nodetool rebuild_index kms oauth_20_authorization_codes oauth_20_authorization_codes_organization_name_idx nodetool rebuild_index kms oauth_20_access_tokens oauth_20_access_tokens_app_id_idx nodetool rebuild_index kms oauth_20_access_tokens oauth_20_access_tokens_client_id_idx nodetool rebuild_index kms oauth_20_access_tokens oauth_20_access_tokens_refresh_token_idx nodetool rebuild_index kms oauth_10_request_tokens oauth_10_request_tokens_consumer_key_idx nodetool rebuild_index kms oauth_10_request_tokens oauth_10_request_tokens_organization_name_idx nodetool rebuild_index kms oauth_10_access_tokens oauth_10_access_tokens_app_id_idx nodetool rebuild_index kms oauth_10_access_tokens oauth_10_access_tokens_consumer_key_idx nodetool rebuild_index kms oauth_10_access_tokens oauth_10_access_tokens_organization_name_idx nodetool rebuild_index kms oauth_10_access_tokens oauth_10_access_tokens_status_idx nodetool rebuild_index kms oauth_10_verifiers oauth_10_verifiers_organization_name_idx nodetool rebuild_index kms oauth_10_verifiers oauth_10_verifiers_request_token_idx
- Erstellen Sie die Indexe für den Schlüsselraum
devconnect
neu:nodetool rebuild_index devconnect companies companies_name_idx nodetool rebuild_index devconnect companies companies_organization_name_idx nodetool rebuild_index devconnect companies companies_status_idx nodetool rebuild_index devconnect company_developers company_developers_company_name_idx nodetool rebuild_index devconnect company_developers company_developers_developer_email_idx nodetool rebuild_index devconnect company_developers company_developers_organization_name_idx nodetool rebuild_index devconnect developers developers_email_idx nodetool rebuild_index devconnect developers developers_organization_name_idx nodetool rebuild_index devconnect developers developers_status_idx
- Erstellen Sie die Indexe für den Schlüsselraum
cache
neu:nodetool rebuild_index cache cache_entries cache_entries_cache_name_idx
- Erstellen Sie die Indexe für den Schlüsselraum
audit
neu:nodetool rebuild_index audit audits audits_operation_idx nodetool rebuild_index audit audits audits_requesturi_idx nodetool rebuild_index audit audits audits_responsecode_idx nodetool rebuild_index audit audits audits_timestamp_idx nodetool rebuild_index audit audits audits_user_idx
- Erstellen Sie die Indexe für den Schlüsselraum
apprepo
neu:nodetool rebuild_index apprepo environments environments_organization_name_idx
- Erstellen Sie die Indexe für den Schlüsselraum
apimodel
neu:nodetool rebuild_index apimodel apis a_name nodetool rebuild_index apimodel apis a_org_name nodetool rebuild_index apimodel apis_revision ar_a_name nodetool rebuild_index apimodel apis_revision ar_a_uuid nodetool rebuild_index apimodel apis_revision ar_base_url nodetool rebuild_index apimodel apis_revision ar_is_active nodetool rebuild_index apimodel apis_revision ar_is_latest nodetool rebuild_index apimodel apis_revision ar_org_name nodetool rebuild_index apimodel apis_revision ar_rel_ver nodetool rebuild_index apimodel apis_revision ar_rev_num nodetool rebuild_index apimodel resource r_a_name nodetool rebuild_index apimodel resource r_api_uuid nodetool rebuild_index apimodel resource r_ar_uuid nodetool rebuild_index apimodel resource r_base_url nodetool rebuild_index apimodel resource r_name nodetool rebuild_index apimodel resource r_org_name nodetool rebuild_index apimodel resource r_res_path nodetool rebuild_index apimodel resource r_rev_num nodetool rebuild_index apimodel method m_a_name nodetool rebuild_index apimodel method m_api_uuid nodetool rebuild_index apimodel method m_ar_uuid nodetool rebuild_index apimodel method m_base_url nodetool rebuild_index apimodel method m_name nodetool rebuild_index apimodel method m_org_name nodetool rebuild_index apimodel method m_r_name nodetool rebuild_index apimodel method m_r_uuid nodetool rebuild_index apimodel method m_res_path nodetool rebuild_index apimodel method m_rev_num nodetool rebuild_index apimodel method m_verb nodetool rebuild_index apimodel template t_a_name nodetool rebuild_index apimodel template t_a_uuid nodetool rebuild_index apimodel template t_entity nodetool rebuild_index apimodel template t_name nodetool rebuild_index apimodel template t_org_name nodetool rebuild_index apimodel schemas s_api_uuid nodetool rebuild_index apimodel schemas s_ar_uuid nodetool rebuild_index apimodel security sa_api_uuid nodetool rebuild_index apimodel security sa_ar_uuid nodetool rebuild_index apimodel template_auth au_api_uuid
- Erstellen Sie die Indexe für den Schlüsselraum
dek
neu:nodetool rebuild_index dek keys usecase_index
Überprüfung
- Prüfen Sie, ob die Änderung der Verdichtungsstrategie für das Schema wirksam ist: die Anweisungen im Abschnitt Verdichtungsstrategie prüfen.
- Prüfen Sie, ob die Verdichtung erfolgreich ausgeführt wurde und die Daten nach der Strategieänderung verdichtet wurden:
<ph type="x-smartling-placeholder">
- </ph>
- Führen Sie auf jedem Cassandra-Knoten den folgenden
nodetool
-Befehl aus, um zu prüfen, ob alle Verdichtungen vorhanden sind abgeschlossen und nichts steht aus:nodetool compactionstats
- Wenn Sie mit dem obigen Befehl verifiziert haben, dass keine Verdichtungen ausstehen, prüfen Sie den zuletzt geänderten Zeitstempel der Datendateien (unter /opt/apigee/data/apigee-cassandra/data/) nach dem Zeitstempel für den Zeitpunkt, an dem die Änderung der Verdichtungsstrategie (CQL) ausgeführt wurde.
- Führen Sie auf jedem Cassandra-Knoten den folgenden
Rollback durchführen
Bei einem Rollback haben Sie folgende Möglichkeiten:
Option 1: Änderung rückgängig machen
Führen Sie ein Rollback der Verdichtungsstrategie auf SizeTieredCompactionStrategy
durch.
Die folgenden CQLs auf einem Cassandra-Knoten ausführen, der die Strategie ändert
jeweils per Tastendruck. Sie können CQLs über die cql
-Eingabeaufforderung ausführen. So rufen Sie die Eingabeaufforderung cql
auf:
/opt/apigee/apigee-cassandra/bin/cqlsh `hostname -i`
Die Antwort sieht in etwa so aus:
Connected to apigee at XX.XX.XX.XX:9042. [cqlsh 5.0.1 | Cassandra 2.1.16 | CQL spec 3.2.1 | Native protocol v3] Use HELP for help. cqlsh>
Führen Sie die folgenden CQLs aus, um die Verdichtungsstrategie zu ändern:
- CQLs zum Ändern der Verdichtungsstrategie für den Schlüsselraum
kms
:ALTER TABLE kms.organizations WITH compaction = {'class' : 'SizeTieredCompactionStrategy'}; ALTER TABLE kms.maps WITH compaction = {'class' : 'SizeTieredCompactionStrategy'}; ALTER TABLE kms.apps WITH compaction = {'class' : 'SizeTieredCompactionStrategy'}; ALTER TABLE kms.app_credentials WITH compaction = {'class' : 'SizeTieredCompactionStrategy'}; ALTER TABLE kms.api_products WITH compaction = {'class' : 'SizeTieredCompactionStrategy'}; ALTER TABLE kms.apiproducts_appslist WITH compaction = {'class' : 'SizeTieredCompactionStrategy'}; ALTER TABLE kms.api_resources WITH compaction = {'class' : 'SizeTieredCompactionStrategy'}; ALTER TABLE kms.app_end_user WITH compaction = {'class' : 'SizeTieredCompactionStrategy'}; ALTER TABLE kms.oauth_20_authorization_codes WITH compaction = {'class' : 'SizeTieredCompactionStrategy'}; ALTER TABLE kms.oauth_20_access_tokens WITH compaction = {'class' : 'SizeTieredCompactionStrategy'}; ALTER TABLE kms.oauth_10_request_tokens WITH compaction = {'class' : 'SizeTieredCompactionStrategy'}; ALTER TABLE kms.oauth_10_access_tokens WITH compaction = {'class' : 'SizeTieredCompactionStrategy'}; ALTER TABLE kms.oauth_10_verifiers WITH compaction = {'class' : 'SizeTieredCompactionStrategy'}; ALTER TABLE kms.app_enduser_tokens WITH compaction = {'class' : 'SizeTieredCompactionStrategy'};
- CQLs zum Ändern der Verdichtungsstrategie für den Schlüsselraum
user_settings
:ALTER TABLE user_settings.user_settings WITH compaction = {'class' : 'SizeTieredCompactionStrategy'};
- CQLs zum Ändern der Verdichtungsstrategie für den Schlüsselraum
keyvaluemap
:ALTER TABLE keyvaluemap.keyvaluemaps_r21 WITH compaction = {'class' : 'SizeTieredCompactionStrategy'};
- CQLs zum Ändern der Verdichtungsstrategie für den Schlüsselraum
devconnect
:ALTER TABLE devconnect.developers WITH compaction = {'class' : 'SizeTieredCompactionStrategy'}; ALTER TABLE devconnect.companies WITH compaction = {'class' : 'SizeTieredCompactionStrategy'}; ALTER TABLE devconnect.company_developers WITH compaction = {'class' : 'SizeTieredCompactionStrategy'};
- CQLs zum Ändern der Verdichtungsstrategie für den Schlüsselraum
counter
:ALTER TABLE counter.counters_current_version WITH compaction = {'class' : 'SizeTieredCompactionStrategy'}; ALTER TABLE counter.counters_with_expiry WITH compaction = {'class' : 'SizeTieredCompactionStrategy'}; ALTER TABLE counter.counters WITH compaction = {'class' : 'SizeTieredCompactionStrategy'}; ALTER TABLE counter.key_timestamp_count WITH compaction = {'class' : 'SizeTieredCompactionStrategy'}; ALTER TABLE counter.timestamp_key WITH compaction = {'class' : 'SizeTieredCompactionStrategy'}; ALTER TABLE counter.period_timestamp WITH compaction = {'class' : 'SizeTieredCompactionStrategy'}; ALTER TABLE counter.gateway_quota WITH compaction = {'class' : 'SizeTieredCompactionStrategy'};
-
CQLs zum Ändern der Verdichtungsstrategie für den Schlüsselraum
cache
:ALTER TABLE cache.cache_entries WITH compaction = {'class' : 'SizeTieredCompactionStrategy'}; ALTER TABLE cache.cache_sequence_id_r24 WITH compaction = {'class' : 'SizeTieredCompactionStrategy'};
- CQLs zum Ändern der Verdichtungsstrategie für den Schlüsselraum
ax_custom_report_model
:ALTER TABLE ax_custom_report_model.report_description WITH compaction = {'class' : 'SizeTieredCompactionStrategy'}; ALTER TABLE ax_custom_report_model.report_id_lookup WITH compaction = {'class' : 'SizeTieredCompactionStrategy'}; ALTER TABLE ax_custom_report_model.org_metadata WITH compaction = {'class' : 'SizeTieredCompactionStrategy'}; ALTER TABLE ax_custom_report_model.org_report_lookup WITH compaction = {'class' : 'SizeTieredCompactionStrategy'}; ALTER TABLE ax_custom_report_model.report_created_view WITH compaction = {'class' : 'SizeTieredCompactionStrategy'}; ALTER TABLE ax_custom_report_model.report_viewed_view WITH compaction = {'class' : 'SizeTieredCompactionStrategy'};
- CQLs zum Ändern der Verdichtungsstrategie für den Schlüsselraum
auth
:ALTER TABLE auth.totp WITH compaction = {'class' : 'SizeTieredCompactionStrategy'};
- CQLs zum Ändern der Verdichtungsstrategie für den Schlüsselraum
audit
:ALTER TABLE audit.audits WITH compaction = {'class' : 'SizeTieredCompactionStrategy'}; ALTER TABLE audit.audits_ref WITH compaction = {'class' : 'SizeTieredCompactionStrategy'};
- CQLs zum Ändern der Verdichtungsstrategie für den Schlüsselraum
apprepo
:ALTER TABLE apprepo.organizations WITH compaction = {'class' : 'SizeTieredCompactionStrategy'}; ALTER TABLE apprepo.environments WITH compaction = {'class' : 'SizeTieredCompactionStrategy'}; ALTER TABLE apprepo.apiproxies WITH compaction = {'class' : 'SizeTieredCompactionStrategy'}; ALTER TABLE apprepo.apiproxy_revisions WITH compaction = {'class' : 'SizeTieredCompactionStrategy'}; ALTER TABLE apprepo.api_proxy_revisions_r21 WITH compaction = {'class' : 'SizeTieredCompactionStrategy'};
- CQLs zum Ändern der Verdichtungsstrategie für den Schlüsselraum
apimodel
:ALTER TABLE apimodel.apis WITH compaction = {'class' : 'SizeTieredCompactionStrategy'}; ALTER TABLE apimodel.apis_revision WITH compaction = {'class' : 'SizeTieredCompactionStrategy'}; ALTER TABLE apimodel.resource WITH compaction = {'class' : 'SizeTieredCompactionStrategy'}; ALTER TABLE apimodel.method WITH compaction = {'class' : 'SizeTieredCompactionStrategy'}; ALTER TABLE apimodel.revision_counters WITH compaction = {'class' : 'SizeTieredCompactionStrategy'}; ALTER TABLE apimodel.template_counters WITH compaction = {'class' : 'SizeTieredCompactionStrategy'}; ALTER TABLE apimodel.template WITH compaction = {'class' : 'SizeTieredCompactionStrategy'}; ALTER TABLE apimodel.credentials WITH compaction = {'class' : 'SizeTieredCompactionStrategy'}; ALTER TABLE apimodel.credentialsv2 WITH compaction = {'class' : 'SizeTieredCompactionStrategy'}; ALTER TABLE apimodel.schemas WITH compaction = {'class' : 'SizeTieredCompactionStrategy'}; ALTER TABLE apimodel.security WITH compaction = {'class' : 'SizeTieredCompactionStrategy'}; ALTER TABLE apimodel.template_auth WITH compaction = {'class' : 'SizeTieredCompactionStrategy'};
- CQLs zum Ändern der Verdichtungsstrategie für den Schlüsselraum
identityzone
:ALTER TABLE identityzone.IdentityZones WITH compaction = {'class' : 'SizeTieredCompactionStrategy'}; ALTER TABLE identityzone.OrgToIdentityZone WITH compaction = {'class' : 'SizeTieredCompactionStrategy'};
- CQLs zum Ändern der Verdichtungsstrategie für den Schlüsselraum
dek
:ALTER TABLE dek.keys WITH compaction = {'class' : 'SizeTieredCompactionStrategy'};
- CQLs zum Ändern der Verdichtungsstrategie für den Schlüsselraum
analytics
:ALTER TABLE analytics.custom_aggregates_defn WITH compaction = {'class' : 'SizeTieredCompactionStrategy'}; ALTER TABLE analytics.custom_rules_defn WITH compaction = {'class' : 'SizeTieredCompactionStrategy'}; ALTER TABLE analytics.custom_aggregates_defn_updates WITH compaction = {'class' : 'SizeTieredCompactionStrategy'}; ALTER TABLE analytics.custom_rules_defn_updates WITH compaction = {'class' : 'SizeTieredCompactionStrategy'};
Wenn alle Spaltenfamilien geändert wurden, wenn Sie bereits Indizes während
wird die Verdichtungsstrategie in LeveledCompactionStrategy
geändert, müssen die Indizes neu erstellt werden.
noch einmal. Führen Sie dieselben Schritte wie zuvor für die Neuerstellung
alle Indexe. Wenn Sie die Indizes zuvor nicht neu erstellt haben, müssen Sie die Indizes während
das Rollback.
Option 2: Vollständige Datenwiederherstellung aus einer Sicherung
Um eine vollständige Datenwiederherstellung durchzuführen, folgen Sie den Anweisungen unter Aus der Sicherung wiederherstellen
Verdichtungsstrategie prüfen
Verdichtungsstrategien werden in Cassandra auf Spaltenfamilienebene (Tabellenebene) festgelegt. Sie können die CQL-Abfragen unten, um die Verdichtungsstrategie für jede Spaltenfamilie zu prüfen.
Sie können CQLs über die cql
-Eingabeaufforderung ausführen.
So rufen Sie die cql
-Eingabeaufforderung auf:
/opt/apigee/apigee-cassandra/bin/cqlsh `hostname -i`
Die Antwort sieht in etwa so aus:
Connected to apigee at XX.XX.XX.XX:9042. [cqlsh 5.0.1 | Cassandra 2.1.16 | CQL spec 3.2.1 | Native protocol v3] Use HELP for help. cqlsh>
Die aktuelle Verdichtungsstrategie lässt sich so festlegen:
- Wenn die Verdichtungsstrategie auf
SizeTieredCompactionStrategy
festgelegt ist, gibt die Ausgabe der folgenden Abfragen sindorg.apache.cassandra.db.compaction.SizeTieredCompactionStrategy
. - Wenn die Verdichtungsstrategie auf
LeveledCompactionStrategy
festgelegt ist, wird die Ausgabe von sind die folgenden Abfragenorg.apache.cassandra.db.compaction.LeveledCompactionStrategy
.
Führen Sie die folgenden CQLs aus, um die Verdichtungsstrategie zu prüfen:
- CQLs zur Überprüfung der Verdichtungsstrategie für den Schlüsselraum
kms
:SELECT compaction_strategy_class from system.schema_columnfamilies where keyspace_name ='kms' and columnfamily_name = 'organizations'; SELECT compaction_strategy_class from system.schema_columnfamilies where keyspace_name ='kms' and columnfamily_name = 'maps'; SELECT compaction_strategy_class from system.schema_columnfamilies where keyspace_name ='kms' and columnfamily_name = 'apps'; SELECT compaction_strategy_class from system.schema_columnfamilies where keyspace_name ='kms' and columnfamily_name = 'app_credentials'; SELECT compaction_strategy_class from system.schema_columnfamilies where keyspace_name ='kms' and columnfamily_name = 'api_products'; SELECT compaction_strategy_class from system.schema_columnfamilies where keyspace_name ='kms' and columnfamily_name = 'apiproducts_appslist'; SELECT compaction_strategy_class from system.schema_columnfamilies where keyspace_name ='kms' and columnfamily_name = 'api_resources'; SELECT compaction_strategy_class from system.schema_columnfamilies where keyspace_name ='kms' and columnfamily_name = 'app_end_user'; SELECT compaction_strategy_class from system.schema_columnfamilies where keyspace_name ='kms' and columnfamily_name = 'oauth_20_authorization_codes'; SELECT compaction_strategy_class from system.schema_columnfamilies where keyspace_name ='kms' and columnfamily_name = 'oauth_20_access_tokens'; SELECT compaction_strategy_class from system.schema_columnfamilies where keyspace_name ='kms' and columnfamily_name = 'oauth_10_request_tokens'; SELECT compaction_strategy_class from system.schema_columnfamilies where keyspace_name ='kms' and columnfamily_name = 'oauth_10_access_tokens'; SELECT compaction_strategy_class from system.schema_columnfamilies where keyspace_name ='kms' and columnfamily_name = 'oauth_10_verifiers'; SELECT compaction_strategy_class from system.schema_columnfamilies where keyspace_name ='kms' and columnfamily_name = 'app_enduser_tokens';
- CQLs zur Überprüfung der Verdichtungsstrategie für den Schlüsselraum
user_settings
:SELECT compaction_strategy_class from system.schema_columnfamilies where keyspace_name = 'user_settings' and columnfamily_name = 'user_settings';
- CQLs zur Überprüfung der Verdichtungsstrategie für den Schlüsselraum
keyvaluemap
:SELECT compaction_strategy_class from system.schema_columnfamilies where keyspace_name = 'keyvaluemap' and columnfamily_name = 'keyvaluemaps_r21';
- CQLs zur Überprüfung der Verdichtungsstrategie für den Schlüsselraum
devconnect
:SELECT compaction_strategy_class from system.schema_columnfamilies where keyspace_name = 'devconnect' and columnfamily_name = 'developers'; SELECT compaction_strategy_class from system.schema_columnfamilies where keyspace_name = 'devconnect' and columnfamily_name = 'companies'; SELECT compaction_strategy_class from system.schema_columnfamilies where keyspace_name = 'devconnect' and columnfamily_name = 'company_developers';
- CQLs zur Überprüfung der Verdichtungsstrategie für den Schlüsselraum
counter
:SELECT compaction_strategy_class from system.schema_columnfamilies where keyspace_name = 'counter' and columnfamily_name = 'counters_current_version'; SELECT compaction_strategy_class from system.schema_columnfamilies where keyspace_name = 'counter' and columnfamily_name = 'counters_with_expiry'; SELECT compaction_strategy_class from system.schema_columnfamilies where keyspace_name = 'counter' and columnfamily_name = 'counters'; SELECT compaction_strategy_class from system.schema_columnfamilies where keyspace_name = 'counter' and columnfamily_name = 'key_timestamp_count'; SELECT compaction_strategy_class from system.schema_columnfamilies where keyspace_name = 'counter' and columnfamily_name = 'timestamp_key'; SELECT compaction_strategy_class from system.schema_columnfamilies where keyspace_name = 'counter' and columnfamily_name = 'period_timestamp'; SELECT compaction_strategy_class from system.schema_columnfamilies where keyspace_name = 'counter' and columnfamily_name = 'gateway_quota';
- CQLs zur Überprüfung der Verdichtungsstrategie für den Schlüsselraum
cache
:SELECT compaction_strategy_class from system.schema_columnfamilies where keyspace_name = 'cache' and columnfamily_name = 'cache_entries'; SELECT compaction_strategy_class from system.schema_columnfamilies where keyspace_name = 'cache' and columnfamily_name = 'cache_sequence_id_r24';
- CQLs zur Überprüfung der Verdichtungsstrategie für den Schlüsselraum
ax_custom_report_model
:SELECT compaction_strategy_class from system.schema_columnfamilies where keyspace_name = 'ax_custom_report_model' and columnfamily_name = 'report_description'; SELECT compaction_strategy_class from system.schema_columnfamilies where keyspace_name = 'ax_custom_report_model' and columnfamily_name = 'report_id_lookup'; SELECT compaction_strategy_class from system.schema_columnfamilies where keyspace_name = 'ax_custom_report_model' and columnfamily_name = 'org_metadata'; SELECT compaction_strategy_class from system.schema_columnfamilies where keyspace_name = 'ax_custom_report_model' and columnfamily_name = 'org_report_lookup'; SELECT compaction_strategy_class from system.schema_columnfamilies where keyspace_name = 'ax_custom_report_model' and columnfamily_name = 'report_created_view'; SELECT compaction_strategy_class from system.schema_columnfamilies where keyspace_name = 'ax_custom_report_model' and columnfamily_name = 'report_viewed_view';
- CQLs zur Überprüfung der Verdichtungsstrategie für den Schlüsselraum
auth
:SELECT compaction_strategy_class from system.schema_columnfamilies where keyspace_name = 'auth' and columnfamily_name = 'totp';
- CQLs zur Überprüfung der Verdichtungsstrategie für den Schlüsselraum
audit
:SELECT compaction_strategy_class from system.schema_columnfamilies where keyspace_name = 'audit' and columnfamily_name = 'audits'; SELECT compaction_strategy_class from system.schema_columnfamilies where keyspace_name = 'audit' and columnfamily_name = 'audits_ref';
- CQLs zur Überprüfung der Verdichtungsstrategie für den Schlüsselraum
apprepo
:SELECT compaction_strategy_class from system.schema_columnfamilies where keyspace_name = 'apprepo' and columnfamily_name = 'organizations'; SELECT compaction_strategy_class from system.schema_columnfamilies where keyspace_name = 'apprepo' and columnfamily_name = 'environments'; SELECT compaction_strategy_class from system.schema_columnfamilies where keyspace_name = 'apprepo' and columnfamily_name = 'apiproxies'; SELECT compaction_strategy_class from system.schema_columnfamilies where keyspace_name = 'apprepo' and columnfamily_name = 'apiproxy_revisions'; SELECT compaction_strategy_class from system.schema_columnfamilies where keyspace_name = 'apprepo' and columnfamily_name = 'api_proxy_revisions_r21';
- CQLs zur Überprüfung der Verdichtungsstrategie für den Schlüsselraum
apimodel
:SELECT compaction_strategy_class from system.schema_columnfamilies where keyspace_name = 'apimodel' and columnfamily_name = 'apis'; SELECT compaction_strategy_class from system.schema_columnfamilies where keyspace_name = 'apimodel' and columnfamily_name = 'apis_revision'; SELECT compaction_strategy_class from system.schema_columnfamilies where keyspace_name = 'apimodel' and columnfamily_name = 'resource'; SELECT compaction_strategy_class from system.schema_columnfamilies where keyspace_name = 'apimodel' and columnfamily_name = 'method'; SELECT compaction_strategy_class from system.schema_columnfamilies where keyspace_name = 'apimodel' and columnfamily_name = 'revision_counters'; SELECT compaction_strategy_class from system.schema_columnfamilies where keyspace_name = 'apimodel' and columnfamily_name = 'template_counters'; SELECT compaction_strategy_class from system.schema_columnfamilies where keyspace_name = 'apimodel' and columnfamily_name = 'template'; SELECT compaction_strategy_class from system.schema_columnfamilies where keyspace_name = 'apimodel' and columnfamily_name = 'credentials'; SELECT compaction_strategy_class from system.schema_columnfamilies where keyspace_name = 'apimodel' and columnfamily_name = 'credentialsv2'; SELECT compaction_strategy_class from system.schema_columnfamilies where keyspace_name = 'apimodel' and columnfamily_name = 'schemas'; SELECT compaction_strategy_class from system.schema_columnfamilies where keyspace_name = 'apimodel' and columnfamily_name = 'security'; SELECT compaction_strategy_class from system.schema_columnfamilies where keyspace_name = 'apimodel' and columnfamily_name = 'template_auth';
- CQLs zur Überprüfung der Verdichtungsstrategie für den Schlüsselraum
identityzone
:SELECT compaction_strategy_class from system.schema_columnfamilies where keyspace_name = 'identityzone' and columnfamily_name = 'identityzones'; SELECT compaction_strategy_class from system.schema_columnfamilies where keyspace_name = 'identityzone' and columnfamily_name = 'orgtoidentityzone';
- CQLs zur Überprüfung der Verdichtungsstrategie für den Schlüsselraum
dek
:SELECT compaction_strategy_class from system.schema_columnfamilies where keyspace_name = 'dek' and columnfamily_name = 'keys';
- CQLs zur Überprüfung der Verdichtungsstrategie für den Schlüsselraum
analytics
:SELECT compaction_strategy_class from system.schema_columnfamilies where keyspace_name = 'analytics' and columnfamily_name = 'custom_aggregates_defn'; SELECT compaction_strategy_class from system.schema_columnfamilies where keyspace_name = 'analytics' and columnfamily_name = 'custom_rules_defn'; SELECT compaction_strategy_class from system.schema_columnfamilies where keyspace_name = 'analytics' and columnfamily_name = 'custom_aggregates_defn_updates'; SELECT compaction_strategy_class from system.schema_columnfamilies where keyspace_name = 'analytics' and columnfamily_name = 'custom_rules_defn_updates';