Skip to main content

All Questions

Tagged with
-1 votes
1 answer
194 views

How to set port number in doobie database url?

My Postgresql-server is running on port 6000 (not the default port 5432). How can I set put this port number into doobie jdbc url? val xa = Transactor.fromDriverManager[IO]( "org.postgresql....
PokerFace's user avatar
  • 801
1 vote
2 answers
3k views

Simba JDBC Driver and Read timed out error BigQuery

I'm using Simba JDBC driver for bigquery in a scheduled job. Many times the job works and sometimes it fails because of: sept. 08 12:40:38.307 TRACE 677 com.simba.googlebigquery.googlebigquery.client....
Damien Marsile's user avatar
0 votes
1 answer
712 views

jdbc - HikariCP: Seeing low insert thoughput while DB/App cpu % is still low

I've set up doobie + hikaricp with settings similar to the default. With debug logging I can see how many connections are active / idle and this also reflects what pg_stat_activity returns with this ...
irregular's user avatar
  • 1,537
4 votes
1 answer
373 views

How to connect to Hive using doobie

There is a jdbc driver for hive but seems not fully functioning. I used the default doobie Transactor to connect to it like val xa = Transactor.fromDriverManager[IO]( "org.apache.hive.jdbc....
KailuoWang's user avatar
  • 1,314
2 votes
0 answers
623 views

Doobie streaming query causes invalid operation

Doobie Without much experience in either Scala or Doobie I am trying to select data from a DB2 database. Following query works fine and prints as expected 5 employees. import doobie.imports._, ...
conspicillatus's user avatar