Skip to content

Azure

AzureKVStore #

Bases: BaseKVStore

为Azure Table Storage和Cosmos DB提供了一个键值存储接口。该类支持对Azure Table Storage和Cosmos DB进行同步和异步操作。它支持使用不同凭据连接到服务,并管理表的创建和数据序列化,以符合存储要求。

Source code in llama_index/storage/kvstore/azure/base.py
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
class AzureKVStore(BaseKVStore):
    """为Azure Table Storage和Cosmos DB提供了一个键值存储接口。该类支持对Azure Table Storage和Cosmos DB进行同步和异步操作。它支持使用不同凭据连接到服务,并管理表的创建和数据序列化,以符合存储要求。"""

    partition_key: str

    def __init__(
        self,
        table_client: Any,
        atable_client: Optional[Any] = None,
        service_mode: ServiceMode = ServiceMode.STORAGE,
        partition_key: Optional[str] = None,
        *args: Any,
        **kwargs: Any,
    ) -> None:
        """使用Azure表存储客户端初始化AzureKVStore。"""
        try:
            from azure.data.tables import TableServiceClient
            from azure.data.tables.aio import (
                TableServiceClient as AsyncTableServiceClient,
            )
        except ImportError:
            raise ImportError(IMPORT_ERROR_MSG)

        self.service_mode = service_mode
        self.partition_key = (
            DEFAULT_PARTITION_KEY if partition_key is None else partition_key
        )

        super().__init__(*args, **kwargs)

        self._table_client = cast(TableServiceClient, table_client)
        self._atable_service_client = cast(
            Optional[AsyncTableServiceClient], atable_client
        )

    @classmethod
    def from_connection_string(
        cls,
        connection_string: str,
        service_mode: ServiceMode = ServiceMode.STORAGE,
        partition_key: Optional[str] = None,
        *args: Any,
        **kwargs: Any,
    ) -> "AzureKVStore":
        """使用连接字符串创建AzureKVStore的实例。"""
        try:
            from azure.data.tables import TableServiceClient
            from azure.data.tables.aio import (
                TableServiceClient as AsyncTableServiceClient,
            )
        except ImportError:
            raise ImportError(IMPORT_ERROR_MSG)

        table_service_client = TableServiceClient.from_connection_string(
            connection_string
        )
        atable_service_client = AsyncTableServiceClient.from_connection_string(
            connection_string
        )
        return cls(
            table_service_client,
            atable_service_client,
            service_mode,
            partition_key,
            *args,
            **kwargs,
        )

    @classmethod
    def from_account_and_key(
        cls,
        account_name: str,
        account_key: str,
        endpoint: Optional[str] = None,
        service_mode: ServiceMode = ServiceMode.STORAGE,
        partition_key: Optional[str] = None,
        *args: Any,
        **kwargs: Any,
    ) -> "AzureKVStore":
        """从帐户名称和密钥创建 AzureKVStore 的实例。"""
        try:
            from azure.core.credentials import AzureNamedKeyCredential
        except ImportError:
            raise ImportError(IMPORT_ERROR_MSG)

        if endpoint is None:
            endpoint = f"https://{account_name}.table.core.windows.net"
        credential = AzureNamedKeyCredential(account_name, account_key)
        return cls._from_clients(
            endpoint, credential, service_mode, partition_key, *args, **kwargs
        )

    @classmethod
    def from_sas_token(
        cls,
        endpoint: str,
        sas_token: str,
        service_mode: ServiceMode = ServiceMode.STORAGE,
        partition_key: Optional[str] = None,
        *args: Any,
        **kwargs: Any,
    ) -> "AzureKVStore":
        """使用SAS令牌创建AzureKVStore的实例。"""
        try:
            from azure.core.credentials import AzureSasCredential
        except ImportError:
            raise ImportError(IMPORT_ERROR_MSG)

        credential = AzureSasCredential(sas_token)
        return cls._from_clients(
            endpoint, credential, service_mode, partition_key, *args, **kwargs
        )

    @classmethod
    def from_aad_token(
        cls,
        endpoint: str,
        service_mode: ServiceMode = ServiceMode.STORAGE,
        partition_key: Optional[str] = None,
        *args: Any,
        **kwargs: Any,
    ) -> "AzureKVStore":
        """使用Azure Active Directory(AAD)令牌创建AzureKVStore的实例。
"""
        try:
            from azure.identity import DefaultAzureCredential
        except ImportError:
            raise ImportError(IMPORT_ERROR_MSG)

        credential = DefaultAzureCredential()
        return cls._from_clients(
            endpoint, credential, service_mode, partition_key, *args, **kwargs
        )

    def put(
        self,
        key: str,
        val: dict,
        collection: str = None,
    ) -> None:
        """在指定的表中插入或替换键值对。"""
        try:
            from azure.data.tables import UpdateMode
        except ImportError:
            raise ImportError(IMPORT_ERROR_MSG)

        table_name = (
            DEFAULT_COLLECTION if not collection else sanitize_table_name(collection)
        )
        self._table_client.create_table_if_not_exists(table_name).upsert_entity(
            {
                "PartitionKey": self.partition_key,
                "RowKey": key,
                **serialize(self.service_mode, val),
            },
            UpdateMode.REPLACE,
        )

    async def aput(
        self,
        key: str,
        val: dict,
        collection: str = None,
    ) -> None:
        """在指定的表中插入或替换键值对。"""
        try:
            from azure.data.tables import UpdateMode
        except ImportError:
            raise ImportError(IMPORT_ERROR_MSG)

        if self._atable_service_client is None:
            raise ValueError(MISSING_ASYNC_CLIENT_ERROR_MSG)

        table_name = (
            DEFAULT_COLLECTION if not collection else sanitize_table_name(collection)
        )
        await self._atable_service_client.create_table_if_not_exists(
            table_name
        ).upsert_entity(
            {
                "PartitionKey": self.partition_key,
                "RowKey": key,
                **serialize(self.service_mode, val),
            },
            mode=UpdateMode.REPLACE,
        )

    def put_all(
        self,
        kv_pairs: List[Tuple[str, Optional[dict]]],
        collection: str = None,
        batch_size: int = DEFAULT_BATCH_SIZE,
    ) -> None:
        """
        在指定的表中插入或替换多个键值对。
        """
        try:
            from azure.data.tables import TransactionOperation
        except ImportError:
            raise ImportError(IMPORT_ERROR_MSG)

        table_name = (
            DEFAULT_COLLECTION if not collection else sanitize_table_name(collection)
        )
        table_client = self._table_client.create_table_if_not_exists(table_name)

        entities = []
        for key, val in kv_pairs:
            entity = {
                "PartitionKey": self.partition_key,
                "RowKey": key,
            }

            if val is not None:
                serialized_val = serialize(self.service_mode, val)
                entity.update(serialized_val)

            entities.append(entity)

        for batch in (
            entities[i : i + batch_size] for i in range(0, len(entities), batch_size)
        ):
            table_client.submit_transaction(
                (TransactionOperation.UPSERT, entity) for entity in batch
            )

    async def aput_all(
        self,
        kv_pairs: List[Tuple[str, Optional[dict]]],
        collection: str = None,
        batch_size: int = DEFAULT_BATCH_SIZE,
    ) -> None:
        """
        在指定的表中插入或替换多个键值对。
        """
        try:
            from azure.data.tables import TransactionOperation
        except ImportError:
            raise ImportError(IMPORT_ERROR_MSG)

        if self._atable_service_client is None:
            raise ValueError(MISSING_ASYNC_CLIENT_ERROR_MSG)

        table_name = (
            DEFAULT_COLLECTION if not collection else sanitize_table_name(collection)
        )

        atable_client = await self._atable_service_client.create_table_if_not_exists(
            table_name
        )

        entities = []
        for key, val in kv_pairs:
            entity = {
                "PartitionKey": self.partition_key,
                "RowKey": key,
            }

            if val is not None:
                serialized_val = serialize(self.service_mode, val)
                entity.update(serialized_val)

            entities.append(entity)

        for batch in (
            entities[i : i + batch_size] for i in range(0, len(entities), batch_size)
        ):
            await atable_client.submit_transaction(
                (TransactionOperation.UPSERT, entity) for entity in batch
            )

    def get(
        self,
        key: str,
        collection: str = None,
        select: Optional[Union[str, List[str]]] = None,
    ) -> Optional[dict]:
        """从指定的表中通过键检索数值。"""
        try:
            from azure.core.exceptions import ResourceNotFoundError
        except ImportError:
            raise ImportError(IMPORT_ERROR_MSG)

        table_name = (
            DEFAULT_COLLECTION if not collection else sanitize_table_name(collection)
        )

        table_client = self._table_client.create_table_if_not_exists(table_name)
        try:
            entity = table_client.get_entity(
                partition_key=self.partition_key, row_key=key, select=select
            )
            return deserialize(self.service_mode, entity)
        except ResourceNotFoundError:
            return None

    async def aget(
        self,
        key: str,
        collection: str = None,
        select: Optional[Union[str, List[str]]] = None,
    ) -> Optional[dict]:
        """从指定的表中通过键检索数值。"""
        try:
            from azure.core.exceptions import ResourceNotFoundError
        except ImportError:
            raise ImportError(IMPORT_ERROR_MSG)

        if self._atable_service_client is None:
            raise ValueError(MISSING_ASYNC_CLIENT_ERROR_MSG)

        table_name = (
            DEFAULT_COLLECTION if not collection else sanitize_table_name(collection)
        )
        atable_client = await self._atable_service_client.create_table_if_not_exists(
            table_name
        )
        try:
            entity = await atable_client.get_entity(
                partition_key=self.partition_key, row_key=key, select=select
            )
            return deserialize(self.service_mode, entity)
        except ResourceNotFoundError:
            return None

    def get_all(
        self,
        collection: str = None,
        select: Optional[Union[str, List[str]]] = None,
    ) -> Dict[str, dict]:
        """
        从表中检索指定分区中的所有键值对。
        """
        table_name = (
            DEFAULT_COLLECTION if not collection else sanitize_table_name(collection)
        )
        table_client = self._table_client.create_table_if_not_exists(table_name)
        entities = table_client.list_entities(
            filter=f"PartitionKey eq '{self.partition_key}'",
            select=select,
        )
        return {
            entity["RowKey"]: deserialize(self.service_mode, entity)
            for entity in entities
        }

    async def aget_all(
        self,
        collection: str = None,
        select: Optional[Union[str, List[str]]] = None,
    ) -> Dict[str, dict]:
        """
        从表中检索指定分区中的所有键值对。
        """
        if self._atable_service_client is None:
            raise ValueError(MISSING_ASYNC_CLIENT_ERROR_MSG)
        table_name = (
            DEFAULT_COLLECTION if not collection else sanitize_table_name(collection)
        )
        atable_client = await self._atable_service_client.create_table_if_not_exists(
            table_name
        )
        entities = atable_client.list_entities(
            filter=f"PartitionKey eq '{self.partition_key}'",
            select=select,
        )
        return {
            entity["RowKey"]: deserialize(self.service_mode, entity)
            async for entity in entities
        }

    def delete(
        self,
        key: str,
        collection: str = None,
    ) -> bool:
        """根据提供的键和分区键,从存储中删除特定的键值对。
"""
        table_name = (
            DEFAULT_COLLECTION if not collection else sanitize_table_name(collection)
        )
        table_client = self._table_client.create_table_if_not_exists(table_name)
        table_client.delete_entity(partition_key=self.partition_key, row_key=key)
        return True

    async def adelete(
        self,
        key: str,
        collection: str = None,
    ) -> bool:
        """异步从存储中删除特定的键值对。"""
        if self._atable_service_client is None:
            raise ValueError(MISSING_ASYNC_CLIENT_ERROR_MSG)
        table_name = (
            DEFAULT_COLLECTION if not collection else sanitize_table_name(collection)
        )
        atable_client = await self._atable_service_client.create_table_if_not_exists(
            table_name
        )
        await atable_client.delete_entity(partition_key=self.partition_key, row_key=key)
        return True

    def query(
        self,
        query_filter: str,
        collection: str = None,
        select: Optional[Union[str, List[str]]] = None,
    ) -> Generator[dict, None, None]:
        """从指定的表中通过键检索数值。"""
        try:
            from azure.core.exceptions import ResourceNotFoundError
        except ImportError:
            raise ImportError(IMPORT_ERROR_MSG)

        table_name = (
            DEFAULT_COLLECTION if not collection else sanitize_table_name(collection)
        )

        table_client = self._table_client.create_table_if_not_exists(table_name)
        try:
            entities = table_client.query_entities(
                query_filter=query_filter, select=select
            )

            return (deserialize(self.service_mode, entity) for entity in entities)
        except ResourceNotFoundError:
            return None

    async def aquery(
        self,
        query_filter: str,
        collection: str = None,
        select: Optional[Union[str, List[str]]] = None,
    ) -> Optional[AsyncGenerator[dict, None]]:
        """从指定的表中异步检索键对应的值。"""
        try:
            from azure.core.exceptions import ResourceNotFoundError
        except ImportError:
            raise ImportError(IMPORT_ERROR_MSG)

        if self._atable_service_client is None:
            raise ValueError(MISSING_ASYNC_CLIENT_ERROR_MSG)

        table_name = (
            DEFAULT_COLLECTION if not collection else sanitize_table_name(collection)
        )
        atable_client = await self._atable_service_client.create_table_if_not_exists(
            table_name
        )
        try:
            entities = atable_client.query_entities(
                query_filter=query_filter, select=select
            )

            return (deserialize(self.service_mode, entity) async for entity in entities)

        except ResourceNotFoundError:
            return None

    @classmethod
    def _from_clients(
        cls, endpoint: str, credential: Any, *args: Any, **kwargs: Any
    ) -> "AzureKVStore":
        """创建同步和异步表服务客户端的私有方法。
"""
        try:
            from azure.data.tables import TableServiceClient
            from azure.data.tables.aio import (
                TableServiceClient as AsyncTableServiceClient,
            )
        except ImportError:
            raise ImportError(IMPORT_ERROR_MSG)

        table_client = TableServiceClient(endpoint=endpoint, credential=credential)
        atable_client = AsyncTableServiceClient(
            endpoint=endpoint, credential=credential
        )
        return cls(table_client, atable_client, *args, **kwargs)

