2010-11-04 12:20:05 +00:00
Apache Thrift
2014-03-16 20:12:11 +00:00
=============
2006-08-23 22:34:00 +00:00
2018-06-27 15:01:16 +00:00
Introduction
============
2019-05-13 11:21:21 +00:00
Thrift is a lightweight, language-independent software stack for
point-to-point RPC implementation.
Thrift provides clean abstractions and implementations for data transport,
data serialization, and application level processing. The code generation
system takes a simple definition language as input and generates code
across programming languages that uses the abstracted stack to build
interoperable RPC clients and servers.
2018-06-27 15:01:16 +00:00
![Apache Thrift Layered Architecture ](doc/images/thrift-layers.png )
Thrift makes it easy for programs written in different programming
2022-10-11 03:46:25 +00:00
languages to share data and call remote procedures. With support
for [28 programming languages ](LANGUAGES.md ), chances are Thrift
2018-06-27 15:01:16 +00:00
supports the languages that you currently use.
Thrift is specifically designed to support non-atomic version changes
2019-05-13 11:21:21 +00:00
across client and server code. This allows you to upgrade your
2020-06-24 10:21:10 +00:00
server while still being able to service older clients; or have newer
2019-05-13 11:21:21 +00:00
clients issue requests to older servers. An excellent community-provided
write-up about thrift and compatibility when versioning an API can be
found in the [Thrift Missing Guide ](https://diwakergupta.github.io/thrift-missing-guide/#_versioning_compatibility ).
2018-06-27 15:01:16 +00:00
For more details on Thrift's design and implementation, see the Thrift
whitepaper included in this distribution, or at the README.md file
in your particular subdirectory of interest.
Status
======
| Branch | Travis | Appveyor | Coverity Scan | codecov.io | Website |
| :----- | :----- | :------- | :------------ | :--------- | :------ |
2022-10-11 03:46:25 +00:00
| [`master` ](https://github.com/apache/thrift/tree/master ) | [![Build Status ](https://api.travis-ci.com/apache/thrift.svg?branch=master )](https://app.travis-ci.com/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/) |
| [`0.17.0` ](https://github.com/apache/thrift/tree/0.17.0 ) | [![Build Status ](https://api.travis-ci.com/apache/thrift.svg?branch=0.17.0 )](https://app.travis-ci.com/apache/thrift/branches) | | | | |
2018-06-27 15:01:16 +00:00
Releases
========
2022-10-11 03:46:25 +00:00
Thrift does not maintain a specific release calendar at this time.
2018-06-27 15:01:16 +00:00
We strive to release twice yearly. Download the [current release ](http://thrift.apache.org/download ).
2006-08-23 22:34:00 +00:00
2009-04-08 00:19:37 +00:00
License
=======
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
2006-08-23 22:34:00 +00:00
2017-09-30 22:44:16 +00:00
Project Hierarchy
=================
2007-03-05 20:09:37 +00:00
thrift/
compiler/
2015-08-30 17:56:35 +00:00
2007-03-05 20:09:37 +00:00
Contains the Thrift compiler, implemented in C++.
lib/
2015-08-30 17:56:35 +00:00
2007-03-05 20:09:37 +00:00
Contains the Thrift software library implementation, subdivided by
language of implementation.
cpp/
2013-12-17 20:38:44 +00:00
go/
2007-03-05 20:09:37 +00:00
java/
php/
py/
2007-03-07 05:46:50 +00:00
rb/
2017-09-30 22:44:16 +00:00
...
2007-03-05 20:09:37 +00:00
test/
Contains sample Thrift files and test code across the target programming
languages.
2007-03-07 05:46:50 +00:00
tutorial/
Contains a basic tutorial that will teach you how to develop software
using Thrift.
2006-08-23 22:34:00 +00:00
2018-06-27 15:01:16 +00:00
Development
===========
To build the same way Travis CI builds the project you should use docker.
We have [comprehensive building instructions for docker ](build/docker/README.md ).
2006-08-23 22:34:00 +00:00
Requirements
============
2007-03-05 20:09:37 +00:00
2020-11-06 10:33:40 +00:00
See 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.
2006-08-23 22:34:00 +00:00
Resources
=========
More information about Thrift can be obtained on the Thrift webpage at:
2010-11-04 12:20:05 +00:00
http://thrift.apache.org
2006-08-23 22:34:00 +00:00
Acknowledgments
===============
2009-01-30 19:10:27 +00:00
Thrift was inspired by pillar, a lightweight RPC tool written by Adam D'Angelo,
and also by Google's protocol buffers.
2006-08-23 22:34:00 +00:00
2007-03-06 00:06:27 +00:00
Installation
2006-08-23 22:34:00 +00:00
============
2007-02-28 21:43:54 +00:00
If you are building from the first time out of the source repository, you will
2007-09-18 19:46:00 +00:00
need to generate the configure scripts. (This is not necessary if you
downloaded a tarball.) From the top directory, do:
2006-08-23 22:34:00 +00:00
2014-05-30 12:35:34 +00:00
./bootstrap.sh
2006-08-23 22:34:00 +00:00
2007-02-28 21:43:54 +00:00
Once the configure scripts are generated, thrift can be configured.
From the top directory, do:
2006-08-23 22:34:00 +00:00
2014-05-30 12:35:34 +00:00
./configure
2006-08-23 22:34:00 +00:00
2007-02-28 21:43:54 +00:00
You may need to specify the location of the boost files explicitly.
2021-01-23 16:18:46 +00:00
If you installed boost in `/usr/local` , you would run configure as follows:
2006-08-23 22:34:00 +00:00
2014-05-30 12:35:34 +00:00
./configure --with-boost=/usr/local
2006-08-23 22:34:00 +00:00
2007-03-05 20:09:37 +00:00
Note that by default the thrift C++ library is typically built with debugging
symbols included. If you want to customize these options you should use the
CXXFLAGS option in configure, as such:
2006-09-29 00:12:30 +00:00
2014-05-30 12:35:34 +00:00
./configure CXXFLAGS='-g -O2'
./configure CFLAGS='-g -O2'
./configure CPPFLAGS='-DDEBUG_MY_FEATURE'
To enable gcov required options -fprofile-arcs -ftest-coverage enable them:
./configure --enable-coverage
2006-09-29 00:12:30 +00:00
2006-08-23 22:34:00 +00:00
Run ./configure --help to see other configuration options
2007-08-29 23:17:32 +00:00
Please be aware that the Python library will ignore the --prefix option
and just install wherever Python's distutils puts it (usually along
2021-01-23 16:18:46 +00:00
the lines of `/usr/lib/pythonX.Y/site-packages/` ). If you need to control
2007-09-05 00:47:32 +00:00
where the Python modules are installed, set the PY_PREFIX variable.
(DESTDIR is respected for Python and C++.)
2007-08-29 23:17:32 +00:00
2007-03-07 05:46:50 +00:00
Make thrift:
2006-08-23 22:34:00 +00:00
2020-03-23 08:48:35 +00:00
make
2006-08-23 22:34:00 +00:00
From the top directory, become superuser and do:
2020-03-23 08:48:35 +00:00
make install
Uninstall thrift:
make uninstall
2007-03-06 00:06:27 +00:00
2007-03-07 05:46:50 +00:00
Note that some language packages must be installed manually using build tools
better suited to those languages (at the time of this writing, this applies
to Java, Ruby, PHP).
2014-03-16 20:12:11 +00:00
Look for the README.md file in the lib/< language > / folder for more details on the
2007-03-06 00:06:27 +00:00
installation of each language library package.
2013-06-06 11:24:51 +00:00
2020-01-16 08:38:15 +00:00
Package Managers
================
2022-10-11 03:46:25 +00:00
Apache Thrift is available via a number of package managers, a list which is
is steadily growing. A more detailed overview can be found
[at the Apache Thrift web site under "Libraries" ](http://thrift.apache.org/lib/ )
2020-11-06 10:33:40 +00:00
and/or in the respective READMEs for each language under /lib
2020-01-16 08:38:15 +00:00
2013-06-06 11:24:51 +00:00
Testing
=======
There are a large number of client library tests that can all be run
from the top-level directory.
2020-03-23 08:48:35 +00:00
make -k check
2013-06-06 11:24:51 +00:00
This will make all of the libraries (as necessary), and run through
the unit tests defined in each of the client libraries. If a single
language fails, the make check will continue on and provide a synopsis
at the end.
To run the cross-language test suite, please run:
2020-03-23 08:48:35 +00:00
make cross
2013-06-06 11:24:51 +00:00
This will run a set of tests that use different language clients and
2013-12-17 20:38:44 +00:00
servers.
2017-10-25 13:02:48 +00:00
2017-11-11 14:39:19 +00:00