Cassandra'nın sıkıştırma stratejisini değiştirme

Apigee, Cassandra veri tabanlarını kullanarak verilerinin yanı sıra proxy'ler, önbellekler ve jetonlar. Sıkıştırma, verilerin boyutunu küçültmek için kullanılan standart bir işlemdir. veri tabanlarında saklanması ve verilerini saklamak için veri tabanlarının verimli şekilde çalışmasını sağlar. Cassandra, sıkıştırma için çeşitli stratejileri destekler. Apigee tüm Edge for Private Cloud müşterilerinin Cassandra kümelerini varsayılan strateji yerine LeveledCompactionStrategy stratejisi Tüm sütun aileleri için SizeTieredCompactionStrategy. LeveledCompactionStrategy. daha iyi performans, daha iyi disk kullanımı ve daha verimli sunar. daha az sıkıştırır ve SizedTieredCompactionStrategy ile karşılaştırıldığında daha az boş alan gerektirir.

Apigee 4.51.00 veya sonraki sürümlerin tüm yeni yüklemeleri otomatik olarak Cassandra'yı kurar. LeveledCompactionStrategy ile birlikte. Ancak Apigee veya Daha eski bir sürümden Apigee 4.51.00'a yükselttiyseniz sürümünüzde hâlâ Cassandra kullanılıyor olabilir. SizeTieredCompactionStrategy ile birlikte. Cassandra sürümünüzün hangi sıkıştırma stratejisini kullandığını öğrenmek için Sıkıştırma stratejisini kontrol etme bölümü.

Bu sayfada, sıkıştırma stratejisinin nasıl LeveledCompactionStrategy

Hazırlık

Mevcut sıkıştırma stratejisini kontrol edin

Sütun ailelerindeki mevcut sıkıştırma stratejisini kontrol etmek için Sıkıştırma stratejisini kontrol edin. Sıkıştırma stratejisi zaten LeveledCompactionStrategy, kalan bu sayfadaki talimatları uygulayın.

Yedekleme

Sıkıştırma stratejisinin değiştirilmesi, C* düğümlerinde tam bir sıkıştırma döngüsünü tetiklediğinden. şirket içinde sıkıştırma ve eş zamanlı uygulama trafiği nedeniyle bazı gecikmeler yaşanır. Geri alma Cassandra düğümlerinin yedeklerden geri yüklenmesi için gerekebilir. Nasıl Yapılır? yedekleme başlıklı makaleyi inceleyin.

Sıkıştırma işleme hızı

Sıkıştırma stratejisi LeveledCompactionStrategy olarak değiştirildikten sonra uzun süre korunuyor. Veri sıkıştırmanın boyutuna bağlı olarak çalışma zamanı değişiklik gösterebilir. Sıkıştırma sırasında kullanıyorsanız Cassandra daha fazla sistem kaynağı kullanabilir. Sıkıştırma işleminin çok fazla kaplamamasını sağlamak API Çalışma Zamanı isteklerini aksatır. işleme hızı.

Sıkıştırma işleme hızını maksimum değere ayarlamak için tüm düğümlerde aşağıdaki nodetool komutunu çalıştırın tüm C* düğümlerinde 128 MB'ta:

nodetool setcompactionthroughput 128

Sanal makineleri sıkıştırmalar için boyutlandırma

Bu değişikliği yürütmeden önce C* düğümlerinin yeterli CPU/Bellek kaynağına sahip olduğundan emin olun. Lütfen Bu değişiklik uygulanmadan önce CPU yükünün% 25'inden fazla C* düğümü çalışmadığından emin olun.

Sıkıştırma stratejisi değişikliğinden sonra, tam bir sıkıştırma döngüsünün çalışması beklenir. Dolayısıyla bu Sıkıştırma stratejisini trafiğin düşük olduğu zamanlarda değiştirmeniz önerilir.

Aşamalı çalıştırmalar

Özellikle bir gün içinde tüm düğümlerin değişikliğini tamamlayamayabilirsiniz. dizinlerin her düğümde teker teker yeniden oluşturulması gerektiğinden büyük Cassandra kümeleri içerir. Şunları değiştirebilirsiniz: tek seferde bir şemanın veya sütun ailesinin (tablo) sıkıştırma stratejisini gösterir. Bunun için, sütun ailesinin sıkıştırma stratejisini değiştirmek ve ardından tablodaki tüm dizinleri yeniden oluşturmak için tüm düğümlerde (varsa) görebilirsiniz. Ardından her tablo veya tuş alanı için yukarıdaki prosedürü tekrarlayın. Bu tür çalıştırmalar bir anahtar alanı farklı günlerde çalışacak şekilde ayrılabilir.

