Skip to content

Commit 8a6892e

Browse files
authored
Merge pull request #118 from josephschorr/bulk-change
Remove transaction metadata from bulk imports
2 parents 53e6b10 + 7c77065 commit 8a6892e

File tree

2 files changed

+2
-12
lines changed

2 files changed

+2
-12
lines changed

authzed/api/v1/experimental_service.proto

-6
Original file line numberDiff line numberDiff line change
@@ -228,12 +228,6 @@ message BulkCheckPermissionResponseItem {
228228
message BulkImportRelationshipsRequest {
229229
repeated Relationship relationships = 1
230230
[ (validate.rules).repeated .items.message.required = true ];
231-
232-
233-
// optional_transaction_metadata is an optional field that can be used to store metadata about the transaction.
234-
// If specified, this metadata will be supplied in the WatchResponse for the creations associated with
235-
// this transaction.
236-
google.protobuf.Struct optional_transaction_metadata = 2 [ (validate.rules).message.required = false ];
237231
}
238232

239233
// BulkImportRelationshipsResponse is returned on successful completion of the

authzed/api/v1/permission_service.proto

+2-6
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,8 @@ service PermissionsService {
105105
// performance, the caller should attempt to write relationships in as close
106106
// to relationship sort order as possible: (resource.object_type,
107107
// resource.object_id, relation, subject.object.object_type,
108-
// subject.object.object_id, subject.optional_relation)
108+
// subject.object.object_id, subject.optional_relation). All relationships
109+
// written are done so under a single transaction.
109110
rpc ImportBulkRelationships(stream ImportBulkRelationshipsRequest)
110111
returns (ImportBulkRelationshipsResponse) {
111112
option (google.api.http) = {
@@ -673,11 +674,6 @@ message ResolvedSubject {
673674
message ImportBulkRelationshipsRequest {
674675
repeated Relationship relationships = 1
675676
[ (validate.rules).repeated .items.message.required = true ];
676-
677-
// optional_transaction_metadata is an optional field that can be used to store metadata about the transaction.
678-
// If specified, this metadata will be supplied in the WatchResponse for the creations associated with
679-
// this transaction.
680-
google.protobuf.Struct optional_transaction_metadata = 2 [ (validate.rules).message.required = false ];
681677
}
682678

683679
// ImportBulkRelationshipsResponse is returned on successful completion of the

0 commit comments

Comments
 (0)