diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index e9a4d25e87e..07fd85711e0 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,6 +1,6 @@ ## Contributing to Kafka -*Before opening a pull request*, review the [Contributing](http://kafka.apache.org/contributing.html) and [Contributing Code Changes](https://cwiki.apache.org/confluence/display/KAFKA/Contributing+Code+Changes) pages. +*Before opening a pull request*, review the [Contributing](https://kafka.apache.org/contributing.html) and [Contributing Code Changes](https://cwiki.apache.org/confluence/display/KAFKA/Contributing+Code+Changes) pages. It lists steps that are required before creating a PR. diff --git a/NOTICE b/NOTICE index 8a9b248cfa7..bd7b0dcf8a6 100644 --- a/NOTICE +++ b/NOTICE @@ -2,7 +2,7 @@ Apache Kafka Copyright 2019 The Apache Software Foundation. This product includes software developed at -The Apache Software Foundation (http://www.apache.org/). +The Apache Software Foundation (https://www.apache.org/). This distribution has a binary dependency on jersey, which is available under the CDDL License. The source code of jersey can be found at https://github.com/jersey/jersey/. diff --git a/README.md b/README.md index a1e742dc212..0d443495ee4 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,8 @@ Apache Kafka ================= -See our [web site](http://kafka.apache.org) for details on the project. +See our [web site](https://kafka.apache.org) for details on the project. -You need to have [Gradle](http://www.gradle.org/installation) and [Java](http://www.oracle.com/technetwork/java/javase/downloads/index.html) installed. +You need to have [Gradle](https://www.gradle.org/installation) and [Java](https://www.oracle.com/technetwork/java/javase/downloads/index.html) installed. Kafka requires Gradle 5.0 or higher. @@ -19,7 +19,7 @@ Now everything else will work. ### Build a jar and run it ### ./gradlew jar -Follow instructions in http://kafka.apache.org/documentation.html#quickstart +Follow instructions in https://kafka.apache.org/documentation.html#quickstart ### Build source jar ### ./gradlew srcJar @@ -209,4 +209,4 @@ See [vagrant/README.md](vagrant/README.md). Apache Kafka is interested in building the community; we would welcome any thoughts or [patches](https://issues.apache.org/jira/browse/KAFKA). You can reach us [on the Apache mailing lists](http://kafka.apache.org/contact.html). To contribute follow the instructions here: - * http://kafka.apache.org/contributing.html + * https://kafka.apache.org/contributing.html diff --git a/build.gradle b/build.gradle index c6ab5f7577e..ba674e610f4 100644 --- a/build.gradle +++ b/build.gradle @@ -189,11 +189,11 @@ subprojects { pom.project { name 'Apache Kafka' packaging 'jar' - url 'http://kafka.apache.org' + url 'https://kafka.apache.org' licenses { license { name 'The Apache Software License, Version 2.0' - url 'http://www.apache.org/licenses/LICENSE-2.0.txt' + url 'https://www.apache.org/licenses/LICENSE-2.0.txt' distribution 'repo' } } @@ -1420,7 +1420,7 @@ project(':connect:api') { javadoc { include "**/org/apache/kafka/connect/**" // needed for the `javadocAll` task - options.links "http://docs.oracle.com/javase/7/docs/api/" + options.links "https://docs.oracle.com/javase/8/docs/api/" } tasks.create(name: "copyDependantLibs", type: Copy) { @@ -1699,5 +1699,5 @@ task aggregatedJavadoc(type: Javadoc) { classpath = files(projectsWithJavadoc.collect { it.sourceSets.main.compileClasspath }) includes = projectsWithJavadoc.collectMany { it.javadoc.getIncludes() } excludes = projectsWithJavadoc.collectMany { it.javadoc.getExcludes() } - options.links "http://docs.oracle.com/javase/7/docs/api/" + options.links "https://docs.oracle.com/javase/8/docs/api/" } diff --git a/doap_Kafka.rdf b/doap_Kafka.rdf index 88e50a67318..079d0c36619 100644 --- a/doap_Kafka.rdf +++ b/doap_Kafka.rdf @@ -2,9 +2,9 @@ + xmlns:rdf="https://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:asfext="https://projects.apache.org/ns/asfext#" + xmlns:foaf="https://xmlns.com/foaf/0.1/"> - + 2014-04-12 Apache Kafka - - + + Apache Kafka is a distributed, fault tolerant, publish-subscribe messaging. A single Kafka broker can handle hundreds of megabytes of reads and writes per second from thousands of clients. Kafka is designed to allow a single cluster to serve as the central data backbone for a large organization. It can be elastically and transparently expanded without downtime. Data streams are partitioned and spread over a cluster of machines to allow data streams larger than the capability of any single machine and to allow clusters of co-ordinated consumers. Kafka has a modern cluster-centric design that offers strong durability and fault-tolerance guarantees. Messages are persisted on disk and replicated within the cluster to prevent data loss. Each broker can handle terabytes of messages without performance impact. - - + + Scala - + - + diff --git a/gradle/buildscript.gradle b/gradle/buildscript.gradle index 047632b18c9..83967bb47d0 100644 --- a/gradle/buildscript.gradle +++ b/gradle/buildscript.gradle @@ -17,7 +17,7 @@ repositories { repositories { // For license plugin. maven { - url 'http://dl.bintray.com/content/netflixoss/external-gradle-plugins/' + url 'https://dl.bintray.com/content/netflixoss/external-gradle-plugins/' } } } diff --git a/jmh-benchmarks/README.md b/jmh-benchmarks/README.md index 53807ea06ff..ea20554868e 100644 --- a/jmh-benchmarks/README.md +++ b/jmh-benchmarks/README.md @@ -1,11 +1,11 @@ ###JMH-Benchmark module -This module contains benchmarks written using [JMH](http://openjdk.java.net/projects/code-tools/jmh/) from OpenJDK. +This module contains benchmarks written using [JMH](https://openjdk.java.net/projects/code-tools/jmh/) from OpenJDK. Writing correct micro-benchmarks is Java (or another JVM language) is difficult and there are many non-obvious pitfalls (many due to compiler optimizations). JMH is a framework for running and analyzing benchmarks (micro or macro) written in Java (or another JVM language). -For help in writing correct JMH tests, the best place to start is the [sample code](http://hg.openjdk.java.net/code-tools/jmh/file/tip/jmh-samples/src/main/java/org/openjdk/jmh/samples/) provided +For help in writing correct JMH tests, the best place to start is the [sample code](https://hg.openjdk.java.net/code-tools/jmh/file/tip/jmh-samples/src/main/java/org/openjdk/jmh/samples/) provided by the JMH project. Typically, JMH is expected to run as a separate project in Maven. The jmh-benchmarks module uses diff --git a/release_notes.py b/release_notes.py index e4ec7139098..029edcbacfc 100755 --- a/release_notes.py +++ b/release_notes.py @@ -98,16 +98,16 @@ if __name__ == "__main__": print "

