github.com/anth0d/nomad@v0.0.0-20221214183521-ae3a0a2cad06/nomad/structs/uuid.go (about) 1 package structs 2 3 // MaxUUIDsPerWriteRequest is the maximum number of UUIDs that can be included 4 // within a single write request. This is to ensure that the Raft message does 5 // not become too large. The resulting value corresponds to 0.25MB of IDs or 6 // 7282 UUID strings. 7 var MaxUUIDsPerWriteRequest = (1024 * 256) / 36