Hi,
I'm trying to launch the batch mode of knime changing the file ini. I have this ini:
-startup
plugins/org.eclipse.equinox.launcher_1.2.0.v20110502.jar
--launcher.library
plugins/org.eclipse.equinox.launcher.win32.win32.x86_64_1.1.100.v20110502
-vmargs
-Dknime.async.io.cachesize=10000
-Dknime.database.fetchsize=50000
-Dknime.database.enable.concurrency=false
-Dknime.expert.mode=true
-Dosgi.locking=none
-Dknime.enable.fastload=true
-Xmx4096m
-XX:MaxPermSize=512m
-server
-Dsun.java2d.d3d=false
-Dosgi.classloader.lock=classname
-XX:+UnlockDiagnosticVMOptions
-XX:+UnsyncloadClass
-Dknime.enable.fastload=true
-Dknime.database.timeout=60
and this file of preferences:
/instance/org.knime.workbench.core/database_drivers=D\:\\Program Files\\Driver\\Oracle\\ojdbc6.jar;D\:\\Program Files\\Driver\\db2\\db2jcc.jar;D\:\\Program Files\\Driver\\SQLServer\\sqljdbc4.jar
/instance/org.knime.workbench.core/knime.tempDir=D\:\\WorkArea
file_export_version=3.0
/instance/org.knime.workbench.core/logging.loglevel.logfile=INFO
My execution:
knime.exe -application org.knime.product.KNIME_BATCH_APPLICATION --launcher.suppressErrors -nosplash -reset -preferences=%preferences_path% -workflowFile=%workflow_file% -data %work_path%\workspace -destFile=%last_file% --launcher.ini "%Knime_ini%"
(if i set the position of the --launcher before the -application the results are the same)
Now i have test these cases:
- if i use these preferences and without to force the ini the job works fine (test1 attached)
- If i use these preferences and force this ini the job does nothing (test2 attached)
- If i don't use the preferences and force the ini the job works fine (test3 attached)
How can i resolve the second use case?
Thanks