Release Notes - Kafka - Version %s

" % version print """

Below is a summary of the JIRA issues addressed in the %(version)s release of Kafka. For full documentation of the - release, a guide to get started, and information about the project, see the Kafka + release, a guide to get started, and information about the project, see the Kafka project site.

Note about upgrades: Please carefully review the - upgrade documentation for this release thoroughly + upgrade documentation for this release thoroughly before upgrading your cluster. The upgrade notes discuss any critical information about incompatibilities and breaking changes, performance changes, and any other changes that might impact your production deployment of Kafka.

The documentation for the most recent release can be found at - http://kafka.apache.org/documentation.html.

""" % { 'version': version, 'minor': minor_version_dotless } + https://kafka.apache.org/documentation.html.

""" % { 'version': version, 'minor': minor_version_dotless } for itype, issues in by_group: print "

%s

" % itype print "
    " diff --git a/tests/README.md b/tests/README.md index 6c20553ffc7..cf355e5624c 100644 --- a/tests/README.md +++ b/tests/README.md @@ -357,7 +357,7 @@ For a tutorial on how to setup and run the Kafka system tests, see https://cwiki.apache.org/confluence/display/KAFKA/tutorial+-+set+up+and+run+Kafka+system+tests+with+ducktape * Install Virtual Box from [https://www.virtualbox.org/](https://www.virtualbox.org/) (run `$ vboxmanage --version` to check if it's installed). -* Install Vagrant >= 1.6.4 from [http://www.vagrantup.com/](http://www.vagrantup.com/) (run `vagrant --version` to check if it's installed). +* Install Vagrant >= 1.6.4 from [https://www.vagrantup.com/](https://www.vagrantup.com/) (run `vagrant --version` to check if it's installed). * Install system test dependencies, including ducktape, a command-line tool and library for testing distributed systems. We recommend to use virtual env for system test development $ cd kafka/tests @@ -401,12 +401,12 @@ Preparation In these steps, we will create an IAM role which has permission to create and destroy EC2 instances, set up a keypair used for ssh access to the test driver and worker machines, and create a security group to allow the test driver and workers to all communicate via TCP. -* [Create an IAM role](http://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_create_for-user.html). We'll give this role the ability to launch or kill additional EC2 machines. +* [Create an IAM role](https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_create_for-user.html). We'll give this role the ability to launch or kill additional EC2 machines. - Create role "kafkatest-master" - Role type: Amazon EC2 - Attach policy: AmazonEC2FullAccess (this will allow our test-driver to create and destroy EC2 instances) -* If you haven't already, [set up a keypair to use for SSH access](http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-key-pairs.html). For the purpose +* If you haven't already, [set up a keypair to use for SSH access](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-key-pairs.html). For the purpose of this quickstart, let's say the keypair name is kafkatest, and you've saved the private key in kafktest.pem * Next, create a EC2 security group called "kafkatest". diff --git a/tests/bootstrap-test-env.sh b/tests/bootstrap-test-env.sh index 908e4438e9a..8e70bbf294b 100755 --- a/tests/bootstrap-test-env.sh +++ b/tests/bootstrap-test-env.sh @@ -36,7 +36,7 @@ echo "Checking Vagrant installation..." vagrant_version=`vagrant --version | egrep -o "[0-9]+\.[0-9]+\.[0-9]+"` bad_vagrant=false if [ "$(version $vagrant_version)" -lt "$(version 1.6.4)" ]; then - echo "Found Vagrant version $vagrant_version. Please upgrade to 1.6.4 or higher (see http://www.vagrantup.com for details)" + echo "Found Vagrant version $vagrant_version. Please upgrade to 1.6.4 or higher (see https://www.vagrantup.com for details)" bad_vagrant=true else echo "Vagrant installation looks good." diff --git a/vagrant/README.md b/vagrant/README.md index 0e86f8046a0..f5171c2c6e7 100644 --- a/vagrant/README.md +++ b/vagrant/README.md @@ -3,7 +3,7 @@ Using Vagrant to get up and running. 1) Install Virtual Box [https://www.virtualbox.org/](https://www.virtualbox.org/) -2) Install Vagrant >= 1.6.4 [http://www.vagrantup.com/](http://www.vagrantup.com/) +2) Install Vagrant >= 1.6.4 [https://www.vagrantup.com/](https://www.vagrantup.com/) 3) Install Vagrant Plugins: $ vagrant plugin install vagrant-hostmanager