├── .asf.yaml ├── .gitignore ├── LICENSE ├── NOTICE ├── README.md ├── publish.sh ├── site ├── .gitignore ├── Gemfile ├── _config.yml ├── _data │ ├── contributors.yml │ ├── navigation.yml │ ├── project.yml │ └── releases.yml ├── _includes │ ├── JB │ │ ├── analytics │ │ ├── analytics-providers │ │ │ ├── getclicky │ │ │ ├── google-classic │ │ │ ├── google-universal │ │ │ ├── mixpanel │ │ │ └── piwik │ │ ├── categories_list │ │ ├── comments │ │ ├── comments-providers │ │ │ ├── disqus │ │ │ ├── facebook │ │ │ ├── intensedebate │ │ │ └── livefyre │ │ ├── liquid_raw │ │ ├── pages_list │ │ ├── posts_collate │ │ ├── setup │ │ ├── sharing │ │ └── tags_list │ └── themes │ │ ├── apache-clean │ │ ├── _navigation.html │ │ ├── default.html │ │ ├── footer.html │ │ ├── page.html │ │ ├── post.html │ │ └── settings.yml │ │ └── apache │ │ ├── _navigation.html │ │ ├── default.html │ │ ├── footer.html │ │ ├── page.html │ │ ├── post.html │ │ └── settings.yml ├── _layouts │ ├── default.html │ ├── page.html │ └── post.html ├── _sass │ ├── _base.scss │ ├── _layout.scss │ └── _syntax-highlighting.scss ├── assets │ ├── images │ │ └── important.png │ └── themes │ │ ├── apache-clean │ │ ├── bootstrap │ │ │ ├── css │ │ │ │ ├── bootstrap-theme.css │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ └── bootstrap.css │ │ │ ├── fonts │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ └── glyphicons-halflings-regular.woff │ │ │ ├── img │ │ │ │ ├── glyphicons-halflings-white.png │ │ │ │ └── glyphicons-halflings.png │ │ │ └── js │ │ │ │ ├── bootstrap.js │ │ │ │ └── bootstrap.min.js │ │ ├── css │ │ │ ├── style.css │ │ │ └── syntax.css │ │ ├── img │ │ │ ├── apache_logo.png │ │ │ ├── apache_logo_800.png │ │ │ ├── body-bg.jpg │ │ │ ├── egg-logo.png │ │ │ ├── favicon.png │ │ │ ├── header-bg.jpg │ │ │ ├── highlight-bg.jpg │ │ │ ├── logo.png │ │ │ ├── new-black.png │ │ │ └── sidebar-bg.jpg │ │ └── jquery │ │ │ ├── jquery-2.1.1.js │ │ │ └── jquery-2.1.1.min.js │ │ └── apache │ │ ├── bootstrap │ │ ├── css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.min.css │ │ │ └── bootstrap.css │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ └── glyphicons-halflings-regular.woff │ │ ├── img │ │ │ ├── glyphicons-halflings-white.png │ │ │ └── glyphicons-halflings.png │ │ └── js │ │ │ ├── bootstrap.js │ │ │ └── bootstrap.min.js │ │ ├── css │ │ ├── style.css │ │ └── syntax.css │ │ ├── img │ │ ├── apache_logo.png │ │ ├── apache_logo_800.png │ │ ├── body-bg.jpg │ │ ├── egg-logo.png │ │ ├── favicon.png │ │ ├── header-bg.jpg │ │ ├── highlight-bg.jpg │ │ ├── logo.png │ │ ├── new-black.png │ │ └── sidebar-bg.jpg │ │ └── jquery │ │ ├── jquery-2.1.1.js │ │ └── jquery-2.1.1.min.js ├── community-members.md ├── community.md ├── contributing-extensions.md ├── contributing.md ├── css │ └── main.scss ├── docs │ ├── flink │ │ ├── 1.0 │ │ │ ├── documentation.md │ │ │ ├── flink-streaming-activemq.md │ │ │ ├── flink-streaming-akka.md │ │ │ ├── flink-streaming-flume.md │ │ │ ├── flink-streaming-netty.md │ │ │ └── flink-streaming-redis.md │ │ ├── 1.1.0 │ │ │ ├── documentation.md │ │ │ ├── flink-streaming-activemq.md │ │ │ ├── flink-streaming-akka.md │ │ │ ├── flink-streaming-flume.md │ │ │ ├── flink-streaming-influxdb.md │ │ │ ├── flink-streaming-influxdb2.md │ │ │ ├── flink-streaming-kudu.md │ │ │ ├── flink-streaming-netty.md │ │ │ ├── flink-streaming-pinot.md │ │ │ └── flink-streaming-redis.md │ │ ├── current │ │ │ ├── documentation.md │ │ │ ├── flink-streaming-activemq.md │ │ │ ├── flink-streaming-akka.md │ │ │ ├── flink-streaming-flume.md │ │ │ ├── flink-streaming-influxdb.md │ │ │ ├── flink-streaming-influxdb2.md │ │ │ ├── flink-streaming-kudu.md │ │ │ ├── flink-streaming-netty.md │ │ │ ├── flink-streaming-pinot.md │ │ │ └── flink-streaming-redis.md │ │ ├── overview.md │ │ └── templates │ │ │ ├── flink-streaming-activemq.template │ │ │ ├── flink-streaming-akka.template │ │ │ ├── flink-streaming-flume.template │ │ │ ├── flink-streaming-influxdb.template │ │ │ ├── flink-streaming-influxdb2.template │ │ │ ├── flink-streaming-kudu.template │ │ │ ├── flink-streaming-netty.template │ │ │ ├── flink-streaming-pinot.template │ │ │ └── flink-streaming-redis.template │ └── spark │ │ ├── 2.0.0 │ │ ├── documentation.md │ │ ├── spark-sql-streaming-mqtt.md │ │ ├── spark-streaming-akka.md │ │ ├── spark-streaming-mqtt.md │ │ ├── spark-streaming-twitter.md │ │ └── spark-streaming-zeromq.md │ │ ├── 2.0.1 │ │ ├── documentation.md │ │ ├── spark-sql-streaming-mqtt.md │ │ ├── spark-streaming-akka.md │ │ ├── spark-streaming-mqtt.md │ │ ├── spark-streaming-twitter.md │ │ └── spark-streaming-zeromq.md │ │ ├── 2.0.2 │ │ ├── documentation.md │ │ ├── spark-sql-streaming-mqtt.md │ │ ├── spark-streaming-akka.md │ │ ├── spark-streaming-mqtt.md │ │ ├── spark-streaming-twitter.md │ │ └── spark-streaming-zeromq.md │ │ ├── 2.1.0 │ │ ├── documentation.md │ │ ├── spark-sql-streaming-mqtt.md │ │ ├── spark-streaming-akka.md │ │ ├── spark-streaming-mqtt.md │ │ ├── spark-streaming-twitter.md │ │ └── spark-streaming-zeromq.md │ │ ├── 2.1.1 │ │ ├── documentation.md │ │ ├── spark-sql-cloudant.md │ │ ├── spark-sql-streaming-akka.md │ │ ├── spark-sql-streaming-mqtt.md │ │ ├── spark-streaming-akka.md │ │ ├── spark-streaming-mqtt.md │ │ ├── spark-streaming-pubsub.md │ │ ├── spark-streaming-twitter.md │ │ └── spark-streaming-zeromq.md │ │ ├── 2.1.2 │ │ ├── documentation.md │ │ ├── spark-sql-cloudant.md │ │ ├── spark-sql-streaming-akka.md │ │ ├── spark-sql-streaming-mqtt.md │ │ ├── spark-streaming-akka.md │ │ ├── spark-streaming-mqtt.md │ │ ├── spark-streaming-pubsub.md │ │ ├── spark-streaming-twitter.md │ │ └── spark-streaming-zeromq.md │ │ ├── 2.1.3 │ │ ├── documentation.md │ │ ├── spark-sql-cloudant.md │ │ ├── spark-sql-streaming-akka.md │ │ ├── spark-sql-streaming-mqtt.md │ │ ├── spark-streaming-akka.md │ │ ├── spark-streaming-mqtt.md │ │ ├── spark-streaming-pubsub.md │ │ ├── spark-streaming-twitter.md │ │ └── spark-streaming-zeromq.md │ │ ├── 2.2.0 │ │ ├── documentation.md │ │ ├── spark-sql-cloudant.md │ │ ├── spark-sql-streaming-akka.md │ │ ├── spark-sql-streaming-mqtt.md │ │ ├── spark-streaming-akka.md │ │ ├── spark-streaming-mqtt.md │ │ ├── spark-streaming-pubsub.md │ │ ├── spark-streaming-twitter.md │ │ └── spark-streaming-zeromq.md │ │ ├── 2.2.1 │ │ ├── documentation.md │ │ ├── spark-sql-cloudant.md │ │ ├── spark-sql-streaming-akka.md │ │ ├── spark-sql-streaming-mqtt.md │ │ ├── spark-streaming-akka.md │ │ ├── spark-streaming-mqtt.md │ │ ├── spark-streaming-pubsub.md │ │ ├── spark-streaming-twitter.md │ │ └── spark-streaming-zeromq.md │ │ ├── 2.2.2 │ │ ├── documentation.md │ │ ├── spark-sql-cloudant.md │ │ ├── spark-sql-streaming-akka.md │ │ ├── spark-sql-streaming-mqtt.md │ │ ├── spark-streaming-akka.md │ │ ├── spark-streaming-mqtt.md │ │ ├── spark-streaming-pubsub.md │ │ ├── spark-streaming-twitter.md │ │ └── spark-streaming-zeromq.md │ │ ├── 2.2.3 │ │ ├── documentation.md │ │ ├── spark-sql-cloudant.md │ │ ├── spark-sql-streaming-akka.md │ │ ├── spark-sql-streaming-mqtt.md │ │ ├── spark-streaming-akka.md │ │ ├── spark-streaming-mqtt.md │ │ ├── spark-streaming-pubsub.md │ │ ├── spark-streaming-twitter.md │ │ └── spark-streaming-zeromq.md │ │ ├── 2.3.0 │ │ ├── documentation.md │ │ ├── spark-sql-cloudant.md │ │ ├── spark-sql-streaming-akka.md │ │ ├── spark-sql-streaming-mqtt.md │ │ ├── spark-streaming-akka.md │ │ ├── spark-streaming-mqtt.md │ │ ├── spark-streaming-pubnub.md │ │ ├── spark-streaming-pubsub.md │ │ ├── spark-streaming-twitter.md │ │ └── spark-streaming-zeromq.md │ │ ├── 2.3.1 │ │ ├── documentation.md │ │ ├── spark-sql-cloudant.md │ │ ├── spark-sql-streaming-akka.md │ │ ├── spark-sql-streaming-mqtt.md │ │ ├── spark-streaming-akka.md │ │ ├── spark-streaming-mqtt.md │ │ ├── spark-streaming-pubnub.md │ │ ├── spark-streaming-pubsub.md │ │ ├── spark-streaming-twitter.md │ │ └── spark-streaming-zeromq.md │ │ ├── 2.3.2 │ │ ├── documentation.md │ │ ├── spark-sql-cloudant.md │ │ ├── spark-sql-streaming-akka.md │ │ ├── spark-sql-streaming-mqtt.md │ │ ├── spark-streaming-akka.md │ │ ├── spark-streaming-mqtt.md │ │ ├── spark-streaming-pubnub.md │ │ ├── spark-streaming-pubsub.md │ │ ├── spark-streaming-twitter.md │ │ └── spark-streaming-zeromq.md │ │ ├── 2.3.3 │ │ ├── documentation.md │ │ ├── spark-sql-cloudant.md │ │ ├── spark-sql-streaming-akka.md │ │ ├── spark-sql-streaming-mqtt.md │ │ ├── spark-streaming-akka.md │ │ ├── spark-streaming-mqtt.md │ │ ├── spark-streaming-pubnub.md │ │ ├── spark-streaming-pubsub.md │ │ ├── spark-streaming-twitter.md │ │ └── spark-streaming-zeromq.md │ │ ├── 2.3.4 │ │ ├── documentation.md │ │ ├── spark-sql-cloudant.md │ │ ├── spark-sql-streaming-akka.md │ │ ├── spark-sql-streaming-mqtt.md │ │ ├── spark-streaming-akka.md │ │ ├── spark-streaming-mqtt.md │ │ ├── spark-streaming-pubnub.md │ │ ├── spark-streaming-pubsub.md │ │ ├── spark-streaming-twitter.md │ │ └── spark-streaming-zeromq.md │ │ ├── 2.4.0 │ │ ├── documentation.md │ │ ├── spark-sql-cloudant.md │ │ ├── spark-sql-streaming-akka.md │ │ ├── spark-sql-streaming-mqtt.md │ │ ├── spark-streaming-akka.md │ │ ├── spark-streaming-mqtt.md │ │ ├── spark-streaming-pubnub.md │ │ ├── spark-streaming-pubsub.md │ │ ├── spark-streaming-twitter.md │ │ └── spark-streaming-zeromq.md │ │ ├── current │ │ ├── documentation.md │ │ ├── spark-sql-cloudant.md │ │ ├── spark-sql-streaming-akka.md │ │ ├── spark-sql-streaming-mqtt.md │ │ ├── spark-streaming-akka.md │ │ ├── spark-streaming-mqtt.md │ │ ├── spark-streaming-pubnub.md │ │ ├── spark-streaming-pubsub.md │ │ ├── spark-streaming-twitter.md │ │ └── spark-streaming-zeromq.md │ │ ├── overview.md │ │ └── templates │ │ ├── spark-sql-cloudant.template │ │ ├── spark-sql-streaming-akka.template │ │ ├── spark-sql-streaming-mqtt.template │ │ ├── spark-streaming-akka.template │ │ ├── spark-streaming-mqtt.template │ │ ├── spark-streaming-pubnub.template │ │ ├── spark-streaming-pubsub.template │ │ ├── spark-streaming-twitter.template │ │ └── spark-streaming-zeromq.template ├── downloads │ ├── flink.md │ └── spark.md ├── feed.xml ├── history.md ├── index.md ├── privacy-policy.md └── releases │ └── spark │ ├── 2.0.0 │ └── release-notes.md │ ├── 2.0.1 │ └── release-notes.md │ ├── 2.0.2 │ └── release-notes.md │ ├── 2.1.0 │ └── release-notes.md │ ├── 2.3.3 │ └── release-notes.md │ └── 2.3.4 │ └── release-notes.md └── update-doc.sh /.asf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/.asf.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/README.md -------------------------------------------------------------------------------- /publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/publish.sh -------------------------------------------------------------------------------- /site/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/.gitignore -------------------------------------------------------------------------------- /site/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/Gemfile -------------------------------------------------------------------------------- /site/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/_config.yml -------------------------------------------------------------------------------- /site/_data/contributors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/_data/contributors.yml -------------------------------------------------------------------------------- /site/_data/navigation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/_data/navigation.yml -------------------------------------------------------------------------------- /site/_data/project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/_data/project.yml -------------------------------------------------------------------------------- /site/_data/releases.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/_data/releases.yml -------------------------------------------------------------------------------- /site/_includes/JB/analytics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/_includes/JB/analytics -------------------------------------------------------------------------------- /site/_includes/JB/analytics-providers/getclicky: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/_includes/JB/analytics-providers/getclicky -------------------------------------------------------------------------------- /site/_includes/JB/analytics-providers/google-classic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/_includes/JB/analytics-providers/google-classic -------------------------------------------------------------------------------- /site/_includes/JB/analytics-providers/google-universal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/_includes/JB/analytics-providers/google-universal -------------------------------------------------------------------------------- /site/_includes/JB/analytics-providers/mixpanel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/_includes/JB/analytics-providers/mixpanel -------------------------------------------------------------------------------- /site/_includes/JB/analytics-providers/piwik: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/_includes/JB/analytics-providers/piwik -------------------------------------------------------------------------------- /site/_includes/JB/categories_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/_includes/JB/categories_list -------------------------------------------------------------------------------- /site/_includes/JB/comments: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/_includes/JB/comments -------------------------------------------------------------------------------- /site/_includes/JB/comments-providers/disqus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/_includes/JB/comments-providers/disqus -------------------------------------------------------------------------------- /site/_includes/JB/comments-providers/facebook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/_includes/JB/comments-providers/facebook -------------------------------------------------------------------------------- /site/_includes/JB/comments-providers/intensedebate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/_includes/JB/comments-providers/intensedebate -------------------------------------------------------------------------------- /site/_includes/JB/comments-providers/livefyre: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/_includes/JB/comments-providers/livefyre -------------------------------------------------------------------------------- /site/_includes/JB/liquid_raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/_includes/JB/liquid_raw -------------------------------------------------------------------------------- /site/_includes/JB/pages_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/_includes/JB/pages_list -------------------------------------------------------------------------------- /site/_includes/JB/posts_collate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/_includes/JB/posts_collate -------------------------------------------------------------------------------- /site/_includes/JB/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/_includes/JB/setup -------------------------------------------------------------------------------- /site/_includes/JB/sharing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/_includes/JB/sharing -------------------------------------------------------------------------------- /site/_includes/JB/tags_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/_includes/JB/tags_list -------------------------------------------------------------------------------- /site/_includes/themes/apache-clean/_navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/_includes/themes/apache-clean/_navigation.html -------------------------------------------------------------------------------- /site/_includes/themes/apache-clean/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/_includes/themes/apache-clean/default.html -------------------------------------------------------------------------------- /site/_includes/themes/apache-clean/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/_includes/themes/apache-clean/footer.html -------------------------------------------------------------------------------- /site/_includes/themes/apache-clean/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/_includes/themes/apache-clean/page.html -------------------------------------------------------------------------------- /site/_includes/themes/apache-clean/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/_includes/themes/apache-clean/post.html -------------------------------------------------------------------------------- /site/_includes/themes/apache-clean/settings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/_includes/themes/apache-clean/settings.yml -------------------------------------------------------------------------------- /site/_includes/themes/apache/_navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/_includes/themes/apache/_navigation.html -------------------------------------------------------------------------------- /site/_includes/themes/apache/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/_includes/themes/apache/default.html -------------------------------------------------------------------------------- /site/_includes/themes/apache/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/_includes/themes/apache/footer.html -------------------------------------------------------------------------------- /site/_includes/themes/apache/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/_includes/themes/apache/page.html -------------------------------------------------------------------------------- /site/_includes/themes/apache/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/_includes/themes/apache/post.html -------------------------------------------------------------------------------- /site/_includes/themes/apache/settings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/_includes/themes/apache/settings.yml -------------------------------------------------------------------------------- /site/_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/_layouts/default.html -------------------------------------------------------------------------------- /site/_layouts/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/_layouts/page.html -------------------------------------------------------------------------------- /site/_layouts/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/_layouts/post.html -------------------------------------------------------------------------------- /site/_sass/_base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/_sass/_base.scss -------------------------------------------------------------------------------- /site/_sass/_layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/_sass/_layout.scss -------------------------------------------------------------------------------- /site/_sass/_syntax-highlighting.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/_sass/_syntax-highlighting.scss -------------------------------------------------------------------------------- /site/assets/images/important.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/assets/images/important.png -------------------------------------------------------------------------------- /site/assets/themes/apache-clean/bootstrap/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/assets/themes/apache-clean/bootstrap/css/bootstrap-theme.css -------------------------------------------------------------------------------- /site/assets/themes/apache-clean/bootstrap/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/assets/themes/apache-clean/bootstrap/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /site/assets/themes/apache-clean/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/assets/themes/apache-clean/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /site/assets/themes/apache-clean/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/assets/themes/apache-clean/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /site/assets/themes/apache-clean/bootstrap/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/assets/themes/apache-clean/bootstrap/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /site/assets/themes/apache-clean/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/assets/themes/apache-clean/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /site/assets/themes/apache-clean/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/assets/themes/apache-clean/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /site/assets/themes/apache-clean/bootstrap/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/assets/themes/apache-clean/bootstrap/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /site/assets/themes/apache-clean/bootstrap/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/assets/themes/apache-clean/bootstrap/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /site/assets/themes/apache-clean/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/assets/themes/apache-clean/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /site/assets/themes/apache-clean/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/assets/themes/apache-clean/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /site/assets/themes/apache-clean/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/assets/themes/apache-clean/css/style.css -------------------------------------------------------------------------------- /site/assets/themes/apache-clean/css/syntax.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/assets/themes/apache-clean/css/syntax.css -------------------------------------------------------------------------------- /site/assets/themes/apache-clean/img/apache_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/assets/themes/apache-clean/img/apache_logo.png -------------------------------------------------------------------------------- /site/assets/themes/apache-clean/img/apache_logo_800.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/assets/themes/apache-clean/img/apache_logo_800.png -------------------------------------------------------------------------------- /site/assets/themes/apache-clean/img/body-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/assets/themes/apache-clean/img/body-bg.jpg -------------------------------------------------------------------------------- /site/assets/themes/apache-clean/img/egg-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/assets/themes/apache-clean/img/egg-logo.png -------------------------------------------------------------------------------- /site/assets/themes/apache-clean/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/assets/themes/apache-clean/img/favicon.png -------------------------------------------------------------------------------- /site/assets/themes/apache-clean/img/header-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/assets/themes/apache-clean/img/header-bg.jpg -------------------------------------------------------------------------------- /site/assets/themes/apache-clean/img/highlight-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/assets/themes/apache-clean/img/highlight-bg.jpg -------------------------------------------------------------------------------- /site/assets/themes/apache-clean/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/assets/themes/apache-clean/img/logo.png -------------------------------------------------------------------------------- /site/assets/themes/apache-clean/img/new-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/assets/themes/apache-clean/img/new-black.png -------------------------------------------------------------------------------- /site/assets/themes/apache-clean/img/sidebar-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/assets/themes/apache-clean/img/sidebar-bg.jpg -------------------------------------------------------------------------------- /site/assets/themes/apache-clean/jquery/jquery-2.1.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/assets/themes/apache-clean/jquery/jquery-2.1.1.js -------------------------------------------------------------------------------- /site/assets/themes/apache-clean/jquery/jquery-2.1.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/assets/themes/apache-clean/jquery/jquery-2.1.1.min.js -------------------------------------------------------------------------------- /site/assets/themes/apache/bootstrap/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/assets/themes/apache/bootstrap/css/bootstrap-theme.css -------------------------------------------------------------------------------- /site/assets/themes/apache/bootstrap/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/assets/themes/apache/bootstrap/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /site/assets/themes/apache/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/assets/themes/apache/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /site/assets/themes/apache/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/assets/themes/apache/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /site/assets/themes/apache/bootstrap/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/assets/themes/apache/bootstrap/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /site/assets/themes/apache/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/assets/themes/apache/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /site/assets/themes/apache/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/assets/themes/apache/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /site/assets/themes/apache/bootstrap/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/assets/themes/apache/bootstrap/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /site/assets/themes/apache/bootstrap/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/assets/themes/apache/bootstrap/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /site/assets/themes/apache/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/assets/themes/apache/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /site/assets/themes/apache/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/assets/themes/apache/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /site/assets/themes/apache/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/assets/themes/apache/css/style.css -------------------------------------------------------------------------------- /site/assets/themes/apache/css/syntax.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/assets/themes/apache/css/syntax.css -------------------------------------------------------------------------------- /site/assets/themes/apache/img/apache_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/assets/themes/apache/img/apache_logo.png -------------------------------------------------------------------------------- /site/assets/themes/apache/img/apache_logo_800.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/assets/themes/apache/img/apache_logo_800.png -------------------------------------------------------------------------------- /site/assets/themes/apache/img/body-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/assets/themes/apache/img/body-bg.jpg -------------------------------------------------------------------------------- /site/assets/themes/apache/img/egg-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/assets/themes/apache/img/egg-logo.png -------------------------------------------------------------------------------- /site/assets/themes/apache/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/assets/themes/apache/img/favicon.png -------------------------------------------------------------------------------- /site/assets/themes/apache/img/header-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/assets/themes/apache/img/header-bg.jpg -------------------------------------------------------------------------------- /site/assets/themes/apache/img/highlight-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/assets/themes/apache/img/highlight-bg.jpg -------------------------------------------------------------------------------- /site/assets/themes/apache/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/assets/themes/apache/img/logo.png -------------------------------------------------------------------------------- /site/assets/themes/apache/img/new-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/assets/themes/apache/img/new-black.png -------------------------------------------------------------------------------- /site/assets/themes/apache/img/sidebar-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/assets/themes/apache/img/sidebar-bg.jpg -------------------------------------------------------------------------------- /site/assets/themes/apache/jquery/jquery-2.1.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/assets/themes/apache/jquery/jquery-2.1.1.js -------------------------------------------------------------------------------- /site/assets/themes/apache/jquery/jquery-2.1.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/assets/themes/apache/jquery/jquery-2.1.1.min.js -------------------------------------------------------------------------------- /site/community-members.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/community-members.md -------------------------------------------------------------------------------- /site/community.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/community.md -------------------------------------------------------------------------------- /site/contributing-extensions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/contributing-extensions.md -------------------------------------------------------------------------------- /site/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/contributing.md -------------------------------------------------------------------------------- /site/css/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/css/main.scss -------------------------------------------------------------------------------- /site/docs/flink/1.0/documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/flink/1.0/documentation.md -------------------------------------------------------------------------------- /site/docs/flink/1.0/flink-streaming-activemq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/flink/1.0/flink-streaming-activemq.md -------------------------------------------------------------------------------- /site/docs/flink/1.0/flink-streaming-akka.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/flink/1.0/flink-streaming-akka.md -------------------------------------------------------------------------------- /site/docs/flink/1.0/flink-streaming-flume.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/flink/1.0/flink-streaming-flume.md -------------------------------------------------------------------------------- /site/docs/flink/1.0/flink-streaming-netty.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/flink/1.0/flink-streaming-netty.md -------------------------------------------------------------------------------- /site/docs/flink/1.0/flink-streaming-redis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/flink/1.0/flink-streaming-redis.md -------------------------------------------------------------------------------- /site/docs/flink/1.1.0/documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/flink/1.1.0/documentation.md -------------------------------------------------------------------------------- /site/docs/flink/1.1.0/flink-streaming-activemq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/flink/1.1.0/flink-streaming-activemq.md -------------------------------------------------------------------------------- /site/docs/flink/1.1.0/flink-streaming-akka.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/flink/1.1.0/flink-streaming-akka.md -------------------------------------------------------------------------------- /site/docs/flink/1.1.0/flink-streaming-flume.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/flink/1.1.0/flink-streaming-flume.md -------------------------------------------------------------------------------- /site/docs/flink/1.1.0/flink-streaming-influxdb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/flink/1.1.0/flink-streaming-influxdb.md -------------------------------------------------------------------------------- /site/docs/flink/1.1.0/flink-streaming-influxdb2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/flink/1.1.0/flink-streaming-influxdb2.md -------------------------------------------------------------------------------- /site/docs/flink/1.1.0/flink-streaming-kudu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/flink/1.1.0/flink-streaming-kudu.md -------------------------------------------------------------------------------- /site/docs/flink/1.1.0/flink-streaming-netty.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/flink/1.1.0/flink-streaming-netty.md -------------------------------------------------------------------------------- /site/docs/flink/1.1.0/flink-streaming-pinot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/flink/1.1.0/flink-streaming-pinot.md -------------------------------------------------------------------------------- /site/docs/flink/1.1.0/flink-streaming-redis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/flink/1.1.0/flink-streaming-redis.md -------------------------------------------------------------------------------- /site/docs/flink/current/documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/flink/current/documentation.md -------------------------------------------------------------------------------- /site/docs/flink/current/flink-streaming-activemq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/flink/current/flink-streaming-activemq.md -------------------------------------------------------------------------------- /site/docs/flink/current/flink-streaming-akka.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/flink/current/flink-streaming-akka.md -------------------------------------------------------------------------------- /site/docs/flink/current/flink-streaming-flume.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/flink/current/flink-streaming-flume.md -------------------------------------------------------------------------------- /site/docs/flink/current/flink-streaming-influxdb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/flink/current/flink-streaming-influxdb.md -------------------------------------------------------------------------------- /site/docs/flink/current/flink-streaming-influxdb2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/flink/current/flink-streaming-influxdb2.md -------------------------------------------------------------------------------- /site/docs/flink/current/flink-streaming-kudu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/flink/current/flink-streaming-kudu.md -------------------------------------------------------------------------------- /site/docs/flink/current/flink-streaming-netty.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/flink/current/flink-streaming-netty.md -------------------------------------------------------------------------------- /site/docs/flink/current/flink-streaming-pinot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/flink/current/flink-streaming-pinot.md -------------------------------------------------------------------------------- /site/docs/flink/current/flink-streaming-redis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/flink/current/flink-streaming-redis.md -------------------------------------------------------------------------------- /site/docs/flink/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/flink/overview.md -------------------------------------------------------------------------------- /site/docs/flink/templates/flink-streaming-activemq.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/flink/templates/flink-streaming-activemq.template -------------------------------------------------------------------------------- /site/docs/flink/templates/flink-streaming-akka.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/flink/templates/flink-streaming-akka.template -------------------------------------------------------------------------------- /site/docs/flink/templates/flink-streaming-flume.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/flink/templates/flink-streaming-flume.template -------------------------------------------------------------------------------- /site/docs/flink/templates/flink-streaming-influxdb.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/flink/templates/flink-streaming-influxdb.template -------------------------------------------------------------------------------- /site/docs/flink/templates/flink-streaming-influxdb2.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/flink/templates/flink-streaming-influxdb2.template -------------------------------------------------------------------------------- /site/docs/flink/templates/flink-streaming-kudu.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/flink/templates/flink-streaming-kudu.template -------------------------------------------------------------------------------- /site/docs/flink/templates/flink-streaming-netty.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/flink/templates/flink-streaming-netty.template -------------------------------------------------------------------------------- /site/docs/flink/templates/flink-streaming-pinot.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/flink/templates/flink-streaming-pinot.template -------------------------------------------------------------------------------- /site/docs/flink/templates/flink-streaming-redis.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/flink/templates/flink-streaming-redis.template -------------------------------------------------------------------------------- /site/docs/spark/2.0.0/documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.0.0/documentation.md -------------------------------------------------------------------------------- /site/docs/spark/2.0.0/spark-sql-streaming-mqtt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.0.0/spark-sql-streaming-mqtt.md -------------------------------------------------------------------------------- /site/docs/spark/2.0.0/spark-streaming-akka.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.0.0/spark-streaming-akka.md -------------------------------------------------------------------------------- /site/docs/spark/2.0.0/spark-streaming-mqtt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.0.0/spark-streaming-mqtt.md -------------------------------------------------------------------------------- /site/docs/spark/2.0.0/spark-streaming-twitter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.0.0/spark-streaming-twitter.md -------------------------------------------------------------------------------- /site/docs/spark/2.0.0/spark-streaming-zeromq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.0.0/spark-streaming-zeromq.md -------------------------------------------------------------------------------- /site/docs/spark/2.0.1/documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.0.1/documentation.md -------------------------------------------------------------------------------- /site/docs/spark/2.0.1/spark-sql-streaming-mqtt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.0.1/spark-sql-streaming-mqtt.md -------------------------------------------------------------------------------- /site/docs/spark/2.0.1/spark-streaming-akka.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.0.1/spark-streaming-akka.md -------------------------------------------------------------------------------- /site/docs/spark/2.0.1/spark-streaming-mqtt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.0.1/spark-streaming-mqtt.md -------------------------------------------------------------------------------- /site/docs/spark/2.0.1/spark-streaming-twitter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.0.1/spark-streaming-twitter.md -------------------------------------------------------------------------------- /site/docs/spark/2.0.1/spark-streaming-zeromq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.0.1/spark-streaming-zeromq.md -------------------------------------------------------------------------------- /site/docs/spark/2.0.2/documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.0.2/documentation.md -------------------------------------------------------------------------------- /site/docs/spark/2.0.2/spark-sql-streaming-mqtt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.0.2/spark-sql-streaming-mqtt.md -------------------------------------------------------------------------------- /site/docs/spark/2.0.2/spark-streaming-akka.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.0.2/spark-streaming-akka.md -------------------------------------------------------------------------------- /site/docs/spark/2.0.2/spark-streaming-mqtt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.0.2/spark-streaming-mqtt.md -------------------------------------------------------------------------------- /site/docs/spark/2.0.2/spark-streaming-twitter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.0.2/spark-streaming-twitter.md -------------------------------------------------------------------------------- /site/docs/spark/2.0.2/spark-streaming-zeromq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.0.2/spark-streaming-zeromq.md -------------------------------------------------------------------------------- /site/docs/spark/2.1.0/documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.1.0/documentation.md -------------------------------------------------------------------------------- /site/docs/spark/2.1.0/spark-sql-streaming-mqtt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.1.0/spark-sql-streaming-mqtt.md -------------------------------------------------------------------------------- /site/docs/spark/2.1.0/spark-streaming-akka.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.1.0/spark-streaming-akka.md -------------------------------------------------------------------------------- /site/docs/spark/2.1.0/spark-streaming-mqtt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.1.0/spark-streaming-mqtt.md -------------------------------------------------------------------------------- /site/docs/spark/2.1.0/spark-streaming-twitter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.1.0/spark-streaming-twitter.md -------------------------------------------------------------------------------- /site/docs/spark/2.1.0/spark-streaming-zeromq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.1.0/spark-streaming-zeromq.md -------------------------------------------------------------------------------- /site/docs/spark/2.1.1/documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.1.1/documentation.md -------------------------------------------------------------------------------- /site/docs/spark/2.1.1/spark-sql-cloudant.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.1.1/spark-sql-cloudant.md -------------------------------------------------------------------------------- /site/docs/spark/2.1.1/spark-sql-streaming-akka.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.1.1/spark-sql-streaming-akka.md -------------------------------------------------------------------------------- /site/docs/spark/2.1.1/spark-sql-streaming-mqtt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.1.1/spark-sql-streaming-mqtt.md -------------------------------------------------------------------------------- /site/docs/spark/2.1.1/spark-streaming-akka.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.1.1/spark-streaming-akka.md -------------------------------------------------------------------------------- /site/docs/spark/2.1.1/spark-streaming-mqtt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.1.1/spark-streaming-mqtt.md -------------------------------------------------------------------------------- /site/docs/spark/2.1.1/spark-streaming-pubsub.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.1.1/spark-streaming-pubsub.md -------------------------------------------------------------------------------- /site/docs/spark/2.1.1/spark-streaming-twitter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.1.1/spark-streaming-twitter.md -------------------------------------------------------------------------------- /site/docs/spark/2.1.1/spark-streaming-zeromq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.1.1/spark-streaming-zeromq.md -------------------------------------------------------------------------------- /site/docs/spark/2.1.2/documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.1.2/documentation.md -------------------------------------------------------------------------------- /site/docs/spark/2.1.2/spark-sql-cloudant.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.1.2/spark-sql-cloudant.md -------------------------------------------------------------------------------- /site/docs/spark/2.1.2/spark-sql-streaming-akka.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.1.2/spark-sql-streaming-akka.md -------------------------------------------------------------------------------- /site/docs/spark/2.1.2/spark-sql-streaming-mqtt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.1.2/spark-sql-streaming-mqtt.md -------------------------------------------------------------------------------- /site/docs/spark/2.1.2/spark-streaming-akka.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.1.2/spark-streaming-akka.md -------------------------------------------------------------------------------- /site/docs/spark/2.1.2/spark-streaming-mqtt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.1.2/spark-streaming-mqtt.md -------------------------------------------------------------------------------- /site/docs/spark/2.1.2/spark-streaming-pubsub.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.1.2/spark-streaming-pubsub.md -------------------------------------------------------------------------------- /site/docs/spark/2.1.2/spark-streaming-twitter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.1.2/spark-streaming-twitter.md -------------------------------------------------------------------------------- /site/docs/spark/2.1.2/spark-streaming-zeromq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.1.2/spark-streaming-zeromq.md -------------------------------------------------------------------------------- /site/docs/spark/2.1.3/documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.1.3/documentation.md -------------------------------------------------------------------------------- /site/docs/spark/2.1.3/spark-sql-cloudant.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.1.3/spark-sql-cloudant.md -------------------------------------------------------------------------------- /site/docs/spark/2.1.3/spark-sql-streaming-akka.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.1.3/spark-sql-streaming-akka.md -------------------------------------------------------------------------------- /site/docs/spark/2.1.3/spark-sql-streaming-mqtt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.1.3/spark-sql-streaming-mqtt.md -------------------------------------------------------------------------------- /site/docs/spark/2.1.3/spark-streaming-akka.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.1.3/spark-streaming-akka.md -------------------------------------------------------------------------------- /site/docs/spark/2.1.3/spark-streaming-mqtt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.1.3/spark-streaming-mqtt.md -------------------------------------------------------------------------------- /site/docs/spark/2.1.3/spark-streaming-pubsub.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.1.3/spark-streaming-pubsub.md -------------------------------------------------------------------------------- /site/docs/spark/2.1.3/spark-streaming-twitter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.1.3/spark-streaming-twitter.md -------------------------------------------------------------------------------- /site/docs/spark/2.1.3/spark-streaming-zeromq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.1.3/spark-streaming-zeromq.md -------------------------------------------------------------------------------- /site/docs/spark/2.2.0/documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.2.0/documentation.md -------------------------------------------------------------------------------- /site/docs/spark/2.2.0/spark-sql-cloudant.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.2.0/spark-sql-cloudant.md -------------------------------------------------------------------------------- /site/docs/spark/2.2.0/spark-sql-streaming-akka.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.2.0/spark-sql-streaming-akka.md -------------------------------------------------------------------------------- /site/docs/spark/2.2.0/spark-sql-streaming-mqtt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.2.0/spark-sql-streaming-mqtt.md -------------------------------------------------------------------------------- /site/docs/spark/2.2.0/spark-streaming-akka.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.2.0/spark-streaming-akka.md -------------------------------------------------------------------------------- /site/docs/spark/2.2.0/spark-streaming-mqtt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.2.0/spark-streaming-mqtt.md -------------------------------------------------------------------------------- /site/docs/spark/2.2.0/spark-streaming-pubsub.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.2.0/spark-streaming-pubsub.md -------------------------------------------------------------------------------- /site/docs/spark/2.2.0/spark-streaming-twitter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.2.0/spark-streaming-twitter.md -------------------------------------------------------------------------------- /site/docs/spark/2.2.0/spark-streaming-zeromq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.2.0/spark-streaming-zeromq.md -------------------------------------------------------------------------------- /site/docs/spark/2.2.1/documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.2.1/documentation.md -------------------------------------------------------------------------------- /site/docs/spark/2.2.1/spark-sql-cloudant.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.2.1/spark-sql-cloudant.md -------------------------------------------------------------------------------- /site/docs/spark/2.2.1/spark-sql-streaming-akka.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.2.1/spark-sql-streaming-akka.md -------------------------------------------------------------------------------- /site/docs/spark/2.2.1/spark-sql-streaming-mqtt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.2.1/spark-sql-streaming-mqtt.md -------------------------------------------------------------------------------- /site/docs/spark/2.2.1/spark-streaming-akka.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.2.1/spark-streaming-akka.md -------------------------------------------------------------------------------- /site/docs/spark/2.2.1/spark-streaming-mqtt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.2.1/spark-streaming-mqtt.md -------------------------------------------------------------------------------- /site/docs/spark/2.2.1/spark-streaming-pubsub.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.2.1/spark-streaming-pubsub.md -------------------------------------------------------------------------------- /site/docs/spark/2.2.1/spark-streaming-twitter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.2.1/spark-streaming-twitter.md -------------------------------------------------------------------------------- /site/docs/spark/2.2.1/spark-streaming-zeromq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.2.1/spark-streaming-zeromq.md -------------------------------------------------------------------------------- /site/docs/spark/2.2.2/documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.2.2/documentation.md -------------------------------------------------------------------------------- /site/docs/spark/2.2.2/spark-sql-cloudant.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.2.2/spark-sql-cloudant.md -------------------------------------------------------------------------------- /site/docs/spark/2.2.2/spark-sql-streaming-akka.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.2.2/spark-sql-streaming-akka.md -------------------------------------------------------------------------------- /site/docs/spark/2.2.2/spark-sql-streaming-mqtt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.2.2/spark-sql-streaming-mqtt.md -------------------------------------------------------------------------------- /site/docs/spark/2.2.2/spark-streaming-akka.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.2.2/spark-streaming-akka.md -------------------------------------------------------------------------------- /site/docs/spark/2.2.2/spark-streaming-mqtt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.2.2/spark-streaming-mqtt.md -------------------------------------------------------------------------------- /site/docs/spark/2.2.2/spark-streaming-pubsub.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.2.2/spark-streaming-pubsub.md -------------------------------------------------------------------------------- /site/docs/spark/2.2.2/spark-streaming-twitter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.2.2/spark-streaming-twitter.md -------------------------------------------------------------------------------- /site/docs/spark/2.2.2/spark-streaming-zeromq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.2.2/spark-streaming-zeromq.md -------------------------------------------------------------------------------- /site/docs/spark/2.2.3/documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.2.3/documentation.md -------------------------------------------------------------------------------- /site/docs/spark/2.2.3/spark-sql-cloudant.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.2.3/spark-sql-cloudant.md -------------------------------------------------------------------------------- /site/docs/spark/2.2.3/spark-sql-streaming-akka.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.2.3/spark-sql-streaming-akka.md -------------------------------------------------------------------------------- /site/docs/spark/2.2.3/spark-sql-streaming-mqtt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.2.3/spark-sql-streaming-mqtt.md -------------------------------------------------------------------------------- /site/docs/spark/2.2.3/spark-streaming-akka.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.2.3/spark-streaming-akka.md -------------------------------------------------------------------------------- /site/docs/spark/2.2.3/spark-streaming-mqtt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.2.3/spark-streaming-mqtt.md -------------------------------------------------------------------------------- /site/docs/spark/2.2.3/spark-streaming-pubsub.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.2.3/spark-streaming-pubsub.md -------------------------------------------------------------------------------- /site/docs/spark/2.2.3/spark-streaming-twitter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.2.3/spark-streaming-twitter.md -------------------------------------------------------------------------------- /site/docs/spark/2.2.3/spark-streaming-zeromq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.2.3/spark-streaming-zeromq.md -------------------------------------------------------------------------------- /site/docs/spark/2.3.0/documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.3.0/documentation.md -------------------------------------------------------------------------------- /site/docs/spark/2.3.0/spark-sql-cloudant.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.3.0/spark-sql-cloudant.md -------------------------------------------------------------------------------- /site/docs/spark/2.3.0/spark-sql-streaming-akka.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.3.0/spark-sql-streaming-akka.md -------------------------------------------------------------------------------- /site/docs/spark/2.3.0/spark-sql-streaming-mqtt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.3.0/spark-sql-streaming-mqtt.md -------------------------------------------------------------------------------- /site/docs/spark/2.3.0/spark-streaming-akka.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.3.0/spark-streaming-akka.md -------------------------------------------------------------------------------- /site/docs/spark/2.3.0/spark-streaming-mqtt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.3.0/spark-streaming-mqtt.md -------------------------------------------------------------------------------- /site/docs/spark/2.3.0/spark-streaming-pubnub.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.3.0/spark-streaming-pubnub.md -------------------------------------------------------------------------------- /site/docs/spark/2.3.0/spark-streaming-pubsub.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.3.0/spark-streaming-pubsub.md -------------------------------------------------------------------------------- /site/docs/spark/2.3.0/spark-streaming-twitter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.3.0/spark-streaming-twitter.md -------------------------------------------------------------------------------- /site/docs/spark/2.3.0/spark-streaming-zeromq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.3.0/spark-streaming-zeromq.md -------------------------------------------------------------------------------- /site/docs/spark/2.3.1/documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.3.1/documentation.md -------------------------------------------------------------------------------- /site/docs/spark/2.3.1/spark-sql-cloudant.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.3.1/spark-sql-cloudant.md -------------------------------------------------------------------------------- /site/docs/spark/2.3.1/spark-sql-streaming-akka.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.3.1/spark-sql-streaming-akka.md -------------------------------------------------------------------------------- /site/docs/spark/2.3.1/spark-sql-streaming-mqtt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.3.1/spark-sql-streaming-mqtt.md -------------------------------------------------------------------------------- /site/docs/spark/2.3.1/spark-streaming-akka.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.3.1/spark-streaming-akka.md -------------------------------------------------------------------------------- /site/docs/spark/2.3.1/spark-streaming-mqtt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.3.1/spark-streaming-mqtt.md -------------------------------------------------------------------------------- /site/docs/spark/2.3.1/spark-streaming-pubnub.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.3.1/spark-streaming-pubnub.md -------------------------------------------------------------------------------- /site/docs/spark/2.3.1/spark-streaming-pubsub.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.3.1/spark-streaming-pubsub.md -------------------------------------------------------------------------------- /site/docs/spark/2.3.1/spark-streaming-twitter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.3.1/spark-streaming-twitter.md -------------------------------------------------------------------------------- /site/docs/spark/2.3.1/spark-streaming-zeromq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.3.1/spark-streaming-zeromq.md -------------------------------------------------------------------------------- /site/docs/spark/2.3.2/documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.3.2/documentation.md -------------------------------------------------------------------------------- /site/docs/spark/2.3.2/spark-sql-cloudant.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.3.2/spark-sql-cloudant.md -------------------------------------------------------------------------------- /site/docs/spark/2.3.2/spark-sql-streaming-akka.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.3.2/spark-sql-streaming-akka.md -------------------------------------------------------------------------------- /site/docs/spark/2.3.2/spark-sql-streaming-mqtt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.3.2/spark-sql-streaming-mqtt.md -------------------------------------------------------------------------------- /site/docs/spark/2.3.2/spark-streaming-akka.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.3.2/spark-streaming-akka.md -------------------------------------------------------------------------------- /site/docs/spark/2.3.2/spark-streaming-mqtt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.3.2/spark-streaming-mqtt.md -------------------------------------------------------------------------------- /site/docs/spark/2.3.2/spark-streaming-pubnub.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.3.2/spark-streaming-pubnub.md -------------------------------------------------------------------------------- /site/docs/spark/2.3.2/spark-streaming-pubsub.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.3.2/spark-streaming-pubsub.md -------------------------------------------------------------------------------- /site/docs/spark/2.3.2/spark-streaming-twitter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.3.2/spark-streaming-twitter.md -------------------------------------------------------------------------------- /site/docs/spark/2.3.2/spark-streaming-zeromq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.3.2/spark-streaming-zeromq.md -------------------------------------------------------------------------------- /site/docs/spark/2.3.3/documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.3.3/documentation.md -------------------------------------------------------------------------------- /site/docs/spark/2.3.3/spark-sql-cloudant.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.3.3/spark-sql-cloudant.md -------------------------------------------------------------------------------- /site/docs/spark/2.3.3/spark-sql-streaming-akka.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.3.3/spark-sql-streaming-akka.md -------------------------------------------------------------------------------- /site/docs/spark/2.3.3/spark-sql-streaming-mqtt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.3.3/spark-sql-streaming-mqtt.md -------------------------------------------------------------------------------- /site/docs/spark/2.3.3/spark-streaming-akka.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.3.3/spark-streaming-akka.md -------------------------------------------------------------------------------- /site/docs/spark/2.3.3/spark-streaming-mqtt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.3.3/spark-streaming-mqtt.md -------------------------------------------------------------------------------- /site/docs/spark/2.3.3/spark-streaming-pubnub.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.3.3/spark-streaming-pubnub.md -------------------------------------------------------------------------------- /site/docs/spark/2.3.3/spark-streaming-pubsub.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.3.3/spark-streaming-pubsub.md -------------------------------------------------------------------------------- /site/docs/spark/2.3.3/spark-streaming-twitter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.3.3/spark-streaming-twitter.md -------------------------------------------------------------------------------- /site/docs/spark/2.3.3/spark-streaming-zeromq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.3.3/spark-streaming-zeromq.md -------------------------------------------------------------------------------- /site/docs/spark/2.3.4/documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.3.4/documentation.md -------------------------------------------------------------------------------- /site/docs/spark/2.3.4/spark-sql-cloudant.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.3.4/spark-sql-cloudant.md -------------------------------------------------------------------------------- /site/docs/spark/2.3.4/spark-sql-streaming-akka.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.3.4/spark-sql-streaming-akka.md -------------------------------------------------------------------------------- /site/docs/spark/2.3.4/spark-sql-streaming-mqtt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.3.4/spark-sql-streaming-mqtt.md -------------------------------------------------------------------------------- /site/docs/spark/2.3.4/spark-streaming-akka.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.3.4/spark-streaming-akka.md -------------------------------------------------------------------------------- /site/docs/spark/2.3.4/spark-streaming-mqtt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.3.4/spark-streaming-mqtt.md -------------------------------------------------------------------------------- /site/docs/spark/2.3.4/spark-streaming-pubnub.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.3.4/spark-streaming-pubnub.md -------------------------------------------------------------------------------- /site/docs/spark/2.3.4/spark-streaming-pubsub.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.3.4/spark-streaming-pubsub.md -------------------------------------------------------------------------------- /site/docs/spark/2.3.4/spark-streaming-twitter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.3.4/spark-streaming-twitter.md -------------------------------------------------------------------------------- /site/docs/spark/2.3.4/spark-streaming-zeromq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.3.4/spark-streaming-zeromq.md -------------------------------------------------------------------------------- /site/docs/spark/2.4.0/documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.4.0/documentation.md -------------------------------------------------------------------------------- /site/docs/spark/2.4.0/spark-sql-cloudant.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.4.0/spark-sql-cloudant.md -------------------------------------------------------------------------------- /site/docs/spark/2.4.0/spark-sql-streaming-akka.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.4.0/spark-sql-streaming-akka.md -------------------------------------------------------------------------------- /site/docs/spark/2.4.0/spark-sql-streaming-mqtt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.4.0/spark-sql-streaming-mqtt.md -------------------------------------------------------------------------------- /site/docs/spark/2.4.0/spark-streaming-akka.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.4.0/spark-streaming-akka.md -------------------------------------------------------------------------------- /site/docs/spark/2.4.0/spark-streaming-mqtt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.4.0/spark-streaming-mqtt.md -------------------------------------------------------------------------------- /site/docs/spark/2.4.0/spark-streaming-pubnub.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.4.0/spark-streaming-pubnub.md -------------------------------------------------------------------------------- /site/docs/spark/2.4.0/spark-streaming-pubsub.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.4.0/spark-streaming-pubsub.md -------------------------------------------------------------------------------- /site/docs/spark/2.4.0/spark-streaming-twitter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.4.0/spark-streaming-twitter.md -------------------------------------------------------------------------------- /site/docs/spark/2.4.0/spark-streaming-zeromq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/2.4.0/spark-streaming-zeromq.md -------------------------------------------------------------------------------- /site/docs/spark/current/documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/current/documentation.md -------------------------------------------------------------------------------- /site/docs/spark/current/spark-sql-cloudant.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/current/spark-sql-cloudant.md -------------------------------------------------------------------------------- /site/docs/spark/current/spark-sql-streaming-akka.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/current/spark-sql-streaming-akka.md -------------------------------------------------------------------------------- /site/docs/spark/current/spark-sql-streaming-mqtt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/current/spark-sql-streaming-mqtt.md -------------------------------------------------------------------------------- /site/docs/spark/current/spark-streaming-akka.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/current/spark-streaming-akka.md -------------------------------------------------------------------------------- /site/docs/spark/current/spark-streaming-mqtt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/current/spark-streaming-mqtt.md -------------------------------------------------------------------------------- /site/docs/spark/current/spark-streaming-pubnub.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/current/spark-streaming-pubnub.md -------------------------------------------------------------------------------- /site/docs/spark/current/spark-streaming-pubsub.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/current/spark-streaming-pubsub.md -------------------------------------------------------------------------------- /site/docs/spark/current/spark-streaming-twitter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/current/spark-streaming-twitter.md -------------------------------------------------------------------------------- /site/docs/spark/current/spark-streaming-zeromq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/current/spark-streaming-zeromq.md -------------------------------------------------------------------------------- /site/docs/spark/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/overview.md -------------------------------------------------------------------------------- /site/docs/spark/templates/spark-sql-cloudant.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/templates/spark-sql-cloudant.template -------------------------------------------------------------------------------- /site/docs/spark/templates/spark-sql-streaming-akka.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/templates/spark-sql-streaming-akka.template -------------------------------------------------------------------------------- /site/docs/spark/templates/spark-sql-streaming-mqtt.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/templates/spark-sql-streaming-mqtt.template -------------------------------------------------------------------------------- /site/docs/spark/templates/spark-streaming-akka.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/templates/spark-streaming-akka.template -------------------------------------------------------------------------------- /site/docs/spark/templates/spark-streaming-mqtt.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/templates/spark-streaming-mqtt.template -------------------------------------------------------------------------------- /site/docs/spark/templates/spark-streaming-pubnub.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/templates/spark-streaming-pubnub.template -------------------------------------------------------------------------------- /site/docs/spark/templates/spark-streaming-pubsub.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/templates/spark-streaming-pubsub.template -------------------------------------------------------------------------------- /site/docs/spark/templates/spark-streaming-twitter.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/templates/spark-streaming-twitter.template -------------------------------------------------------------------------------- /site/docs/spark/templates/spark-streaming-zeromq.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/docs/spark/templates/spark-streaming-zeromq.template -------------------------------------------------------------------------------- /site/downloads/flink.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/downloads/flink.md -------------------------------------------------------------------------------- /site/downloads/spark.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/downloads/spark.md -------------------------------------------------------------------------------- /site/feed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/feed.xml -------------------------------------------------------------------------------- /site/history.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/history.md -------------------------------------------------------------------------------- /site/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/index.md -------------------------------------------------------------------------------- /site/privacy-policy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/privacy-policy.md -------------------------------------------------------------------------------- /site/releases/spark/2.0.0/release-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/releases/spark/2.0.0/release-notes.md -------------------------------------------------------------------------------- /site/releases/spark/2.0.1/release-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/releases/spark/2.0.1/release-notes.md -------------------------------------------------------------------------------- /site/releases/spark/2.0.2/release-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/releases/spark/2.0.2/release-notes.md -------------------------------------------------------------------------------- /site/releases/spark/2.1.0/release-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/releases/spark/2.1.0/release-notes.md -------------------------------------------------------------------------------- /site/releases/spark/2.3.3/release-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/releases/spark/2.3.3/release-notes.md -------------------------------------------------------------------------------- /site/releases/spark/2.3.4/release-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/site/releases/spark/2.3.4/release-notes.md -------------------------------------------------------------------------------- /update-doc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bahir-website/HEAD/update-doc.sh --------------------------------------------------------------------------------