Skip to content

Commit

Permalink
Output Current Timestamp at run-class.sh script (#1702)
Browse files Browse the repository at this point in the history
* print current timestamp

* Fix typo

* fix build issue about grolifant okhttp

---------

Co-authored-by: Haolan Ye <[email protected]>
  • Loading branch information
yehaolan and Haolan Ye authored Aug 2, 2024
1 parent 2eb556a commit f9c3241
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion docs/learn/documentation/versioned/api/beam-api.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ title: Apache Beam API

### Introduction

Apache Beam brings an easy-to-usen but powerful API and model for state-of-art stream and batch data processing with portability across a variety of languages. The Beam API and model has the following characteristics:
Apache Beam brings an easy-to-use but powerful API and model for state-of-art stream and batch data processing with portability across a variety of languages. The Beam API and model has the following characteristics:

- *Simple constructs, powerful semantics*: the whole beam API can be simply described by a `Pipeline` object, which captures all your data processing steps from input to output. Beam SDK supports over [20 data IOs](https://beam.apache.org/documentation/io/built-in/), and data transformations from simple [Map](https://beam.apache.org/releases/javadoc/2.11.0/org/apache/beam/sdk/transforms/MapElements.html) to complex [Combines and Joins](https://beam.apache.org/releases/javadoc/2.11.0/index.html?org/apache/beam/sdk/transforms/Combine.html).

Expand Down
1 change: 1 addition & 0 deletions gradle/buildscript.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
jcenter()
}
}

Expand Down
2 changes: 2 additions & 0 deletions samza-shell/src/main/bash/run-class.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ cd $base_dir
base_dir=`pwd`
cd $home_dir

echo "Current time: $(date '+%Y-%m-%d %H:%M:%S')"

echo home_dir=$home_dir
echo "framework base (location of this script). base_dir=$base_dir"

Expand Down

0 comments on commit f9c3241

Please sign in to comment.