Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion src/Weaviate.Client/BackupClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,6 @@ Models.BackupCreateRequest request
Bucket = bucket,
Path = path,
CPUPercentage = request.Config.CPUPercentage,
ChunkSize = request.Config.ChunkSize,
CompressionLevel = request.Config.CompressionLevel switch
{
Models.BackupCompressionLevel.BestSpeed => Rest.Dto
Expand Down
1 change: 0 additions & 1 deletion src/Weaviate.Client/Models/Backup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,6 @@ public record BackupRestoreRequest(
public record BackupConfig(
string? Endpoint = null,
int? CPUPercentage = null,
int? ChunkSize = null,
BackupCompressionLevel? CompressionLevel = null
);

Expand Down
9 changes: 0 additions & 9 deletions src/Weaviate.Client/Rest/Dto/Models.g.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1908,15 +1908,6 @@ internal partial record BackupConfig

public int? CPUPercentage { get; set; } = 50;

/// <summary>
/// Aimed chunk size, with a minimum of 2MB, default of 128MB, and a maximum of 512MB. The actual chunk size may vary.
/// </summary>

[System.Text.Json.Serialization.JsonPropertyName("ChunkSize")]
[System.ComponentModel.DataAnnotations.Range(2, 512)]

public int? ChunkSize { get; set; } = 128;

/// <summary>
/// compression level used by compression algorithm
/// </summary>
Expand Down
8 changes: 0 additions & 8 deletions src/Weaviate.Client/Rest/Schema/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -1628,14 +1628,6 @@
"maximum": 80,
"x-nullable": false
},
"ChunkSize": {
"description": "Aimed chunk size, with a minimum of 2MB, default of 128MB, and a maximum of 512MB. The actual chunk size may vary.",
"type": "integer",
"default": 128,
"minimum": 2,
"maximum": 512,
"x-nullable": false
},
"CompressionLevel": {
"description": "compression level used by compression algorithm",
"type": "string",
Expand Down