Skip to content

Commit

Permalink
Merge pull request #965 from milvus-io/update-python
Browse files Browse the repository at this point in the history
update docs
  • Loading branch information
AnthonyTsu1984 authored Oct 28, 2024
2 parents 87bd5e6 + 7cccdc1 commit 43929d9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Constructs a **RemoteBulkWriter** object with a set of parameters, such as **sch

```python
from pymilvus import CollectionSchema
from pymilvus.bulk_writer import LocalBulkWriter, BulkFileType
from pymilvus.bulk_writer import RemoteBulkWriter, BulkFileType

writer = RemoteBulkWriter(
schema=CollectionSchema(),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ add_field(

- **max_length** (*int*) -

The maximum length of the field value.
The maximum byte length for strings allowed to be inserted. Note that multibyte characters (e.g., Unicode characters) may occupy more than one byte each, so ensure the byte length of inserted strings does not exceed the specified limit. Value range: [1, 65,535].

This is mandatory for a **DataType.VARCHAR** field.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ add_field(

- **max_length** (*int*) -

The maximum length of the field value.
The maximum byte length for strings allowed to be inserted. Note that multibyte characters (e.g., Unicode characters) may occupy more than one byte each, so ensure the byte length of inserted strings does not exceed the specified limit. Value range: [1, 65,535].

This is mandatory for a **DataType.VARCHAR** field.

Expand Down

0 comments on commit 43929d9

Please sign in to comment.