from_connection_string classmethod #

from_connection_string(
    connection_string: str,
    service_mode: ServiceMode = ServiceMode.STORAGE,
    partition_key: Optional[str] = None,
    *args: Any,
    **kwargs: Any
) -> AzureKVStore

使用连接字符串创建AzureKVStore的实例。

Source code in llama_index/storage/kvstore/azure/base.py
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
@classmethod
def from_connection_string(
    cls,
    connection_string: str,
    service_mode: ServiceMode = ServiceMode.STORAGE,
    partition_key: Optional[str] = None,
    *args: Any,
    **kwargs: Any,
) -> "AzureKVStore":
    """使用连接字符串创建AzureKVStore的实例。"""
    try:
        from azure.data.tables import TableServiceClient
        from azure.data.tables.aio import (
            TableServiceClient as AsyncTableServiceClient,
        )
    except ImportError:
        raise ImportError(IMPORT_ERROR_MSG)

    table_service_client = TableServiceClient.from_connection_string(
        connection_string
    )
    atable_service_client = AsyncTableServiceClient.from_connection_string(
        connection_string
    )
    return cls(
        table_service_client,
        atable_service_client,
        service_mode,
        partition_key,
        *args,
        **kwargs,
    )

from_account_and_key classmethod #

from_account_and_key(
    account_name: str,
    account_key: str,
    endpoint: Optional[str] = None,
    service_mode: ServiceMode = ServiceMode.STORAGE,
    partition_key: Optional[str] = None,
    *args: Any,
    **kwargs: Any
) -> AzureKVStore

