blob: a5af5aba78bf6455a2e1e300e27e41472a716ec8 [file] [log] [blame] [view]
Roger Meier5aaa0212010-11-04 12:20:05 +00001Apache Thrift
Roger Meier16fcad02014-03-16 21:12:11 +01002=============
Marc Slemko9de5a5c2006-08-23 22:34:00 +00003
James E. King IIIc7fe3f42018-06-27 11:01:16 -04004Introduction
5============
6
James E. King III6ba58e92019-05-13 07:21:21 -04007Thrift is a lightweight, language-independent software stack for
8point-to-point RPC implementation.
9Thrift provides clean abstractions and implementations for data transport,
10data serialization, and application level processing. The code generation
11system takes a simple definition language as input and generates code
12across programming languages that uses the abstracted stack to build
13interoperable RPC clients and servers.
James E. King IIIc7fe3f42018-06-27 11:01:16 -040014
15![Apache Thrift Layered Architecture](doc/images/thrift-layers.png)
16
17Thrift makes it easy for programs written in different programming
18languages to share data and call remote procedures. With support
James E. King III6ba58e92019-05-13 07:21:21 -040019for [28 programming languages](LANGUAGES.md), chances are Thrift
James E. King IIIc7fe3f42018-06-27 11:01:16 -040020supports the languages that you currently use.
21
22Thrift is specifically designed to support non-atomic version changes
James E. King III6ba58e92019-05-13 07:21:21 -040023across client and server code. This allows you to upgrade your
Salah Ghanim24ca2102020-06-24 12:21:10 +020024server while still being able to service older clients; or have newer
James E. King III6ba58e92019-05-13 07:21:21 -040025clients issue requests to older servers. An excellent community-provided
26write-up about thrift and compatibility when versioning an API can be
27found in the [Thrift Missing Guide](https://diwakergupta.github.io/thrift-missing-guide/#_versioning_compatibility).
James E. King IIIc7fe3f42018-06-27 11:01:16 -040028
29For more details on Thrift's design and implementation, see the Thrift
30whitepaper included in this distribution, or at the README.md file
31in your particular subdirectory of interest.
32
33Status
34======
35
36| Branch | Travis | Appveyor | Coverity Scan | codecov.io | Website |
37| :----- | :----- | :------- | :------------ | :--------- | :------ |
James E. King III6ba58e92019-05-13 07:21:21 -040038| [`master`](https://github.com/apache/thrift/tree/master) | [![Build Status](https://travis-ci.org/apache/thrift.svg?branch=master)](https://travis-ci.org/apache/thrift/branches) | [![Build status](https://ci.appveyor.com/api/projects/status/github/apache/thrift?branch=master&svg=true)](https://ci.appveyor.com/project/ApacheSoftwareFoundation/thrift/history) | [![Coverity Scan Build Status](https://scan.coverity.com/projects/1345/badge.svg)](https://scan.coverity.com/projects/thrift) | | [![Website](https://img.shields.io/badge/official-website-brightgreen.svg)](https://thrift.apache.org/) |
zeshuai007daa76692020-04-10 14:27:27 +080039| [`0.13.0`](https://github.com/apache/thrift/tree/0.13.0) | [![Build Status](https://travis-ci.org/apache/thrift.svg?branch=0.13.0)](https://travis-ci.org/apache/thrift/branches) | | | | |
James E. King III6ba58e92019-05-13 07:21:21 -040040| [`0.12.0`](https://github.com/apache/thrift/tree/0.12.0) | [![Build Status](https://travis-ci.org/apache/thrift.svg?branch=0.12.0)](https://travis-ci.org/apache/thrift/branches) | | | | |
James E. King IIIc7fe3f42018-06-27 11:01:16 -040041
42Releases
43========
44
45Thrift does not maintain a specific release calendar at this time.
46
47We strive to release twice yearly. Download the [current release](http://thrift.apache.org/download).
Marc Slemko9de5a5c2006-08-23 22:34:00 +000048
Bryan Duxburydef30a62009-04-08 00:19:37 +000049License
50=======
51
52Licensed to the Apache Software Foundation (ASF) under one
53or more contributor license agreements. See the NOTICE file
54distributed with this work for additional information
55regarding copyright ownership. The ASF licenses this file
56to you under the Apache License, Version 2.0 (the
57"License"); you may not use this file except in compliance
58with the License. You may obtain a copy of the License at
59
60 http://www.apache.org/licenses/LICENSE-2.0
61
62Unless required by applicable law or agreed to in writing,
63software distributed under the License is distributed on an
64"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
65KIND, either express or implied. See the License for the
66specific language governing permissions and limitations
67under the License.
Marc Slemko9de5a5c2006-08-23 22:34:00 +000068
James E. King, III0ad20bd2017-09-30 15:44:16 -070069Project Hierarchy
70=================
Mark Slee3303f362007-03-05 20:09:37 +000071
72thrift/
73
74 compiler/
Randy Abernethyb92f6362015-08-30 10:56:35 -070075
Mark Slee3303f362007-03-05 20:09:37 +000076 Contains the Thrift compiler, implemented in C++.
77
78 lib/
Randy Abernethyb92f6362015-08-30 10:56:35 -070079
Mark Slee3303f362007-03-05 20:09:37 +000080 Contains the Thrift software library implementation, subdivided by
81 language of implementation.
82
83 cpp/
Jens Geyer0853ab62013-12-17 21:38:44 +010084 go/
Mark Slee3303f362007-03-05 20:09:37 +000085 java/
86 php/
87 py/
Mark Slee227ac2c2007-03-07 05:46:50 +000088 rb/
James E. King, III0ad20bd2017-09-30 15:44:16 -070089 ...
Mark Slee3303f362007-03-05 20:09:37 +000090
91 test/
92
93 Contains sample Thrift files and test code across the target programming
94 languages.
95
Mark Slee227ac2c2007-03-07 05:46:50 +000096 tutorial/
97
98 Contains a basic tutorial that will teach you how to develop software
99 using Thrift.
Marc Slemko9de5a5c2006-08-23 22:34:00 +0000100
James E. King IIIc7fe3f42018-06-27 11:01:16 -0400101Development
102===========
103
104To build the same way Travis CI builds the project you should use docker.
105We have [comprehensive building instructions for docker](build/docker/README.md).
106
Marc Slemko9de5a5c2006-08-23 22:34:00 +0000107Requirements
108============
Mark Slee3303f362007-03-05 20:09:37 +0000109
PoojaChandak20205b82020-11-06 11:33:40 +0100110See http://thrift.apache.org/docs/install for a list of build requirements (may be stale). Alternatively, see the docker build environments for a list of prerequisites.
Marc Slemko9de5a5c2006-08-23 22:34:00 +0000111
112Resources
113=========
114
115More information about Thrift can be obtained on the Thrift webpage at:
116
Roger Meier5aaa0212010-11-04 12:20:05 +0000117 http://thrift.apache.org
Marc Slemko9de5a5c2006-08-23 22:34:00 +0000118
119Acknowledgments
120===============
121
Greg Steinf0d35d22009-01-30 19:10:27 +0000122Thrift was inspired by pillar, a lightweight RPC tool written by Adam D'Angelo,
123and also by Google's protocol buffers.
Marc Slemko9de5a5c2006-08-23 22:34:00 +0000124
Mark Slee54b7ab92007-03-06 00:06:27 +0000125Installation
Marc Slemko9de5a5c2006-08-23 22:34:00 +0000126============
127
Mark Slee57cc25e2007-02-28 21:43:54 +0000128If you are building from the first time out of the source repository, you will
David Reissb72d19f2007-09-18 19:46:00 +0000129need to generate the configure scripts. (This is not necessary if you
130downloaded a tarball.) From the top directory, do:
Marc Slemko9de5a5c2006-08-23 22:34:00 +0000131
Roger Meiere9f00cb2014-05-30 14:35:34 +0200132 ./bootstrap.sh
Marc Slemko9de5a5c2006-08-23 22:34:00 +0000133
Mark Slee57cc25e2007-02-28 21:43:54 +0000134Once the configure scripts are generated, thrift can be configured.
135From the top directory, do:
Marc Slemko9de5a5c2006-08-23 22:34:00 +0000136
Roger Meiere9f00cb2014-05-30 14:35:34 +0200137 ./configure
Marc Slemko9de5a5c2006-08-23 22:34:00 +0000138
Mark Slee57cc25e2007-02-28 21:43:54 +0000139You may need to specify the location of the boost files explicitly.
Mark Slee3303f362007-03-05 20:09:37 +0000140If you installed boost in /usr/local, you would run configure as follows:
Marc Slemko9de5a5c2006-08-23 22:34:00 +0000141
Roger Meiere9f00cb2014-05-30 14:35:34 +0200142 ./configure --with-boost=/usr/local
Marc Slemko9de5a5c2006-08-23 22:34:00 +0000143
Mark Slee3303f362007-03-05 20:09:37 +0000144Note that by default the thrift C++ library is typically built with debugging
145symbols included. If you want to customize these options you should use the
146CXXFLAGS option in configure, as such:
Mark Slee29050782006-09-29 00:12:30 +0000147
Roger Meiere9f00cb2014-05-30 14:35:34 +0200148 ./configure CXXFLAGS='-g -O2'
149 ./configure CFLAGS='-g -O2'
150 ./configure CPPFLAGS='-DDEBUG_MY_FEATURE'
151
152To enable gcov required options -fprofile-arcs -ftest-coverage enable them:
153
154 ./configure --enable-coverage
Mark Slee29050782006-09-29 00:12:30 +0000155
Marc Slemko9de5a5c2006-08-23 22:34:00 +0000156Run ./configure --help to see other configuration options
157
David Reissaea19c92007-08-29 23:17:32 +0000158Please be aware that the Python library will ignore the --prefix option
159and just install wherever Python's distutils puts it (usually along
David Reissd6832192007-09-05 00:47:32 +0000160the lines of /usr/lib/pythonX.Y/site-packages/). If you need to control
161where the Python modules are installed, set the PY_PREFIX variable.
162(DESTDIR is respected for Python and C++.)
David Reissaea19c92007-08-29 23:17:32 +0000163
Mark Slee227ac2c2007-03-07 05:46:50 +0000164Make thrift:
Marc Slemko9de5a5c2006-08-23 22:34:00 +0000165
zeshuai007348790d2020-03-23 16:48:35 +0800166 make
Marc Slemko9de5a5c2006-08-23 22:34:00 +0000167
168From the top directory, become superuser and do:
169
zeshuai007348790d2020-03-23 16:48:35 +0800170 make install
171
172Uninstall thrift:
173
174 make uninstall
Mark Slee54b7ab92007-03-06 00:06:27 +0000175
Mark Slee227ac2c2007-03-07 05:46:50 +0000176Note that some language packages must be installed manually using build tools
177better suited to those languages (at the time of this writing, this applies
178to Java, Ruby, PHP).
179
Roger Meier16fcad02014-03-16 21:12:11 +0100180Look for the README.md file in the lib/<language>/ folder for more details on the
Mark Slee54b7ab92007-03-06 00:06:27 +0000181installation of each language library package.
Carl Yeksigiane2c5b2d2013-06-06 07:24:51 -0400182
JackBoosY829b7d32020-01-16 00:38:15 -0800183Package Managers
184================
185
186Apache Thrift is available via a number of package managers, a list which is
187is steadily growing. A more detailed overview can be found
188[at the Apache Thrift web site under "Libraries"](http://thrift.apache.org/lib/)
PoojaChandak20205b82020-11-06 11:33:40 +0100189and/or in the respective READMEs for each language under /lib
JackBoosY829b7d32020-01-16 00:38:15 -0800190
Carl Yeksigiane2c5b2d2013-06-06 07:24:51 -0400191Testing
192=======
193
194There are a large number of client library tests that can all be run
195from the top-level directory.
196
zeshuai007348790d2020-03-23 16:48:35 +0800197 make -k check
Carl Yeksigiane2c5b2d2013-06-06 07:24:51 -0400198
199This will make all of the libraries (as necessary), and run through
200the unit tests defined in each of the client libraries. If a single
201language fails, the make check will continue on and provide a synopsis
202at the end.
203
204To run the cross-language test suite, please run:
205
zeshuai007348790d2020-03-23 16:48:35 +0800206 make cross
Carl Yeksigiane2c5b2d2013-06-06 07:24:51 -0400207
208This will run a set of tests that use different language clients and
Jens Geyer0853ab62013-12-17 21:38:44 +0100209servers.
James E. King, III254e86b2017-10-25 09:02:48 -0400210
James E. King, IIIcfb01302017-11-11 09:39:19 -0500211