Best practice in integrating Cloud Recording
To improve application robustness, Agora recommends that you do the following when integrating Cloud Recording RESTful APIs:
Use dual domain names
If you send a Cloud Recording RESTful API request to api.agora.io
and the request fails, retry with the same domain name first. If it fails again, replace the domain name with api.sd-rtn.com
and retry. Best practice is to first try the DNS domain close to your server. See the domain name table for a list of DNS servers.
Agora recommends that you use a backoff strategy, for example, retry after 1, 3, and 6 seconds successively, to avoid exceeding the Queries Per Second (QPS) limits.
Get service status
You use Cloud Recording RESTful APIs to get the status of the recording service.
Best practice is that core apps do not rely on Notifications (NCS). If your apps already rely heavily on the NCS, contact support@agora.io and enable the redundant message notification function. This doubles the received notifications and reduces the probability of message loss. After enabling the message notification function, you need to deduplicate messages based on sid
. Message notification still cannot guarantee a 100% arrival rate.
The initial QPS limit is 10 per App ID when you register. You can estimate the QPS quota your project needs according to your Peak Concurrent Worker (PCW) quota and query frequency. The initial PCW limit is 50 per AppID when you register. If the RESTful API returns QPS limitation error code 429
, or PCW quota limitation error code 406
, then retry, or contact support@agora.io to increase your QPS or PCW quota.
Ensure the recording service starts successfully
Take the following steps to ensure that the recording service starts successfully:
-
Ensure that the
start
request is successful, that is, you receive asid
(recording ID) from the response. If the request fails, take measures according to the HTTP status code:- If the returned HTTP status code is always
40x
, check the parameter values in your request. - If the returned HTTP status code is
50x
, you can retry several times with the same parameters until you receive asid
. Agora recommends that you use a backoff strategy, for example, retry after 3, 6, and 9 seconds successively, to avoid exceeding the QPS limits. If you retry three times and still do not get asid
, retry with a new user ID. - If you receive error code
65
, retry with the same parameters. Agora recommends that you use a backoff strategy, for example, retry after 3 and 6 seconds successively.
- If the returned HTTP status code is always
-
Five seconds after you receive a
sid
, use a backoff strategy to callquery
. Agora recommends that the interval between twoquery
calls is shorter thanmaxIdleTime
, which you set in thestart
call. If thequery
call succeeds, andstatus
inserverResponse
is4
or5
, it means the recording service starts successfully. Otherwise, you can deem the recording service as not having started, or quit halfway after starting.
- Agora recommends that you prepare a backup user ID, which you can use when restarting the recording service, to avoid two identical user IDs kicking each other out of the channel. You can alternate between the backup user ID and the original one.
Monitor service status during a recording
You can periodically call query
to ensure that the recording service is in progress and in a normal state. Apart from query
, you can use the NCS as a complementary method to monitor the service status. See Comparison Between the NCS and the query
Method for detailed comparison between the two methods.
Periodically query service status
If the reliability of the status of a cloud recording is a high priority, Agora strongly recommends using the query
method to periodically query the recording service status. The interval between two calls can be around two minutes. Take the corresponding measure based on the received HTTP status code:
- If the returned HTTP status code is always
40x
, check the parameter values in your request. - If the returned HTTP status code is
404
, and the request parameters are confirmed to be correct, the recording has either not started successfully, or the recording quit after starting. Agora recommends that you use a backoff strategy, for example, retry after 5, 10, and 15 seconds successively. - If the returned HTTP status code is
50x
, thequery
request failed, but it is not clear whether the recording has quit. The50x
error is rare. You can continue to use the backoff strategy (waiting for 5 seconds, 10 seconds, 15 seconds, or 30 seconds) to callquery
.
Redundant message notifications
After enabling the redundant message notification function, you need to deduplicate messages based on sid
. For example, if you need to start recording again after a recording session times out and quits, the process is:
- Your server receives the notifications of event
31
,32
, or11
, which means that the recording service quits normally. - After receiving the notifications, your application calls
acquire
to restart the recording service. - During this period, your server receives notifications of event
31
,32
, or11
again. Ifsid
contained in the above notifications is identical to the previous ones, you can ignore them as redundant notifications. - Call
query
if you need to fully ensure that the recording service successfully starts.
When the recording service enables the high availability mechanism, some notifications may be sent twice. You can distinguish them by the user ID in the notification. If the user ID is the same as the one you use when you start the recording, the notification belongs to the original recording session; otherwise, the notification belongs to the recording session initiated by the high availability mechanism.
Obtain the M3U8 file name
You can obtain the M3U8 file name by two means. One is by splicing according to the file naming rules. The other is by calling the query
method. Agora recommends that you use splicing to obtain the M3U8 file name.
Obtain file name by splicing
In composite recording mode, the format of the M3U8 file name is <sid>_<cname>.m3u8
. Therefore, you can predict the M3U8 file name by splicing. See Naming conventions for details.
Obtain file name via the query
call
The M3U8 file name is generated after the first slice file is generated. Therefore, you should call query
after the first slicing completes. See Slicing for details.
In composite recording mode, call query
15 seconds after the cloud recording starts; in individual recording mode, call query
one minute after the cloud recording starts. If the first query
call fails, you can try again after one minute.
Avoid frequent quits of the recording service
The default value of maxIdleTime
in the start
method is 30 seconds. If the host frequently goes online and offline, a brief maxIdleTime
value causes the recording service to join and exit the channel frequently. For scenarios that require the recording service to be in the channel all the time, it is necessary to increase maxIdleTime
in case the recording quits after a short idle time.
For example, if there is a fixed 5-minute break in each class, you can set maxIdleTime
to 10 minutes to ensure uninterrupted recording of the entire class.
Fault recovery
Network failures and potential risks may occur due to factors such as cloud and network software, infrastructure, and other elements outside of Agora's control. To enhance the user experience, Cloud Recording offers automatic high availability task migration for failure recovery. When a failure is detected, the recording task will be migrated within 90 seconds. During this time, the recording may be disrupted and recorded files may be lost.
To guarantee high availability of important scenes with a large audience, best practice is to:
-
Monitor recording tasks with calls to the query method.
If the call returns a
404
error, create a new recording task with a different UID. -
Use Notifications to Handle notifications for specific events. After starting the recording, if you don't receive event
13
High availability register success
within 10 seconds, create a new recording task with a different UID.
These fault recovery methods may result in multiple recording tasks. You are charged separately for each task. For more information, see Pricing.
Switch the domain name
To ensure high availability of REST services, Agora enables you to switch domain names when you experience service outage due to regional network failures. Take the following steps to set up and switch your domain name:
-
Set the primary domain name based on the location of your service server:
- If the DNS address of the service server is located in a country or region other than mainland China, set the primary domain name to
api.agora.io
. - If the DNS address of the service server is in mainland China, set the primary domain name to
api.sd-rtn.com
.
- If the DNS address of the service server is located in a country or region other than mainland China, set the primary domain name to
-
If your attempt to initiate a RESTful API request using the primary domain fails, set up your retry strategy as follows:
-
Primary domain retry: Retry using the same primary domain name.
-
Alternate domain retry:
- If the current primary domain name is
api.sd-rtn.com
, useapi.agora.io
as the alternate domain name. - If the current primary domain name is
api.agora.io
, useapi.sd-rtn.com
as the alternate domain name.
- If the current primary domain name is
-
Adjacent domain retry: If alternate domain retry fails, retry using the domain name adjacent to the current region.
For example, suppose your business server is located in Europe. You set the primary domain name to
api.agora.io
, and the business server resolves the primary domain name to Germany. Germany is located in central Europe (api-eu-central-1.agora.io
). The domain name table shows that the adjacent area is West Europe. Use theapi-eu-west-1.agora.io
orapi-eu-west-1.sd-rtn.com
domain name to retry.
-
Precautions
Take the following precautions when setting up your retry strategy:
-
To avoid exceeding the QPS limit with retry requests, best practice is to use a back-off strategy. For example, wait 1 second before you retry for the first time, wait 3 seconds before retrying the second time, and wait 6 seconds before retry a third time.
-
If the request fails because of a network problem rather than a DNS domain name resolution problem, skip alternate domain retry and proceed to adjacent domain retry.
-
Before switching to the region domain name, ensure that the REST services you wish to use, for example, cloud recording or channel management, are deployed in that region.
Domain name table
The following table shows the primary and region domain names for various regions.
Primary domain name | Region domain name | Region |
---|---|---|
api.sd-rtn.com | api-us-west-1.sd-rtn.com | Western United States |
api-us-east-1.sd-rtn.com | Eastern United States | |
api-ap-southeast-1.sd-rtn.com | Southeast Asia Pacific | |
api-ap-northeast-1.sd-rtn.com | Northeast Asia Pacific | |
api-eu-west-1.sd-rtn.com | Western Europe | |
api-eu-central-1.sd-rtn.com | Central Europe | |
api-cn-east-1.sd-rtn.com | East China | |
api-cn-north-1.sd-rtn.com | North China | |
api.agora.io | api-us-west-1.agora.io | Western United States |
api-us-east-1.agora.io | Eastern United States | |
api-ap-southeast-1.agora.io | Southeast Asia Pacific | |
api-ap-northeast-1.agora.io | Northeast Asia Pacific | |
api-eu-west-1.agora.io | Western Europe | |
api-eu-central-1.agora.io | Central Europe | |
api-cn-east-1.agora.io | East China | |
api-cn-north-1.agora.io | North China |
Reference
Integration requirements checklist
To ensure reliability of the cloud recording service, refer to the following checklist to confirm that your solution meets the integration requirements:
Serial | Importance | Item | Description |
---|---|---|---|
1 | required | Subscribe to a service | Make sure you have activated the cloud recording service. |
2 | required | request method |
|
3 | required | Get recording resources |
|
4 | required | channel scene | Make sure that the channel scene (channelType ) is consistent with the settings of the Video SDK. |
5 | required | recording parameters |
|
6 | required | Confirm that the recording service has started successfully |
|
7 | required | PCW & QPS limits |
|
8 | optional | NCS Service Activation | Activate the cloud recording callback service and subscribe to the following events as an auxiliary means of monitoring the recording service status:
|
9 | optional | Use dual domain names | If the request fails with the primary domain name api.agora.io , try again with the primary domain name. If it fails again, switch to the secondary domain name api.sd-rtn.com and send the request again. |
10 | optional | timeout logic | Make sure that the maxIdleTime setting is reasonable. The recommended value is 300 seconds. |