从帐户名称和密钥创建 AzureKVStore 的实例。

Source code in llama_index/storage/kvstore/azure/base.py
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
@classmethod
def from_account_and_key(
    cls,
    account_name: str,
    account_key: str,
    endpoint: Optional[str] = None,
    service_mode: ServiceMode = ServiceMode.STORAGE,
    partition_key: Optional[str] = None,
    *args: Any,
    **kwargs: Any,
) -> "AzureKVStore":
    """从帐户名称和密钥创建 AzureKVStore 的实例。"""
    try:
        from azure.core.credentials import AzureNamedKeyCredential
    except ImportError:
        raise ImportError(IMPORT_ERROR_MSG)

    if endpoint is None:
        endpoint = f"https://{account_name}.table.core.windows.net"
    credential = AzureNamedKeyCredential(account_name, account_key)
    return cls._from_clients(
        endpoint, credential, service_mode, partition_key, *args, **kwargs
    )

from_sas_token classmethod #

from_sas_token(
    endpoint: str,
    sas_token: str,
    service_mode: ServiceMode = ServiceMode.STORAGE,
    partition_key: Optional[str] = None,
    *args: Any,
    **kwargs: Any
) -> AzureKVStore

使用SAS令牌创建AzureKVStore的实例。

Source code in llama_index/storage/kvstore/azure/base.py
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
@classmethod
def from_sas_token(
    cls,
    endpoint: str,
    sas_token: str,
    service_mode: ServiceMode = ServiceMode.STORAGE,
    partition_key: Optional[str] = None,
    *args: Any,
    **kwargs: Any,
) -> "AzureKVStore":
    """使用SAS令牌创建AzureKVStore的实例。"""
    try:
        from azure.core.credentials import AzureSasCredential
    except ImportError:
        raise ImportError(IMPORT_ERROR_MSG)

    credential = AzureSasCredential(sas_token)
    return cls._from_clients(
        endpoint, credential, service_mode, partition_key, *args, **kwargs
    )

