This is an automated email from the ASF dual-hosted git repository. fanningpj pushed a commit to branch tlp in repository https://gitbox.apache.org/repos/asf/pekko-connectors-samples.git
commit c3d98ef2488d08fd628ddb58608331cfe001e7ca Author: PJ Fanning <[email protected]> AuthorDate: Fri Mar 22 15:20:41 2024 +0100 Pekko becomes a TLP --- DISCLAIMER | 10 ---------- docs/build.sbt | 6 +++--- docs/src/main/paradox/index.md | 4 ++-- pekko-connectors-sample-file-to-elasticsearch/README.md | 4 ++-- pekko-connectors-sample-ftp-to-file/README.md | 4 ++-- pekko-connectors-sample-http-csv-to-kafka/README.md | 4 ++-- pekko-connectors-sample-jdbc-to-elasticsearch/README.md | 4 ++-- pekko-connectors-sample-jms/README.md | 4 ++-- pekko-connectors-sample-kafka-to-elasticsearch/README.md | 4 ++-- pekko-connectors-sample-kafka-to-websocket-clients/README.md | 4 ++-- pekko-connectors-sample-mqtt-to-kafka/README.md | 4 ++-- pekko-connectors-sample-rotate-logs-to-ftp/README.md | 4 ++-- 12 files changed, 23 insertions(+), 33 deletions(-) diff --git a/DISCLAIMER b/DISCLAIMER deleted file mode 100644 index 6a31e0f..0000000 --- a/DISCLAIMER +++ /dev/null @@ -1,10 +0,0 @@ -Apache Pekko (incubating) is an effort undergoing incubation at the Apache -Software Foundation (ASF), sponsored by the Apache Incubator PMC. - -Incubation is required of all newly accepted projects until a further review -indicates that the infrastructure, communications, and decision making process -have stabilized in a manner consistent with other successful ASF projects. - -While incubation status is not necessarily a reflection of the completeness -or stability of the code, it does indicate that the project has yet to be -fully endorsed by the ASF. diff --git a/docs/build.sbt b/docs/build.sbt index 96a2bdd..6f95307 100644 --- a/docs/build.sbt +++ b/docs/build.sbt @@ -5,8 +5,8 @@ enablePlugins(ParadoxPlugin, PekkoParadoxPlugin, ParadoxSitePlugin) name := "Pekko Connectors Samples" previewFixedPort := Some(8085) -scmInfo := Some(ScmInfo(url("https://github.com/apache/incubator-pekko-connectors-samples"), "[email protected]:apache/incubator-pekko-connectors-samples.git")) -homepage := Some(url("https://github.com/apache/incubator-pekko-connectors-samples")) +scmInfo := Some(ScmInfo(url("https://github.com/apache/pekko-connectors-samples"), "[email protected]:apache/pekko-connectors-samples.git")) +homepage := Some(url("https://github.com/apache/pekko-connectors-samples")) description := "Example solutions for Enterprise Integrations using Pekko Connectors and Reactive Streams." version := { val time = java.time.LocalDateTime.now().withSecond(0).withNano(0) @@ -14,7 +14,7 @@ version := { } isSnapshot := true -pekkoParadoxGithub := Some("https://github.com/apache/incubator-pekko-connectors-samples") +pekkoParadoxGithub := Some("https://github.com/apache/pekko-connectors-samples") val FtpToFile = config("ftp-to-file") ParadoxPlugin.paradoxSettings(FtpToFile) diff --git a/docs/src/main/paradox/index.md b/docs/src/main/paradox/index.md index e4a3d4c..10ddd22 100644 --- a/docs/src/main/paradox/index.md +++ b/docs/src/main/paradox/index.md @@ -27,9 +27,9 @@ Read a stream of data and store it zipped in rotating files on an SFTP server. ### @extref:[Subscribe to MQTT and produce to Kafka](mqtt-to-kafka:index.html) Subscribe to an MQTT topic with @extref[Pekko Connectors MQTT](pekko-connectors:/mqtt.html), group a few values and publish the aggregate to a Kafka topic with @extref[Pekko Connectors Kafka](pekko-connectors-kafka:). -### @link:[Amazon SQS](https://github.com/apache/incubator-pekko-connectors-samples/tree/main/pekko-connectors-sample-sqs-java) { open=new } +### @link:[Amazon SQS](https://github.com/apache/pekko-connectors-samples/tree/main/pekko-connectors-sample-sqs-java) { open=new } Listen to an Amazon SQS topic, enrich the message via calling an actor, publish a new message to SQS and acknowledge/delete the original message. (Java only) -### @link:[MQTT topic triggers file download which is uploaded to AWS S3](https://github.com/apache/incubator-pekko-connectors-samples/tree/main/pekko-connectors-sample-mqtt-http-to-s3-java) { open=new } +### @link:[MQTT topic triggers file download which is uploaded to AWS S3](https://github.com/apache/pekko-connectors-samples/tree/main/pekko-connectors-sample-mqtt-http-to-s3-java) { open=new } Listen to a MQTT topic, download from the URL passed in the received message, and upload the data from that address to AWS S3. (Java only) diff --git a/pekko-connectors-sample-file-to-elasticsearch/README.md b/pekko-connectors-sample-file-to-elasticsearch/README.md index 5410016..d446a02 100644 --- a/pekko-connectors-sample-file-to-elasticsearch/README.md +++ b/pekko-connectors-sample-file-to-elasticsearch/README.md @@ -24,6 +24,6 @@ A summary of tailed log files is also logged, which includes the following field 4. Last updated timestamp 5. Total log lines parsed -Browse the sources at @link:[Github](https://github.com/apache/incubator-pekko-connectors-samples/tree/main/pekko-connectors-sample-file-to-elasticsearch) { open=new }. +Browse the sources at @link:[Github](https://github.com/apache/pekko-connectors-samples/tree/main/pekko-connectors-sample-file-to-elasticsearch) { open=new }. -To try out this project clone @link:[the Pekko Connectors Samples repository](https://github.com/apache/incubator-pekko-connectors-samples) { open=new } and find it in the `pekko-connectors-sample-file-to-elasticsearch` directory. \ No newline at end of file +To try out this project clone @link:[the Pekko Connectors Samples repository](https://github.com/apache/pekko-connectors-samples) { open=new } and find it in the `pekko-connectors-sample-file-to-elasticsearch` directory. \ No newline at end of file diff --git a/pekko-connectors-sample-ftp-to-file/README.md b/pekko-connectors-sample-ftp-to-file/README.md index 178085d..368eeff 100644 --- a/pekko-connectors-sample-ftp-to-file/README.md +++ b/pekko-connectors-sample-ftp-to-file/README.md @@ -4,6 +4,6 @@ This example uses @extref[Pekko Connectors FTP](pekko-connectors:ftp.html) to read from the FTP server, and stores files using Pekko Stream `FileIO`. -Browse the sources at @link:[Github](https://github.com/apache/incubator-pekko-connectors-samples/tree/main/pekko-connectors-sample-ftp-to-file) { open=new }. +Browse the sources at @link:[Github](https://github.com/apache/pekko-connectors-samples/tree/main/pekko-connectors-sample-ftp-to-file) { open=new }. -To try out this project clone @link:[the Pekko-Connectors Samples repository](https://github.com/apache/incubator-pekko-connectors-samples) { open=new } and find it in the `pekko-connectors-sample-ftp-to-file` directory. +To try out this project clone @link:[the Pekko-Connectors Samples repository](https://github.com/apache/pekko-connectors-samples) { open=new } and find it in the `pekko-connectors-sample-ftp-to-file` directory. diff --git a/pekko-connectors-sample-http-csv-to-kafka/README.md b/pekko-connectors-sample-http-csv-to-kafka/README.md index 38b55d7..54b84ea 100644 --- a/pekko-connectors-sample-http-csv-to-kafka/README.md +++ b/pekko-connectors-sample-http-csv-to-kafka/README.md @@ -4,6 +4,6 @@ This example uses @extref[Pekko HTTP to send the HTTP request](pekko-http:client-side/connection-level.html#opening-http-connections) and Pekko HTTPs primary JSON support via @extref[Spray JSON](pekko-http:common/json-support.html#spray-json-support) (for Scala) or Jackson JSON (for Java) to convert the map into a JSON structure which gets published to a Kafka topic. -Browse the sources at @link:[Github](https://github.com/apache/incubator-pekko-connectors-samples/tree/main/pekko-connectors-sample-http-csv-to-kafka) { open=new }. +Browse the sources at @link:[Github](https://github.com/apache/pekko-connectors-samples/tree/main/pekko-connectors-sample-http-csv-to-kafka) { open=new }. -To try out this project clone @link:[the Pekko-Connectors Samples repository](https://github.com/apache/incubator-pekko-connectors-samples) { open=new } and find it in the `pekko-connectors-sample-http-csv-to-kafka` directory. +To try out this project clone @link:[the Pekko-Connectors Samples repository](https://github.com/apache/pekko-connectors-samples) { open=new } and find it in the `pekko-connectors-sample-http-csv-to-kafka` directory. diff --git a/pekko-connectors-sample-jdbc-to-elasticsearch/README.md b/pekko-connectors-sample-jdbc-to-elasticsearch/README.md index 71fab43..ff848d4 100644 --- a/pekko-connectors-sample-jdbc-to-elasticsearch/README.md +++ b/pekko-connectors-sample-jdbc-to-elasticsearch/README.md @@ -4,6 +4,6 @@ This example uses @extref[Pekko-Connectors Slick](pekko-connectors:slick.html) to read from a database, and stores the data in Elasticsearch. -Browse the sources at @link:[Github](https://github.com/apache/incubator-pekko-connectors-samples/tree/main/pekko-connectors-sample-jdbc-to-elasticsearch) { open=new }. +Browse the sources at @link:[Github](https://github.com/apache/pekko-connectors-samples/tree/main/pekko-connectors-sample-jdbc-to-elasticsearch) { open=new }. -To try out this project clone @link:[the Pekko-Connectors Samples repository](https://github.com/apache/incubator-pekko-connectors-samples) { open=new } and find it in the `pekko-connectors-sample-jdbc-to-elasticsearch` directory. +To try out this project clone @link:[the Pekko-Connectors Samples repository](https://github.com/apache/pekko-connectors-samples) { open=new } and find it in the `pekko-connectors-sample-jdbc-to-elasticsearch` directory. diff --git a/pekko-connectors-sample-jms/README.md b/pekko-connectors-sample-jms/README.md index e84ee9b..1315d71 100644 --- a/pekko-connectors-sample-jms/README.md +++ b/pekko-connectors-sample-jms/README.md @@ -4,6 +4,6 @@ These examples show small usages of @extref[Pekko-Connector JMS](pekko-connectors:jms). -Browse the sources at @link:[Github](https://github.com/apache/incubator-pekko-connectors-samples/tree/main/pekko-connectors-sample-jms) { open=new }. +Browse the sources at @link:[Github](https://github.com/apache/pekko-connectors-samples/tree/main/pekko-connectors-sample-jms) { open=new }. -To try out this project clone @link:[the Pekko-Connector Samples repository](https://github.com/apache/incubator-pekko-connectors-samples) { open=new } and find it in the `pekko-connectors-sample-jms` directory. +To try out this project clone @link:[the Pekko-Connector Samples repository](https://github.com/apache/pekko-connectors-samples) { open=new } and find it in the `pekko-connectors-sample-jms` directory. diff --git a/pekko-connectors-sample-kafka-to-elasticsearch/README.md b/pekko-connectors-sample-kafka-to-elasticsearch/README.md index bdab891..6d81050 100644 --- a/pekko-connectors-sample-kafka-to-elasticsearch/README.md +++ b/pekko-connectors-sample-kafka-to-elasticsearch/README.md @@ -4,6 +4,6 @@ This example uses @extref[Pekko-Connectors Kafka](pekko-connectors-kafka:) to subscribe to a Kafka topic, parses JSON into a data class and stores the object in Elasticsearch. After storing the Kafka offset is committed back to Kafka. This gives at-least-once semantics. -Browse the sources at @link:[Github](https://github.com/apache/incubator-pekko-connectors-samples/tree/main/pekko-connectors-sample-kafka-to-elasticsearch) { open=new }. +Browse the sources at @link:[Github](https://github.com/apache/pekko-connectors-samples/tree/main/pekko-connectors-sample-kafka-to-elasticsearch) { open=new }. -To try out this project clone @link:[the Pekko-Connectors Samples repository](https://github.com/apache/incubator-pekko-connectors-samples) { open=new } and find it in the `pekko-connectors-sample-kafka-to-elasticsearch` directory. +To try out this project clone @link:[the Pekko-Connectors Samples repository](https://github.com/apache/pekko-connectors-samples) { open=new } and find it in the `pekko-connectors-sample-kafka-to-elasticsearch` directory. diff --git a/pekko-connectors-sample-kafka-to-websocket-clients/README.md b/pekko-connectors-sample-kafka-to-websocket-clients/README.md index ba6f199..a719bbb 100644 --- a/pekko-connectors-sample-kafka-to-websocket-clients/README.md +++ b/pekko-connectors-sample-kafka-to-websocket-clients/README.md @@ -4,9 +4,9 @@ Clients may connect via websockets and will receive data read from a Kafka topic. The websockets are implemented in @extref[Pekko HTTP](pekko-http:) and [Pekko-Connectors Kafka](pekko-connectors-kafka:) subscribes to the Kafka topic. -Browse the sources at @link:[Github](https://github.com/apache/incubator-pekko-connectors-samples/tree/main/pekko-connectors-sample-kafka-to-websocket-clients) { open=new }. +Browse the sources at @link:[Github](https://github.com/apache/pekko-connectors-samples/tree/main/pekko-connectors-sample-kafka-to-websocket-clients) { open=new }. -To try out this project clone @link:[the Pekko-Connectors Samples repository](https://github.com/apache/incubator-pekko-connectors-samples) { open=new } and find it in the `pekko-connectors-sample-kafka-to-websocket-clients` directory. +To try out this project clone @link:[the Pekko-Connectors Samples repository](https://github.com/apache/pekko-connectors-samples) { open=new } and find it in the `pekko-connectors-sample-kafka-to-websocket-clients` directory. ## Running diff --git a/pekko-connectors-sample-mqtt-to-kafka/README.md b/pekko-connectors-sample-mqtt-to-kafka/README.md index ee4354b..161a58f 100644 --- a/pekko-connectors-sample-mqtt-to-kafka/README.md +++ b/pekko-connectors-sample-mqtt-to-kafka/README.md @@ -4,6 +4,6 @@ Subscribe to an MQTT topic with @extref[Pekko-Connectors MQTT](pekko-connectors:/mqtt.html), group a few values and publish the aggregate to a Kafka topic with @extref[Pekko-Connectors Kafka](pekko-connectors-kafka:). -Browse the sources at @link:[Github](https://github.com/apache/incubator-pekko-connectors-samples/tree/main/pekko-connectors-sample-mqtt-to-kafka) { open=new }. +Browse the sources at @link:[Github](https://github.com/apache/pekko-connectors-samples/tree/main/pekko-connectors-sample-mqtt-to-kafka) { open=new }. -To try out this project clone @link:[the Pekko-Connectors Samples repository](https://github.com/apache/incubator-pekko-connectors-samples) { open=new } and find it in the `pekko-connectors-sample-mqtt-to-kafka` directory. +To try out this project clone @link:[the Pekko-Connectors Samples repository](https://github.com/apache/pekko-connectors-samples) { open=new } and find it in the `pekko-connectors-sample-mqtt-to-kafka` directory. diff --git a/pekko-connectors-sample-rotate-logs-to-ftp/README.md b/pekko-connectors-sample-rotate-logs-to-ftp/README.md index 63b7374..d1377e6 100644 --- a/pekko-connectors-sample-rotate-logs-to-ftp/README.md +++ b/pekko-connectors-sample-rotate-logs-to-ftp/README.md @@ -4,6 +4,6 @@ This example reads a stream of data and uses @extref[Pekko-Connectors File](pekko-connectors:file.html) `LogRotatorSink` to write multiple files which get rotated triggered by a rotation function, the files are zipped in-flow and written to an SFTP server with @extref[Pekko-Connectors FTP](pekko-connectors:ftp.html). -Browse the sources at @link:[Github](https://github.com/apache/incubator-pekko-connectors-samples/tree/main/pekko-connectors-sample-rotate-logs-to-ftp) { open=new }. +Browse the sources at @link:[Github](https://github.com/apache/pekko-connectors-samples/tree/main/pekko-connectors-sample-rotate-logs-to-ftp) { open=new }. -To try out this project clone @link:[the Pekko-Connectors Samples repository](https://github.com/apache/incubator-pekko-connectors-samples) { open=new } and find it in the `pekko-connectors-sample-rotate-logs-to-ftp` directory. +To try out this project clone @link:[the Pekko-Connectors Samples repository](https://github.com/apache/pekko-connectors-samples) { open=new } and find it in the `pekko-connectors-sample-rotate-logs-to-ftp` directory. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
