Skip to content

Commit

Permalink
Minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
darkfrog26 committed May 10, 2024
1 parent 82a5efc commit e8a01f9
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 37 deletions.
36 changes: 2 additions & 34 deletions benchmark/src/main/scala/benchmark/IMDBBenchmark.scala
Original file line number Diff line number Diff line change
Expand Up @@ -16,43 +16,11 @@ import scala.annotation.tailrec
import sys.process._
import java.util.concurrent.atomic.{AtomicBoolean, AtomicInteger}

// ArangoDB Sync - Total Akas: 999999 and Total Basics: 999999 in 94.616 seconds (21138.1 per second)
// ArangoDB Async - Total Akas: 999999 and Total Basics: 999999 in 71.579 seconds (27941.1 per second)
// Scarango - Total Akas: 999999 and Total Basics: 999999 in 198.089 seconds (10096.5 per second)
// Scarango - Total Akas: 999999 and Total Basics: 999999 in 158.873 seconds (12588.7 per second) - with rewrite
// MongoDB - Total Akas: 999999 and Total Basics: 999999 in 69.857 seconds (28629.9 per second)


// PostgreSQL - Total: 26838043 in 547.247 seconds (49041.9 per second)
// MongoDB - Total: 26838043 in 605.694 seconds (44309.6 per second)
// LightDB - Total: 26838043 in 280.04 seconds (95836.5 per second) - (HaloDB / NullIndexer)
// LightDB - Total: 26838043 in 9016.418 seconds (2976.6 per second) - (HaloDB / Lucene)

// LightDB - Total: 999999 in 186.082 seconds (5374.0 per second) - 16 threads (HaloDB / Lucene)
// LightDB - Total: 999999 in 261.31 seconds (3826.9 per second) - 16 threads (MapDB / Lucene)
// LightDB - Total: 999999 in 183.937 seconds (5436.6 per second) - 16 threads (NullStore / Lucene)
// LightDB - Total: 999999 in 11.715 seconds (85360.6 per second) - 16 threads (HaloDB / NullIndexer)

// MongoDB - Total: 999999 in 19.165 seconds (52178.4 per second)
// PostgreSQL - Total: 999999 in 15.947 seconds (62707.7 per second)

/*
[info] 2022.08.06 08:43:21:265 io-compute-17 INFO benchmark.IMDBBenchmark.io:90
[info] Scarango - Total Akas: 999999 and Total Basics: 999999 in 162.301 seconds (12322.8 per second)
[info] akasFile: 0.011s, akasProcess: 32.025s, basicsFile: 0.002s, basicsProcess: 31.846
[info] flushing: 0.054s, verifiedAka: 0.125s, verifiedBasics: 0.131s, cycle: 12.752s
[info] validateIds: 14.551s, validateTitles: 69.982s
[info] ArangoDB Async - Total Akas: 999999 and Total Basics: 999999 in 66.557 seconds (30049.4 per second)
[info] akasFile: 0.008s, akasProcess: 6.429s, basicsFile: 0.001s, basicsProcess: 6.762
[info] flushing: 0.012s, verifiedAka: 0.003s, verifiedBasics: 0.002s, cycle: 6.324s
[info] validateIds: 13.934s, validateTitles: 32.540s
*/
object IMDBBenchmark { // extends IOApp {
val limit: Limit = Limit.Unlimited
val limit: Limit = Limit.OneMillion

implicit val runtime: IORuntime = IORuntime.global
val implementation: BenchmarkImplementation = LightDBImplementation
val implementation: BenchmarkImplementation = SQLiteImplementation

private var ids: List[Ids] = Nil

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import lightdb.sqlite.{SQLData, SQLIndexedField, SQLiteSupport}
import lightdb.upgrade.DatabaseUpgrade
import lightdb.{Document, Id, IndexedLinks, LightDB, MaxLinks}

import java.nio.file.Paths
import java.nio.file.{Path, Paths}
import java.sql.ResultSet

object LightDBImplementation extends BenchmarkImplementation {
Expand Down Expand Up @@ -88,8 +88,10 @@ object LightDBImplementation extends BenchmarkImplementation {
}

// object DB extends LightDB(directory = Paths.get("imdb"), maxFileSize = 1024 * 1024 * 1024) {
object DB extends LightDB(directory = Paths.get("imdb")) with HaloDBSupport {
override def maxFileSize: Int = 1024 * 1024 * 1024
object DB extends LightDB with HaloDBSupport {
override def directory: Path = Paths.get("imdb")

override def maxFileSize: Int = 1024 * 1024 * 1024

// val titleAka: Collection[TitleAkaLDB] = collection("titleAka", TitleAkaLDB)
// val titleBasics: Collection[TitleBasicsLDB] = collection("titleBasics", TitleBasicsLDB)
Expand Down
1 change: 1 addition & 0 deletions core/src/main/scala/lightdb/model/UnitActions.scala
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package lightdb.model

import cats.effect.IO
import cats.implicits.toTraverseOps

class UnitActions {
private var list = List.empty[() => IO[Unit]]
Expand Down

0 comments on commit e8a01f9

Please sign in to comment.