from_aad_token classmethod #

from_aad_token(
    endpoint: str,
    service_mode: ServiceMode = ServiceMode.STORAGE,
    partition_key: Optional[str] = None,
    *args: Any,
    **kwargs: Any
) -> AzureKVStore

使用Azure Active Directory(AAD)令牌创建AzureKVStore的实例。

Source code in llama_index/storage/kvstore/azure/base.py
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
    @classmethod
    def from_aad_token(
        cls,
        endpoint: str,
        service_mode: ServiceMode = ServiceMode.STORAGE,
        partition_key: Optional[str] = None,
        *args: Any,
        **kwargs: Any,
    ) -> "AzureKVStore":
        """使用Azure Active Directory(AAD)令牌创建AzureKVStore的实例。
"""
        try:
            from azure.identity import DefaultAzureCredential
        except ImportError:
            raise ImportError(IMPORT_ERROR_MSG)

        credential = DefaultAzureCredential()
        return cls._from_clients(
            endpoint, credential, service_mode, partition_key, *args, **kwargs
        )

put #

put(key: str, val: dict, collection: str = None) -> None

在指定的表中插入或替换键值对。

Source code in llama_index/storage/kvstore/azure/base.py
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
def put(
    self,
    key: str,
    val: dict,
    collection: str = None,
) -> None:
    """在指定的表中插入或替换键值对。"""
    try:
        from azure.data.tables import UpdateMode
    except ImportError:
        raise ImportError(IMPORT_ERROR_MSG)

    table_name = (
        DEFAULT_COLLECTION if not collection else sanitize_table_name(collection)
    )
    self._table_client.create_table_if_not_exists(table_name).upsert_entity(
        {
            "PartitionKey": self.partition_key,
            "RowKey": key,
            **serialize(self.service_mode, val),
        },
        UpdateMode.REPLACE,
    )

