Question introduction: What is Thrift? Where is the official website of Thrift? How to implement cross-language calls between Golang, Java, Python, and PHP through Thrift? 1. What is Thrift Thrift is a scalable cross-language service development software framework. It combines a powerful software stack with a code generation engine to build services. Thrift is fac
Question introduction:
What is Thrift?
Where is the official website of Thrift?
How to implement cross-language calls between Golang, Java, Python, and PHP through Thrift?
1. What is Thrift
Thrift is a scalable cross-language service development software framework. It combines a powerful software stack with a code generation engine to build services.
Thrift was developed by Facebook. It opened source code in April 2007 and entered the Apache incubator in May 2008. Thrift was created to solve the problem of large data transmission and communication between systems in the Facebook system and the need for cross-platform features due to different language environments between systems. Therefore, thrift can support a variety of programming languages, such as: C++, Java, Python, PHP, Ruby, Erlang, Perl, Haskell, C#, Cocoa, Javascript, Node.js, Smalltalk, and OCaml. (The current version 0.9.1 has started Supports golang language) to communicate between multiple different languages. Thrift can be used as a binary high-performance communication middleware, supporting data (object) serialization and multiple types of RPC services.
Thrift allows you to define data types and service interfaces in a simple definition file. Taking as an input file, the compiler generates code used to easily generate RPC client and server communication for seamless cross-programming languages. In short, developers only need to prepare a thrift script and use the thrift code generator (enter a command like gcc) to generate the required development language code.
Tools similar to Thrift include Avro and protocol buffer, but compared to Thrift, they are not as comprehensive and widely used as Thrift.
1) A glance at the internal framework of thrift
According to the overall framework given in the official documentation, Thrift can be divided into 4 layers from bottom to top:
+——- ————————————+
| Server | — Server process scheduling
| (single-threaded, event-driven etc) |
+—————————— ————-+
| Processor | — RPC interface processing function distribution, the implementation of the IDL defined interface will be hooked into it
| (compiler generated) |
+————————————————+
| Protocol | — Protocol
| (JSON, compact etc) |
+——————— ——————+
| Transport | — Network transmission
| (raw TCP, HTTP etc) |
+- ——————————————+
Thrift actually implements the C/S mode. The interface definition file is used to generate server-side and client-side code (can be in different languages) through a code generation tool, thereby achieving cross-language support for the server and client. Users declare their own services in the Thirft description file. These services will be compiled to generate code files in the corresponding language. Then the user can implement the service (the client calls the service and the server provides the service). Among them, protocol (protocol layer, defines the data transmission format, which can be binary or XML, etc.) and transport (transport layer, defines the data transmission method, which can be TCP/IP transmission, memory sharing or file sharing, etc.) are used as runtime libraries.
TJSONProtocol – JSON format
TSimpleJSONProtocol – Provides a JSON write-only protocol, and the generated files are easy to parse through scripting languages.
TDebugProtocol – Use an easy-to-understand and readable text format for debugging
(b) Supported data transmission methods
TSocket – blocking socker
TFramedTransport – in frame units For transmission, used in non-blocking services.
TFileTransport – transfer in the form of files.
TMemoryTransport – uses memory for I/O. The java implementation actually uses a simple ByteArrayOutputStream internally.
TZlibTransport – uses zlib for compression, used in conjunction with other transmission methods. There is currently no java implementation.
(c)Supported service models
TSimpleServer – a simple single-threaded service model, commonly used in…/p>
#View the go server and you can see the data interaction
- root@m1:/home/hadoop/thrift_demo# go run s.go
- thrift server in 0.0.0.0:10086
- –>from client Call: 1408268739272 php client map[a:idoall b:1]
- –>from client Call: 1408268739273 php client map[a:idoall b:2]
- –>from client Call: 1408268739274 php client map[a:idoall b:3]
- –>from client Call: 1408268739275 php client map[a:idoall b:4]
- –>from client Call: 1408268739275 php client map[a:idoall b:5]
- Stduent—>id: 1111 name:student-idoall-php sex:false age:2000
4) Interaction between java client implementation and golang server
#Install maven project management tool
- root@m1:/home/hadoop/thrift_demo# apt-get install maven
#Copy the Thrift package used by java to thrift_demo
- root@m1:/home/hadoop/thrift_demo# cp -r /home/hadoop/thrift-git/tutorial/gen-java .
- root@m1:/home/hadoop/thrift_demo# cd gen-java
- root@m1:/home/hadoop/thrift_demo/gen-java# mkdir -p src/main/java
- root@m1:/home/hadoop/thrift_demo/gen-java# mkdir META-INF
- root@m1:/home/hadoop/thrift_demo/gen-java# mkdir lib
- root@m1:/home/hadoop/thrift_demo/gen-java# cp -r /home/hadoop/thrift-git/lib/java/build/libthrift-0.9.1.jar ./lib/
#Write java client code
- root@m1:/home/hadoop/thrift_demo/gen-java# vi idoall/org/demo/c.java
- package idoall.org.demo;
- import java.util.HashMap;
- import java.util.List;
- import java.util.Map;
- import org.apache.thrift.TException;
- import org.apache.thrift.protocol.TBinaryProtocol;
- import org.apache.thrift.protocol.TProtocol;
- import org.apache.thrift.transport.TFramedTransport;
- import org.apache.thrift.transport.TSocket;
- import org.apache.thrift.transport.TTransport;
- import org.apache.thrift.transport.TTransportException;
- public class c {
- public static final String SERVER_IP = “m1”;
- public static final int SERVER_PORT = 10086;
- public static final int TIMEOUT = 30000;
- /**
- * @param args
- */
- public static void main(String[] args) {
- long startTime=System.currentTimeMillis(); //Get the start time
- TTransport transport = null;
- try {
- transport = new TFramedTransport(new TSocket(SERVER_IP,
- SERVER_PORT, TIMEOUT));
- //The protocol must be consistent with the server
- TProtocol protocol = new TBinaryProtocol(transport);
- idoallThrift.Client client = new idoallThrift.Client(
- protocol);
- transport.open();
- for(int i=1;i<6;i++)
- {
- Map m = new HashMap();
- m.put(“a”, “idoall”);
- m.put(“b”, “org”+i);
- List result = client.CallBack(System.currentTimeMillis(),”java client”,m);
- System.out.println(“JAVAClient Call->” + result);
- }
- Student s = new Student();
- s.sid=1111;
- s.sname=”student-idoall-java”;
- s.ssex = true;
- s.sage = 20000;
- client.put(s);
- long endTime = System.currentTimeMillis();
- System.out.println(“This call took:” + endTime + “-” + startTime + “=” + (endTime – startTime)+”milliseconds”);
- } catch (TTransportException e) {
- e.printStackTrace();
- } catch (TException e) {
- e.printStackTrace();
- } finally {
- if (null != transport) {
- transport.close();
- }
- }
- }
- }
#Configure the MANIFEST file of the jar package
- root@m1:/home/hadoop/thrift_demo/gen-java# vi META-INF/MANIFEST.MF
- Manifest-Version: 1.0
- Main-Class: idoall.org.demo.c
- Class-Path: lib/**.jar
#Make Maven description file pom.xml
- root@m1:/home/hadoop/thrift_demo/gen-java# vi pom.xml
- <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation=”http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd”>
- 4.0.0
- idoall.org.demo
- idoall.org.demo
- 0.0.1-SNAPSHOT
- jar
- idoall.org.demo
- http://maven.apache.org
- UTF-8
- junit
- junit
- 3.8.1
- test
- org.apache.thrift
- libthrift
- 0.9.1
- org.slf4j
- slf4j-log4j12
- 1.5.8
- maven-assembly-plugin
- idoall.org.demo.c
- jar-with-dependencies
- org.apache.maven.plugins
- maven-compiler-plugin
- 1.6
- 1.6
#Use the maven tool to package the relevant dependencies into the target directory of the current directory and generate idoall.org.demo-0.0.1-SNAPSHOT-jar-with-dependencies.jar
- root@m1:/home/hadoop/thrift_demo/gen-java# mv idoall src/main/java/
- root@m1:/home/hadoop/thrift_demo/gen-java# mvn assembly:assembly
- #Only part of the prompt information is given below
- [INFO] ———————————————– —————————-
- [INFO] BUILD SUCCESS
- [INFO] ———————————————– —————————-
- [INFO] Total time: 7.618s
- [INFO] Finished at: Sun Aug 17 09:36:48 CST 2014
- [INFO] Final Memory: 12M/29M
- [INFO] ———————————————– —————————-
#Run go server
- root@m1:/home/hadoop/thrift_demo# go run s.go
- thrift server in 0.0.0.0:10086
#Run the packaged java client
- root@m1:/home/hadoop/thrift_demo/gen-java# java -jar target/idoall.org.demo-0.0.1-SNAPSHOT-jar-with-dependencies.jar
- JAVAClient Call->[key:idoall value:org1]
- JAVAClient Call->[key:idoall value:org2]
- JAVAClient Call->[key:idoall value:org3]
- JAVAClient Call->[key:idoall value:org4]
- JAVAClient Call->[key:idoall value:org5]
- This call took: 1408268973582-1408268973477=105 milliseconds
#View the go server and you can see the data interaction
- root@m1:/home/hadoop/thrift_demo# go run s.go
- thrift server in 0.0.0.0:10086
- –>from client Call: 1408268973547 java client map[a:idoall b:org1]
- –>from client Call: 1408268973568 java client map[b:org2 a:idoall]
- –>from client Call: 1408268973568 java client map[b:org3 a:idoall]
- –>from client Call: 1408268973568 java client map[b:org4 a:idoall]
- –>from client Call: 1408268973569 java client map[b:org5 a:idoall]
- Student—>id: 1111 name:student-idoall-java sex:true age:20000
thrift_demo.tar.gz (1.18 MB, download times: 1)
/modelVersion>
#Use the maven tool to package the relevant dependencies into the target directory of the current directory and generate idoall.org.demo-0.0.1-SNAPSHOT-jar-with-dependencies.jar
- root@m1:/home/hadoop/thrift_demo/gen-java# mv idoall src/main/java/
- root@m1:/home/hadoop/thrift_demo/gen-java# mvn assembly:assembly
- #Only part of the prompt information is given below
- [INFO] ———————————————– —————————-
- [INFO] BUILD SUCCESS
- [INFO] ———————————————– —————————-
- [INFO] Total time: 7.618s
- [INFO] Finished at: Sun Aug 17 09:36:48 CST 2014
- [INFO] Final Memory: 12M/29M
- [INFO] ———————————————– —————————-
#Run go server
- root@m1:/home/hadoop/thrift_demo# go run s.go
- thrift server in 0.0.0.0:10086
#Run the packaged java client
- root@m1:/home/hadoop/thrift_demo/gen-java# java -jar target/idoall.org.demo-0.0.1-SNAPSHOT-jar-with-dependencies.jar
- JAVAClient Call->[key:idoall value:org1]
- JAVAClient Call->[key:idoall value:org2]
- JAVAClient Call->[key:idoall value:org3]
- JAVAClient Call->[key:idoall value:org4]
- JAVAClient Call->[key:idoall value:org5]
- This call took: 1408268973582-1408268973477=105 milliseconds
#View the go server and you can see the data interaction
- root@m1:/home/hadoop/thrift_demo# go run s.go
- thrift server in 0.0.0.0:10086
- –>from client Call: 1408268973547 java client map[a:idoall b:org1]
- –>from client Call: 1408268973568 java client map[b:org2 a:idoall]
- –>from client Call: 1408268973568 java client map[b:org3 a:idoall]
- –>from client Call: 1408268973568 java client map[b:org4 a:idoall]
- –>from client Call: 1408268973569 java client map[b:org5 a:idoall]
- Student—>id: 1111 name:student-idoall-java sex:true age:20000
thrift_demo.tar.gz (1.18 MB, download times: 1)