mirror of
https://github.com/tdlight-team/tdlight-telegram-bot-api.git
synced 2024-11-19 10:39:26 +01:00
Fail queries immediately if there are too many active queries already.
This commit is contained in:
parent
27bb4831f6
commit
834caf09bf
@ -287,6 +287,11 @@ bool Client::init_methods() {
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool Client::is_local_method(Slice method) {
|
||||||
|
return method == "close" || method == "logout" || method == "getme" || method == "getupdates" ||
|
||||||
|
method == "setwebhook" || method == "deletewebhook" || method == "getwebhookinfo";
|
||||||
|
}
|
||||||
|
|
||||||
class Client::JsonFile final : public Jsonable {
|
class Client::JsonFile final : public Jsonable {
|
||||||
public:
|
public:
|
||||||
JsonFile(const td_api::file *file, const Client *client, bool with_path)
|
JsonFile(const td_api::file *file, const Client *client, bool with_path)
|
||||||
@ -3895,6 +3900,17 @@ void Client::start_up() {
|
|||||||
void Client::send(PromisedQueryPtr query) {
|
void Client::send(PromisedQueryPtr query) {
|
||||||
if (!query->is_internal()) {
|
if (!query->is_internal()) {
|
||||||
query->set_stat_actor(stat_actor_);
|
query->set_stat_actor(stat_actor_);
|
||||||
|
if (!parameters_->local_mode_ && !is_local_method(query->method())) {
|
||||||
|
const BotStatActor *stat = stat_actor_.get_actor_unsafe();
|
||||||
|
if (stat->get_active_request_count() > 10000) {
|
||||||
|
LOG(INFO) << "Fail a query, because there are too many active queries: " << *query;
|
||||||
|
return query->set_retry_after_error(60);
|
||||||
|
}
|
||||||
|
if (stat->get_active_file_upload_bytes() > (static_cast<int64>(1) << 33) && !query->files().empty()) {
|
||||||
|
LOG(INFO) << "Fail a query, because there are too many active file uploads: " << *query;
|
||||||
|
return query->set_retry_after_error(60);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
cmd_queue_.emplace(std::move(query));
|
cmd_queue_.emplace(std::move(query));
|
||||||
loop();
|
loop();
|
||||||
@ -10457,7 +10473,7 @@ td::int32 Client::as_client_message_id(int64 message_id) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
td::int64 Client::get_supergroup_chat_id(int64 supergroup_id) {
|
td::int64 Client::get_supergroup_chat_id(int64 supergroup_id) {
|
||||||
return static_cast<td::int64>(-1000000000000ll) - supergroup_id;
|
return static_cast<int64>(-1000000000000ll) - supergroup_id;
|
||||||
}
|
}
|
||||||
|
|
||||||
td::int64 Client::get_basic_group_chat_id(int64 basic_group_id) {
|
td::int64 Client::get_basic_group_chat_id(int64 basic_group_id) {
|
||||||
|
@ -471,6 +471,8 @@ class Client final : public WebhookActor::Callback {
|
|||||||
|
|
||||||
static bool init_methods();
|
static bool init_methods();
|
||||||
|
|
||||||
|
static bool is_local_method(Slice method);
|
||||||
|
|
||||||
void on_cmd(PromisedQueryPtr query);
|
void on_cmd(PromisedQueryPtr query);
|
||||||
|
|
||||||
Status process_get_me_query(PromisedQueryPtr &query);
|
Status process_get_me_query(PromisedQueryPtr &query);
|
||||||
|
Loading…
Reference in New Issue
Block a user