aput async #

aput(key: str, val: dict, collection: str = None) -> None

在指定的表中插入或替换键值对。

Source code in llama_index/storage/kvstore/azure/base.py
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
async def aput(
    self,
    key: str,
    val: dict,
    collection: str = None,
) -> None:
    """在指定的表中插入或替换键值对。"""
    try:
        from azure.data.tables import UpdateMode
    except ImportError:
        raise ImportError(IMPORT_ERROR_MSG)

    if self._atable_service_client is None:
        raise ValueError(MISSING_ASYNC_CLIENT_ERROR_MSG)

    table_name = (
        DEFAULT_COLLECTION if not collection else sanitize_table_name(collection)
    )
    await self._atable_service_client.create_table_if_not_exists(
        table_name
    ).upsert_entity(
        {
            "PartitionKey": self.partition_key,
            "RowKey": key,
            **serialize(self.service_mode, val),
        },
        mode=UpdateMode.REPLACE,
    )

put_all #

put_all(
    kv_pairs: List[Tuple[str, Optional[dict]]],
    collection: str = None,
    batch_size: int = DEFAULT_BATCH_SIZE,
) -> None

在指定的表中插入或替换多个键值对。

Source code in llama_index/storage/kvstore/azure/base.py
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
def put_all(
    self,
    kv_pairs: List[Tuple[str, Optional[dict]]],
    collection: str = None,
    batch_size: int = DEFAULT_BATCH_SIZE,
) -> None:
    """
    在指定的表中插入或替换多个键值对。
    """
    try:
        from azure.data.tables import TransactionOperation
    except ImportError:
        raise ImportError(IMPORT_ERROR_MSG)

    table_name = (
        DEFAULT_COLLECTION if not collection else sanitize_table_name(collection)
    )
    table_client = self._table_client.create_table_if_not_exists(table_name)

    entities = []
    for key, val in kv_pairs:
        entity = {
            "PartitionKey": self.partition_key,
            "RowKey": key,
        }

        if val is not None:
            serialized_val = serialize(self.service_mode, val)
            entity.update(serialized_val)

        entities.append(entity)

    for batch in (
        entities[i : i + batch_size] for i in range(0, len(entities), batch_size)
    ):
        table_client.submit_transaction(
            (TransactionOperation.UPSERT, entity) for entity in batch
        )

