cqlsh

    0熱度

    1回答

    有沒有辦法讓我使用自定義比較函數對cassandra中的聚類鍵進行排序。 我的表定義是類似以下內容: CREATE TABLE temp (user_id text, data_id int, data text, PRIMARY KEY(user_id, data_id)); 這裏,data_id將用作集羣列。我想知道是否可以定義一個自定義比較器來指定寫入磁盤時的順序data_id。 感謝您

    1熱度

    1回答

    使用卡桑德拉2.2.8 瞭解是否有變通適用於cold_reads_to_omit屬性? [email protected]:> ALTER TABLE data.ale_state WITH compaction = {'class': 'SizeTieredCompactionStrategy', 'cold_reads_to_omit': 0.0}; ConfigurationExcepti

    0熱度

    1回答

    爲例如:表EMP(EMP_ID,ENAME,薪水) 輸出:像Oracle中:選擇emp_id,ENAME,工資,從EMP 組COUNT(*)由EMP_ID,ENAME,工資爲了通過薪水 使用cqlsh spark python option可能會有所幫助.. 謝謝!

    1熱度

    2回答

    我有一個測試設置,我想有一個主數據的副本。 我使用卡桑德拉包從datastax,版本3.0.9 我使用CQLSH取數據的轉儲,並恢復對測試設置。 我用 COPY與DELIMITER = '\ T' 和NULL = '空' 和報價= ''「和HEADER =真走的是主數據的副本 我用填充 COPY數據從DELIMITER = '\ T' 和NULL = '空' 和報價= ''「和HEADER =真

    1熱度

    1回答

    我有如下代碼。 from uuid import uuid4 from uuid import uuid1 from cassandra.cqlengine import columns, connection from cassandra.cqlengine.models import Model from cassandra.cqlengine.management import s

    0熱度

    1回答

    我剛剛在cassandra中創建了我的表。我試圖插入數據到表中,並給出了這個錯誤: cqlsh:test> INSERT into qw (id, user, pass, email, phoneNum) VALUES (1, 'scman', '123','[email protected]','123-456-7890'); NoHostAvailable: 我檢查了我的服務器正在運行。

    6熱度

    3回答

    在幾個地方,建議根據我們要對它們執行的查詢來設計我們的卡桑德拉表。在this article by DataScale他們說明這一點: The truth is that having many similar tables with similar data is a good thing in Cassandra. Limit the primary key to exactly what y

    1熱度

    2回答

    我已經能夠得到時間序列表中的最後一行是: SELECT * from myapp.locations WHERE organization_id=1 and user_id=15 and date='2017-2-22' ORDER BY unix_time DESC LIMIT 1; 但是這工作正常,我想知道有關性能和執行ORDER BY的開銷行已經排序,我只是用它得到最後一行,在我的情況下

    1熱度

    1回答

    我想使用Python將Cassandra表導出爲CSV格式。但我做不到。不過,我可以從Python執行'select'語句。我已經使用了以下代碼: from cassandra.cluster import Cluster cluster = Cluster() session = cluster.connect('chandan') ### 'chandan' is the name of

    0熱度

    1回答

    我的基於Cassandra的應用程序需要讀取自上次讀取後更改的行。當它被更改的標記 - 爲此,我們計劃有一個表changed_rows將包含兩列 - ID - 更改的行的ID和 Updated_Time。 什麼是讀取這樣的表的最佳方式,以便它讀取按時間排序的小組行。 例如:如果該表是: ID Updated_Time foo 1000 bar 1200 abc 2000 pqr 2500