object: Skip APE check for certain request roles #1039

Merged
fyrchik merged 1 commits from aarifullin/frostfs-node:fix/check_ape_role into master 2024-03-12 18:05:48 +00:00
Collaborator
  • Skip APE check if a role is Container.
  • Skip APE check if a role is IR and methods are get-like.
* Skip APE check if a role is Container. * Skip APE check if a role is IR and methods are get-like.
aarifullin added the
bug
label 2024-03-12 12:12:28 +00:00
aarifullin requested review from storage-core-committers 2024-03-12 12:12:37 +00:00
aarifullin requested review from storage-core-developers 2024-03-12 12:12:45 +00:00
fyrchik reviewed 2024-03-12 12:17:40 +00:00
@ -63,0 +67,4 @@
return nil
case nativeschema.PropertyValueContainerRoleIR:
switch prm.Method {
case nativeschema.MethodPutObject, nativeschema.MethodDeleteObject:

I would rather make return nil on explicit enumeration of read methods: this way we won't accidentally allow writing something when new method is added.

I would rather make `return nil` on explicit enumeration of read methods: this way we won't accidentally allow writing something when new method is added.
Poster
Collaborator

Sure. Fixed

Sure. Fixed
fyrchik marked this conversation as resolved
fyrchik reviewed 2024-03-12 12:17:41 +00:00
@ -60,6 +61,20 @@ func (c *checkerImpl) CheckAPE(ctx context.Context, prm Prm) error {
return fmt.Errorf("failed to create ape request: %w", err)
}
// APE check is ignored for some inter-node requests.

Can we do this check before newAPERequest call? It seems we do not use the result.

Can we do this check before `newAPERequest` call? It seems we do not use the result.
Poster
Collaborator

Moved this checks at the top. Also, I replaced checking prm.Role by if-else statements instead switch

Moved this checks at the top. Also, I replaced checking `prm.Role` by if-else statements instead `switch`
fyrchik marked this conversation as resolved
aarifullin force-pushed fix/check_ape_role from 9803717515 to e593b7ecaa 2024-03-12 12:54:36 +00:00 Compare
aarifullin force-pushed fix/check_ape_role from e593b7ecaa to 6e3b36be38 2024-03-12 12:57:48 +00:00 Compare
aarifullin force-pushed fix/check_ape_role from 6e3b36be38 to 5c252c9193 2024-03-12 13:15:34 +00:00 Compare
fyrchik approved these changes 2024-03-12 13:39:45 +00:00

Please, check it on dev-env, should be ok to PUT some objects and see no errors in logs.

Please, check it on dev-env, should be ok to PUT some objects and see no errors in logs.
Poster
Collaborator

Please, check it on dev-env, should be ok to PUT some objects and see no errors in logs.

I checked. Also, I created a container with 4 nodes and was checking how is object policer dealing the replication - it's OK, no errors

> Please, check it on dev-env, should be ok to PUT some objects and see no errors in logs. I checked. Also, I created a container with 4 nodes and was checking how is object policer dealing the replication - it's OK, no errors
aarifullin requested review from fyrchik 2024-03-12 14:36:56 +00:00
fyrchik merged commit 5c252c9193 into master 2024-03-12 18:05:48 +00:00
Sign in to join this conversation.
No reviewers
TrueCloudLab/storage-core-developers
No Milestone
No Assignees
2 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: TrueCloudLab/frostfs-node#1039
There is no content yet.