aput_all async #

aput_all(
    kv_pairs: List[Tuple[str, Optional[dict]]],
    collection: str = None,
    batch_size: int = DEFAULT_BATCH_SIZE,
) -> None

在指定的表中插入或替换多个键值对。

Source code in llama_index/storage/kvstore/azure/base.py
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
async def aput_all(
    self,
    kv_pairs: List[Tuple[str, Optional[dict]]],
    collection: str = None,
    batch_size: int = DEFAULT_BATCH_SIZE,
) -> None:
    """
    在指定的表中插入或替换多个键值对。
    """
    try:
        from azure.data.tables import TransactionOperation
    except ImportError:
        raise ImportError(IMPORT_ERROR_MSG)

    if self._atable_service_client is None:
        raise ValueError(MISSING_ASYNC_CLIENT_ERROR_MSG)

    table_name = (
        DEFAULT_COLLECTION if not collection else sanitize_table_name(collection)
    )

    atable_client = await self._atable_service_client.create_table_if_not_exists(
        table_name
    )

    entities = []
    for key, val in kv_pairs:
        entity = {
            "PartitionKey": self.partition_key,
            "RowKey": key,
        }

        if val is not None:
            serialized_val = serialize(self.service_mode, val)
            entity.update(serialized_val)

        entities.append(entity)

    for batch in (
        entities[i : i + batch_size] for i in range(0, len(entities), batch_size)
    ):
        await atable_client.submit_transaction(
            (TransactionOperation.UPSERT, entity) for entity in batch
        )

