Tablestore
TablestoreIndexStore #
Bases: KVIndexStore
Tablestore Index store.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
tablestore_kvstore
|
TablestoreKVStore
|
Tablestore key-value store |
required |
namespace
|
str
|
namespace for the index store |
'llama_index_index_store_'
|
collection_suffix
|
str
|
suffix for the table name |
'data'
|
Source code in llama-index-integrations/storage/index_store/llama-index-storage-index-store-tablestore/llama_index/storage/index_store/tablestore/base.py
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 |
|
from_config
classmethod
#
from_config(endpoint: Optional[str] = None, instance_name: Optional[str] = None, access_key_id: Optional[str] = None, access_key_secret: Optional[str] = None, **kwargs: Any) -> TablestoreIndexStore
Load a TablestoreIndexStore from config.
Source code in llama-index-integrations/storage/index_store/llama-index-storage-index-store-tablestore/llama_index/storage/index_store/tablestore/base.py
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 |
|
delete_all_index #
delete_all_index()
Delete all index.
Source code in llama-index-integrations/storage/index_store/llama-index-storage-index-store-tablestore/llama_index/storage/index_store/tablestore/base.py
51 52 53 |
|