Oracle Beehive
  Oracle® Beehive RESTful Web Services API Reference
  Release 2 (2.0.1.7)
  E16658-04

Overview

The System category enables you to retrieve the current Oracle Beehive system configuration.

System Category Programming Tips

Maximum Batch Size

By default, the maximum number of objects you may retrieve with the /read method is 100. If you attempt to retrieve more than this minimum, you will encounter an error message similar to the following:

        <obr:batchSizeExceededFailure xmlns:obr="http://www.oracle.com/beehive/rest">
          <httpStatusCode>400</httpStatusCode>
          <actualNumberOfIds>130</actualNumberOfIds>
          <maxBatchSize>100</maxBatchSize>
        </obr:batchSizeExceededFailure>
        

Retrieve the value of the maximum batch size by calling the /sys/config method.

Change the maximum batch size by running the following beectl commands, where <new value> is the new maximum batch size you want to specify:

        beectl modify_property --component _MauiService:PublicProperties --name MaxBatchSize --value <new value>
        
        beectl activate_configuration
        

Resources