get #

get(
    key: str,
    collection: str = None,
    select: Optional[Union[str, List[str]]] = None,
) -> Optional[dict]

从指定的表中通过键检索数值。

Source code in llama_index/storage/kvstore/azure/base.py
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
def get(
    self,
    key: str,
    collection: str = None,
    select: Optional[Union[str, List[str]]] = None,
) -> Optional[dict]:
    """从指定的表中通过键检索数值。"""
    try:
        from azure.core.exceptions import ResourceNotFoundError
    except ImportError:
        raise ImportError(IMPORT_ERROR_MSG)

    table_name = (
        DEFAULT_COLLECTION if not collection else sanitize_table_name(collection)
    )

    table_client = self._table_client.create_table_if_not_exists(table_name)
    try:
        entity = table_client.get_entity(
            partition_key=self.partition_key, row_key=key, select=select
        )
        return deserialize(self.service_mode, entity)
    except ResourceNotFoundError:
        return None

aget async #

aget(
    key: str,
    collection: str = None,
    select: Optional[Union[str, List[str]]] = None,
) -> Optional[dict]

从指定的表中通过键检索数值。

Source code in llama_index/storage/kvstore/azure/base.py
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
async def aget(
    self,
    key: str,
    collection: str = None,
    select: Optional[Union[str, List[str]]] = None,
) -> Optional[dict]:
    """从指定的表中通过键检索数值。"""
    try:
        from azure.core.exceptions import ResourceNotFoundError
    except ImportError:
        raise ImportError(IMPORT_ERROR_MSG)

    if self._atable_service_client is None:
        raise ValueError(MISSING_ASYNC_CLIENT_ERROR_MSG)

    table_name = (
        DEFAULT_COLLECTION if not collection else sanitize_table_name(collection)
    )
    atable_client = await self._atable_service_client.create_table_if_not_exists(
        table_name
    )
    try:
        entity = await atable_client.get_entity(
            partition_key=self.partition_key, row_key=key, select=select
        )
        return deserialize(self.service_mode, entity)
    except ResourceNotFoundError:
        return None

get_all #

get_all(
    collection: str = None,
    select: Optional[Union[str, List[str]]] = None,
) -> Dict[str, dict]

从表中检索指定分区中的所有键值对。

Source code in llama_index/storage/kvstore/azure/base.py
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
def get_all(
    self,
    collection: str = None,
    select: Optional[Union[str, List[str]]] = None,
) -> Dict[str, dict]:
    """
    从表中检索指定分区中的所有键值对。
    """
    table_name = (
        DEFAULT_COLLECTION if not collection else sanitize_table_name(collection)
    )
    table_client = self._table_client.create_table_if_not_exists(table_name)
    entities = table_client.list_entities(
        filter=f"PartitionKey eq '{self.partition_key}'",
        select=select,
    )
    return {
        entity["RowKey"]: deserialize(self.service_mode, entity)
        for entity in entities
    }

aget_all async #

aget_all(
    collection: str = None,
    select: Optional[Union[str, List[str]]] = None,
) -> Dict[str, dict]

从表中检索指定分区中的所有键值对。

Source code in llama_index/storage/kvstore/azure/base.py
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
async def aget_all(
    self,
    collection: str = None,
    select: Optional[Union[str, List[str]]] = None,
) -> Dict[str, dict]:
    """
    从表中检索指定分区中的所有键值对。
    """
    if self._atable_service_client is None:
        raise ValueError(MISSING_ASYNC_CLIENT_ERROR_MSG)
    table_name = (
        DEFAULT_COLLECTION if not collection else sanitize_table_name(collection)
    )
    atable_client = await self._atable_service_client.create_table_if_not_exists(
        table_name
    )
    entities = atable_client.list_entities(
        filter=f"PartitionKey eq '{self.partition_key}'",
        select=select,
    )
    return {
        entity["RowKey"]: deserialize(self.service_mode, entity)
        async for entity in entities
    }

