Insert documents (Go)
Inserts multiple documents into a collection.
Documents are stored in collections. They represent a single row or record of data in Hyper-Converged Database (HCD) databases. For more information, see About collections with the Data API (Go).
If the collection is vector-enabled, pregenerated vector embeddings can be included by using the reserved $vector field for each document.
You can later use the $vector field to perform a vector search.
|
Ready to write code? See the examples for this method to get started. If you are new to the Data API, check out the quickstart. |
Result
Inserts the specified documents and returns an *InsertManyResult struct that includes the IDs of the inserted documents, which you can access with the RawIDs() or DecodeIDs(v any) methods.
The ID value depends on the ID type. For more information, see Document IDs (Go).
Parameters
Use the InsertMany method, which belongs to the Collection type.
Method signature
func (c *Collection) InsertMany(
ctx context.Context,
documents any,
opts ...options.CollectionInsertManyOption
) (*results.InsertManyResult, error)
| Name | Type | Summary |
|---|---|---|
|
|
The context for the operation. |
|
|
A slice of structs or maps, with each struct or map describing a document to insert. A document can contain user-defined and reserved fields. User-defined field names can be any non-empty sequence of Unicode characters, with the following exceptions:
Reserved fields are tied to specific functionality. Include the following reserved fields in your documents, if applicable:
For examples, see Examples. |
|
Optional.
A builder to generate options for this operation.
See Methods of the |
| Method | Summary |
|---|---|
|
Optional.
Whether the insertions must be processed sequentially.
If For an example, see Insert documents and specify insertion behavior. Default: |
|
Optional. The number of documents to include in a single API request. DataStax recommends leaving this parameter unspecified to use the system default. For an example, see Insert documents and specify insertion behavior. Maximum: Default: |
|
Optional. The maximum number of concurrent requests to the API at a given time. If For an example, see Insert documents and specify insertion behavior. Default: |
|
Optional. General API options for this operation, including the timeout. |
Examples
The following examples demonstrate how to insert multiple documents into a collection.
Insert documents
The documents can have different structures.
package main
import (
"context"
"log"
"github.com/datastax/astra-db-go/v2/astra"
"github.com/datastax/astra-db-go/v2/astra/options"
)
func main() {
ctx := context.Background()
// Get an existing collection
client := astra.NewClient(
options.API().SetEnvironment(options.EnvironmentHCD),
)
database := client.Database(
"API_ENDPOINT",
options.API().
SetUsernamePasswordTokenProvider(
"USERNAME",
"PASSWORD",
).
SetKeyspace("KEYSPACE_NAME"),
)
collection := database.Collection("COLLECTION_NAME")
// Insert documents into the collection
_, err := collection.InsertMany(
ctx,
[]map[string]any{
{
"name": "Jane Doe",
"age": 42,
},
{
"nickname": "Bobby",
"color": "blue",
"foods": []string{"carrots", "chocolate"},
},
},
)
if err != nil {
log.Fatal(err)
}
}
Insert documents with vector embeddings
Use the reserved $vector field to insert documents with pregenerated vector embeddings.
All embeddings in the collection should use the same provider, model, and dimensions. Mismatched embeddings can cause inaccurate vector searches.
The $vector field is only supported for vector-enabled collections.
For more information, see Create a collection that can store vector embeddings and $vector in collections (Go).
You may also insert a mix of documents with and without the $vector field.
package main
import (
"context"
"log"
"github.com/datastax/astra-db-go/v2/astra"
"github.com/datastax/astra-db-go/v2/astra/options"
)
func main() {
ctx := context.Background()
// Get an existing collection
client := astra.NewClient(
options.API().SetEnvironment(options.EnvironmentHCD),
)
database := client.Database(
"API_ENDPOINT",
options.API().
SetUsernamePasswordTokenProvider(
"USERNAME",
"PASSWORD",
).
SetKeyspace("KEYSPACE_NAME"),
)
collection := database.Collection("COLLECTION_NAME")
// Insert documents into the collection
_, err := collection.InsertMany(
ctx,
[]map[string]any{
{
"name": "Jane Doe",
"age": 42,
"$vector": []float32{0.08, -0.62, 0.39},
},
{
"nickname": "Bobby",
"$vector": []float32{0.12, 0.53, 0.32},
},
},
)
if err != nil {
log.Fatal(err)
}
}
Insert documents and specify the IDs
The Go client provides the func NewUUID(), func NewUUIDv4(), func NewUUIDv1(), func NewUUIDv1At(t time.Time), func NewUUIDv6(), func NewUUIDv6At(t time.Time), func NewUUIDv7(), func NewUUIDv7At(t time.Time), functions to generate identifiers.
It also provides the datatypes.ParseUUID(s string) and datatypes.ParseObjectId(s string) functions to generate identifiers from a string representation
package main
import (
"context"
"log"
"github.com/datastax/astra-db-go/v2/astra"
"github.com/datastax/astra-db-go/v2/astra/datatypes"
"github.com/datastax/astra-db-go/v2/astra/options"
)
func main() {
ctx := context.Background()
// Get an existing collection
client := astra.NewClient(
options.API().SetEnvironment(options.EnvironmentHCD),
)
database := client.Database(
"API_ENDPOINT",
options.API().
SetUsernamePasswordTokenProvider(
"USERNAME",
"PASSWORD",
).
SetKeyspace("KEYSPACE_NAME"),
)
collection := database.Collection("COLLECTION_NAME")
// Insert documents into the collection
uuid := datatypes.NewUUIDv7()
objId, err := datatypes.ParseObjectId("6672e1cbd7fabb4e5493916f")
if err != nil {
log.Fatal(err)
}
_, err = collection.InsertMany(
ctx,
[]map[string]any{
{
"name": "Melissa",
"_id": objId,
},
{
"name": "Jess",
"_id": uuid,
},
{
"name": "Jane",
"_id": 1,
},
{
"name": "Bobby",
"_id": "b_023",
},
},
)
if err != nil {
log.Fatal(err)
}
}
Insert documents and specify insertion behavior
package main
import (
"context"
"log"
"time"
"github.com/datastax/astra-db-go/v2/astra"
"github.com/datastax/astra-db-go/v2/astra/options"
)
func main() {
ctx := context.Background()
// Get an existing collection
client := astra.NewClient(
options.API().SetEnvironment(options.EnvironmentHCD),
)
database := client.Database(
"API_ENDPOINT",
options.API().
SetUsernamePasswordTokenProvider(
"USERNAME",
"PASSWORD",
).
SetKeyspace("KEYSPACE_NAME"),
)
collection := database.Collection("COLLECTION_NAME")
// Insert documents into the collection
_, err := collection.InsertMany(
ctx,
[]map[string]any{
{
"name": "Jane Doe",
"age": 42,
},
{
"nickname": "Bobby",
"color": "blue",
"foods": []string{"carrots", "chocolate"},
},
},
options.CollectionInsertMany().
SetChunkSize(2).
SetConcurrency(2).
SetOrdered(false).
UpdateAPIOptions(options.API().SetRequestTimeout(3*time.Second)),
)
if err != nil {
log.Fatal(err)
}
}
Insert documents with a binary field
You can insert binary data as a []byte slice or a Base64-encoded string with $binary.
[]byte slices are automatically Base64-encoded.
package main
import (
"context"
"log"
"github.com/datastax/astra-db-go/v2/astra"
"github.com/datastax/astra-db-go/v2/astra/options"
)
func main() {
ctx := context.Background()
// Get an existing collection
client := astra.NewClient(
options.API().SetEnvironment(options.EnvironmentHCD),
)
database := client.Database(
"API_ENDPOINT",
options.API().
SetUsernamePasswordTokenProvider(
"USERNAME",
"PASSWORD",
).
SetKeyspace("KEYSPACE_NAME"),
)
collection := database.Collection("COLLECTION_NAME")
// Insert documents with binary fields
_, err := collection.InsertMany(
ctx,
[]map[string]any{
{
// Using $binary with a base64-encoded string
"exampleBinary": map[string]any{
"$binary": "PfvnbT7peNU/Sfvn",
},
// No need for explicit '$binary' with a byte array
"anotherExampleBinary": []byte{
0x3d,
0xfb,
0xe7,
0x6d,
0x3e,
0xe9,
0x78,
0xd5,
0x3f,
0x49,
0xfb,
0xe7,
},
},
},
)
if err != nil {
log.Fatal(err)
}
}
Insert documents with nested fields
Although you can use dot notation in a filter to find a document, you cannot use dot notation to insert a document. To specify nested fields in the inserted document, you must build a map, list, or set.
package main
import (
"context"
"log"
"github.com/datastax/astra-db-go/v2/astra"
"github.com/datastax/astra-db-go/v2/astra/options"
)
func main() {
ctx := context.Background()
// Get an existing collection
client := astra.NewClient(
options.API().SetEnvironment(options.EnvironmentHCD),
)
database := client.Database(
"API_ENDPOINT",
options.API().
SetUsernamePasswordTokenProvider(
"USERNAME",
"PASSWORD",
).
SetKeyspace("KEYSPACE_NAME"),
)
collection := database.Collection("COLLECTION_NAME")
// Insert documents into the collection
_, err := collection.InsertMany(
ctx,
[]map[string]any{
{
"title": "Hidden Shadows of the Past",
"genres": []string{
"Biography",
"Graphic Novel",
"Dystopian",
"Drama",
},
"metadata": map[string]any{
"isbn": "978-1-905585-40-3",
"language": "French",
"edition": "Anniversary Edition",
},
},
{
"title": "Bake a Dozen",
"genres": []string{
"Biography",
"Fiction",
},
"metadata": map[string]any{
"isbn": "342-2-875587-50-2",
"language": "English",
"edition": "Illustrated Edition",
},
},
},
)
if err != nil {
log.Fatal(err)
}
}
Client reference
For more information, see the client reference.