-
Notifications
You must be signed in to change notification settings - Fork 172
/
delta-sharing-protocl-api-description.yml
744 lines (716 loc) · 29.3 KB
/
delta-sharing-protocl-api-description.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
---
openapi: "3.0.2"
info:
description: |
The Delta Sharing protocol is still very early in its development.
version: "0.2"
title: Delta Sharing Protocol
contact:
email: ""
license:
name: "AGPL v3.0"
url: "https://www.gnu.org/licenses/agpl-3.0.en.html"
servers:
- url: 'http://localhost:8000/api/v1'
description: Local dev server (APIv1)
- url: 'https://sharing.delta.io/delta-sharing/'
description: 'Demo Delta Sharing server'
tags:
- name: 'shares'
description: Share discovery APIs
- name: 'schemas'
description: Schema discovery APIs
- name: 'tables'
description: Table query and inspection APIs
- name: 'official'
description: APIs which are part of published official document
- name: 'proposed'
description: APIs which are part proposed and may or may not be part of official
paths:
'/shares':
get:
operationId: 'ListShares'
summary: 'List the shares accessible to the recipient'
description: |
Without any query parameters the request will return the first page
of "shares" available to the authenticated recipient
tags:
- shares
- official
parameters: &pagination
- in: query
name: maxResults
required: false
description: |
The maximum number of results to be returned in a single page. If
the number of potential results exceeds the number of maximum
results, the response will contain a `nextpageToken` which can be
used in subsequent requests.
example: '30'
schema:
type: number
format: int32
default: 500
- in: query
name: pageToken
required: false
description: Optionally provided page token for requesting a subsequent page of results
schema:
type: string
responses:
'400':
$ref: "#/components/responses/400"
'401':
$ref: "#/components/responses/401"
'403':
$ref: "#/components/responses/403"
'404':
$ref: "#/components/responses/404"
'500':
$ref: "#/components/responses/500"
'200':
description: |
The user could successfully list the shares
content:
application/json:
schema:
$ref: '#/components/schemas/ListShareResponse'
'/shares/{share}':
get:
operationId: 'GetShare'
summary: 'get the metadata of a share'
tags:
- shares
- official
parameters:
- in: path
name: share
required: true
description: 'Named share'
schema:
type: string
responses:
'400':
$ref: "#/components/responses/400"
'401':
$ref: "#/components/responses/401"
'403':
$ref: "#/components/responses/403"
'404':
$ref: "#/components/responses/404"
'500':
$ref: "#/components/responses/500"
'200':
description: 'The share''s metadata was successfully returned'
content:
application/json:
schema:
"$ref": "#/components/schemas/Share"
'/shares/{share}/schemas':
get:
operationId: 'ListSchemas'
summary: 'List the schemas in a share'
tags:
- shares
- official
parameters:
- in: path
name: share
required: true
description: 'Named share to list the schemas'
schema:
type: string
- in: query
name: maxResults
required: false
description: |
The maximum number of results to be returned in a single page. If
the number of potential results exceeds the number of maximum
results, the response will contain a `nextpageToken` which can be
used in subsequent requests.
example: '30'
schema:
type: number
format: int32
default: 500
- in: query
name: pageToken
required: false
description: Optionally provided page token for requesting a subsequent page of results
schema:
type: string
responses:
'400':
$ref: "#/components/responses/400"
'401':
$ref: "#/components/responses/401"
'403':
$ref: "#/components/responses/403"
'404':
$ref: "#/components/responses/404"
'500':
$ref: "#/components/responses/500"
'200':
description: |
The user could successfully list the schemas in the given share
content:
application/json:
schema:
$ref: '#/components/schemas/ListSchemasResponse'
'/shares/{share}/schemas/{schema}/tables':
get:
operationId: 'ListTables'
summary: "List the tables in a given share's schema"
tags:
- schemas
- official
parameters:
- in: path
name: share
required: true
description: 'Named share for finding the named schema'
schema:
type: string
- in: path
name: schema
required: true
description: 'Named schema for listing tables'
schema:
type: string
- in: query
name: maxResults
required: false
description: |
The maximum number of results to be returned in a single page. If
the number of potential results exceeds the number of maximum
results, the response will contain a `nextpageToken` which can be
used in subsequent requests.
example: '30'
schema:
type: number
format: int32
default: 500
- in: query
name: pageToken
required: false
description: Optionally provided page token for requesting a subsequent page of results
schema:
type: string
responses:
'400':
$ref: "#/components/responses/400"
'401':
$ref: "#/components/responses/401"
'403':
$ref: "#/components/responses/403"
'404':
$ref: "#/components/responses/404"
'500':
$ref: "#/components/responses/500"
'200':
description: |
The user could successfully list the tables for the given schema in the given share
content:
application/json:
schema:
$ref: '#/components/schemas/ListTablesResponse'
'/shares/{share}/all-tables':
get:
operationId: 'ListALLTables'
summary: "List the tables under all schemas in a share"
tags:
- shares
- official
parameters:
- in: path
name: share
required: true
description: 'Named share for finding the named schema'
schema:
type: string
- in: query
name: maxResults
required: false
description: |
The maximum number of results to be returned in a single page. If
the number of potential results exceeds the number of maximum
results, the response will contain a `nextpageToken` which can be
used in subsequent requests.
example: '30'
schema:
type: number
format: int32
default: 500
- in: query
name: pageToken
required: false
description: Optionally provided page token for requesting a subsequent page of results
schema:
type: string
responses:
'400':
$ref: "#/components/responses/400"
'401':
$ref: "#/components/responses/401"
'403':
$ref: "#/components/responses/403"
'404':
$ref: "#/components/responses/404"
'500':
$ref: "#/components/responses/500"
'200':
description: |
The user could successfully list the tables under all schemas in a share
content:
application/json:
schema:
$ref: '#/components/schemas/ListTablesResponse'
'/shares/{share}/schemas/{schema}/tables/{table}/version':
get:
operationId: 'GetTableVersion'
summary: 'Return the table version'
description: |
This is the API for clients to get a table version without any other
extra information. The server usually can implement this API
effectively. If a client caches information about a shared table
locally, it can store the table version and use this cheap API to
quickly check whether their cache is stale and they should re-fetch the
data.
tags:
- tables
- official
parameters: &tableParameters
- in: path
name: share
required: true
description: 'Named share for finding the named schema'
schema:
type: string
- in: path
name: schema
required: true
description: 'Named schema for finding the named table'
schema:
type: string
- in: path
name: table
required: true
description: 'Named table'
schema:
type: string
- in: query
name: startingTimestamp
required: false
description: 'Starting Timestamp'
schema:
type: string
responses:
'400':
$ref: "#/components/responses/400"
'401':
$ref: "#/components/responses/401"
'403':
$ref: "#/components/responses/403"
'404':
$ref: "#/components/responses/404"
'500':
$ref: "#/components/responses/500"
'200':
description: 'The table was found and has a version'
headers:
Delta-Table-Version:
description: 'A long value which represents the current table version'
schema:
type: integer
'/shares/{share}/schemas/{schema}/tables/{table}/metadata':
get:
operationId: 'GetTableMetadata'
summary: 'Query the metadata and schema of the given table'
tags:
- tables
- official
parameters: *tableParameters
responses:
'400':
$ref: "#/components/responses/400"
'401':
$ref: "#/components/responses/401"
'403':
$ref: "#/components/responses/403"
'404':
$ref: "#/components/responses/404"
'500':
$ref: "#/components/responses/500"
'200':
description: |
A sequence of JSON strings containing the table protocol
and then the table metadata
headers:
Delta-Table-Version:
description: 'A long value which represents the current table version'
schema:
type: integer
content:
'application/x-ndjson':
schema:
$ref: '#/components/schemas/TableMetadataResponse'
'/shares/{share}/schemas/{schema}/tables/{table}/query':
post:
operationId: 'QueryTable'
summary: 'Query the table'
tags:
- tables
- official
parameters: *tableParameters
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/QueryRequest'
responses:
'400':
$ref: "#/components/responses/400"
'401':
$ref: "#/components/responses/401"
'403':
$ref: "#/components/responses/403"
'404':
$ref: "#/components/responses/404"
'500':
$ref: "#/components/responses/500"
'200':
description: |
A sequence of JSON strings containing the table protocol, metadata,
and then a number of lines for each file in the table.
headers:
Delta-Table-Version:
description: 'A long value which represents the current table version'
schema:
type: integer
content:
'application/x-ndjson':
schema:
$ref: '#/components/schemas/TableQueryResponse'
'/shares/{share}/schemas/{schema}/tables/{table}/changes':
get:
operationId: 'GetTableChanges'
summary: 'Read Change Data Feed from a Table'
description: |
This is the API for clients to read change data feed from a table.
The API supports a start parameter and and an end parameter. The
start/end parameter can either be a version or a timestamp. The start
parameter must be provided. If the end parameter is not provided, the
API will use the latest table version for it. The parameter range is
inclusive in the query. You can specify a version as a Long or a
timestamp as a string in the Timestamp Format.
The change data feed represents row-level changes between versions of
a Delta table. It records change data for UPDATE, DELETE, and MERGE operations.
If you leverage the connectors provided by this library to read change data feed,
it results in three metadata columns that identify the type of change event, in
addition to the data columns:
_change_type (type: String): There are four values: insert, update_preimage, update_postimage, delete. preimage is the value before the udpate, postimage is the value after the update.
_commit_version (type: Long): The table version containing the change.
_commit_timestamp (type: Long): The unix timestamp associated when the commit of the change was created, in milliseconds.
tags:
- tables
- official
parameters:
- in: path
name: share
required: true
description: 'Named share for finding the named schema'
schema:
type: string
- in: path
name: schema
required: true
description: 'Named schema for finding the named table'
schema:
type: string
- in: path
name: table
required: true
description: 'Named table'
schema:
type: string
- in: query
name: startingTimestamp
required: false
description: 'The starting timestamp of the query, a string in the Timestamp Format, which will be converted to a version created greater or equal to this timestamp. '
schema:
type: string
- in: query
name: startingVersion
required: false
description: 'The starting version of the query, inclusive.'
schema:
type: integer
- in: query
name: endingVersion
required: false
description: 'The ending version of the query, inclusive.'
schema:
type: integer
- in: query
name: endingTimestamp
required: false
description: 'The starting timestamp of the query, a string in the Timestamp Format, which will be converted to a version created greater or equal to this timestamp. '
schema:
type: string
- in: query
name: includeHistoricalMetadata
required: false
description: 'If set to true, return the historical metadata if seen in the delta log. This is for the streaming client to check if the table schema is still read compatible.'
schema:
type: boolean
responses:
'400':
$ref: "#/components/responses/400"
'401':
$ref: "#/components/responses/401"
'403':
$ref: "#/components/responses/403"
'404':
$ref: "#/components/responses/404"
'500':
$ref: "#/components/responses/500"
'200':
description: 'This is the API for clients to read change data feed from a table.'
content:
'application/x-ndjson':
schema:
$ref: '#/components/schemas/ChangeDataFeedResponse'
components:
securitySchemes:
BearerAuth:
type: http
scheme: bearer
schemas:
Ops:
type: string
enum:
- column
- literal
- isNull
- equal
- lessThan
- lessThanOrEqual
- greaterThan
- greaterThanOrEqual
- and
- or
- not
description: |
Op Op Type Description
column Leaf Represents a column. A column op has two fields: name and valueType. The column's value will be cast to the specified valueType during comparisons.
literal Leaf Represents a literal or fixed value. A literal op has two fields: value and valueType. The literal's value will be cast to the specified valueType during comparisons.
isNull Unary Represents a null check on a column op. This op should have only one child, the column op.
equal Binary Represents an equality ("=") check. This op should have two children, and both should be leaf ops.
lessThan Binary Represents a less than ("<") check. This op should have two children, and both should be leaf ops.
lessThanOrEqual Binary Represents a less than or equal ("<=") check. This op should have two children, and both should be leaf ops.
greaterThan Binary Represents a greater than (">") check. This op should have two children, and both should be leaf ops.
greaterThanOrEqual Binary Represents a greater than (">=") check. This op should have two children, and both should be leaf ops.
and Nary Represents a logical and operation amongst its children. This op should have at least two children.
or Nary Represents a logical or operation amongst its children. This op should have at least two children.
not Unary Represents a logical not check. This op should have once child.
The supported value types:
ValueType Description
"bool" Represents an Boolean type.
"int" Represents an Integer type.
"long" Represents a Long type.
"string" Represents a String type.
"date" Represents a Date type in "yyyy-mm-dd" format.
ListShareResponse:
type: object
required:
- nextPageToken
properties:
nextPageToken: &nextPageToken
type: string
items:
type: array
items:
$ref: '#/components/schemas/Share'
Share:
type: object
required:
- name
properties:
name: &shareName
type: string
example: 'vaccine_share'
id:
type: string
example: 'edacc4a7-6600-4fbb-85f3-a62a5ce6761f'
ListSchemasResponse:
type: object
required:
- nextPageToken
properties:
nextPageToken: *nextPageToken
items:
type: array
items:
$ref: '#/components/schemas/Schema'
Schema:
type: object
properties:
name: &schemaName
type: string
example: 'acme_vaccine_data'
share: *shareName
ListTablesResponse:
type: object
required:
- nextPageToken
properties:
nextPageToken: *nextPageToken
items:
type: array
items:
$ref: '#/components/schemas/Table'
Table:
type: object
properties:
name: &tableName
type: string
example: 'vaccine_ingredients'
share: *shareName
schema: *schemaName
TableMetadataResponse:
type: string
example: |
{"protocol":{"minReaderVersion":1}}
{"metaData":{"id":"f8d5c169-3d01-4ca3-ad9e-7dc3355aedb2","format":{"provider":"parquet"},"schemaString":"{\"type\":\"struct\",\"fields\":[{\"name\":\"eventTime\",\"type\":\"timestamp\",\"nullable\":true,\"metadata\":{}},{\"name\":\"date\",\"type\":\"date\",\"nullable\":true,\"metadata\":{}}]}","partitionColumns":["date"]}}
QueryRequest:
type: object
properties:
predicateHints:
type: array
description: |
a list of SQL boolean expressions using a restricted subset of SQL, in a JSON array.
When it’s present, the server will use the provided predicates as a hint to apply the
SQL predicates on the returned files. Filtering files based on the SQL predicates
is BEST EFFORT. The server may return files that don’t satisfy the predicates.
If the server fails to parse one of the SQL predicates, or fails to evaluate it, the
server may skip it. Predicate expressions are conjunctive (AND-ed together).
When it’s absent, the server will return all of files in the table.
This will be deprecated once all the client and server implementation move to using jsonPredicateHints below.
example:
- 'col = 123'
items:
type: string
jsonPredicateHints:
type: object
description: |
query predicates on partition columns specified using a structured JSON format.
When it’s present, the server will try to use the predicates to filter table's
files, which could boost query performance.
As with predicateHints, this filtering is BEST EFFORT. The server may return files
that don’t satisfy the predicates.
If the server encounters any errors during predicate processing (for example, invalid
syntax or non existing columns), it will skip filtering and return all the files.
When it’s absent, the server will return all the files in the table.
properties:
op:
$ref: '#/components/schemas/Ops'
children:
type: string
name:
type: string
value:
type: string
valueType:
type: string
limitHint:
type: integer
example: 1000
description: |
It’s a hint from the client to tell the server how many rows the
client plans to read. The server can use this hint to return only
some files by using the stats in the Delta transaction logs. For
example, when running SELECT * FROM table LIMIT 1000, the client
can send limit=1000 to the server
version:
type: integer
description: |
an optional version number. If set, will return files as of the
specified version of the table. This is only supported on tables
with history sharing enabled.
example: 1005
timestamp:
type: string
example: yyyy-[m]m-[d]d hh:mm:ss[.f...]
description: |
an optional timestamp string in the Timestamp Format,. If set, will
return files as of the table version corresponding to the specified
timestamp. This is only supported on tables with history sharing enabled.
startingVersion:
type: integer
example: 1000
description: |
an optional version number. If set, will return all data change files
since startingVersion, inclusive, including historical metadata if seen
in the delta log.
endingVersion:
type: integer
example: 1000
description: |
an optional version number, only used if startingVersion is set. If set,
the server can use it as a hint to avoid returning data change files after
endingVersion. This is not enforcement. Hence, when sending the endingVersion
parameter, the client should still handle the case that it may receive files
after endingVersion.
TableQueryResponse:
type: string
example: |
{"protocol":{"minReaderVersion":1}}
{"metaData":{"id":"f8d5c169-3d01-4ca3-ad9e-7dc3355aedb2","format":{"provider":"parquet"},"schemaString":"{\"type\":\"struct\",\"fields\":[{\"name\":\"eventTime\",\"type\":\"timestamp\",\"nullable\":true,\"metadata\":{}},{\"name\":\"date\",\"type\":\"date\",\"nullable\":true,\"metadata\":{}}]}","partitionColumns":["date"]}}
{"file":{"url":"https://<s3-bucket-name>.s3.us-west-2.amazonaws.com/delta-exchange-test/table2/date%3D2021-04-28/part-00000-8b0086f2-7b27-4935-ac5a-8ed6215a6640.c000.snappy.parquet?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Date=20210501T010516Z&X-Amz-SignedHeaders=host&X-Amz-Expires=900&X-Amz-Credential=AKIAISZRDL4Q4Q7AIONA%2F20210501%2Fus-west-2%2Fs3%2Faws4_request&X-Amz-Signature=97b6762cfd8e4d7e94b9d707eff3faf266974f6e7030095c1d4a66350cfd892e","id":"8b0086f2-7b27-4935-ac5a-8ed6215a6640","partitionValues":{"date":"2021-04-28"},"size":573,"stats":"{\"numRecords\":1,\"minValues\":{\"eventTime\":\"2021-04-28T23:33:57.955Z\"},\"maxValues\":{\"eventTime\":\"2021-04-28T23:33:57.955Z\"},\"nullCount\":{\"eventTime\":0}}"}}
{"file":{"url":"https://<s3-bucket-name>.s3.us-west-2.amazonaws.com/delta-exchange-test/table2/date%3D2021-04-28/part-00000-591723a8-6a27-4240-a90e-57426f4736d2.c000.snappy.parquet?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Date=20210501T010516Z&X-Amz-SignedHeaders=host&X-Amz-Expires=899&X-Amz-Credential=AKIAISZRDL4Q4Q7AIONA%2F20210501%2Fus-west-2%2Fs3%2Faws4_request&X-Amz-Signature=0f7acecba5df7652457164533a58004936586186c56425d9d53c52db574f6b62","id":"591723a8-6a27-4240-a90e-57426f4736d2","partitionValues":{"date":"2021-04-28"},"size":573,"stats":"{\"numRecords\":1,\"minValues\":{\"eventTime\":\"2021-04-28T23:33:48.719Z\"},\"maxValues\":{\"eventTime\":\"2021-04-28T23:33:48.719Z\"},\"nullCount\":{\"eventTime\":0}}"}}
ChangeDataFeedResponse:
type: string
example: |
{"protocol": {"minReaderVersion": 1}}
{"metaData": {"id": "f8d5c169-3d01-4ca3-ad9e-7dc3355aedb2","format": {"provider": "parquet"},"schemaString": "{\"type\":\"struct\",\"fields\":[{\"name\":\"eventTime\",\"type\":\"timestamp\",\"nullable\":true,\"metadata\":{}},{\"name\":\"date\",\"type\":\"date\",\"nullable\":true,\"metadata\":{}}]}","partitionColumns": ["date"],"configuration": {"enableChangeDataFeed": "true"}}}{"add": {"url": "https://<s3-bucket-name>.s3.us-west-2.amazonaws.com/delta-exchange-test/table_cdf/date%3D2021-04-28/part-00000-8b0086f2-7b27-4935-ac5a-8ed6215a6640.c000.snappy.parquet?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Date=20210501T010516Z&X-Amz-SignedHeaders=host&X-Amz-Expires=900&X-Amz-Credential=AKIAISZRDL4Q4Q7AIONA%2F20210501%2Fus-west-2%2Fs3%2Faws4_request&X-Amz-Signature=97b6762cfd8e4d7e94b9d707eff3faf266974f6e7030095c1d4a66350cfd892e","id": "8b0086f2-7b27-4935-ac5a-8ed6215a6640","partitionValues": {"date": "2021-04-28"},"size":573,"stats": "{\"numRecords\":1,\"minValues\":{\"eventTime\":\"2021-04-28T23:33:57.955Z\"},\"maxValues\":{\"eventTime\":\"2021-04-28T23:33:57.955Z\"},\"nullCount\":{\"eventTime\":0}}","timestamp": 1652140000000,"version": 0}}
{"cdf": {"url": "https://<s3-bucket-name>.s3.us-west-2.amazonaws.com/delta-exchange-test/table_cdf/_change_data/date%3D2021-04-28/part-00000-591723a8-6a27-4240-a90e-57426f4736d2.c000.snappy.parquet?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Date=20210501T010516Z&X-Amz-SignedHeaders=host&X-Amz-Expires=899&X-Amz-Credential=AKIAISZRDL4Q4Q7AIONA%2F20210501%2Fus-west-2%2Fs3%2Faws4_request&X-Amz-Signature=0f7acecba5df7652457164533a58004936586186c56425d9d53c52db574f6b62","id": "591723a8-6a27-4240-a90e-57426f4736d2","partitionValues": {"date": "2021-04-28"},"size": 689,"timestamp": 1652141000000,"version": 1}}
{"remove": {"url": "https://<s3-bucket-name>.s3.us-west-2.amazonaws.com/delta-exchange-test/table_cdf/date%3D2021-04-28/part-00000-8b0086f2-7b27-4935-ac5a-8ed6215a6640.c000.snappy.parquet?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Date=20210501T010516Z&X-Amz-SignedHeaders=host&X-Amz-Expires=900&X-Amz-Credential=AKIAISZRDL4Q4Q7AIONA%2F20210501%2Fus-west-2%2Fs3%2Faws4_request&X-Amz-Signature=97b6762cfd8e4d7e94b9d707eff3faf266974f6e7030095c1d4a66350cfd892e","id": "8b0086f2-7b27-4935-ac5a-8ed6215a6640","partitionValues": {"date": "2021-04-28"},"size": 573,"timestamp": 1652142000000,"version": 2}}
CommonErrorResponse:
type: object
properties:
errorCode:
type: string
message:
type: string
responses:
400:
description: The request is malformed
content:
application/json:
schema:
$ref: '#/components/schemas/CommonErrorResponse'
401:
description: The request is unauthenticated. The bearer token is missing or incorrect
content:
application/json:
schema:
$ref: '#/components/schemas/CommonErrorResponse'
403:
description: The request is forbidden from being fulfilled
content:
application/json:
schema:
$ref: '#/components/schemas/CommonErrorResponse'
404:
description: The specified resource was not found
content:
application/json:
schema:
$ref: '#/components/schemas/CommonErrorResponse'
500:
description: The request is not handled correctly due to a server error
content:
application/json:
schema:
$ref: '#/components/schemas/CommonErrorResponse'