delete #

delete(key: str, collection: str = None) -> bool

根据提供的键和分区键,从存储中删除特定的键值对。

Source code in llama_index/storage/kvstore/azure/base.py
403
404
405
406
407
408
409
410
411
412
413
414
415
    def delete(
        self,
        key: str,
        collection: str = None,
    ) -> bool:
        """根据提供的键和分区键,从存储中删除特定的键值对。
"""
        table_name = (
            DEFAULT_COLLECTION if not collection else sanitize_table_name(collection)
        )
        table_client = self._table_client.create_table_if_not_exists(table_name)
        table_client.delete_entity(partition_key=self.partition_key, row_key=key)
        return True

adelete async #

adelete(key: str, collection: str = None) -> bool

异步从存储中删除特定的键值对。

Source code in llama_index/storage/kvstore/azure/base.py
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
async def adelete(
    self,
    key: str,
    collection: str = None,
) -> bool:
    """异步从存储中删除特定的键值对。"""
    if self._atable_service_client is None:
        raise ValueError(MISSING_ASYNC_CLIENT_ERROR_MSG)
    table_name = (
        DEFAULT_COLLECTION if not collection else sanitize_table_name(collection)
    )
    atable_client = await self._atable_service_client.create_table_if_not_exists(
        table_name
    )
    await atable_client.delete_entity(partition_key=self.partition_key, row_key=key)
    return True

query #

query(
    query_filter: str,
    collection: str = None,
    select: Optional[Union[str, List[str]]] = None,
) -> Generator[dict, None, None]

从指定的表中通过键检索数值。

Source code in llama_index/storage/kvstore/azure/base.py
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
def query(
    self,
    query_filter: str,
    collection: str = None,
    select: Optional[Union[str, List[str]]] = None,
) -> Generator[dict, None, None]:
    """从指定的表中通过键检索数值。"""
    try:
        from azure.core.exceptions import ResourceNotFoundError
    except ImportError:
        raise ImportError(IMPORT_ERROR_MSG)

    table_name = (
        DEFAULT_COLLECTION if not collection else sanitize_table_name(collection)
    )

    table_client = self._table_client.create_table_if_not_exists(table_name)
    try:
        entities = table_client.query_entities(
            query_filter=query_filter, select=select
        )

        return (deserialize(self.service_mode, entity) for entity in entities)
    except ResourceNotFoundError:
        return None

aquery async #

aquery(
    query_filter: str,
    collection: str = None,
    select: Optional[Union[str, List[str]]] = None,
) -> Optional[AsyncGenerator[dict, None]]

从指定的表中异步检索键对应的值。

Source code in llama_index/storage/kvstore/azure/base.py
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
async def aquery(
    self,
    query_filter: str,
    collection: str = None,
    select: Optional[Union[str, List[str]]] = None,
) -> Optional[AsyncGenerator[dict, None]]:
    """从指定的表中异步检索键对应的值。"""
    try:
        from azure.core.exceptions import ResourceNotFoundError
    except ImportError:
        raise ImportError(IMPORT_ERROR_MSG)

    if self._atable_service_client is None:
        raise ValueError(MISSING_ASYNC_CLIENT_ERROR_MSG)

    table_name = (
        DEFAULT_COLLECTION if not collection else sanitize_table_name(collection)
    )
    atable_client = await self._atable_service_client.create_table_if_not_exists(
        table_name
    )
    try:
        entities = atable_client.query_entities(
            query_filter=query_filter, select=select
        )

        return (deserialize(self.service_mode, entity) async for entity in entities)

    except ResourceNotFoundError:
        return None