3

How many concurrent REST Put/Patch calls can an OPA engine support to update the policy/data?

I tried looking through the documentation, but couldn't find any information pertaining to this.

ShrewdCleric
  • 79
  • 1
  • 7

1 Answers1

2

OPA currently supports multiple concurrent policy queries (which are read-only) and 1 concurrent write (e.g., an HTTP PUT on /v1/data). The reads and write can be processed concurrently. When the write is committed, the server will block until outstanding policy queries complete.

tsandall
  • 1,544
  • 8
  • 8