Luca Garulli
Luca Garulli
By the way, we have an importer if needed: https://docs.arcadedb.com/#OrientDB-Importer. You can also call it via API: ```java File databaseDirectory = new File(DATABASE_PATH); URL inputFile = OrientDBImporterIT.class.getClassLoader().getResource("orientdb-export-small.gz"); OrientDBImporter importer =...
Also, if you guys fina a field is missing or a value is wrong, why don't you include this message in the error? it would save a lot of time...
You can set in ArcadeDB's docker `-Darcadedb.profile=low-ram` to run ArcadeDB with
Added this paragraph hoping it helps a little more on this subject. Any suggestions to improve it are welcome: https://docs.arcadedb.com/#DockerTuning
@krlmlr you can add this setting to the container to print messages from postgres protocol: `-e arcadedb.postgres.debug=true`. Note, this has been just added so be sure to use the latest...
Thanks for your help. The issue was in ArcadeDB and in the way the protocol was managed.
Tested with this script and works: ```R .libPaths( c( "/usr/local/lib/R/lib" , .libPaths() ) ) r = getOption("repos") r["CRAN"] = "http://cran.us.r-project.org" options(repos = r) ##install.packages(c("RPostgres"), lib="/usr/local/lib/R/lib") ##install.packages(c("DBI"), lib="/usr/local/lib/R/lib") library(DBI) #Sys.setenv(PGGSSENCMODE="disable") #Sys.unsetenv("PGGSSENCMODE")...
@robfrank what's the best way to do that?
About the warnings above, all the SET commands are simply ignored (even though some settings could be used, as the timezone - I'm checking): 1. What generates the warning `1:...
I'd like to propose a design that is minimally invasive and allows the support of custom Map implementation (like LinkedHashMap to have insertion ordered entries). The rationale behind using this...