تخطَّ إلى المحتوى

Azure Blob Storage

هذا المحتوى غير متوفر بلغتك بعد.

Connect an Azure Blob Storage container to Agent Context. Agent Context reads structured files from your container and makes them queryable with SQL. Each file becomes a table.

  1. Go to Agent Context in the dashboard
  2. Click Add SourceAzure Blob Storage
  3. Enter your storage account, credentials, and the path to the file
  4. Click Test Connection to verify, then Save
ParameterRequiredDescription
Storage AccountYesAzure Storage account name
Access KeyNoStorage account access key (from Azure Portal → Storage account → Access keys)
SAS TokenNoShared access signature scoped to the container
Custom EndpointNoCustom Azure Storage endpoint (for Azure Government, Azure China, or Azurite)
PathYesContainer and file path: container/path/to/file.csv
File FormatNoAuto-detected from extension. Override: csv, tsv, parquet, json, jsonl

Alternatively, you can paste a connection string with all parameters.

Provide either an Access Key or a SAS Token for authentication. For public containers, both can be omitted.

FormatExtensionNotes
Parquet.parquetColumnar format. Best performance for large datasets.
CSV.csvAuto-detects delimiter, headers, and column types.
TSV.tsvTab-separated values.
JSON.jsonJSON array format.
JSONL.jsonlNewline-delimited JSON. One record per line.
IssueFix
Access deniedVerify the access key or SAS token has read access to the container.
No tables foundCheck that the path points to a supported file format.
Container not foundVerify the storage account name and container name in the path.
TimeoutCheck network connectivity. If using a custom endpoint, verify the URL.