Skip to content

Commit 9f293f6

Browse files
wyattwenzellukekim
authored andcommitted
Release Post for v1.11.6
1 parent 7008ea4 commit 9f293f6

1 file changed

Lines changed: 113 additions & 0 deletions

File tree

website/releases/v1.11.6.md

Lines changed: 113 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,113 @@
1+
---
2+
date: 2026-05-06
3+
title: 'Spice v1.11.6 (May 6, 2026)'
4+
type: blog
5+
authors: [krinart]
6+
tags: [release, dynamodb, data-connector, helm]
7+
8+
---
9+
Spice v1.11.6 is now available! 🛠️
10+
11+
Spice v1.11.6 is a patch release improving **DynamoDB** bootstrap ingestion performance and making **Helm chart** health probes configurable.
12+
13+
## What's New in v1.11.6
14+
15+
### DynamoDB: Faster Bootstrap Ingestion
16+
17+
Improved [DynamoDB](https://spiceai.org/docs/components/data-connectors/dynamodb) bootstrap ingestion throughput for `refresh_mode: changes` datasets ([#10616](https://github.com/spiceai/spiceai/pull/10616)). Large tables now maintain a high, steady ingestion rate throughout the entire bootstrap, even for very large tables.
18+
19+
### Helm Chart: Configurable Health Probes
20+
21+
The Spice [Helm chart](https://spiceai.org/docs/deployment/kubernetes) now supports configurable `livenessProbe`, `readinessProbe`, and `startupProbe` settings ([#10696](https://github.com/spiceai/spiceai/pull/10696)), including probe path, port, and timing parameters.
22+
23+
**Example `values.yaml`:**
24+
25+
```yaml
26+
...
27+
livenessProbe:
28+
httpGet:
29+
path: /health
30+
port: 8090
31+
timeoutSeconds: 1
32+
periodSeconds: 10
33+
failureThreshold: 3
34+
35+
readinessProbe:
36+
httpGet:
37+
path: /v1/ready
38+
port: 8090
39+
timeoutSeconds: 5
40+
periodSeconds: 10
41+
failureThreshold: 3
42+
43+
startupProbe:
44+
httpGet:
45+
path: /health
46+
port: 8090
47+
timeoutSeconds: 1
48+
periodSeconds: 10
49+
failureThreshold: 30
50+
```
51+
52+
## Contributors
53+
54+
- [@krinart](https://github.com/krinart)
55+
- [@lukekim](https://github.com/lukekim)
56+
57+
## Breaking Changes
58+
59+
No breaking changes.
60+
61+
## Cookbook Updates
62+
63+
No new cookbook recipes.
64+
65+
The [Spice Cookbook](https://spiceai.org/cookbook) includes 86 recipes to help you get started with Spice quickly and easily.
66+
67+
## Upgrading
68+
69+
To upgrade to v1.11.6, use one of the following methods:
70+
71+
**CLI**:
72+
73+
```console
74+
spice upgrade
75+
```
76+
77+
**Homebrew**:
78+
79+
```console
80+
brew upgrade spiceai/spiceai/spice
81+
```
82+
83+
**Docker**:
84+
85+
Pull the `spiceai/spiceai:1.11.6` image:
86+
87+
```console
88+
docker pull spiceai/spiceai:1.11.6
89+
```
90+
91+
For available tags, see [DockerHub](https://hub.docker.com/r/spiceai/spiceai/tags).
92+
93+
**Helm**:
94+
95+
```console
96+
helm repo update
97+
helm upgrade spiceai spiceai/spiceai --version 1.11.6
98+
```
99+
100+
**AWS Marketplace**:
101+
102+
Spice is available in the [AWS Marketplace](https://aws.amazon.com/marketplace/pp/prodview-jmf6jskjvnq7i).
103+
104+
## What's Changed
105+
106+
### Changelog
107+
108+
- Improve DynamoDB Bootstrap performance by [@krinart](https://github.com/krinart) in [#10616](https://github.com/spiceai/spiceai/pull/10616)
109+
- fix: use InsertOp::Overwrite in DynamoDB bootstrap scan_and_overwrite_accelerator by [@claudespice](https://github.com/claudespice) in [#10639](https://github.com/spiceai/spiceai/pull/10639)
110+
- fix: make Helm chart probes configurable by [@lukekim](https://github.com/lukekim) in [#10696](https://github.com/spiceai/spiceai/pull/10696)
111+
- Migrate secrets to vars by [@krinart](https://github.com/krinart) in [#10354](https://github.com/spiceai/spiceai/pull/10354)
112+
113+
**Full Changelog**: [https://github.com/spiceai/spiceai/compare/v1.11.5...v1.11.6](https://github.com/spiceai/spiceai/compare/v1.11.5...v1.11.6)

0 commit comments

Comments
 (0)