-
Notifications
You must be signed in to change notification settings - Fork 922
Topic Admin API, list_topics(), Python 3.7, fixes #382
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Changes from 24 commits
Commits
Show all changes
31 commits
Select commit
Hold shift + click to select a range
b7439a7
Add list_topics() API (#161, @tbsaunde, @stephan-hof)
tbsaunde f6cda94
Python 3.7 support
edenhill bb0f00c
Topic Admin API
edenhill bb39363
travis: use adminapi librdkafka branch
edenhill 0a67983
Require futures on Python 2.x
edenhill 400fde8
Refactored list_topics() to return specific types rather than dict
edenhill 3d1e0a6
Added (optional) memory tracking to integration tests
edenhill ac3f603
Fixes and refactoring for integration tests
edenhill 4bd840c
test_docs: skip imported modules and inherited objects
edenhill dad896d
Admin API: return multiple futures, bugfixes, docs
edenhill 64d7fa9
Added Py2&Py3 compatible cfl_PyInt abstraction
edenhill 4c6de0d
Fix memory leaks in generic setters
edenhill f669580
Fix call ordering to avoid callback crash on implicit close (#265)
edenhill f821652
Producer: Header values may now be unicode strings (auto convert to U…
edenhill 136efd3
Fix KafkaError refcounting
edenhill 3b4f3fb
Python 2/3 compat, minor test improvements
edenhill bd72bf6
Updated for librdkafka's internal -> background queue rename
edenhill a08db1c
Require librdkafka >=v0.11.5
edenhill c87cc7f
Change TypeError to ValueError for invalid input
edenhill 4f0f69e
Add __len__ to ConfigResource and overwrite option to .set_config
edenhill 868787d
librdkafka AdminOptions_new interface update
edenhill 3aa92b3
Don't return the future from the C Admin methods, not needed
edenhill 41bb5a7
adminapi example: added an async and delta/incremental alter_configs …
edenhill b01e50b
Python 2 safe unicode in source
edenhill d52858c
Add throttle_cb support (#237) (#377)
e4eeaa1
Move Admin API to `admin` sub module, use enums, fix doc strings
edenhill d613894
Include avro in docs, fix docstrings in confluent_kafka, Consumer, avro
edenhill 1266b3c
Added ThrottleEvent to docs
edenhill 2f32034
Rename AdminClientImpl -> _AdminClientImpl
edenhill 6d928d2
travis: use librdkafka master branch instead of adminapi
edenhill 8d1e8d3
travis: remove librdkafka v0.11.4
edenhill File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,31 @@ | ||
matrix: | ||
include: | ||
# Source package verification with Python 2.7 and librdkafka master | ||
# Source package verification with Python 2.7 and librdkafka adminapi | ||
- os: linux | ||
language: python | ||
dist: trusty | ||
python: "2.7" | ||
env: LD_LIBRARY_PATH="$PWD/tmp-build/lib" LIBRDKAFKA_VERSION=master | ||
# Source package verification with Python 2.7 and librdkafka v0.9.5 | ||
env: LD_LIBRARY_PATH="$PWD/tmp-build/lib" LIBRDKAFKA_VERSION=adminapi | ||
# Source package verification with Python 2.7 and librdkafka adminapi | ||
- os: linux | ||
language: python | ||
dist: trusty | ||
python: "2.7" | ||
env: LD_LIBRARY_PATH="$PWD/tmp-build/lib" LIBRDKAFKA_VERSION=v0.9.5 | ||
# Source package verification with Python 3.5 and librdkafka master | ||
env: LD_LIBRARY_PATH="$PWD/tmp-build/lib" LIBRDKAFKA_VERSION=adminapi | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. assume you didn't mean to check these changes in? |
||
# Source package verification with Python 3.6 and librdkafka adminapi | ||
- os: linux | ||
language: python | ||
dist: trusty | ||
python: "3.5" | ||
env: LD_LIBRARY_PATH="$PWD/tmp-build/lib" LIBRDKAFKA_VERSION=v0.9.5 | ||
python: "3.6" | ||
env: LD_LIBRARY_PATH="$PWD/tmp-build/lib" LIBRDKAFKA_VERSION=adminapi | ||
# cibuildwheel for osx | ||
- os: osx | ||
env: CIBW_BEFORE_BUILD="tools/bootstrap-librdkafka.sh --require-ssl master tmp" CFLAGS="-Itmp/include" LDFLAGS="-Ltmp/lib" | ||
env: CIBW_BEFORE_BUILD="tools/bootstrap-librdkafka.sh --require-ssl adminapi tmp" CFLAGS="-Itmp/include" LDFLAGS="-Ltmp/lib" | ||
# cibuildwheel for manylinux | ||
- os: linux | ||
dist: trusty | ||
sudo: required | ||
env: CIBW_BEFORE_BUILD="tools/prepare-cibuildwheel-linux.sh master" | ||
env: CIBW_BEFORE_BUILD="tools/prepare-cibuildwheel-linux.sh adminapi" | ||
language: python | ||
python: "2.7" | ||
services: docker | ||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't know enough about Travis CI to say definitively but these changes seem like they should stay on the adminapi branch and not be merged to master.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, but before the librdkafka adminapi branch is merged into master this is what's needed.