全部產品
Search
文件中心

:虛擬列

更新時間:Jul 03, 2024

使用虛擬列功能時,您可以通過修改多元索引Schema或者建立多元索引來實現新欄位新資料類型的查詢功能,而無需修改Table Store的儲存結構及資料。

前提條件

  • 已初始化Client。具體操作,請參見初始化OTSClient

  • 已建立資料表,並且資料表的最大版本數(max Versions)必須為1,資料生命週期(Time to Live)必須滿足如下條件中的任意一個。具體操作,請參見建立資料表

    • 資料表的資料生命週期為-1(資料永不到期)。

    • 資料表的資料生命週期不為-1時,資料表為禁止更新狀態(即是否允許更新)。

注意事項

  • 虛擬列支援不同類型到字串類型的相互轉換,轉換規則請參見下表。
    資料表中欄位類型虛擬欄欄位類型
    StringKeyword(含數組)
    StringText(含數組)
    StringLong(含數組)
    StringDouble(含數組)
    StringGeo-point(含數組)
    LongKeyword
    LongText
    DoubleKeyword
    DoubleText
  • 虛擬列目前僅支援用在查詢語句中,不能用在ColumnsToGet返回列值,如果需要返回列值,可以指定返回該虛擬列的原始列。

參數

更多資訊,請參見建立多元索引

樣本

  1. 建立多元索引時指定虛擬列。

    以下樣本用於建立一個多元索引,多元索引包含Col_Keyword和Col_Long兩列,同時建立虛擬列Col_Keyword_Virtual_Long和Col_Long_Virtual_Keyword。虛擬列Col_Keyword_Virtual_Long映射為資料表中Col_Keyword列,虛擬列Col_Long_Virtual_Keyword映射為資料表中Col_Long列。

    private static void createSearchIndex(SyncClient client) {
        CreateSearchIndexRequest request = new CreateSearchIndexRequest();
        //設定資料表名稱。
        request.setTableName("<TABLE_NAME>"); 
        //設定多元索引名稱。
        request.setIndexName("<SEARCH_INDEX_NAME>"); 
        IndexSchema indexSchema = new IndexSchema();
        indexSchema.setFieldSchemas(Arrays.asList(
            //設定欄位名和類型。
            new FieldSchema("Col_Keyword", FieldType.KEYWORD), 
            //設定欄位名和類型。
            new FieldSchema("Col_Keyword_Virtual_Long", FieldType.LONG) 
                 //設定欄位是否為虛擬列。
                .setVirtualField(true) 
                 //虛擬列對應的資料表中欄位。
                .setSourceFieldName("Col_Keyword"), 
            new FieldSchema("Col_Long", FieldType.LONG),
            new FieldSchema("Col_Long_Virtual_Keyword", FieldType.KEYWORD)
                .setVirtualField(true)
                .setSourceFieldName("Col_Long")));
        request.setIndexSchema(indexSchema);
        //調用client建立多元索引。
        client.createSearchIndex(request); 
    }
  2. 使用虛擬列查詢資料。

    以下樣本用於查詢表中Col_Long_Virtual_Keyword列的值能夠匹配"1000"的資料,返回匹配到的總行數和一些匹配成功的行。

    private static void query(SyncClient client) {
        SearchQuery searchQuery = new SearchQuery();
        TermsQuery termsQuery = new TermsQuery(); //設定查詢類型為TermsQuery。
        termsQuery.setFieldName("Col_Long_Virtual_Keyword"); //設定要匹配的欄位。
        termsQuery.addTerm(ColumnValue.fromString("1000")); //設定要匹配的值。
        searchQuery.setQuery(termsQuery);
        searchQuery.setGetTotalCount(true); //設定返回匹配的總行數。
        SearchRequest searchRequest = new SearchRequest("<TABLE_NAME>", "<SEARCH_INDEX_NAME>", searchQuery);
        SearchRequest.ColumnsToGet columnsToGet = new SearchRequest.ColumnsToGet();
        columnsToGet.setReturnAll(true); //設定返回所有列,不支援返回虛擬列。
        searchRequest.setColumnsToGet(columnsToGet);
    
        SearchResponse resp = client.search(searchRequest);
        System.out.println("TotalCount: " + resp.getTotalCount()); //匹配到的總行數,非返回行數。
        System.out.println("Row: " + resp.getRows());
    }

相關文檔