Skip to content

Commit

Permalink
removing min/max, adding maxMessageSizeInKilobytes to queues and topics
Browse files Browse the repository at this point in the history
  • Loading branch information
Ajit Maruti Navasare (MINDTREE LIMITED) committed Jul 16, 2021
1 parent 259766b commit 7d39987
Show file tree
Hide file tree
Showing 11 changed files with 18 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -248,15 +248,11 @@
"intervalInSeconds": {
"format": "int32",
"type": "integer",
"maximum": 900,
"minimum": 60,
"description": "The time window allows you to set the frequency with which the capture to Azure Blobs will happen, value should between 60 to 900 seconds"
},
"sizeLimitInBytes": {
"format": "int32",
"type": "integer",
"maximum": 524288000,
"minimum": 10485760,
"description": "The size window defines the amount of data built up in your Event Hub before an capture operation, value should be between 10485760 to 524288000 bytes"
},
"destination": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -652,8 +652,6 @@
"maximumThroughputUnits": {
"format": "int32",
"type": "integer",
"maximum": 20,
"minimum": 0,
"description": "Upper limit of throughput units when AutoInflate is enabled, value should be within 0 to 20 throughput units. ( '0' if AutoInflateEnabled = true)"
},
"kafkaEnabled": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -318,10 +318,15 @@
"description": "ISO 8601 timespan duration of a peek-lock; that is, the amount of time that the message is locked for other receivers. The maximum value for LockDuration is 5 minutes; the default value is 1 minute."
},
"maxSizeInMegabytes": {
"format": "int32",
"format": "int64",
"type": "integer",
"description": "The maximum size of the queue in megabytes, which is the size of memory allocated for the queue. Default is 1024."
},
"maxMessageSizeInKilobytes": {
"format": "int64",
"type": "integer",
"description": "Maximum size (in KB) of the message payload that can be accepted by the queue. This property is only used in Premium today and default is 1024."
},
"requiresDuplicateDetection": {
"type": "boolean",
"description": "A value indicating if this queue requires duplicate detection."
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -336,9 +336,6 @@
"compatibilityLevel": {
"format": "int32",
"type": "integer",
"default": 20,
"minimum": 20,
"maximum": 20,
"description": "This property is reserved for future use. An integer value showing the compatibility level, currently hard-coded to 20."
},
"requiresPreprocessing": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
"properties": {
"lockDuration": "PT1M",
"maxSizeInMegabytes": 163840,
"maxMessageSizeInKilobytes": 10240,
"requiresDuplicateDetection": false,
"requiresSession": false,
"defaultMessageTimeToLive": "P10675199DT2H48M5.4775807S",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
"properties": {
"lockDuration": "PT1M",
"maxSizeInMegabytes": 163840,
"maxMessageSizeInKilobytes": 10240,
"requiresDuplicateDetection": false,
"requiresSession": false,
"defaultMessageTimeToLive": "P10675199DT2H48M5.4775807S",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
"properties": {
"lockDuration": "PT1M",
"maxSizeInMegabytes": 163840,
"maxMessageSizeInKilobytes": 10240,
"requiresDuplicateDetection": false,
"requiresSession": false,
"defaultMessageTimeToLive": "P10675199DT2H48M5.4775807S",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
"properties": {
"defaultMessageTimeToLive": "P10675199DT2H48M5.4775807S",
"maxSizeInMegabytes": 10240,
"maxMessageSizeInKilobytes": 10240,
"requiresDuplicateDetection": false,
"duplicateDetectionHistoryTimeWindow": "PT10M",
"enableBatchedOperations": true,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
"properties": {
"defaultMessageTimeToLive": "P10675199DT2H48M5.4775807S",
"maxSizeInMegabytes": 10240,
"maxMessageSizeInKilobytes": 10240,
"requiresDuplicateDetection": false,
"duplicateDetectionHistoryTimeWindow": "PT10M",
"enableBatchedOperations": true,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
"properties": {
"defaultMessageTimeToLive": "P10675199DT2H48M5.4775807S",
"maxSizeInMegabytes": 10240,
"maxMessageSizeInKilobytes": 10240,
"requiresDuplicateDetection": false,
"duplicateDetectionHistoryTimeWindow": "PT10M",
"enableBatchedOperations": true,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -318,10 +318,15 @@
"description": "ISO 8601 Default message timespan to live value. This is the duration after which the message expires, starting from when the message is sent to Service Bus. This is the default value used when TimeToLive is not set on a message itself."
},
"maxSizeInMegabytes": {
"format": "int32",
"format": "int64",
"type": "integer",
"description": "Maximum size of the topic in megabytes, which is the size of the memory allocated for the topic. Default is 1024."
},
"maxMessageSizeInKilobytes": {
"format": "int64",
"type": "integer",
"description": "Maximum size (in KB) of the message payload that can be accepted by the topic. This property is only used in Premium today and default is 1024."
},
"requiresDuplicateDetection": {
"type": "boolean",
"description": "Value indicating if this topic requires duplicate detection."
Expand Down

0 comments on commit 7d39987

Please sign in to comment.