forked from tripl-ai/arc
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
17 changed files
with
5,399 additions
and
5,380 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 15 additions & 0 deletions
15
docs-src/resources/docs_resources_plugins/CassandraExecuteComplete
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
"type": "CassandraExecute", | ||
"name": "create table", | ||
"environments": [ | ||
"production", | ||
"test" | ||
], | ||
"inputURI": "hdfs://datalake/sql/create_table.cql", | ||
"params": { | ||
"spark.cassandra.connection.host": "cassandra" | ||
}, | ||
"sqlParams": { | ||
"keyspace": ${ETL_CONF_ENVIRONMENT} | ||
} | ||
} |
15 changes: 15 additions & 0 deletions
15
docs-src/resources/docs_resources_plugins/CassandraExecuteMin
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
"type": ".=CassandraExecute", | ||
"name": "create table", | ||
"environments": [ | ||
"production", | ||
"test" | ||
], | ||
"inputURI": "hdfs://datalake/sql/create_table.cql", | ||
"params": { | ||
"spark.cassandra.connection.host": "cassandra" | ||
}, | ||
"sqlParams": { | ||
"keyspace": ${ETL_CONF_ENVIRONMENT} | ||
} | ||
} |
19 changes: 19 additions & 0 deletions
19
docs-src/resources/docs_resources_plugins/CassandraExtractComplete
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"type": "CassandraExtract", | ||
"name": "read", | ||
"environments": [ | ||
"production", | ||
"test" | ||
], | ||
"keyspace": "default", | ||
"table": "customer", | ||
"outputView": "customer", | ||
"params": { | ||
"spark.cassandra.connection.host": "cassandra" | ||
}, | ||
"numPartitions": 10, | ||
"partitionBy": [ | ||
"country" | ||
], | ||
"persist": true | ||
} |
11 changes: 11 additions & 0 deletions
11
docs-src/resources/docs_resources_plugins/CassandraExtractMin
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"type": "CassandraExtract", | ||
"name": "read", | ||
"environments": [ | ||
"production", | ||
"test" | ||
], | ||
"keyspace": "default", | ||
"table": "customer", | ||
"outputView": "customer" | ||
} |
21 changes: 21 additions & 0 deletions
21
docs-src/resources/docs_resources_plugins/CassandraLoadComplete
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
{ | ||
"type": "CassandraLoad", | ||
"name": "write", | ||
"environments": [ | ||
"production", | ||
"test" | ||
], | ||
"inputView": "customer", | ||
"keyspace": "default", | ||
"table": "customer" | ||
"saveMode": "Overwrite", | ||
"params": { | ||
"confirm.truncate": "true", | ||
"spark.cassandra.connection.host": "cassandra" | ||
}, | ||
"numPartitions": 10, | ||
"partitionBy": [ | ||
"country" | ||
], | ||
"saveMode": "Overwrite" | ||
} |
11 changes: 11 additions & 0 deletions
11
docs-src/resources/docs_resources_plugins/CassandraLoadMin
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"type": "CassandraLoad", | ||
"name": "write", | ||
"environments": [ | ||
"production", | ||
"test" | ||
], | ||
"inputView": "customer", | ||
"keyspace": "default", | ||
"table": "customer" | ||
} |
Oops, something went wrong.