Skip to content

Commit 1c9fc38

Browse files
authored
Merge pull request #107 from george0st/change
Add dockers & unify yaml files
2 parents 7b066c8 + 2a641cd commit 1c9fc38

File tree

8 files changed

+20
-4
lines changed

8 files changed

+20
-4
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#!/bin/sh
2+
3+
docker network create testnet
4+
docker pull cassandra:5.0.4
5+
docker run --name cassandra -p 9042:9042 -p 7199:7199 -d --network testnet cassandra:5.0.4
6+
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#!/bin/sh
2+
3+
docker network create testnet
4+
docker pull scylladb/scylla:2025.1.1
5+
docker run --name scylla -p 9042:9042 -p 7199:7199 -d --network testnet scylladb/scylla:2025.1.1
6+
Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
## TO-DO list
22

3-
1. finish yugabyteDB
3+
1. support yugabyteDB in docker image
44
- https://docs.yugabyte.com/preview/drivers-orms/java/ycql-ssl/
55

6+
2. add complex sample in NiFi
7+
- reading and writing
8+
9+

nifi/cql-processor/nifi-cql-processors/src/test/java/org/george0st/processors/cql/PutCQLBase.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,13 +50,13 @@ protected ArrayList<TestSetupWrite> createSetup() throws IOException {
5050

5151
addTestScope(setup,
5252
TestSetupWrite.getTestPropertyFile("./src/test",
53-
new String[]{"test-cassandra.json", "test-properties.json"}));
53+
new String[]{"test-put-cassandra.json", "test-properties.json"}));
5454
addTestScope(setup,
5555
TestSetupWrite.getTestPropertyFile("./src/test",
56-
new String[]{"test-scylla.json", "test-properties.json"}));
56+
new String[]{"test-put-scylla.json", "test-properties.json"}));
5757
addTestScope(setup,
5858
TestSetupWrite.getTestPropertyFile("./src/test",
59-
new String[]{"test-astra.json", "test-properties.json"}));
59+
new String[]{"test-put-astra.json", "test-properties.json"}));
6060
return setup;
6161
}
6262

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)