THRIFT-6244: Stop TNonblockingServerTest racing its own teardown Client: cpp
bad_alloc_does_not_end_the_process failed intermittently on AppVeyor, 11 of 229 jobs since it was added, either crashing or hanging until the 300 s ctest timeout. Two independent races, one behind each symptom, so both are fixed here.
The crash: the fixture stopped the server and joined the serve thread but never stopped the ThreadManager. Members are destroyed in reverse declaration order, so the server went before the thread manager, and ~TNonblockingServer deletes every TConnection and the IO threads along with their notification pipe. A pool task still unwinding from the injected failure then reached notifyIOThread() – and close() – on the TConnection it holds by raw pointer. The fixture destructor now stops the ThreadManager after joining the serve thread and before the members go; ThreadManager::stop() returns only once each worker has finished the task in its hands, so nothing is left running over the objects being destroyed.
The hang: FailsFirstCallProcessor failed whichever call reached process() first, tracked in a plain bool that both pool workers read and wrote. When the call from canCommunicate() won that race it consumed the failure and got no reply, and its client had no receive timeout, so the test body blocked until ctest killed it. The flag is now claimed with an atomic exchange, the processor signals a Monitor as it claims it, and the test waits for that signal before opening the second connection – so the failure is always taken by the call meant to receive it. The exchange matters on its own: read-then-write let two calls each see the flag unset and both throw, which is what the Windows logs showed as a doubled bad_alloc line.
canCommunicate() also sets a 10 s receive timeout. Every call it makes is a localhost round-trip of a few bytes, so this only bounds the failure: a regression reports in seconds with the transport exception rather than as an opaque 300 s timeout.
Verified by forcing each schedule rather than waiting for the race:
- delaying the first arrival at process() so the second connection claims the failure reproduces the hang exactly; without the wait the case fails in 10 s with THRIFT_EAGAIN, with it the case passes.
- holding the failing task in flight past the end of the test body puts ASan on the use-after-free with the ThreadManager stop removed – notifyIOThread() reading a TConnection freed by
TNonblockingServer() through Fixture::Fixture() – and reports nothing with it present. Then 5 clean runs of the full suite, and 200 runs of this case under ASan with eight in parallel.Not touched: allocation_failure_on_the_io_thread_does_not_end_the_process fails under ASan because its RLIMIT_AS child collides with ASan’s own allocator. That reproduces identically on master.
Co-Authored-By: Claude Opus 5 (1M context) noreply@anthropic.com
版权所有:中国计算机学会技术支持:开源发展技术委员会
京ICP备13000930号-9
京公网安备 11010802047560号
Apache Thrift
Introduction
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.
Thrift makes it easy for programs written in different programming languages to share data and call remote procedures. With support for 28 programming languages, chances are Thrift supports the languages that you currently use.
Thrift is specifically designed to support non-atomic version changes across client and server code. This allows you to upgrade your server while still being able to service older clients; or have newer 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.
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
master0.23.0Releases
Thrift does not maintain a specific release calendar at this time.
We strive to release twice yearly. Download the current release.
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.
Project Hierarchy
thrift/
compiler/
lib/
test/
tutorial/
Development
To build the same way Travis CI builds the project you should use docker. We have comprehensive building instructions for docker.
Requirements
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.
Resources
More information about Thrift can be obtained on the Thrift webpage at:
Acknowledgments
Thrift was inspired by pillar, a lightweight RPC tool written by Adam D’Angelo, and also by Google’s protocol buffers.
Installation
If you are building from the first time out of the source repository, you will need to generate the configure scripts. (This is not necessary if you downloaded a tarball.) From the top directory, do:
Once the configure scripts are generated, thrift can be configured. From the top directory, do:
You may need to specify the location of the boost files explicitly. If you installed boost in
/usr/local, you would run configure as follows: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:
To enable gcov required options -fprofile-arcs -ftest-coverage enable them:
Run ./configure –help to see other configuration options
Please be aware that the Python library will ignore the –prefix option and just install wherever Python’s distutils puts it (usually along the lines of
/usr/lib/pythonX.Y/site-packages/). If you need to control where the Python modules are installed, set the PY_PREFIX variable. (DESTDIR is respected for Python and C++.)Make thrift:
From the top directory, become superuser and do:
Uninstall thrift:
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).
Look for the README.md file in the lib// folder for more details on the installation of each language library package.
Package Managers
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” and/or in the respective READMEs for each language under /lib
Testing
There are a large number of client library tests that can all be run from the top-level directory.
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:
This will run a set of tests that use different language clients and servers.