如何使用天蓝色功能获得它?
我需要延迟在DB2中执行数据插入。
注册流程
步骤1:我输入了DB1表。
步骤2:启动创建DB2-Database创建DB2的过程
步骤3:10分钟后需要在创建的DB2中进行输入。
因为我需要等待10分钟以获得以下数据库部署原因: Not able to open Azure SQL Server DB immidiately after the creation
答案 0 :(得分:2)
一种方法是将消息发送到服务总线队列,其ScheduledEnqueueTimeUtc
属性设置为10分钟。 (docs)
然后有一个由该Service Bus队列触发的Azure Function。 (docs)
答案 1 :(得分:1)
因为我需要等待10分钟以获得以下数据库部署原因:Not able to open Azure SQL Server DB immidiately after the creation
全局配置选项host.json表示functionTimeout
如下:
functionTimeout 表示所有功能的超时持续时间的值。
- 在动态SKU中,有效范围为1秒到10分钟,默认值为5分钟。
- 在付费SKU中没有限制,默认值为空(表示没有超时)。
根据我的理解,如果您的注册过程需要在CreateTenant
下完成,我假设您可以在Step2之后检查数据库的创建状态,然后当数据库联机时,您可以执行Step3。我为这个场景写了一个示例,你可以参考它:
<强> run.csx 强>
#r "System.Configuration"
#r "System.Data"
using System.Net;
using System.Configuration;
using System.Data.SqlClient;
using System.Threading.Tasks;
public static async Task<HttpResponseMessage> Run(HttpRequestMessage req, TraceWriter log)
{
// Get request body
dynamic data = await req.Content.ReadAsAsync<object>();
string dataBase_Name = data?.dataBase_Name;
string source_dataBase_Name = data?.source_dataBase_Name;
log.Info("Begin create the database for the tenant...");
//Create the database
var str = ConfigurationManager.ConnectionStrings["sqldb_connection"].ConnectionString;
using (SqlConnection conn = new SqlConnection(str))
{
conn.Open();
var copyDbSql = $"CREATE DATABASE [{dataBase_Name}] as COPY OF [{source_dataBase_Name}] (SERVICE_OBJECTIVE='S0')";
try
{
using (SqlCommand cmd = new SqlCommand(copyDbSql, conn))
{
//30s by default, https://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqlcommand.commandtimeout.aspx
//cmd.CommandTimeout=0;
cmd.ExecuteNonQuery(); //30s timeout if the server is not responding, you could change it, but I would leave it for default.
log.Info("create database statement executed...");
}
}
catch (Exception e)
{
//exception for timeout and so on
//you need to make sure the database creation has been accepted, you could execute the following sql statement:
//SELECT * FROM sys.dm_database_copies where partner_database=N'{your-database-name}'
log.Info(e.Message);
}
}
log.Info("check the creation processing...");
//If the database creation is accepted, then check the creation status of your database
bool status = false;
using (SqlConnection conn = new SqlConnection(str))
{
conn.Open();
var text = "Select count(*) from master.sys.databases where name=N'" + dataBase_Name + "' and state_desc='ONLINE'";
using (SqlCommand cmd = new SqlCommand(text, conn))
{
do
{
var count = await cmd.ExecuteScalarAsync();
if (count != null && Convert.ToInt32(count) > 0)
status = true;
if (status)
log.Info($"Database [{dataBase_Name}] is online!!!");
else
{
log.Info($"Database [{dataBase_Name}] is creating...");
Task.Delay(TimeSpan.FromSeconds(30)).Wait(); //sleep for 30s
}
} while (!status);
}
}
if (status)
{
//Database is online, do other operations
}
return req.CreateResponse(HttpStatusCode.OK, "");
}
<强>结果:强>
此外,正如Mikhail建议的那样,您可以在执行数据库创建后发送队列消息,然后使用QueueTrigger获取消息并检查数据库的状态并在数据库联机后插入条目以解除您的注册过程
以下是一些有用的教程,您可以参考它们:
答案 2 :(得分:0)