Skip to content

Commit 2cebf97

Browse files
authored
Bump to vert.x 4.1.5 (#6840)
* Bump to vert.x 4.1.4 Signed-off-by: Paulo Lopes <[email protected]> * Fix template engine version misalign Signed-off-by: Paulo Lopes <[email protected]> * Removing susom as it's not compatible with vert.x 4 Signed-off-by: Paulo Lopes <[email protected]> * Removing mongo as performance wise it's not suitable and isn't maintained Signed-off-by: Paulo Lopes <[email protected]>
1 parent c2a0d8c commit 2cebf97

File tree

9 files changed

+43
-484
lines changed

9 files changed

+43
-484
lines changed

frameworks/Java/vertx-web/benchmark_config.json

Lines changed: 4 additions & 46 deletions
Original file line numberDiff line numberDiff line change
@@ -20,32 +20,11 @@
2020
"notes": "",
2121
"versus": "vertx"
2222
},
23-
"mongodb": {
24-
"db_url": "/mongo/db",
25-
"query_url": "/mongo/queries?queries=",
26-
"fortune_url": "/mongo/fortunes",
27-
"update_url": "/mongo/update?queries=",
28-
"port": 8080,
29-
"approach": "Realistic",
30-
"classification": "Micro",
31-
"database": "MongoDB",
32-
"framework": "vertx-web",
33-
"language": "Java",
34-
"flavor": "None",
35-
"orm": "Raw",
36-
"platform": "Vert.x",
37-
"webserver": "None",
38-
"os": "Linux",
39-
"database_os": "Linux",
40-
"display_name": "vertx-web-mongodb",
41-
"notes": "",
42-
"versus": ""
43-
},
4423
"postgres": {
45-
"db_url": "/psql/db",
46-
"query_url": "/psql/queries?queries=",
47-
"fortune_url": "/psql/fortunes",
48-
"update_url": "/psql/update?queries=",
24+
"db_url": "/db",
25+
"query_url": "/queries?queries=",
26+
"fortune_url": "/fortunes",
27+
"update_url": "/update?queries=",
4928
"port": 8080,
5029
"approach": "Realistic",
5130
"classification": "Micro",
@@ -61,27 +40,6 @@
6140
"display_name": "vertx-web-postgres",
6241
"notes": "",
6342
"versus": ""
64-
},
65-
"susom-postgres": {
66-
"db_url": "/dbpsql/db",
67-
"query_url": "/dbpsql/queries?queries=",
68-
"fortune_url": "/dbpsql/fortunes",
69-
"update_url": "/dbpsql/update?queries=",
70-
"port": 8080,
71-
"approach": "Realistic",
72-
"classification": "Micro",
73-
"database": "Postgres",
74-
"framework": "vertx-web",
75-
"language": "Java",
76-
"flavor": "None",
77-
"orm": "Raw",
78-
"platform": "Vert.x",
79-
"webserver": "None",
80-
"os": "Linux",
81-
"database_os": "Linux",
82-
"display_name": "vertx-web-susom",
83-
"notes": "",
84-
"versus": ""
8543
}
8644
}]
8745
}

frameworks/Java/vertx-web/config.toml

Lines changed: 4 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -14,41 +14,11 @@ platform = "Vert.x"
1414
webserver = "None"
1515
versus = "vertx"
1616

17-
[mongodb]
18-
urls.db = "/mongo/db"
19-
urls.query = "/mongo/queries?queries="
20-
urls.update = "/mongo/update?queries="
21-
urls.fortune = "/mongo/fortunes"
22-
approach = "Realistic"
23-
classification = "Micro"
24-
database = "MongoDB"
25-
database_os = "Linux"
26-
os = "Linux"
27-
orm = "Raw"
28-
platform = "Vert.x"
29-
webserver = "None"
30-
versus = ""
31-
3217
[postgres]
33-
urls.db = "/psql/db"
34-
urls.query = "/psql/queries?queries="
35-
urls.update = "/psql/update?queries="
36-
urls.fortune = "/psql/fortunes"
37-
approach = "Realistic"
38-
classification = "Micro"
39-
database = "Postgres"
40-
database_os = "Linux"
41-
os = "Linux"
42-
orm = "Raw"
43-
platform = "Vert.x"
44-
webserver = "None"
45-
versus = ""
46-
47-
[susom-postgres]
48-
urls.db = "/dbpsql/db"
49-
urls.query = "/dbpsql/queries?queries="
50-
urls.update = "/dbpsql/update?queries="
51-
urls.fortune = "/dbpsql/fortunes"
18+
urls.db = "/db"
19+
urls.query = "/queries?queries="
20+
urls.update = "/update?queries="
21+
urls.fortune = "/fortunes"
5222
approach = "Realistic"
5323
classification = "Micro"
5424
database = "Postgres"

frameworks/Java/vertx-web/pom.xml

Lines changed: 8 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@
77

88
<groupId>io.vertx</groupId>
99
<artifactId>vertx-web-benchmark</artifactId>
10-
<version>3.9.2</version>
10+
<version>4.1.5</version>
1111

1212
<properties>
1313
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
14-
<maven.compiler.source>8</maven.compiler.source>
15-
<maven.compiler.target>8</maven.compiler.target>
14+
<maven.compiler.source>11</maven.compiler.source>
15+
<maven.compiler.target>11</maven.compiler.target>
1616
<!-- the main class -->
1717
<main.verticle>io.vertx.benchmark.App</main.verticle>
1818
</properties>
@@ -36,13 +36,14 @@
3636
</dependency>
3737

3838
<dependency>
39-
<groupId>io.vertx</groupId>
40-
<artifactId>vertx-web</artifactId>
39+
<groupId>com.fasterxml.jackson.module</groupId>
40+
<artifactId>jackson-module-blackbird</artifactId>
41+
<version>2.12.4</version>
4142
</dependency>
4243

4344
<dependency>
4445
<groupId>io.vertx</groupId>
45-
<artifactId>vertx-mongo-client</artifactId>
46+
<artifactId>vertx-web</artifactId>
4647
</dependency>
4748

4849
<dependency>
@@ -61,24 +62,6 @@
6162
<classifier>linux-x86_64</classifier>
6263
</dependency>
6364

64-
<dependency>
65-
<groupId>com.github.susom</groupId>
66-
<artifactId>database</artifactId>
67-
<version>3.0</version>
68-
</dependency>
69-
70-
<dependency>
71-
<groupId>org.postgresql</groupId>
72-
<artifactId>postgresql</artifactId>
73-
<version>42.2.5</version>
74-
</dependency>
75-
76-
<dependency>
77-
<groupId>javax.xml.bind</groupId>
78-
<artifactId>jaxb-api</artifactId>
79-
<version>2.2.12</version>
80-
</dependency>
81-
8265
</dependencies>
8366

8467
<build>
@@ -87,7 +70,7 @@
8770
<plugin>
8871
<groupId>com.fizzed</groupId>
8972
<artifactId>rocker-maven-plugin</artifactId>
90-
<version>0.24.0</version>
73+
<version>1.3.0</version>
9174
<executions>
9275
<execution>
9376
<id>generate-rocker-templates</id>

0 commit comments

Comments
 (0)