Skip to content

Commit 9e19bd8

Browse files
authored
add base MicrobatchConcurrency capability (#358)
1 parent fb9d085 commit 9e19bd8

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
kind: Features
2+
body: Introduce new Capability for MicrobatchConcurrency support
3+
time: 2024-11-20T11:28:06.258507-05:00
4+
custom:
5+
Author: michelleark
6+
Issue: "359"

dbt/adapters/capability.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ class Capability(str, Enum):
2121
"""Indicates support for getting catalog information including table-level and column-level metadata for a single
2222
relation."""
2323

24+
MicrobatchConcurrency = "MicrobatchConcurrency"
25+
"""Indicates support running the microbatch incremental materialization strategy concurrently across threads."""
26+
2427

2528
class Support(str, Enum):
2629
Unknown = "Unknown"

0 commit comments

Comments
 (0)