-
Lightweight and easy to use. There are two ways to support IDL and manually write protocols. Analog function call, more in line with the RPC remote call logic, simple, transparent.
-
Easy to change, easy to use, existing code can be used directly
-
The data format supports downward compatibility and uses the flatbuffer protocol, with better compatibility and faster speed.
-
Support multi valued return feature, support timeout mechanism, analog grpc, thrift, Dubbo fast several times or even dozens of times.
-
Support snappy compression algorithm, compression speed, superior performance.
-
Support pipeline data compression, dynamic data compression, request data compression, flexible use of a wide range of scenarios.
- environment: Linux, UNIX, windows
- transport protocol: flatbuffer for dlang (https://github.com/huntlabs/google-flatbuffers)
- Compression protocol: snappy(Install dependency Libraries:https://github.com/google/snappy)
- development language: dlang
- compiler: dub
- github: https://github.com/huntlabs/kiss-rpc
- developer notes: [Development Notes] (http://e222f542.wiz03.com/share/s/3y8Ll23R1kuW2E2Bv211ZNaJ3xapdS0TaQCk2ieqTL2UN24T)
- wiki: https://github.com/huntlabs/kiss-rpc/wiki
- 简书介绍:http: //www.jianshu.com/p/68d5bed1887b
- IDL protocol preparation and use of instructions: [IDL protocol detailed description] (http://e222f542.wiz03.com/share/s/3y8Ll23R1kuW2E2Bv211ZNaJ02PboQ0P_kXV2XlO0z3W9I69)
- install flatbuffer for dlang (https://github.com/huntlabs/google-flatbuffers)
- install google snappy
- dub Compiler
-
data compression: using Google snappy compression technology to support forced compression and dynamic compression, flexible compression methods can be applied to a variety of scenarios.
-
dynamic compression technique: when data packets larger than 200 bytes or set the threshold, compressed packet, otherwise not compressed packets, use and help to improve the performance of space, response will be based on whether the request needs dynamic data compression.
-
single request compression: compression of a single request request, and response compression based on the way data packets are pressed.
-
pipeline compression: packet compression can be performed on the specified pipeline.
-
show debug logs info(add dub config, versions:["RpcDebug"])
-
close all logs info(add dub config, versions:["UltraHigh"])
-
write logs to file, call tunction:setOutputLogPath("./info.log")
-
client test: "IDL-Example/client/"
-
server test: "IDL-Example/server/"
-
idl protocol: "IDL-Example/kiss-idl"
-
100W QPS synchronous testing takes time: 20 seconds, average 5w QPS per second
-
100W QPS asynchronous testing takes 5 seconds, with an average of 20W QPS per second
-
1000 concurrent, 100wQPS asynchronous testing takes time: 5 seconds, average QPS:20W per second
-
server test code:"test/server"
-
client test code: "test/client"
1. IDL is the kiss RPC interface code generation protocol, the preparation of IDL protocol, you can generate the corresponding server and client common RPC code call interface.
2. Standardize the unity, interface unification, simple to use.
1. [idl file path] [output file name] [output file path,default current dir] E."/root/home/kiss-rpc.idl" kiss-rpc "/root/home/rpc/"
2. module name output, module path is ".": E."/root/home/kiss-rpc.idl" module.test.kiss-rpc "/root/home/rpc/"
3. At the same time output client and server file code, only need to copy to the corresponding client and server directory.
4. Message type names must be uppercase first, type members must be marked with serial numbers, otherwise they cannot be compiled
5. The function parameter list can only be one, or else it cannot be compiled
IDL | D lang |
---|---|
bool | bool |
byte | byte |
ubyte | ubyte |
short | short |
ushort | ushort |
int | int |
uint | uint |
long | long |
ulong | ulong |
float | float |
double | double |
char | char |
string | string |
[] | DynamicArrayList |
@message | struct |
1. IDL code usage, server-side as long as the server directory to fill the service file function interface code.
2. The client only needs to call the function of the interface of the service file under the client directory.
//kiss rpc idl demo
@message:UserInfo
{
string phone:3;
string userName:1;
int age:2;
double wiget:4;
string[] addressList:5;
}
@message:Contacts
{
int number:1;
UserInfo[] userInfoList:2;
}
@message:User
{
string name:1;
}
@service:AddressBook //class interface
{
Contacts getContactList(User userName);
}
IDL generates both synchronous and asynchronous interfaces, and asynchronous interfaces are all parameter callbacks.
- import hander files
import kissrpc.IDL.kissidlService;
import kissrpc.IDL.kissidlMessage;
import kissrpc.Unit;
- Client synchronous invocation
try{
auto c = addressBookService.getContactList(name);
foreach(v; c.userInfoList)
{
writefln("sync number:%s, name:%s, phone:%s, age:%s", c.number, v.name, v.widget, v.age);
}
}catch(Exception e)
{
writeln(e.msg);
}
- Client asynchronous call
try{
addressBookService.getContactList(name, delegate(Contacts c){
foreach(v; c.userInfoList)
{
writefln("async number:%s, name:%s, phone:%s, age:%s", c.number, v.name, v.widget, v.age);
}
}
);
}catch(Exception e)
{
writeln(e.msg);
}
- Bind socket mode compression
RpcClient.setSocketCompress(RPC_PACKAGE_COMPRESS_TYPE.RPCT_DYNAMIC); //The dynamic compression mode defaults to more than 200 bytes of compression
RpcClient.setSocketCompress(RPC_PACKAGE_COMPRESS_TYPE.RPCT_COMPRESS); //forced compression method
- Single request compression, synchronous call, forced compression
//use compress demo
try{
auto c = addressBookService.getContactList(name, RPC_PACKAGE_COMPRESS_TYPE.RPCT_COMPRESS);
foreach(v; c.userInfoList)
{
writefln("compress test: sync number:%s, name:%s, phone:%s, age:%s", c.number, v.name, v.widget, v.age);
}
}catch(Exception e)
{
writeln(e.msg);
}
- Single request compression, asynchronous call, 100 bytes of dynamic compression, request timeout 30 seconds
//use dynamic compress and set request timeout
try{
RPC_PACKAGE_COMPRESS_DYNAMIC_VALUE = 100; //reset compress dynamaic value 100 byte, default:200 byte
addressBookService.getContactList(name, delegate(Contacts c){
foreach(v; c.userInfoList)
{
writefln("dynamic compress test: sync number:%s, name:%s, phone:%s, age:%s", c.number, v.name, v.widget, v.age);
}
}, RPC_PACKAGE_COMPRESS_TYPE.RPCT_DYNAMIC, 30
);
}catch(Exception e)
{
writeln(e.msg);
}
Server service file code rpc_address_book_service(file path:IDL-Example/server/source/IDL/kissidlInterface.d):
- RpcAddressBookService.getContactList
Contacts getContactList(AccountName accountName){
Contacts contactsRet;
//input service code for Contacts class
contactsRet.number = accountName.count;
for(int i = 0; i < 10; i++)
{
UserInfo userInfo;
userInfo.age = 18+i;
userInfo.name = accountName.name ~ to!string(i);
userInfo.widget = 120+i;
contactsRet.userInfoList ~= userInfo;
}
return contactsRet;
}