Örneğin, oauth_20_access_tokens sütun ailesinin sıkıştırma stratejisini değiştirmek için kms şemasını kullanıyorsanız aşağıdakileri yapabilirsiniz:

  1. Sıkıştırma stratejisini değiştirmek için tabloyu değiştirin:
       
    ALTER TABLE kms.oauth_20_access_tokens WITH compaction = {'class' : 'LeveledCompactionStrategy'};
    .
  2. Yalnızca bu tablonun tüm dizinlerini yeniden oluştur:
    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
    .

Sıkıştırma stratejisini değiştirme

Sıkıştırma stratejisini değiştirmek genel olarak 2 adımlı bir süreçtir:

  1. Her tablonun sıkıştırma stratejisini değiştirin.
  2. Her düğümdeki tüm dizinleri tek tek yeniden oluşturun.

Yeni sıkıştırma stratejisi belirlemek için Tabloyu değiştirin

Aşağıdaki Cassandra Query Language (CQL) komutlarını herhangi bir Cassandra düğümünde çalıştırın. biri için strateji bir anahtar tuşuna basın. CQL'leri cql isteminde çalıştırabilirsiniz. cql istemi:

/opt/apigee/apigee-cassandra/bin/cqlsh `hostname -i`

Aşağıdaki gibi bir yanıt görürsünüz:

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>

Sıkıştırma stratejisini değiştirmek için aşağıdaki CQL'leri çalıştırın:

  • kms tuş alanı için sıkıştırma stratejisini değiştirmek üzere CQL'ler:
    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'};
  • user_settings tuş alanı için sıkıştırma stratejisini değiştirmek üzere CQL'ler:
    ALTER TABLE user_settings.user_settings WITH compaction = {'class' : 'LeveledCompactionStrategy'};
  • keyvaluemap tuş alanı için sıkıştırma stratejisini değiştirmek üzere CQL'ler:
       
    ALTER TABLE keyvaluemap.keyvaluemaps_r21 WITH compaction = {'class' : 'LeveledCompactionStrategy'};
  • devconnect tuş alanı için sıkıştırma stratejisini değiştirmek üzere CQL'ler:
        
    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'};
  • counter tuş alanı için sıkıştırma stratejisini değiştirmek üzere CQL'ler:
    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'};
  • cache tuş alanı için sıkıştırma stratejisini değiştirmek üzere CQL'ler:
    ALTER TABLE cache.cache_entries WITH compaction = {'class' : 'LeveledCompactionStrategy'};
    ALTER TABLE cache.cache_sequence_id_r24 WITH compaction = {'class' : 'LeveledCompactionStrategy'};
  • ax_custom_report_model tuş alanı için sıkıştırma stratejisini değiştirmek üzere CQL'ler:
    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'};
  • auth tuş alanı için sıkıştırma stratejisini değiştirmek üzere CQL'ler:
    ALTER TABLE auth.totp WITH compaction = {'class' : 'LeveledCompactionStrategy'};
  • audit tuş alanı için sıkıştırma stratejisini değiştirmek üzere CQL'ler:
    ALTER TABLE audit.audits WITH compaction = {'class' : 'LeveledCompactionStrategy'};
    ALTER TABLE audit.audits_ref WITH compaction = {'class' : 'LeveledCompactionStrategy'};
  • apprepo tuş alanı için sıkıştırma stratejisini değiştirmek üzere CQL'ler:
    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'};
  • apimodel tuş alanı için sıkıştırma stratejisini değiştirmek üzere CQL'ler:
    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'};
  • identityzone tuş alanı için sıkıştırma stratejisini değiştirmek üzere CQL'ler:
    ALTER TABLE identityzone.IdentityZones WITH compaction = {'class' : 'LeveledCompactionStrategy'};
    ALTER TABLE identityzone.OrgToIdentityZone WITH compaction = {'class' : 'LeveledCompactionStrategy'};
  • dek tuş alanı için sıkıştırma stratejisini değiştirmek üzere CQL'ler:
    ALTER TABLE dek.keys WITH compaction = {'class' : 'LeveledCompactionStrategy'};
  • analytics tuş alanı için sıkıştırma stratejisini değiştirmek üzere CQL'ler:
    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'};

Dizinleri yeniden oluştur

Bu adımı sıkıştırma stratejisi değişikliğinden sonra yürütmeniz gerekir. Şu komutu çalıştırın: nodetool, her bir Cassandra düğümünde sırayla komut verir.

