aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
Commit message (Collapse)AuthorAge
* Fix grpcio_{health_checking,reflection} packagingGravatar Mehrdad Afshari2017-11-15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The previous packaging structure exhibited strange behavior of slowness when trying to use pip to install grpcio-reflection or grpcio-health-checking in a single line with grpcio-tools. The root cause seems to be the complicated interaction between pip and setuptools and the fact that we ship a single .tar.gz "source" archive for `grpcio_reflection` and `grpcio_health_checking` packages. `pip` tries to build this "source" package, and our build process wants to generate code for the `.proto` files in the package. However, we have already processed the `.proto` files into `_pb2.py` files in our artifact build process, and installing `grpcio_tools` to get `grpcio_{reflection,health_checking}` seems excessive. The behavior gets worse since `setuptools`, while building the package from source, tries to fetch `grpcio_tools` from source and build that too. This takes a while, since it involves compiling a bunch of native code from `protobuf` and `grpc` and requires a C compiler to boot. This commit modifies the Python artifact for the two packages so that they will not include the raw `.proto` files in the distribution uploaded to PyPI, nor would they contain the Python module that does the preprocessing code generation from the respective .proto files. Instead, a specific code path is taken when the generated `_pb2_grpc` Python module is not present in the package to provide such functionality when built from the gRPC git repository (and hence when built from our CI infrastructure.)
* Merge pull request #13372 from mehrdada/minor-reflection-typo-fixGravatar Mehrdad Afshari2017-11-13
|\ | | | | Correct HEALTH_PROTO to REFLECTION_PROTO
| * Correct HEALTH_PROTO to REFLECTION_PROTOGravatar Mehrdad Afshari2017-11-13
| |
* | Merge pull request #13344 from muxi/fix-timer-thread-spinGravatar Sree Kuchibhotla2017-11-13
|\ \ | |/ |/| Fix timer loop spinning issue when system clock varies
| * Add commentsGravatar Muxi Yan2017-11-10
| |
| * clang-formatGravatar Muxi Yan2017-11-10
| |
| * Use atomic time pair for g_start_timeGravatar Muxi Yan2017-11-10
| |
* | Merge pull request #11888 from ctiller/shardierGravatar Craig Tiller2017-11-10
|\ \ | | | | | | Autosize timer list shards
* \ \ Merge pull request #13332 from dgquintas/grpclb_better_loggingGravatar David G. Quintas2017-11-10
|\ \ \ | | | | | | | | grpclb: Improved logging
* \ \ \ Merge pull request #13343 from dgquintas/pf_error_refsGravatar David G. Quintas2017-11-10
|\ \ \ \ | | | | | | | | | | PF: don't unref errors when about to loop in pf_conn cb
| | * | | Fix wrong assignmentGravatar David Garcia Quintas2017-11-10
| | | | |
* | | | | Merge pull request #13331 from dgquintas/grpclb_retry_timerGravatar David G. Quintas2017-11-10
|\ \ \ \ \ | | | | | | | | | | | | grpclb: Don't expect LB call to be NULL inside LB call retry timer.
| | * | | | Moar cleanups!Gravatar David Garcia Quintas2017-11-10
| | | | | |
| | * | | | Removed call to grpc_subchannel_check_connectivity and loop in pf_conn cbGravatar David Garcia Quintas2017-11-10
| | | | | |
* | | | | | Revert "Switching from UNAUTHENTICATED to UNAVAILABLE for auth metadata failure"Gravatar Jan Tattermusch2017-11-10
| | | | | |
* | | | | | Merge pull request #13322 from jboeuf/oauth_failureGravatar jboeuf2017-11-09
|\ \ \ \ \ \ | | | | | | | | | | | | | | Switching from UNAUTHENTICATED to UNAVAILABLE for auth metadata failure
| | | | | | * Polish invalidation ofGravatar Muxi Yan2017-11-09
| | | | | | |
| | | | | | * Add realtime clock sync every 10sGravatar Muxi Yan2017-11-09
| | | | | | |
| | | * | | | PF: don't unref errors when about to loop in pf_conn cbGravatar David Garcia Quintas2017-11-09
| | | | | | |
* | | | | | | Merge pull request #13294 from sreecha/cc-tsan-1Gravatar Sree Kuchibhotla2017-11-09
|\ \ \ \ \ \ \ | |_|_|/ / / / |/| | | | | | Fix TSAN issue in backup poller
| | | | * | | pr commentsGravatar David Garcia Quintas2017-11-09
| | | | | | |
| | | | * | | pr commentsGravatar David Garcia Quintas2017-11-09
| | | | | | |
* | | | | | | Merge pull request #13281 from yang-g/log_envarGravatar Yang Gao2017-11-09
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | log GRPC_POLL_STRATEGY when fail to find polling engine
| | | | * | | | pr commentsGravatar David Garcia Quintas2017-11-09
| | | | | | | |
| | * | | | | | Merge branch 'master' into cc-tsan-1Gravatar Sree Kuchibhotla2017-11-09
| | |\ \ \ \ \ \ | |_|/ / / / / / |/| | | | | | |
* | | | | | | | Merge pull request #13201 from wjackson/cancel-and-priorityGravatar Noah Eisen2017-11-09
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | Fix header-with-priority for canceled stream bug
| | | | | | * | | grpclb: Improved loggingGravatar David Garcia Quintas2017-11-09
| | | | | | | | |
* | | | | | | | | Merge pull request #13259 from sreecha/resource-quota-fixGravatar Sree Kuchibhotla2017-11-09
|\ \ \ \ \ \ \ \ \ | |_|_|_|_|_|/ / / |/| | | | | | | | Fix resource_quota_server bug
| | | | | | * | | Don't expect LB call to be NULL inside LB call retry timer.Gravatar David Garcia Quintas2017-11-09
| |_|_|_|_|/ / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The timer callback runs independently of query_for_backends_locked() (which initializes the LB call). It's possible for the timer callback to fire right after query_for_backends_locked() has initialized the LB call. These changes makes the timer cb be a no-op in that scenario.
* | | | | | | | Merge pull request #13313 from murgatroid99/uv_assertion_fixesGravatar Michael Lumish2017-11-09
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | Fix timer freed early in uv pollset
| | | * | | | | | Handle frame with priority flag for canceled streamGravatar Whitney Jackson2017-11-09
| |_|/ / / / / / |/| | | | | | |
| | | | | * | | Switching from UNAUTHENTICATED to UNAVAILABLE for auth metadata failureGravatar Julien Boeuf2017-11-08
| |_|_|_|/ / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | Typically these failures are symptomatic of a busy oauth2 auth server and calls should be retried in this case.
| | | * | | | Merge branch 'master' of https://github.com/grpc/grpc into log_envarGravatar yang-g2017-11-08
| | | |\ \ \ \ | |_|_|/ / / / |/| | | | | |
| * | | | | | Clang formatGravatar murgatroid992017-11-08
| | | | | | |
| | * | | | | clang formatGravatar Sree Kuchibhotla2017-11-08
| | | | | | |
| | | | * | | clang formatGravatar Sree Kuchibhotla2017-11-08
| | | | | | |
| | | | * | | Merge branch 'master' into cc-tsan-1Gravatar Sree Kuchibhotla2017-11-08
| | | | |\ \ \
| * | | | | | | Fix timer freed early in uv pollsetGravatar murgatroid992017-11-08
| | | | | | | |
* | | | | | | | Fixes, commentaryGravatar Craig Tiller2017-11-08
| | | | | | | |
* | | | | | | | Fix data raceGravatar Craig Tiller2017-11-08
| | | | | | | |
* | | | | | | | Revert "Revert "Class-ify lockfree event""Gravatar Craig Tiller2017-11-08
| |_|_|_|/ / / |/| | | | | |
* | | | | | | Merge pull request #13303 from ncteisen/ubsanGravatar Noah Eisen2017-11-08
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | Fix internal UBSAN failure
* | | | | | | | Revert "Class-ify lockfree event"Gravatar David G. Quintas2017-11-08
| |/ / / / / / |/| | | | | |
| | | | * | | Merge branch 'master' into cc-tsan-1Gravatar Sree Kuchibhotla2017-11-08
| | | | |\ \ \ | |_|_|_|/ / / |/| | | | | |
| | * | | | | Merge branch 'master' into resource-quota-fixGravatar Sree Kuchibhotla2017-11-08
| | |\ \ \ \ \ | |_|/ / / / / |/| | | | | |
* | | | | | | Merge pull request #13097 from ctiller/lfe3Gravatar Craig Tiller2017-11-08
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | Class-ify lockfree event
| | * | | | | | Fix internal UBSAN failureGravatar ncteisen2017-11-07
| | | |_|_|_|/ | | |/| | | |
* | | | | | | Merge pull request #13147 from yashykt/testc++izeGravatar Yash Tibrewal2017-11-07
|\ \ \ \ \ \ \ | |_|/ / / / / |/| | | | | | Convert test/core to C++
| | | | * | | include log.h for macGravatar yang-g2017-11-07
| | | | | | |
* | | | | | | Merge pull request #12648 from kpayson64/attempt_2Gravatar kpayson642017-11-07
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | Add back mpscq request matcher implementation