├── CONTRIBUTING.md ├── README.md └── code-of-conduct.md /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contribution Guidelines 2 | 3 | Please note that this project is released with a 4 | [Contributor Code of Conduct](code-of-conduct.md). By participating in this 5 | project you agree to abide by its terms. 6 | 7 | --- 8 | 9 | Ensure your pull request adheres to the following guidelines: 10 | 11 | - Please check for previous suggestions before creating a new PR. 12 | - Submit only one link at the time. 13 | - If you add a new section, please add it also the section title to the Table of Contents. 14 | - New Links should be appended at the end of the relevant section. 15 | - Make sure that the new entry doesn't contain trailing whitespace. 16 | 17 | Thank you for your suggestions! 18 | 19 | 20 | ## Updating your PR 21 | 22 | A lot of times, making a PR adhere to the standards above can be difficult. 23 | If the maintainers notice anything that we'd like changed, we'll ask you to 24 | edit your PR before we merge it. There's no need to open a new PR, just edit 25 | the existing one. If you're not sure how to do that, 26 | [here is a guide](https://github.com/RichardLitt/knowledge/blob/master/github/amending-a-commit-guide.md) 27 | on the different ways you can update your PR so that we can merge it. 28 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Awesome-Pulsar 2 | ======================================================================= 3 | 4 | [![Awesome](https://cdn.rawgit.com/sindresorhus/awesome/d7305f38d29fed78fa85652e3a63e154dd8e8829/media/badge.svg)](https://github.com/sindresorhus/awesome) 5 | 6 | A curated list for awesome Apache Pulsar resources 7 | Inspired by [@sindresorhus' awesome](https://github.com/sindresorhus/awesome) 8 | 9 | You can help by sending pull requests to add more information. 10 | 11 | ## What is Apache Pulsar? 12 | 13 | > Apache Pulsar is an open-source distributed pub-sub messaging system originally created at Yahoo and now part of the Apache Software Foundation 14 | 15 | _Source:_ [What is Apache Pulsar](http://pulsar.apache.org) 16 | 17 | 18 | ## History 19 | 20 | Pulsar was first developed at Yahoo Inc. by that company’s former engineers Matteo Merli and Joe Francis and donated to the open-source community in 2016. Merli and Francis explained at the time that Pulsar was developed in order to meet the requirements of several Yahoo applications, for which they could not find any existing solution. 21 | 22 | Merli later left Yahoo to form the startup Streamlio with the intention of commercializing Apache Pulsar, launching a real-time analytics suite that incorporates the messaging system in September. Streamlio’s system also incorporates open-source projects such as Heron and Apache BookKeeper, which combine to create “an enterprise-grade messaging solution optimized for streaming and storage.” 23 | 24 | Now, the Apache Pulsar community is updating Pulsar with new analytics capabilities and enhancements under the hood that should boost its performance, scalability and durability. 25 | 26 | _Sources:_ 27 | - [Streamlio adds real-time data stream processing to Apache Pulsar](https://siliconangle.com/2018/06/06/streamlio-adds-real-time-data-stream-processing-apache-pulsar/) 28 | - [Open-sourcing Pulsar, Pub-sub Messaging at Scale](https://yahooeng.tumblr.com/post/150078336821/open-sourcing-pulsar-pub-sub-messaging-at-scale) 29 | 30 | ----------------------------------------------------------------------- 31 | 32 | 33 | Menu 34 | ======================================================================= 35 | 36 | * [Clients](#clients) 37 | * [Java](#java) 38 | * [Scala](#scala) 39 | * [Go](#go) 40 | * [Python](#python) 41 | * [C++](#cpp) 42 | * [Articles](#articles) 43 | * [Slide Presentations](#slide-presentations) 44 | * [Videos](#videos) 45 | * [Contributing](#contributing) 46 | * [License](#license) 47 | 48 | 49 | ----------------------------------------------------------------------- 50 | 51 | Clients 52 | ======================================================================= 53 | 54 | ### Java 55 | - [Official Java client](http://pulsar.apache.org/docs/en/client-libraries-java/) 56 | 57 | ### Scala 58 | - [Pulsar4s](https://github.com/sksamuel/pulsar4s) 59 | 60 | ### Go 61 | - [Official Go client](http://pulsar.apache.org/docs/en/client-libraries-go/) 62 | 63 | ### Python 64 | - [Official Python client](http://pulsar.apache.org/docs/en/client-libraries-python/) 65 | 66 | ### C++ 67 | - [Official C++ client](http://pulsar.apache.org/docs/en/client-libraries-cpp/) 68 | 69 | 70 | Articles 71 | ======================================================================= 72 | 73 | - [Introduction to the Apache Pulsar pub-sub messaging platform](https://streaml.io/blog/intro-to-pulsar) 74 | - Why Apache Pulsar, [part 1](https://streaml.io/blog/why-apache-pulsar) and [part 2](https://streaml.io/blog/why-apache-pulsar-part-2) 75 | - [Apache Pulsar: Geo-replication](https://medium.com/@pckeyan/apache-pulsar-geo-replication-ad4f0ca3224b) 76 | - [Understanding how Apache Pulsar works](https://jack-vanlightly.com/blog/2018/10/2/understanding-how-apache-pulsar-works) 77 | 78 | 79 | Slide presentations 80 | ======================================================================= 81 | 82 | - [Strata London 2018: Multi-everything with Apache Pulsar](https://www.slideshare.net/streamlio/strata-london-2018-multieverything-with-apache-pulsar) 83 | 84 | 85 | Videos 86 | ======================================================================= 87 | 88 | - [Apache Pulsar Concepts and Terminology (August 25, 2017)](https://www.youtube.com/watch?v=ed5zxfvlT-M) 89 | - [Apache Pulsar - The next generation messaging system--Karthik Ramasamy, Streamlio (March 21, 2018)](https://www.youtube.com/watch?v=lAVPIY1PRdo) 90 | 91 | 92 | Contributing 93 | ======================================================================= 94 | 95 | Contributions welcome! This list is just getting started, please contribute to make it super awesome, but read the [contribution guidelines](CONTRIBUTING.md) first. 96 | 97 | 98 | ## License 99 | 100 | [![CC0](https://mirrors.creativecommons.org/presskit/buttons/88x31/svg/cc-zero.svg)](https://creativecommons.org/publicdomain/zero/1.0) 101 | 102 | To the extent possible under law, Pascal de Vink has waived all copyright and 103 | related or neighboring rights to this work. 104 | -------------------------------------------------------------------------------- /code-of-conduct.md: -------------------------------------------------------------------------------- 1 | # Contributor Covenant Code of Conduct 2 | 3 | ## Our Pledge 4 | 5 | In the interest of fostering an open and welcoming environment, we as 6 | contributors and maintainers pledge to making participation in our project and 7 | our community a harassment-free experience for everyone, regardless of age, body 8 | size, disability, ethnicity, gender identity and expression, level of experience, 9 | nationality, personal appearance, race, religion, or sexual identity and 10 | orientation. 11 | 12 | ## Our Standards 13 | 14 | Examples of behavior that contributes to creating a positive environment 15 | include: 16 | 17 | * Using welcoming and inclusive language 18 | * Being respectful of differing viewpoints and experiences 19 | * Gracefully accepting constructive criticism 20 | * Focusing on what is best for the community 21 | * Showing empathy towards other community members 22 | 23 | Examples of unacceptable behavior by participants include: 24 | 25 | * The use of sexualized language or imagery and unwelcome sexual attention or 26 | advances 27 | * Trolling, insulting/derogatory comments, and personal or political attacks 28 | * Public or private harassment 29 | * Publishing others' private information, such as a physical or electronic 30 | address, without explicit permission 31 | * Other conduct which could reasonably be considered inappropriate in a 32 | professional setting 33 | 34 | ## Our Responsibilities 35 | 36 | Project maintainers are responsible for clarifying the standards of acceptable 37 | behavior and are expected to take appropriate and fair corrective action in 38 | response to any instances of unacceptable behavior. 39 | 40 | Project maintainers have the right and responsibility to remove, edit, or 41 | reject comments, commits, code, wiki edits, issues, and other contributions 42 | that are not aligned to this Code of Conduct, or to ban temporarily or 43 | permanently any contributor for other behaviors that they deem inappropriate, 44 | threatening, offensive, or harmful. 45 | 46 | ## Scope 47 | 48 | This Code of Conduct applies both within project spaces and in public spaces 49 | when an individual is representing the project or its community. Examples of 50 | representing a project or community include using an official project e-mail 51 | address, posting via an official social media account, or acting as an appointed 52 | representative at an online or offline event. Representation of a project may be 53 | further defined and clarified by project maintainers. 54 | 55 | ## Enforcement 56 | 57 | Instances of abusive, harassing, or otherwise unacceptable behavior may be 58 | reported by contacting the project team at pascal@pascaldevink.nl. All 59 | complaints will be reviewed and investigated and will result in a response that 60 | is deemed necessary and appropriate to the circumstances. The project team is 61 | obligated to maintain confidentiality with regard to the reporter of an incident. 62 | Further details of specific enforcement policies may be posted separately. 63 | 64 | Project maintainers who do not follow or enforce the Code of Conduct in good 65 | faith may face temporary or permanent repercussions as determined by other 66 | members of the project's leadership. 67 | 68 | ## Attribution 69 | 70 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, 71 | available at [http://contributor-covenant.org/version/1/4][version] 72 | 73 | [homepage]: http://contributor-covenant.org 74 | [version]: http://contributor-covenant.org/version/1/4/ 75 | --------------------------------------------------------------------------------