Dizinleri yeniden oluşturmak için aşağıdaki nodetool komutlarını çalıştırın:

  • kms anahtar alanı için dizinleri yeniden oluşturun:
    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
  • devconnect anahtar alanı için dizinleri yeniden oluşturun:
    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
  • cache anahtar alanı için dizinleri yeniden oluşturun:
        
    nodetool rebuild_index cache cache_entries cache_entries_cache_name_idx
  • audit anahtar alanı için dizinleri yeniden oluşturun:
    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
  • apprepo anahtar alanı için dizinleri yeniden oluşturun:
    nodetool rebuild_index apprepo environments environments_organization_name_idx
  • apimodel anahtar alanı için dizinleri yeniden oluşturun:
    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
  • dek anahtar alanı için dizinleri yeniden oluşturun:
    nodetool rebuild_index dek keys usecase_index

Doğrulama

  1. Şemadaki sıkıştırma stratejisi değişikliğinin geçerli olup olmadığını kontrol etmek için aşağıdaki adımları uygulayın: talimatlar Sıkıştırma stratejisini kontrol edin bölümünde bulabilirsiniz.
  2. Strateji değişikliğinden sonra sıkıştırma işleminin başarıyla çalıştığını ve verilerin sıkıştırıldığını doğrulayın:
    1. Her bir Cassandra düğümünde aşağıdaki nodetool komutunu çalıştırarak tüm sıkıştırma işlemlerinin yapılıp yapılmadığını tamamlandı ve beklemede hiçbir şey yok:
      nodetool compactionstats
    2. Bekleyen sıkıştırma olmadığından emin olmak için yukarıdaki komut kullanılarak doğrulandıktan sonra, veri dosyalarının son değiştirilme zaman damgası (/opt/Apigee/data/Apigee-cassandra/data/ altında) olması, sıkıştırma stratejisi değişikliği CQL'sinin yürütüldüğü zaman damgasından sonra gelmelidir.

Sürümü geri döndür

Eski sürüme geri dönmeniz gerekirse aşağıdaki seçeneklerden birini uygulayabilirsiniz:

1. Seçenek: Değişikliği geri alma

Sıkıştırma stratejisini SizeTieredCompactionStrategy sürümüne geri döndür.

Aşağıdaki CQL'leri, herhangi bir Cassandra düğümünde değiştirme stratejisi için bir anahtar tuşuna basın. CQL'leri cql isteminde çalıştırabilirsiniz. cql istemini çağırmak için:

/opt/apigee/apigee-cassandra/bin/cqlsh `hostname -i`

Aşağıdaki gibi bir yanıt görürsünüz:

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>

Sıkıştırma stratejisini değiştirmek için aşağıdaki CQL'leri çalıştırın:

  • kms tuş alanı için sıkıştırma stratejisini değiştirmek üzere CQL'ler:
    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'};
  • user_settings tuş alanı için sıkıştırma stratejisini değiştirmek üzere CQL'ler:
    ALTER TABLE user_settings.user_settings WITH compaction = {'class' : 'SizeTieredCompactionStrategy'};
  • keyvaluemap tuş alanı için sıkıştırma stratejisini değiştirmek üzere CQL'ler:
    ALTER TABLE keyvaluemap.keyvaluemaps_r21 WITH compaction = {'class' : 'SizeTieredCompactionStrategy'};
  • devconnect tuş alanı için sıkıştırma stratejisini değiştirmek üzere CQL'ler:
    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'};
  • counter tuş alanı için sıkıştırma stratejisini değiştirmek üzere CQL'ler:
    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'};
  • cache tuş alanı için sıkıştırma stratejisini değiştirmek üzere CQL'ler:
    ALTER TABLE cache.cache_entries WITH compaction = {'class' : 'SizeTieredCompactionStrategy'};
    ALTER TABLE cache.cache_sequence_id_r24 WITH compaction = {'class' : 'SizeTieredCompactionStrategy'};
  • ax_custom_report_model tuş alanı için sıkıştırma stratejisini değiştirmek üzere CQL'ler:
    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'};
  • auth tuş alanı için sıkıştırma stratejisini değiştirmek üzere CQL'ler:
    ALTER TABLE auth.totp WITH compaction = {'class' : 'SizeTieredCompactionStrategy'};
  • audit tuş alanı için sıkıştırma stratejisini değiştirmek üzere CQL'ler:
    ALTER TABLE audit.audits WITH compaction = {'class' : 'SizeTieredCompactionStrategy'};
    ALTER TABLE audit.audits_ref WITH compaction = {'class' : 'SizeTieredCompactionStrategy'};
  • apprepo tuş alanı için sıkıştırma stratejisini değiştirmek üzere CQL'ler:
    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'};
  • apimodel tuş alanı için sıkıştırma stratejisini değiştirmek üzere CQL'ler:
    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'};
  • identityzone tuş alanı için sıkıştırma stratejisini değiştirmek üzere CQL'ler:
    ALTER TABLE identityzone.IdentityZones WITH compaction = {'class' : 'SizeTieredCompactionStrategy'};
    ALTER TABLE identityzone.OrgToIdentityZone WITH compaction = {'class' : 'SizeTieredCompactionStrategy'};
  • dek tuş alanı için sıkıştırma stratejisini değiştirmek üzere CQL'ler:
        
    ALTER TABLE dek.keys WITH compaction = {'class' : 'SizeTieredCompactionStrategy'};
  • analytics tuş alanı için sıkıştırma stratejisini değiştirmek üzere CQL'ler:
    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'};

