Home > Back-end >  Code farmer common problem descriptions
Code farmer common problem descriptions

Time:09-23

GRPC always appear the following error in the process of call

 IO. GRPC. StatusRuntimeException: DEADLINE_EXCEEDED: deadline exceeded after 2999873835 ns. 

Solution:
Extend withDeadlineAfter time can solve,
 PredictReply reply=blockingStub. WithDeadlineAfter (30, TimeUnit. SECONDS) predict (request); 

CodePudding user response:

This two days to replace the disk C, as a result, all kinds of problems frequently to I lot of private account can put the company internal gitlab project submitted to the company, the tem is amazing, the results found in this file is my lot account and password, directly modifying a company gitlab account and password, with respect to ok!

CodePudding user response:

Building a es pseudo cluster should have an afternoon, finally is to extract the installation package, and then solved configuration, because has been run before es folder directly copy the other two examples, it is said that this is to establish the cause of the failure cause cluster, then proved by not empty, you say this, what happened?

CodePudding user response:

solve the problem of abnormal password strategy validation rules
 mysql> The CREATE USER canal IDENTIFIED BY 'canal; 
ERROR 1819 (HY000) : Your password does not the satisfy the current policy requirements
Mysql> SHOW VARIABLES LIKE 'validate_password %';
+ -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + -- -- -- -- -- -- -- --
Value | | Variable_name |
+ -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + -- -- -- -- -- -- -- --
| validate_password_check_user_name | OFF |
| validate_password_dictionary_file | |
8 | | validate_password_length |
| | validate_password_mixed_case_count | 1
| | validate_password_number_count | 1
| validate_password_policy | MEDIUM |
| | validate_password_special_char_count | 1
+ -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + -- -- -- -- -- -- -- --
7 rows in the set (0.00 SEC)

Mysql> The set global validate_password_policy=LOW;
Query OK, 0 rows affected (0.00 SEC)

Mysql> The set global validate_password_length=5;
Query OK, 0 rows affected (0.00 SEC)

Mysql>
  • Related