github.com/voedger/voedger@v0.0.0-20240520144910-273e84102129/pkg/istorage/consts.go (about)

     1  /*
     2   * Copyright (c) 2020-present unTill Pro, Ltd.
     3   */
     4  
     5  package istorage
     6  
     7  const (
     8  	AppStorageStatus_Pending AppStorageStatus = iota
     9  	AppStorageStatus_Done
    10  )
    11  
    12  const (
    13  	MaxSafeNameLength = 48 - 5 // max Cassandra keypsace name len - 5 symbols for prefix
    14  
    15  	// failed to get unique name often than this value -> ErrAppQNameIsTooUnsafe
    16  	maxMatchedOccurances = 3
    17  )
    18  
    19  var (
    20  	SysMetaSafeName = SafeAppName{name: "sysmeta"}
    21  )