Tüm sütun aileleri değiştirildikten sonra, sıkıştırma stratejisini LeveledCompactionStrategy olarak değiştirirseniz dizinleri yeniden oluşturmanız gerekir tekrar. Yeniden oluşturmak için öncekiyle aynı adımları uygulayın. tüm dizinler için geçerlidir. Daha önce dizinleri yeniden oluşturmadıysanız geri alabilir.

2. Seçenek - Yedekten tam verileri geri yükleme

Tam veri geri yükleme işlemi gerçekleştirmek için şu adresteki talimatlara bakın: Yedeklemeden geri yükle.

Sıkıştırma stratejisini kontrol edin

Sıkıştırma stratejileri, Cassandra'da sütun ailesi (tablo) düzeyinde ayarlanır. URL parametrelerinin Google tarafından nasıl ele alınmasını istediğinizi belirtmek için Her sütun ailesine ait sıkıştırma stratejisini kontrol etmek için aşağıdaki CQL sorgularını kullanın.

CQL'leri cql isteminde çalıştırabilirsiniz. cql istemini çağırmak için:

/opt/apigee/apigee-cassandra/bin/cqlsh `hostname -i`

Aşağıdaki gibi bir yanıt görürsünüz:

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>

Mevcut sıkıştırma stratejisini aşağıdaki şekilde belirleyebilirsiniz:

  • Sıkıştırma stratejisi SizeTieredCompactionStrategy olarak ayarlanırsa çıkış aşağıdaki sorguların oranı org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy olacak.
  • Sıkıştırma stratejisi LeveledCompactionStrategy olarak ayarlanırsa aşağıdaki sorgular org.apache.cassandra.db.compaction.LeveledCompactionStrategy olacaktır.

Sıkıştırma stratejisini doğrulamak için aşağıdaki CQL'leri çalıştırın:

  • kms anahtar alanı için sıkıştırma stratejisini doğrulamak üzere CQL'ler:
    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';
  • user_settings anahtar alanı için sıkıştırma stratejisini doğrulamak üzere CQL'ler:
    SELECT compaction_strategy_class from system.schema_columnfamilies where keyspace_name = 'user_settings' and columnfamily_name = 'user_settings';
  • keyvaluemap anahtar alanı için sıkıştırma stratejisini doğrulamak üzere CQL'ler:
    SELECT compaction_strategy_class from system.schema_columnfamilies where keyspace_name = 'keyvaluemap' and columnfamily_name = 'keyvaluemaps_r21';
  • devconnect anahtar alanı için sıkıştırma stratejisini doğrulamak üzere CQL'ler:
    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';
  • counter anahtar alanı için sıkıştırma stratejisini doğrulamak üzere CQL'ler:
    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';
  • cache anahtar alanı için sıkıştırma stratejisini doğrulamak üzere CQL'ler:
    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';
  • ax_custom_report_model anahtar alanı için sıkıştırma stratejisini doğrulamak üzere CQL'ler:
    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';
  • auth anahtar alanı için sıkıştırma stratejisini doğrulamak üzere CQL'ler:
    SELECT compaction_strategy_class from system.schema_columnfamilies where keyspace_name = 'auth' and columnfamily_name = 'totp';
  • audit anahtar alanı için sıkıştırma stratejisini doğrulamak üzere CQL'ler:
    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';
  • apprepo anahtar alanı için sıkıştırma stratejisini doğrulamak üzere CQL'ler:
    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';
  • apimodel anahtar alanı için sıkıştırma stratejisini doğrulamak üzere CQL'ler:
    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';
  • identityzone anahtar alanı için sıkıştırma stratejisini doğrulamak üzere CQL'ler:
    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';
  • dek anahtar alanı için sıkıştırma stratejisini doğrulamak üzere CQL'ler:
    SELECT compaction_strategy_class from system.schema_columnfamilies where keyspace_name = 'dek' and columnfamily_name = 'keys';
  • analytics anahtar alanı için sıkıştırma stratejisini doğrulamak üzere CQL'ler:
    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';