File tree Expand file tree Collapse file tree 3 files changed +20
-0
lines changed Expand file tree Collapse file tree 3 files changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,13 @@ and this project adheres to
11
11
During our beta rollout, minor updates in the semantic versioning represent
12
12
breaking changes.
13
13
14
+ ## \[ 0.3.40] - 2023-04-16
15
+
16
+ ### Added
17
+
18
+ - Function execution now has a 5 second timeout.
19
+
20
+
14
21
## \[ 0.3.39] - 2023-04-07
15
22
16
23
### Fixed
Original file line number Diff line number Diff line change @@ -109,6 +109,10 @@ The collection `constructor` function lets you **create new records** in your co
109
109
The constructor function must assign ` this.id ` and any additional required fields defined in your collection. An error will be returned if a
110
110
record already exists with the assigned ` id ` is provided, as each record in a collection must have a unique ` id ` .
111
111
112
+ <Note >
113
+ Polybase functions have a 5 second timeout period.
114
+ </Note >
115
+
112
116
113
117
### Fields
114
118
@@ -385,6 +389,10 @@ Map fields are not currently indexed
385
389
386
390
Field values can only be modified using functions.
387
391
392
+ <Note >
393
+ Polybase functions have a 5 second timeout period.
394
+ </Note >
395
+
388
396
``` js
389
397
@public
390
398
collection Account {
Original file line number Diff line number Diff line change @@ -6,6 +6,11 @@ Polybase is currently in alpha. We appreciate your patience while we add
6
6
functionality and address these issues. Please report any issues in
7
7
[ Discord] ( https://discord.gg/DrXkRpCFDX ) .
8
8
9
+ ## Function timeout
10
+
11
+ Polybase functions have a 5 second timeout period.
12
+
13
+
9
14
## Indexes on Collection fields must be explicitly defined
10
15
11
16
You can index fields of type Collection but they must be explicitly defined using:
You can’t perform that action at this time.
0 commit comments