Skip to content

Commit f9ae159

Browse files
authored
Create Flint project folder (#1573)
* Create scala project folder for Flint Signed-off-by: Chen Dai <[email protected]> * Ignore .bsp folder Signed-off-by: Chen Dai <[email protected]> * Add README Signed-off-by: Chen Dai <[email protected]> --------- Signed-off-by: Chen Dai <[email protected]>
0 parents  commit f9ae159

File tree

6 files changed

+123
-0
lines changed

6 files changed

+123
-0
lines changed

.gitignore

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# IDE files
2+
.idea/
3+
*.iml
4+
5+
# Compiled output
6+
target/
7+
project/target/
8+
9+
# Log files
10+
logs/
11+
12+
# sbt-specific files
13+
.sbtserver
14+
.sbt/
15+
.bsp/
16+
17+
# Miscellaneous
18+
.DS_Store
19+
*.class
20+
*.log
21+
*.zip

README.md

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
# OpenSearch Flint
2+
3+
OpenSearch Flint is ... It consists of two modules:
4+
5+
- `flint-core`: a module that contains Flint specification and client.
6+
- `flint-spark-integration`: a module that provides Spark integration for Flint and derived dataset based on it.
7+
8+
## Prerequisites
9+
10+
+ Spark 3.3.1
11+
+ Scala 2.12.14
12+
13+
## Usage
14+
15+
To use this application, you can run Spark with Flint extension:
16+
17+
```
18+
spark-sql --conf "spark.sql.extensions=org.opensearch.flint.FlintSparkExtensions"
19+
```
20+
21+
## Build
22+
23+
To build and run this application with Spark, you can run:
24+
25+
```
26+
sbt clean publishLocal
27+
```
28+
29+
## Code of Conduct
30+
31+
This project has adopted an [Open Source Code of Conduct](../CODE_OF_CONDUCT.md).
32+
33+
## Security
34+
35+
If you discover a potential security issue in this project we ask that you notify AWS/Amazon Security via our [vulnerability reporting page](http://aws.amazon.com/security/vulnerability-reporting/). Please do **not** create a public GitHub issue.
36+
37+
## License
38+
39+
See the [LICENSE](../LICENSE.txt) file for our project's licensing. We will ask you to confirm the licensing of your contribution.
40+
41+
## Copyright
42+
43+
Copyright OpenSearch Contributors. See [NOTICE](../NOTICE) for details.

build.sbt

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
/*
2+
* Copyright OpenSearch Contributors
3+
* SPDX-License-Identifier: Apache-2.0
4+
*/
5+
6+
lazy val scala212 = "2.12.14"
7+
lazy val sparkVersion = "3.3.1"
8+
9+
ThisBuild / version := "0.1.0-SNAPSHOT"
10+
11+
ThisBuild / scalaVersion := scala212
12+
13+
lazy val root = (project in file("."))
14+
.aggregate(flintCore, flintSparkIntegration)
15+
.settings(
16+
name := "flint"
17+
)
18+
19+
lazy val flintCore = (project in file("flint-core"))
20+
.settings(
21+
name := "flint-core",
22+
scalaVersion := scala212
23+
)
24+
25+
lazy val flintSparkIntegration = (project in file("flint-spark-integration"))
26+
.dependsOn(flintCore)
27+
.settings(
28+
name := "flint-spark-integration",
29+
scalaVersion := scala212,
30+
libraryDependencies ++= Seq(
31+
"org.apache.spark" %% "spark-core" % sparkVersion,
32+
"org.apache.spark" %% "spark-sql" % sparkVersion
33+
)
34+
)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
/*
2+
* Copyright OpenSearch Contributors
3+
* SPDX-License-Identifier: Apache-2.0
4+
*/
5+
6+
package org.opensearch.flint.core
7+
8+
class FlintIndex {
9+
10+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
/*
2+
* Copyright OpenSearch Contributors
3+
* SPDX-License-Identifier: Apache-2.0
4+
*/
5+
6+
package org.opensearch.flint.spark
7+
8+
import org.apache.spark.sql.SparkSessionExtensions
9+
10+
class FlintSparkExtensions extends (SparkSessionExtensions => Unit) {
11+
12+
override def apply(v1: SparkSessionExtensions): Unit = {
13+
}
14+
}

project/build.properties

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
sbt.version = 1.8.2

0 commit comments

Comments
 (0)